diff --git a/.changeset/brave-seas-impress.md b/.changeset/brave-seas-impress.md deleted file mode 100644 index f12a1a8e..00000000 --- a/.changeset/brave-seas-impress.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@xstate/cli": minor -"@xstate/tools-shared": minor -"stately-vscode": minor ---- - -Gave typegen the ability to calculate all of the events which can fire exit actions. diff --git a/.changeset/curvy-wombats-tickle.md b/.changeset/curvy-wombats-tickle.md deleted file mode 100644 index 6c445bd8..00000000 --- a/.changeset/curvy-wombats-tickle.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -"@xstate/cli": patch -"stately-vscode": patch -"@xstate/tools-shared": patch ---- - -pr: #170 -commit: bd0972c - -Fixed a couple of issues with entry and exit actions not having the appropriate event types associated with them in the generated typegen information. Those issues were mainly related to actions defined on the "path" in the machine in between the source and target states. diff --git a/.changeset/dirty-comics-wink.md b/.changeset/dirty-comics-wink.md deleted file mode 100644 index ab5c7905..00000000 --- a/.changeset/dirty-comics-wink.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"stately-vscode": minor ---- - -Adds a setting to sync the visual editor theme with the VS Code theme diff --git a/.changeset/giant-hats-pay.md b/.changeset/giant-hats-pay.md deleted file mode 100644 index 678858e1..00000000 --- a/.changeset/giant-hats-pay.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"stately-vscode": minor ---- - -Changes made outside VS Code are now sent to the visual editor. diff --git a/.changeset/tasty-seals-speak.md b/.changeset/tasty-seals-speak.md deleted file mode 100644 index 982a2126..00000000 --- a/.changeset/tasty-seals-speak.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@xstate/cli": patch -"stately-vscode": patch -"@xstate/tools-shared": patch ---- - -Fixed an issue with some entry actions between the target and the resolved leaf not having the appropriate event types associated them in the generated typegen information. diff --git a/.changeset/thick-drinks-hope.md b/.changeset/thick-drinks-hope.md deleted file mode 100644 index 3687da51..00000000 --- a/.changeset/thick-drinks-hope.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"stately-vscode": minor ---- - -Added a snippet, xsm, to create a working machine you can edit using the visual editor in seconds. diff --git a/apps/cli/CHANGELOG.md b/apps/cli/CHANGELOG.md index 5a07f844..a40e6537 100644 --- a/apps/cli/CHANGELOG.md +++ b/apps/cli/CHANGELOG.md @@ -1,5 +1,20 @@ # @xstate/cli +## 0.3.0 + +### Minor Changes + +- [#114](https://github.com/statelyai/xstate-tools/pull/114) [`267db6b`](https://github.com/statelyai/xstate-tools/commit/267db6b00f6f7fda1145e0631638620b7649afe0) Thanks [@mattpocock](https://github.com/mattpocock)! - Gave typegen the ability to calculate all of the events which can fire exit actions. + +### Patch Changes + +- [#170](https://github.com/statelyai/xstate-tools/pull/170) [`bd0972c`](https://github.com/statelyai/xstate-tools/commit/bd0972c) Thanks [@Andarist](https://github.com/Andarist)! - Fixed a couple of issues with entry and exit actions not having the appropriate event types associated with them in the generated typegen information. Those issues were mainly related to actions defined on the "path" in the machine in between the source and target states. + +* [#182](https://github.com/statelyai/xstate-tools/pull/182) [`fa09f36`](https://github.com/statelyai/xstate-tools/commit/fa09f3648fba735ec205819c3660b20cfac3f6fe) Thanks [@Andarist](https://github.com/Andarist)! - Fixed an issue with some entry actions between the target and the resolved leaf not having the appropriate event types associated them in the generated typegen information. + +* Updated dependencies [[`267db6b`](https://github.com/statelyai/xstate-tools/commit/267db6b00f6f7fda1145e0631638620b7649afe0), [`2e1a1f5`](https://github.com/statelyai/xstate-tools/commit/2e1a1f5554481867d3d77916e00c36c98b497f5a), [`fa09f36`](https://github.com/statelyai/xstate-tools/commit/fa09f3648fba735ec205819c3660b20cfac3f6fe)]: + - @xstate/tools-shared@1.2.0 + ## 0.2.1 ### Patch Changes diff --git a/apps/cli/package.json b/apps/cli/package.json index e558140a..19e468e7 100644 --- a/apps/cli/package.json +++ b/apps/cli/package.json @@ -1,6 +1,6 @@ { "name": "@xstate/cli", - "version": "0.2.1", + "version": "0.3.0", "bin": { "xstate": "./bin/bin.js" }, @@ -19,7 +19,7 @@ "dependencies": { "@babel/core": "^7.12.10", "@xstate/machine-extractor": "0.7.0", - "@xstate/tools-shared": "1.1.7", + "@xstate/tools-shared": "1.2.0", "chokidar": "^3.5.3", "commander": "^8.0.0", "xstate": "^4.29.0" diff --git a/apps/extension/client/CHANGELOG.md b/apps/extension/client/CHANGELOG.md index 8072bfa8..06e81ceb 100644 --- a/apps/extension/client/CHANGELOG.md +++ b/apps/extension/client/CHANGELOG.md @@ -1,5 +1,26 @@ # stately-vscode +## 1.9.0 + +### Minor Changes + +- [#114](https://github.com/statelyai/xstate-tools/pull/114) [`267db6b`](https://github.com/statelyai/xstate-tools/commit/267db6b00f6f7fda1145e0631638620b7649afe0) Thanks [@mattpocock](https://github.com/mattpocock)! - Gave typegen the ability to calculate all of the events which can fire exit actions. + +* [#189](https://github.com/statelyai/xstate-tools/pull/189) [`4ed3d9b`](https://github.com/statelyai/xstate-tools/commit/4ed3d9b9c3530569cd878d98b319b011d1edfb3a) Thanks [@farskid](https://github.com/farskid)! - Adds a setting to sync the visual editor theme with the VS Code theme + +- [#188](https://github.com/statelyai/xstate-tools/pull/188) [`e54ce0d`](https://github.com/statelyai/xstate-tools/commit/e54ce0d03040a62dd045ad892c9533305081109e) Thanks [@mellson](https://github.com/mellson)! - Changes made outside VS Code are now sent to the visual editor. + +* [#144](https://github.com/statelyai/xstate-tools/pull/144) [`0af1105`](https://github.com/statelyai/xstate-tools/commit/0af1105ddba0c00a04bfa11470261a69d15abc1f) Thanks [@mellson](https://github.com/mellson)! - Added a snippet, xsm, to create a working machine you can edit using the visual editor in seconds. + +### Patch Changes + +- [#170](https://github.com/statelyai/xstate-tools/pull/170) [`bd0972c`](https://github.com/statelyai/xstate-tools/commit/bd0972c) Thanks [@Andarist](https://github.com/Andarist)! - Fixed a couple of issues with entry and exit actions not having the appropriate event types associated with them in the generated typegen information. Those issues were mainly related to actions defined on the "path" in the machine in between the source and target states. + +* [#182](https://github.com/statelyai/xstate-tools/pull/182) [`fa09f36`](https://github.com/statelyai/xstate-tools/commit/fa09f3648fba735ec205819c3660b20cfac3f6fe) Thanks [@Andarist](https://github.com/Andarist)! - Fixed an issue with some entry actions between the target and the resolved leaf not having the appropriate event types associated them in the generated typegen information. + +* Updated dependencies [[`267db6b`](https://github.com/statelyai/xstate-tools/commit/267db6b00f6f7fda1145e0631638620b7649afe0), [`2e1a1f5`](https://github.com/statelyai/xstate-tools/commit/2e1a1f5554481867d3d77916e00c36c98b497f5a), [`fa09f36`](https://github.com/statelyai/xstate-tools/commit/fa09f3648fba735ec205819c3660b20cfac3f6fe)]: + - @xstate/tools-shared@1.2.0 + ## 1.8.3 ### Patch Changes diff --git a/apps/extension/client/package.json b/apps/extension/client/package.json index fdd7f897..d5b3cd49 100644 --- a/apps/extension/client/package.json +++ b/apps/extension/client/package.json @@ -4,7 +4,7 @@ "description": "Visual editing, autocomplete and typegen for XState", "license": "MIT", "author": "Stately Team", - "version": "1.8.3", + "version": "1.9.0", "private": true, "engines": { "vscode": "^1.52.0" @@ -111,7 +111,7 @@ "dependencies": { "@types/lz-string": "^1.3.34", "@xstate/inspect": "^0.4.1", - "@xstate/tools-shared": "1.1.7", + "@xstate/tools-shared": "1.2.0", "lz-string": "^1.4.4", "vscode-languageclient": "^7.0.0", "xstate": "^4.29.0" diff --git a/apps/extension/server/package.json b/apps/extension/server/package.json index c3b4ecd0..a5980035 100644 --- a/apps/extension/server/package.json +++ b/apps/extension/server/package.json @@ -11,7 +11,7 @@ "url": "https://github.com/Microsoft/vscode-extension-samples" }, "dependencies": { - "@xstate/tools-shared": "1.1.7", + "@xstate/tools-shared": "1.2.0", "vscode-languageserver": "^7.0.0", "vscode-languageserver-textdocument": "^1.0.1", "xstate": "^4.29.0" diff --git a/packages/shared/CHANGELOG.md b/packages/shared/CHANGELOG.md index e57daec6..77469f46 100644 --- a/packages/shared/CHANGELOG.md +++ b/packages/shared/CHANGELOG.md @@ -1,5 +1,17 @@ # @xstate/tools-shared +## 1.2.0 + +### Minor Changes + +- [#114](https://github.com/statelyai/xstate-tools/pull/114) [`267db6b`](https://github.com/statelyai/xstate-tools/commit/267db6b00f6f7fda1145e0631638620b7649afe0) Thanks [@mattpocock](https://github.com/mattpocock)! - Gave typegen the ability to calculate all of the events which can fire exit actions. + +### Patch Changes + +- [#170](https://github.com/statelyai/xstate-tools/pull/170) [`bd0972c`](https://github.com/statelyai/xstate-tools/commit/bd0972c) Thanks [@Andarist](https://github.com/Andarist)! - Fixed a couple of issues with entry and exit actions not having the appropriate event types associated with them in the generated typegen information. Those issues were mainly related to actions defined on the "path" in the machine in between the source and target states. + +* [#182](https://github.com/statelyai/xstate-tools/pull/182) [`fa09f36`](https://github.com/statelyai/xstate-tools/commit/fa09f3648fba735ec205819c3660b20cfac3f6fe) Thanks [@Andarist](https://github.com/Andarist)! - Fixed an issue with some entry actions between the target and the resolved leaf not having the appropriate event types associated them in the generated typegen information. + ## 1.1.7 ### Patch Changes diff --git a/packages/shared/package.json b/packages/shared/package.json index e4340ebf..be21fcb6 100644 --- a/packages/shared/package.json +++ b/packages/shared/package.json @@ -1,6 +1,6 @@ { "name": "@xstate/tools-shared", - "version": "1.1.7", + "version": "1.2.0", "main": "dist/xstate-tools-shared.cjs.js", "license": "MIT", "dependencies": {