Releases: manzt/zarrita.js
[email protected]
Patch Changes
-
Fix TypedArray types for TypeScript < 5.7 (#239)
TypeScript changed the typing behavior of all
TypedArray
objects to now be generic over the underlyingArrayBufferLike
type. In order to have our types be consistent with these changes, we needed to specify theArrayBuffer
explicitly, but that breaks for older versions of TypeScript. This PR fixes the version of TypeScript to 5.6. We will need to bump again when we want to support 5.7. -
Updated dependencies [
7756cdc
]:- @zarrita/[email protected]
- @zarrita/[email protected]
- @zarrita/[email protected]
[email protected]
Patch Changes
- Updated dependencies [
4276c3b
]:- @zarrita/[email protected]
- @zarrita/[email protected]
@zarrita/[email protected]
Patch Changes
-
Fix TypedArray types for TypeScript < 5.7 (#239)
TypeScript changed the typing behavior of all
TypedArray
objects to now be generic over the underlyingArrayBufferLike
type. In order to have our types be consistent with these changes, we needed to specify theArrayBuffer
explicitly, but that breaks for older versions of TypeScript. This PR fixes the version of TypeScript to 5.6. We will need to bump again when we want to support 5.7.
@zarrita/[email protected]
Patch Changes
-
Fix TypedArray types for TypeScript < 5.7 (#239)
TypeScript changed the typing behavior of all
TypedArray
objects to now be generic over the underlyingArrayBufferLike
type. In order to have our types be consistent with these changes, we needed to specify theArrayBuffer
explicitly, but that breaks for older versions of TypeScript. This PR fixes the version of TypeScript to 5.6. We will need to bump again when we want to support 5.7.
@zarrita/[email protected]
Patch Changes
-
Fix TypedArray types for TypeScript < 5.7 (#239)
TypeScript changed the typing behavior of all
TypedArray
objects to now be generic over the underlyingArrayBufferLike
type. In order to have our types be consistent with these changes, we needed to specify theArrayBuffer
explicitly, but that breaks for older versions of TypeScript. This PR fixes the version of TypeScript to 5.6. We will need to bump again when we want to support 5.7. -
Updated dependencies [
7756cdc
]:- @zarrita/[email protected]
- @zarrita/[email protected]
- @zarrita/[email protected]
@zarrita/[email protected]
Patch Changes
- Updated dependencies [
4276c3b
]:- @zarrita/[email protected]
- @zarrita/[email protected]
@zarrita/[email protected]
Patch Changes
-
Fix TypedArray types for TypeScript < 5.7 (#239)
TypeScript changed the typing behavior of all
TypedArray
objects to now be generic over the underlyingArrayBufferLike
type. In order to have our types be consistent with these changes, we needed to specify theArrayBuffer
explicitly, but that breaks for older versions of TypeScript. This PR fixes the version of TypeScript to 5.6. We will need to bump again when we want to support 5.7. -
Updated dependencies [
7756cdc
]:- @zarrita/[email protected]
- @zarrita/[email protected]
- @zarrita/[email protected]
@zarrita/[email protected]
Patch Changes
- Updated dependencies [
4276c3b
]:- @zarrita/[email protected]
@zarrita/[email protected]
Patch Changes
-
Fix TypedArray types for TypeScript < 5.7 (#239)
TypeScript changed the typing behavior of all
TypedArray
objects to now be generic over the underlyingArrayBufferLike
type. In order to have our types be consistent with these changes, we needed to specify theArrayBuffer
explicitly, but that breaks for older versions of TypeScript. This PR fixes the version of TypeScript to 5.6. We will need to bump again when we want to support 5.7. -
Updated dependencies [
7756cdc
]:- @zarrita/[email protected]
- @zarrita/[email protected]
@zarrita/[email protected]
Patch Changes
-
Support read-only
bitround
codec (#234)Introduces
BitroundCodec
with a no-op for decoding because bit-rounding is lossy, and precision cannot be restored. Encoding is not yet implemented, reflecting zarrita's current focus on read-heavy contexts. Open an issue if encoding support is needed.