From: Eduardo San Martin Morote Date: Fri, 30 Jul 2021 14:16:37 +0000 (+0200) Subject: release: v2.0.0-rc.1 X-Git-Tag: v2.0.0-rc.1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2a1d789e28794fe0c759e6817055e071ff612c90;p=thirdparty%2Fvuejs%2Fpinia.git release: v2.0.0-rc.1 --- diff --git a/CHANGELOG.md b/CHANGELOG.md index c19d2491..b1a056d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,21 @@ +# [2.0.0-rc.1](https://github.com/posva/pinia/compare/v2.0.0-rc.0...v2.0.0-rc.1) (2021-07-30) + +Posted https://github.com/posva/pinia/issues/592 to help people installing or upgrading Pinia. + +### Bug Fixes + +- collect reactive effects ran in plugins ([54cee00](https://github.com/posva/pinia/commit/54cee009cf15a5086ad031da65278a7689230587)) +- **devtools:** update when custom properties change ([7dcb71e](https://github.com/posva/pinia/commit/7dcb71e8182900c451a56f1ad9e0e931dba48dcb)) +- **store:** keep original refs with $reset ([a7dadff](https://github.com/posva/pinia/commit/a7dadfff8aae4abb83696a47904b030295408a09)), closes [#593](https://github.com/posva/pinia/issues/593) + # [2.0.0-rc.0](https://github.com/posva/pinia/compare/v2.0.0-beta.5...v2.0.0-rc.0) (2021-07-28) ## Required Vue version ‼️ This release requires Vue 3.2.0, which is currently only available under the `beta` dist tag (`npm i vue@beta` or `yarn add vue@beta` + the corresponding packages like `@vue/compiler-sfc@beta`). +Follow the instructions at https://github.com/posva/pinia/issues/592 if you need help updating your package versions. + It contains major improvements: - Performance: Pinia now uses `effectScope()`, effectively reducing memory consumption and removing the drawbacks mentioned in the Plugin section about `useStore()` creating multiple store instances (still sharing the state). diff --git a/package.json b/package.json index e7290add..4b4cfa0e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "pinia", - "version": "2.0.0-rc.0", + "version": "2.0.0-rc.1", "description": "Intuitive, type safe and flexible Store for Vue", "main": "dist/pinia.cjs.js", "module": "dist/pinia.esm-bundler.js",