Skip to content

Commit

Permalink
chore: version packages (beta)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed May 3, 2024
1 parent 1626da8 commit ee35134
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 16 deletions.
36 changes: 22 additions & 14 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
@@ -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"
]
}
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`.

`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
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

0 comments on commit ee35134

Please sign in to comment.