Skip to content

Releases: manzt/zarrita.js

[email protected]

13 Aug 18:53
68aae72
Compare
Choose a tag to compare

Patch Changes

@zarrita/[email protected]

13 Aug 18:53
68aae72
Compare
Choose a tag to compare

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]

13 Aug 18:53
68aae72
Compare
Choose a tag to compare

Patch Changes

[email protected]

26 Jun 20:30
8a7196d
Compare
Choose a tag to compare

Patch Changes

  • Add support for options.metadataKey in withConsolidated and tryWithConsolidated" (#283)

@zarrita/[email protected]

26 Jun 20:30
8a7196d
Compare
Choose a tag to compare

Patch Changes

[email protected]

25 Mar 02:09
6591cf7
Compare
Choose a tag to compare

Patch Changes

@zarrita/[email protected]

25 Mar 02:09
6591cf7
Compare
Choose a tag to compare

Patch Changes

@zarrita/[email protected]

25 Mar 02:08
6591cf7
Compare
Choose a tag to compare

Patch Changes

[email protected]

10 Mar 22:53
ebc35d6
Compare
Choose a tag to compare

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]

10 Mar 22:53
ebc35d6
Compare
Choose a tag to compare

Patch Changes