Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 23 additions & 14 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,25 @@
{
"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",
"tender-toys-remember",
"thick-pillows-taste",
"three-kangaroos-act",
"weak-mirrors-float",
"wicked-paws-fly"
]
}
8 changes: 8 additions & 0 deletions packages/global-store/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/global-store/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
17 changes: 17 additions & 0 deletions packages/stable-store/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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`.

- 5d3a0e2: `getStore()` takes an object instead.

### Patch Changes

- 998833b: Update TypeScript to 5.4.5.
Adjust type to support `exactOptionalPropertyTypes`.

## 1.0.0-beta.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/stable-store/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down