diff --git a/.changeset/pre.json b/.changeset/pre.json index 315dd07..1aa5aa3 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -1,16 +1,24 @@ { - "mode": "pre", - "tag": "beta", - "initialVersions": { - "global-store": "1.0.0-beta.21", - "stable-store": "0.0.0", - "astro-app": "0.0.1", - "examples-library": "0.0.0", - "stable-versioned-store": "0.0.0", - "tests-node-pkg": "1.0.0", - "tests-rollup-pkg": "1.0.0", - "tests-webpack5-app-es5": "1.0.0", - "tests-webpack5-pkg": "1.0.0" - }, - "changesets": ["fuzzy-coats-exercise", "thick-pillows-taste", "three-kangaroos-act", "wicked-paws-fly"] + "mode": "pre", + "tag": "beta", + "initialVersions": { + "global-store": "1.0.0-beta.21", + "stable-store": "0.0.0", + "astro-app": "0.0.1", + "examples-library": "0.0.0", + "stable-versioned-store": "0.0.0", + "tests-node-pkg": "1.0.0", + "tests-rollup-pkg": "1.0.0", + "tests-webpack5-app-es5": "1.0.0", + "tests-webpack5-pkg": "1.0.0" + }, + "changesets": [ + "fair-seals-dream", + "fuzzy-coats-exercise", + "rotten-pumas-dance", + "thick-pillows-taste", + "three-kangaroos-act", + "weak-mirrors-float", + "wicked-paws-fly" + ] } diff --git a/packages/global-store/CHANGELOG.md b/packages/global-store/CHANGELOG.md index 6cf779e..360190a 100644 --- a/packages/global-store/CHANGELOG.md +++ b/packages/global-store/CHANGELOG.md @@ -1,5 +1,13 @@ # global-store +## 1.0.0-beta.23 + +### Patch Changes + +- 998833b: Fix handling when `key` is unknown in `initializeAsyncStore()` +- 998833b: Update TypeScript to 5.4.5. + Adjust type to support `exactOptionalPropertyTypes`. + ## 1.0.0-beta.22 ### Patch Changes diff --git a/packages/global-store/package.json b/packages/global-store/package.json index 00ce5b4..13e5c59 100644 --- a/packages/global-store/package.json +++ b/packages/global-store/package.json @@ -1,6 +1,6 @@ { "name": "global-store", - "version": "1.0.0-beta.22", + "version": "1.0.0-beta.23", "description": "A library provides version stable stores for libraries.", "homepage": "https://github.com/unional/global-store", "bugs": { diff --git a/packages/stable-store/CHANGELOG.md b/packages/stable-store/CHANGELOG.md index c3b4b22..523134b 100644 --- a/packages/stable-store/CHANGELOG.md +++ b/packages/stable-store/CHANGELOG.md @@ -1,5 +1,22 @@ # stable-store +## 1.0.0-beta.2 + +### Minor Changes + +- 93304c7: Drop support of `MissingInit<>`. + It now allows creating store with type specified but not initial value. + In that case, the resulting store will add `| undefined` to the value type. + + This change is made to accommodate the usage of `options`. + + `options` now accepts `onGet` and `onSet` so that you can add the listener while creating the store. + +### Patch Changes + +- 998833b: Update TypeScript to 5.4.5. + Adjust type to support `exactOptionalPropertyTypes`. + ## 1.0.0-beta.1 ### Patch Changes diff --git a/packages/stable-store/package.json b/packages/stable-store/package.json index 363f605..c9d3fc7 100644 --- a/packages/stable-store/package.json +++ b/packages/stable-store/package.json @@ -1,6 +1,6 @@ { "name": "stable-store", - "version": "1.0.0-beta.1", + "version": "1.0.0-beta.2", "description": "A single-versioned store to share anything in memory", "keywords": [ "store",