Releases: manzt/zarrita.js
Releases · manzt/zarrita.js
[email protected]
Patch Changes
- Updated dependencies [
b4e06c8
]:- @zarrita/[email protected]
@zarrita/[email protected]
Patch Changes
- Add a transformEntries option for the ZipFileStore, to allow for transformation of internal zip paths (e.g., to remove a root folder). (#294)
@zarrita/[email protected]
Patch Changes
- Updated dependencies []:
[email protected]
Patch Changes
- Add support for options.metadataKey in withConsolidated and tryWithConsolidated" (#283)
@zarrita/[email protected]
Patch Changes
- Updated dependencies [
edac6ad
]:
[email protected]
Patch Changes
-
Emit and publish sourcemap files (#278)
-
Updated dependencies [
e6b580c
]:- @zarrita/[email protected]
@zarrita/[email protected]
Patch Changes
- Emit and publish sourcemap files (#278)
@zarrita/[email protected]
Patch Changes
-
Emit and publish sourcemap files (#278)
-
Updated dependencies [
e6b580c
]:
[email protected]
Minor Changes
-
Replace default
gzip
/zlib
codecs with dependency-less decode-only versions (#275)This is a breaking change since by default zarrita no longer supports encoding with these codecs by default. The new implementation is based on the
DecompressionStream
API, preferring a built-in (i.e., dependency-free) solution for the majority use case (read-only) with zarrita.Encoding remains supported but must be explicitly enabled with a custom codec from
numcodecs
:import * as zarr from "zarrita"; import GZip from "numcodecs/gzip"; import Zlib from "numcodecs/zlib"; zarr.registry.set("gzip", () => GZip); zarr.registry.set("zlib", () => Zlib);
@zarrita/[email protected]
Patch Changes
- Updated dependencies [
b318ba1
]: