From ee2db1b4a76a746737075c8c63416a88faa4f902 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 3 Apr 2023 15:45:18 +0000 Subject: [PATCH 1/2] 8.0.0 --- CHANGELOG.md | 16 +++++++++++++++- package.json | 2 +- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2591b86..c301281 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [8.0.0] +### Uncategorized +- Allow falsy initial state ([#74](https://github.com/MetaMask/obs-store/pull/74)) +- Bump json5 from 1.0.1 to 1.0.2 ([#71](https://github.com/MetaMask/obs-store/pull/71)) +- Bump ajv from 6.12.2 to 6.12.6 ([#63](https://github.com/MetaMask/obs-store/pull/63)) +- Bump minimist from 1.2.5 to 1.2.7 ([#70](https://github.com/MetaMask/obs-store/pull/70)) +- Bump minimatch from 3.0.3 to 3.1.2 ([#69](https://github.com/MetaMask/obs-store/pull/69)) +- Bump qs from 6.5.2 to 6.5.3 ([#68](https://github.com/MetaMask/obs-store/pull/68)) +- Bump tar from 6.1.4 to 6.1.11 ([#60](https://github.com/MetaMask/obs-store/pull/60)) +- Bump path-parse from 1.0.6 to 1.0.7 ([#59](https://github.com/MetaMask/obs-store/pull/59)) +- Bump @metamask/auto-changelog from 2.4.0 to 2.5.0 ([#57](https://github.com/MetaMask/obs-store/pull/57)) +- Bump tar from 6.1.0 to 6.1.4 ([#58](https://github.com/MetaMask/obs-store/pull/58)) + ## [7.0.0] ### Changed - **BREAKING**: Increase minimum Node.js version to v12 ([#40](https://github.com/MetaMask/obs-store/pull/40)) @@ -37,7 +50,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - All exports are now named, and exposed at the main entry point. - Some export names have changed, but they should still be recognizable. -[Unreleased]: https://github.com/MetaMask/obs-store/compare/v7.0.0...HEAD +[Unreleased]: https://github.com/MetaMask/obs-store/compare/v8.0.0...HEAD +[8.0.0]: https://github.com/MetaMask/obs-store/compare/v7.0.0...v8.0.0 [7.0.0]: https://github.com/MetaMask/obs-store/compare/v6.0.2...v7.0.0 [6.0.2]: https://github.com/MetaMask/obs-store/compare/v6.0.1...v6.0.2 [6.0.1]: https://github.com/MetaMask/obs-store/compare/v6.0.0...v6.0.1 diff --git a/package.json b/package.json index 0d19950..6e2c8ea 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/obs-store", - "version": "7.0.0", + "version": "8.0.0", "description": "`ObservableStore` is a synchronous in-memory store for a single value, that you can subscribe to updates for.", "homepage": "https://github.com/MetaMask/obs-store#readme", "bugs": { From 82fe0bb668c2a84da291c5d49d66e57533690cdb Mon Sep 17 00:00:00 2001 From: Mark Stacey Date: Mon, 3 Apr 2023 13:19:08 -0230 Subject: [PATCH 2/2] Update changelog --- CHANGELOG.md | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c301281..df9be09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,17 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ## [8.0.0] -### Uncategorized -- Allow falsy initial state ([#74](https://github.com/MetaMask/obs-store/pull/74)) -- Bump json5 from 1.0.1 to 1.0.2 ([#71](https://github.com/MetaMask/obs-store/pull/71)) -- Bump ajv from 6.12.2 to 6.12.6 ([#63](https://github.com/MetaMask/obs-store/pull/63)) -- Bump minimist from 1.2.5 to 1.2.7 ([#70](https://github.com/MetaMask/obs-store/pull/70)) -- Bump minimatch from 3.0.3 to 3.1.2 ([#69](https://github.com/MetaMask/obs-store/pull/69)) -- Bump qs from 6.5.2 to 6.5.3 ([#68](https://github.com/MetaMask/obs-store/pull/68)) -- Bump tar from 6.1.4 to 6.1.11 ([#60](https://github.com/MetaMask/obs-store/pull/60)) -- Bump path-parse from 1.0.6 to 1.0.7 ([#59](https://github.com/MetaMask/obs-store/pull/59)) -- Bump @metamask/auto-changelog from 2.4.0 to 2.5.0 ([#57](https://github.com/MetaMask/obs-store/pull/57)) -- Bump tar from 6.1.0 to 6.1.4 ([#58](https://github.com/MetaMask/obs-store/pull/58)) +### Changed +- **BREAKING:** Allow falsy initial state ([#74](https://github.com/MetaMask/obs-store/pull/74)) + - This fixes an accidental breaking change introduced in v6.0.2. If you're updating from a version earlier than v6.0.2, this is non-breaking. + - This is only breaking if you are relying on falsy initial state being replaced with an empty object. ## [7.0.0] ### Changed