From 9878758b1dbf87627354f12ad541f22b041520ce Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 3 Dec 2024 17:36:20 -0500 Subject: [PATCH] Version Packages (next) (#240) Co-authored-by: github-actions[bot] --- .changeset/pre.json | 1 + packages/core/CHANGELOG.md | 12 ++++++++++++ packages/core/package.json | 2 +- packages/indexing/CHANGELOG.md | 13 +++++++++++++ packages/indexing/package.json | 2 +- packages/ndarray/CHANGELOG.md | 13 +++++++++++++ packages/ndarray/package.json | 2 +- packages/storage/CHANGELOG.md | 8 ++++++++ packages/storage/package.json | 2 +- packages/typedarray/CHANGELOG.md | 8 ++++++++ packages/typedarray/package.json | 6 ++++-- packages/zarrita/CHANGELOG.md | 13 +++++++++++++ packages/zarrita/package.json | 2 +- 13 files changed, 77 insertions(+), 7 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index a0dc1077..15077d55 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -10,6 +10,7 @@ "zarrita": "0.3.2" }, "changesets": [ + "breezy-windows-notice", "clever-moose-hear", "cold-dancers-chew", "dull-apricots-work", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 2c725bbe..cc7cffef 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,17 @@ # @zarrita/core +## 0.1.0-next.17 + +### Patch Changes + +- Fix TypedArray types for TypeScript < 5.7 ([#239](https://github.com/manzt/zarrita.js/pull/239)) + + TypeScript changed the typing behavior of all `TypedArray` objects to now be generic over the underlying `ArrayBufferLike` type. In order to have our types be consistent with these changes, we needed to specify the `ArrayBuffer` 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`](https://github.com/manzt/zarrita.js/commit/7756cdc9f7dfc5a1fdfaed04d8f473b3d25a4e4e)]: + - @zarrita/storage@0.1.0-next.8 + - @zarrita/typedarray@0.1.0-next.4 + ## 0.1.0-next.16 ### Patch Changes diff --git a/packages/core/package.json b/packages/core/package.json index d7b16879..805ce2c0 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@zarrita/core", - "version": "0.1.0-next.16", + "version": "0.1.0-next.17", "license": "MIT", "type": "module", "sideEffects": false, diff --git a/packages/indexing/CHANGELOG.md b/packages/indexing/CHANGELOG.md index c1f8e59b..769192e1 100644 --- a/packages/indexing/CHANGELOG.md +++ b/packages/indexing/CHANGELOG.md @@ -1,5 +1,18 @@ # @zarrita/indexing +## 0.1.0-next.19 + +### Patch Changes + +- Fix TypedArray types for TypeScript < 5.7 ([#239](https://github.com/manzt/zarrita.js/pull/239)) + + TypeScript changed the typing behavior of all `TypedArray` objects to now be generic over the underlying `ArrayBufferLike` type. In order to have our types be consistent with these changes, we needed to specify the `ArrayBuffer` 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`](https://github.com/manzt/zarrita.js/commit/7756cdc9f7dfc5a1fdfaed04d8f473b3d25a4e4e)]: + - @zarrita/core@0.1.0-next.17 + - @zarrita/storage@0.1.0-next.8 + - @zarrita/typedarray@0.1.0-next.4 + ## 0.1.0-next.18 ### Patch Changes diff --git a/packages/indexing/package.json b/packages/indexing/package.json index 62180fc1..3a2c6c7f 100644 --- a/packages/indexing/package.json +++ b/packages/indexing/package.json @@ -1,6 +1,6 @@ { "name": "@zarrita/indexing", - "version": "0.1.0-next.18", + "version": "0.1.0-next.19", "license": "MIT", "type": "module", "sideEffects": false, diff --git a/packages/ndarray/CHANGELOG.md b/packages/ndarray/CHANGELOG.md index 88f99208..445926b4 100644 --- a/packages/ndarray/CHANGELOG.md +++ b/packages/ndarray/CHANGELOG.md @@ -1,5 +1,18 @@ # @zarrita/ndarray +## 0.1.0-next.19 + +### Patch Changes + +- Fix TypedArray types for TypeScript < 5.7 ([#239](https://github.com/manzt/zarrita.js/pull/239)) + + TypeScript changed the typing behavior of all `TypedArray` objects to now be generic over the underlying `ArrayBufferLike` type. In order to have our types be consistent with these changes, we needed to specify the `ArrayBuffer` 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`](https://github.com/manzt/zarrita.js/commit/7756cdc9f7dfc5a1fdfaed04d8f473b3d25a4e4e)]: + - @zarrita/core@0.1.0-next.17 + - @zarrita/indexing@0.1.0-next.19 + - @zarrita/storage@0.1.0-next.8 + ## 0.1.0-next.18 ### Patch Changes diff --git a/packages/ndarray/package.json b/packages/ndarray/package.json index 82474a8b..07d762f4 100644 --- a/packages/ndarray/package.json +++ b/packages/ndarray/package.json @@ -1,6 +1,6 @@ { "name": "@zarrita/ndarray", - "version": "0.1.0-next.18", + "version": "0.1.0-next.19", "license": "MIT", "type": "module", "sideEffects": false, diff --git a/packages/storage/CHANGELOG.md b/packages/storage/CHANGELOG.md index 9cac52d8..2e71bc3c 100644 --- a/packages/storage/CHANGELOG.md +++ b/packages/storage/CHANGELOG.md @@ -1,5 +1,13 @@ # @zarrita/storage +## 0.1.0-next.8 + +### Patch Changes + +- Fix TypedArray types for TypeScript < 5.7 ([#239](https://github.com/manzt/zarrita.js/pull/239)) + + TypeScript changed the typing behavior of all `TypedArray` objects to now be generic over the underlying `ArrayBufferLike` type. In order to have our types be consistent with these changes, we needed to specify the `ArrayBuffer` 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. + ## 0.1.0-next.7 ### Patch Changes diff --git a/packages/storage/package.json b/packages/storage/package.json index 0281db4d..a6375da2 100644 --- a/packages/storage/package.json +++ b/packages/storage/package.json @@ -1,6 +1,6 @@ { "name": "@zarrita/storage", - "version": "0.1.0-next.7", + "version": "0.1.0-next.8", "license": "MIT", "type": "module", "sideEffects": false, diff --git a/packages/typedarray/CHANGELOG.md b/packages/typedarray/CHANGELOG.md index cb731b93..8c44009c 100644 --- a/packages/typedarray/CHANGELOG.md +++ b/packages/typedarray/CHANGELOG.md @@ -1,5 +1,13 @@ # @zarrita/typedarray +## 0.1.0-next.4 + +### Patch Changes + +- Fix TypedArray types for TypeScript < 5.7 ([#239](https://github.com/manzt/zarrita.js/pull/239)) + + TypeScript changed the typing behavior of all `TypedArray` objects to now be generic over the underlying `ArrayBufferLike` type. In order to have our types be consistent with these changes, we needed to specify the `ArrayBuffer` 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. + ## 0.1.0-next.3 ### Patch Changes diff --git a/packages/typedarray/package.json b/packages/typedarray/package.json index bc0de8c6..4810ad98 100644 --- a/packages/typedarray/package.json +++ b/packages/typedarray/package.json @@ -1,6 +1,6 @@ { "name": "@zarrita/typedarray", - "version": "0.1.0-next.3", + "version": "0.1.0-next.4", "license": "MIT", "type": "module", "sideEffects": false, @@ -10,7 +10,9 @@ "import": "./src/index.ts" } }, - "files": ["dist"], + "files": [ + "dist" + ], "publishConfig": { "main": "dist/src/index.js", "exports": { diff --git a/packages/zarrita/CHANGELOG.md b/packages/zarrita/CHANGELOG.md index 13b46edc..ad86a09c 100644 --- a/packages/zarrita/CHANGELOG.md +++ b/packages/zarrita/CHANGELOG.md @@ -1,5 +1,18 @@ # zarrita +## 0.4.0-next.19 + +### Patch Changes + +- Fix TypedArray types for TypeScript < 5.7 ([#239](https://github.com/manzt/zarrita.js/pull/239)) + + TypeScript changed the typing behavior of all `TypedArray` objects to now be generic over the underlying `ArrayBufferLike` type. In order to have our types be consistent with these changes, we needed to specify the `ArrayBuffer` 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`](https://github.com/manzt/zarrita.js/commit/7756cdc9f7dfc5a1fdfaed04d8f473b3d25a4e4e)]: + - @zarrita/core@0.1.0-next.17 + - @zarrita/indexing@0.1.0-next.19 + - @zarrita/storage@0.1.0-next.8 + ## 0.4.0-next.18 ### Patch Changes diff --git a/packages/zarrita/package.json b/packages/zarrita/package.json index 8e25f562..00234017 100644 --- a/packages/zarrita/package.json +++ b/packages/zarrita/package.json @@ -1,6 +1,6 @@ { "name": "zarrita", - "version": "0.4.0-next.18", + "version": "0.4.0-next.19", "license": "MIT", "homepage": "https://manzt.github.io/zarrita.js/", "repository": {