Skip to content

Commit 5ac04ee

Browse files
committed
Update changelogs
1 parent 554614e commit 5ac04ee

6 files changed

Lines changed: 35 additions & 23 deletions

File tree

packages/snaps-cli/CHANGELOG.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
## [8.2.0]
1111

12-
### Uncategorized
12+
### Changed
1313

14-
- feat: Allow eval in watch mode ([#3553](https://github.com/MetaMask/snaps/pull/3553))
15-
- chore: update configuration section anchor in snaps-cli/README ([#3537](https://github.com/MetaMask/snaps/pull/3537))
14+
- Add support for eval in watch mode ([#3553](https://github.com/MetaMask/snaps/pull/3553))
15+
- This enables some extra validation checks in watch mode, which can help
16+
catch issues earlier in the development process.
1617

1718
## [8.1.1]
1819

packages/snaps-controllers/CHANGELOG.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
## [14.2.1]
1111

12-
### Uncategorized
12+
### Fixed
1313

14-
- fix: Prevent double scheduling events and ensure long-running events work correctly ([#3561](https://github.com/MetaMask/snaps/pull/3561))
15-
- fix: Destroying execution environment streams should emit events ([#3074](https://github.com/MetaMask/snaps/pull/3074))
16-
- fix: Ignore terminate calls to not executing Snaps ([#3559](https://github.com/MetaMask/snaps/pull/3559))
17-
- fix: Properly stop Snaps when clearing state ([#3552](https://github.com/MetaMask/snaps/pull/3552))
18-
- feat: Add `snap_trackError` and `snap_trackEvent` support to `snaps-jest` ([#3546](https://github.com/MetaMask/snaps/pull/3546))
14+
- Prevent double scheduling events and ensure long-running events work correctly ([#3561](https://github.com/MetaMask/snaps/pull/3561))
15+
- Emit event when destroying execution environment streams ([#3074](https://github.com/MetaMask/snaps/pull/3074))
16+
- Ignore terminate calls to not executing Snaps ([#3559](https://github.com/MetaMask/snaps/pull/3559))
17+
- Properly stop Snaps when clearing state ([#3552](https://github.com/MetaMask/snaps/pull/3552))
1918

2019
## [14.2.0]
2120

packages/snaps-execution-environments/CHANGELOG.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
## [10.2.1]
1111

12-
### Uncategorized
12+
### Changed
13+
14+
- Bump ses from `1.13.1` to `1.14.0` ([#3557](https://github.com/MetaMask/snaps/pull/3557))
15+
16+
### Fixed
1317

14-
- fix: Destroying execution environment streams should emit events ([#3074](https://github.com/MetaMask/snaps/pull/3074))
15-
- chore: Bump ses from 1.13.1 to 1.14.0 ([#3557](https://github.com/MetaMask/snaps/pull/3557))
16-
- chore: Bump @lavamoat/webpack from 1.0.0 to 1.1.0 ([#3548](https://github.com/MetaMask/snaps/pull/3548))
18+
- Ignore "Premature close" stream messages ([#3074](https://github.com/MetaMask/snaps/pull/3074))
1719

1820
## [10.2.0]
1921

packages/snaps-simulation/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
## [3.4.1]
1111

12-
### Uncategorized
12+
### Fixed
1313

14-
- fix: Destroying execution environment streams should emit events ([#3074](https://github.com/MetaMask/snaps/pull/3074))
14+
- Ignore "Premature close" stream messages ([#3074](https://github.com/MetaMask/snaps/pull/3074))
1515

1616
## [3.4.0]
1717

packages/snaps-utils/CHANGELOG.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
## [11.4.0]
1111

12-
### Uncategorized
12+
### Added
13+
14+
- Add support for eval in watch mode for Snaps CLI ([#3553](https://github.com/MetaMask/snaps/pull/3553))
15+
16+
### Changed
17+
18+
- Bump ses from `1.13.1` to `1.14.0` ([#3557](https://github.com/MetaMask/snaps/pull/3557))
19+
20+
### Fixed
1321

14-
- fix: correct typos in Snap types and validation ([#3545](https://github.com/MetaMask/snaps/pull/3545))
15-
- feat: Allow eval in watch mode ([#3553](https://github.com/MetaMask/snaps/pull/3553))
16-
- chore: Bump ses from 1.13.1 to 1.14.0 ([#3557](https://github.com/MetaMask/snaps/pull/3557))
22+
- Fix typos in `SnapAuxiliaryFilesStruct` variable and `SnapAuxiliaryFile` type ([#3545](https://github.com/MetaMask/snaps/pull/3545))
23+
- `SnapAuxilaryFilesStruct` and `SnapAuxilaryFile` are still exported for
24+
backwards compatibility, but will be removed in a future release.
1725

1826
## [11.3.0]
1927

packages/snaps-webpack-plugin/CHANGELOG.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
## [5.1.0]
1111

12-
### Uncategorized
12+
### Added
13+
14+
- Add support for eval in watch mode for Snaps CLI ([#3553](https://github.com/MetaMask/snaps/pull/3553))
15+
16+
### Changed
1317

14-
- feat: Allow eval in watch mode ([#3553](https://github.com/MetaMask/snaps/pull/3553))
15-
- chore: Bump @metamask/utils from 11.4.1 to 11.4.2 ([#3526](https://github.com/MetaMask/snaps/pull/3526))
16-
- chore: Bump @metamask/utils from 11.4.0 to 11.4.1 ([#3516](https://github.com/MetaMask/snaps/pull/3516))
18+
- Bump @metamask/utils from `11.4.0` to `11.4.2` ([#3516](https://github.com/MetaMask/snaps/pull/3516), [#3526](https://github.com/MetaMask/snaps/pull/3526))
1719

1820
## [5.0.0]
1921

0 commit comments

Comments
 (0)