Skip to content

Commit

Permalink
Version Packages (#5089)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] committed Sep 21, 2024
1 parent 2596396 commit fe91f9e
Show file tree
Hide file tree
Showing 16 changed files with 81 additions and 44 deletions.
5 changes: 0 additions & 5 deletions .changeset/bright-geckos-brake.md

This file was deleted.

32 changes: 0 additions & 32 deletions .changeset/moody-rabbits-whisper.md

This file was deleted.

6 changes: 6 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# xstate

## 5.18.2

### Patch Changes

- [#5079](https://github.com/statelyai/xstate/pull/5079) [`25963966c394fc904dc9b701a420b6e204ebe7f7`](https://github.com/statelyai/xstate/commit/25963966c394fc904dc9b701a420b6e204ebe7f7) Thanks [@davidkpiano](https://github.com/davidkpiano)! - The inspection event interfaces now expect `ActorRefLike` instead of `AnyActorRef`

## 5.18.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "xstate",
"version": "5.18.1",
"version": "5.18.2",
"description": "Finite State Machines and Statecharts for the Modern Web.",
"main": "dist/xstate.cjs.js",
"module": "dist/xstate.esm.js",
Expand Down
7 changes: 7 additions & 0 deletions packages/xstate-graph/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @xstate/graph

## 2.0.1

### Patch Changes

- Updated dependencies [[`25963966c394fc904dc9b701a420b6e204ebe7f7`](https://github.com/statelyai/xstate/commit/25963966c394fc904dc9b701a420b6e204ebe7f7)]:
- xstate@5.18.2

## 2.0.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/xstate-graph/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@xstate/graph",
"version": "2.0.0",
"version": "2.0.1",
"description": "XState graph utilities",
"keywords": [
"state",
Expand Down
7 changes: 7 additions & 0 deletions packages/xstate-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 4.1.3

### Patch Changes

- Updated dependencies [[`25963966c394fc904dc9b701a420b6e204ebe7f7`](https://github.com/statelyai/xstate/commit/25963966c394fc904dc9b701a420b6e204ebe7f7)]:
- xstate@5.18.2

## 4.1.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/xstate-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@xstate/react",
"version": "4.1.2",
"version": "4.1.3",
"description": "XState tools for React",
"keywords": [
"state",
Expand Down
7 changes: 7 additions & 0 deletions packages/xstate-solid/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @xstate/solid

## 0.2.2

### Patch Changes

- Updated dependencies [[`25963966c394fc904dc9b701a420b6e204ebe7f7`](https://github.com/statelyai/xstate/commit/25963966c394fc904dc9b701a420b6e204ebe7f7)]:
- xstate@5.18.2

## 0.2.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/xstate-solid/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@xstate/solid",
"version": "0.2.1",
"version": "0.2.2",
"description": "XState tools for SolidJS",
"keywords": [
"state",
Expand Down
33 changes: 33 additions & 0 deletions packages/xstate-store/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,38 @@
# @xstate/store

## 2.6.0

### Minor Changes

- [#5079](https://github.com/statelyai/xstate/pull/5079) [`25963966c394fc904dc9b701a420b6e204ebe7f7`](https://github.com/statelyai/xstate/commit/25963966c394fc904dc9b701a420b6e204ebe7f7) Thanks [@davidkpiano](https://github.com/davidkpiano)! - The `createStoreWithProducer(…)` function now uses the new configuration API:

```ts
import { createStoreWithProducer } from '@xstate/store';
// DEPRECATED API
// const store = createStoreWithProducer(
// producer,
// {
// count: 0
// },
// {
// inc: (context, event) => {
// context.count++;
// }
// }
// );

const store = createStoreWithProducer(producer, {
context: {
count: 0
},
on: {
inc: (context, event) => {
context.count++;
}
}
});
```

## 2.5.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/xstate-store/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@xstate/store",
"version": "2.5.0",
"version": "2.6.0",
"description": "Simple stores",
"keywords": [
"store",
Expand Down
7 changes: 7 additions & 0 deletions packages/xstate-svelte/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @xstate/svelte

## 3.0.5

### Patch Changes

- Updated dependencies [[`25963966c394fc904dc9b701a420b6e204ebe7f7`](https://github.com/statelyai/xstate/commit/25963966c394fc904dc9b701a420b6e204ebe7f7)]:
- xstate@5.18.2

## 3.0.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/xstate-svelte/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@xstate/svelte",
"version": "3.0.4",
"version": "3.0.5",
"description": "XState tools for Svelte",
"keywords": [
"state",
Expand Down
7 changes: 7 additions & 0 deletions packages/xstate-vue/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @xstate/vue

## 3.1.4

### Patch Changes

- Updated dependencies [[`25963966c394fc904dc9b701a420b6e204ebe7f7`](https://github.com/statelyai/xstate/commit/25963966c394fc904dc9b701a420b6e204ebe7f7)]:
- xstate@5.18.2

## 3.1.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/xstate-vue/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@xstate/vue",
"version": "3.1.3",
"version": "3.1.4",
"description": "XState tools for Vue",
"keywords": [
"state",
Expand Down

0 comments on commit fe91f9e

Please sign in to comment.