Skip to content

Commit

Permalink
Version Packages (#5152)
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] authored Dec 24, 2024
1 parent bf6119a commit e754939
Show file tree
Hide file tree
Showing 13 changed files with 64 additions and 28 deletions.
22 changes: 0 additions & 22 deletions .changeset/big-pumas-search.md

This file was deleted.

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

## 5.19.1

### Patch Changes

- [#5139](https://github.com/statelyai/xstate/pull/5139) [`bf6119a7310a878afbf4f5b01f5e24288f9a0f16`](https://github.com/statelyai/xstate/commit/bf6119a7310a878afbf4f5b01f5e24288f9a0f16) Thanks [@SandroMaglione](https://github.com/SandroMaglione)! - Make `spawn` input required when defined inside referenced actor:

```ts
const childMachine = createMachine({
types: { input: {} as { value: number } }
});

const machine = createMachine({
types: {} as { context: { ref: ActorRefFrom<typeof childMachine> } },
context: ({ spawn }) => ({
ref: spawn(
childMachine,
// Input is now required!
{ input: { value: 42 } }
)
})
});
```

## 5.19.0

### Minor 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.19.0",
"version": "5.19.1",
"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

## 3.0.1

### Patch Changes

- Updated dependencies [[`bf6119a7310a878afbf4f5b01f5e24288f9a0f16`](https://github.com/statelyai/xstate/commit/bf6119a7310a878afbf4f5b01f5e24288f9a0f16)]:
- [email protected]

## 3.0.0

### Patch 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": "3.0.0",
"version": "3.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

## 5.0.1

### Patch Changes

- Updated dependencies [[`bf6119a7310a878afbf4f5b01f5e24288f9a0f16`](https://github.com/statelyai/xstate/commit/bf6119a7310a878afbf4f5b01f5e24288f9a0f16)]:
- [email protected]

## 5.0.0

### 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": "5.0.0",
"version": "5.0.1",
"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

## 1.0.1

### Patch Changes

- Updated dependencies [[`bf6119a7310a878afbf4f5b01f5e24288f9a0f16`](https://github.com/statelyai/xstate/commit/bf6119a7310a878afbf4f5b01f5e24288f9a0f16)]:
- [email protected]

## 1.0.0

### 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": "1.0.0",
"version": "1.0.1",
"description": "XState tools for SolidJS",
"keywords": [
"state",
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

## 4.0.2

### Patch Changes

- Updated dependencies [[`bf6119a7310a878afbf4f5b01f5e24288f9a0f16`](https://github.com/statelyai/xstate/commit/bf6119a7310a878afbf4f5b01f5e24288f9a0f16)]:
- [email protected]

## 4.0.1

### 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": "4.0.1",
"version": "4.0.2",
"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

## 4.0.1

### Patch Changes

- Updated dependencies [[`bf6119a7310a878afbf4f5b01f5e24288f9a0f16`](https://github.com/statelyai/xstate/commit/bf6119a7310a878afbf4f5b01f5e24288f9a0f16)]:
- [email protected]

## 4.0.0

### 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": "4.0.0",
"version": "4.0.1",
"description": "XState tools for Vue",
"keywords": [
"state",
Expand Down

0 comments on commit e754939

Please sign in to comment.