Skip to content

Commit de4c520

Browse files
github-actions[bot]manzt
authored andcommitted
Version Packages (#276)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent b318ba1 commit de4c520

File tree

7 files changed

+32
-26
lines changed

7 files changed

+32
-26
lines changed

.changeset/tired-doodles-attack.md

Lines changed: 0 additions & 21 deletions
This file was deleted.

packages/@zarrita-ndarray/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @zarrita/ndarray
22

3+
## 0.1.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`b318ba1`](https://github.com/manzt/zarrita.js/commit/b318ba10c643598c9b4f80ec61ee4d951384061e)]:
8+
9+
310
## 0.1.0
411

512
### Minor Changes

packages/@zarrita-ndarray/jsr.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "@zarrita/ndarray",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"license": "MIT",
55
"imports": {
66
"@types/ndarray-ops": "npm:@types/ndarray-ops@^1.2.4",
77
"ndarray": "npm:ndarray@^1.0.19",
88
"ndarray-ops": "npm:ndarray-ops@^1.2.2",
9-
"zarrita": "jsr:@zarrita/zarrita@^0.4.0"
9+
"zarrita": "jsr:@zarrita/zarrita@^0.5.0"
1010
},
1111
"exports": {
1212
".": "./src/index.ts"

packages/@zarrita-ndarray/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@zarrita/ndarray",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"license": "MIT",
55
"type": "module",
66
"sideEffects": false,

packages/zarrita/CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
# zarrita
22

3+
## 0.5.0
4+
5+
### Minor Changes
6+
7+
- Replace default `gzip`/`zlib` codecs with dependency-less decode-only versions ([#275](https://github.com/manzt/zarrita.js/pull/275))
8+
9+
This is a **breaking change** since by default **zarrita** no longer supports _encoding_ with these codecs. The new implementation is based on the [`DecompressionStream`](https://developer.mozilla.org/en-US/docs/Web/API/DecompressionStream) API, preferring a built-in (i.e., dependency-free) solution for the majority use case (read-only) with zarrita.
10+
11+
Encoding remains supported but must be explicitly enabled with a custom codec from `numcodecs`:
12+
13+
```ts
14+
import * as zarr from "zarrita";
15+
16+
import GZip from "numcodecs/gzip";
17+
import Zlib from "numcodecs/zlib";
18+
19+
zarr.registry.set("gzip", () => GZip);
20+
zarr.registry.set("zlib", () => Zlib);
21+
```
22+
323
## 0.4.0
424

525
### Minor Changes

packages/zarrita/jsr.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@zarrita/zarrita",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"license": "MIT",
55
"imports": {
66
"@zarrita/storage": "jsr:@zarrita/storage@^0.1.0",

packages/zarrita/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "zarrita",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"license": "MIT",
55
"type": "module",
66
"sideEffects": false,

0 commit comments

Comments
 (0)