Skip to content

Commit eae8cdd

Browse files
committed
1 parent 933de83 commit eae8cdd

File tree

6 files changed

+79
-4
lines changed

6 files changed

+79
-4
lines changed

packages/nuxt/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [0.11.0](https://github.com/vuejs/pinia/compare/@pinia/[email protected]...@pinia/[email protected]) (2025-04-09)
2+
3+
### Features
4+
5+
- **nuxt:** move to esm-only ([#2947](https://github.com/vuejs/pinia/issues/2947)) ([4865716](https://github.com/vuejs/pinia/commit/4865716011cde049aef05e029d2720ac93483389))
6+
- fix `obj.hasOwnProperty` in `shouldHydrate`
7+
18
### [0.10.1](https://github.com/vuejs/pinia/compare/@pinia/[email protected]...@pinia/[email protected]) (2025-02-12)
29

310
### Bug Fixes

packages/nuxt/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pinia/nuxt",
3-
"version": "0.10.1",
3+
"version": "0.11.0",
44
"description": "Nuxt Module for pinia",
55
"keywords": [
66
"pinia",

packages/pinia/CHANGELOG.md

+62
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,65 @@
1+
### [3.0.2](https://github.com/vuejs/pinia/compare/[email protected]@3.0.2) (2025-04-09)
2+
3+
### Bug Fixes
4+
5+
- fix `obj.hasOwnProperty` in `shouldHydrate`
6+
7+
### 3.0.1 (2025-02-12)
8+
9+
### Bug Fixes
10+
11+
- avoid including devtools code in builds ([d3b24a3](https://github.com/vuejs/pinia/commit/d3b24a3d6a4b5af82c8ef7e66e4cecd890c30fdd)), closes [#2910](https://github.com/vuejs/pinia/issues/2910)
12+
13+
## 3.0.0 (2025-02-11)
14+
15+
### ⚠ BREAKING CHANGES
16+
17+
- We now use the native `Awaited` introduced in TS 4.5.
18+
This shouldn't affect you.
19+
- `PiniaStorePlugin` is now removed. Use `PiniaPlugin`
20+
instead.
21+
- `defineStore({ id: 'id' })` is now removed. Use
22+
`defineStore('id')` instead
23+
24+
### Code Refactoring
25+
26+
- remove deprecated alias ([87c6182](https://github.com/vuejs/pinia/commit/87c6182c4bf61e1f96a4877eb884fd59cf824e1f))
27+
- remove internal type `_Awaited` ([ce48ec4](https://github.com/vuejs/pinia/commit/ce48ec46e0d7626eeefa0ee9c4e8c6b65fce31e1))
28+
- remove support for `id` as a property ([24b2b89](https://github.com/vuejs/pinia/commit/24b2b89c7be4ffda8b6fbc35155757f5780971d8))
29+
30+
### 2.3.1 (2025-01-20)
31+
32+
### Bug Fixes
33+
34+
- **types:** support for Vue 2.7 ([d14e1a7](https://github.com/vuejs/pinia/commit/d14e1a723e5f19cfa89f439d2f0444cc4f5f6dfc))
35+
36+
## 2.3.0 (2024-12-04)
37+
38+
### Features
39+
40+
- writable `computed`s to be picked up by `mapWritableState` ([#2847](https://github.com/vuejs/pinia/issues/2847)) ([0fa633e](https://github.com/vuejs/pinia/commit/0fa633e81864b09d300859a0ed1c10d2a89affa8))
41+
42+
### Bug Fixes
43+
44+
- avoid npm bug when resolving optional deps ([#2841](https://github.com/vuejs/pinia/issues/2841)) ([1e45f33](https://github.com/vuejs/pinia/commit/1e45f332efe8c0f543cfd186cd26b768abdf2b62))
45+
46+
### 2.2.8 (2024-11-28)
47+
48+
### Features
49+
50+
- deprecate old defineStore ([d1858e8](https://github.com/vuejs/pinia/commit/d1858e8c932d89cd2bf9121fe62179795ebb5c5f))
51+
52+
### Bug Fixes
53+
54+
- avoid immediate computing with `storeToRefs` ([67d3109](https://github.com/vuejs/pinia/commit/67d31094784cc3bd256b0636b79dc8e421f6c3fb)), closes [#2812](https://github.com/vuejs/pinia/issues/2812)
55+
- **types:** unwrap refs in `mapWritableState` for setup stores ([#2805](https://github.com/vuejs/pinia/issues/2805)) ([ea14e53](https://github.com/vuejs/pinia/commit/ea14e53fdfc0d0f4cd80d5242572f87714a77e3b)), closes [#2804](https://github.com/vuejs/pinia/issues/2804)
56+
57+
### 2.2.7 (2024-11-27)
58+
59+
### Bug Fixes
60+
61+
- **devtools:** avoid running outside of browsers ([eb5e6fd](https://github.com/vuejs/pinia/commit/eb5e6fd6073da8e828a9087c876d0e8fde3cdb3d)), closes [#2843](https://github.com/vuejs/pinia/issues/2843)
62+
163
### [3.0.1](https://github.com/vuejs/pinia/compare/[email protected]@3.0.1) (2025-02-12)
264

365
### Bug Fixes

packages/pinia/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pinia",
3-
"version": "3.0.1",
3+
"version": "3.0.2",
44
"description": "Intuitive, type safe and flexible Store for Vue",
55
"type": "module",
66
"main": "index.cjs",

packages/testing/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
### [1.0.1](https://github.com/vuejs/pinia/compare/@pinia/[email protected]...@pinia/[email protected]) (2025-04-09)
2+
3+
### Bug Fixes
4+
5+
- consistent computation of computed in tests with storeToRefs ([417db7a](https://github.com/vuejs/pinia/commit/417db7aacb35b98ebe4274fd43bba593eaa583df)), closes [#2913](https://github.com/vuejs/pinia/issues/2913)
6+
17
## [1.0.0](https://github.com/vuejs/pinia/compare/@pinia/[email protected]...@pinia/[email protected]) (2025-02-11)
28

39
The testing package has been stable for a long time so it was time to have a v1!

packages/testing/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pinia/testing",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "Testing module for Pinia",
55
"keywords": [
66
"vue",
@@ -48,7 +48,7 @@
4848
"tsup": "^8.3.6"
4949
},
5050
"peerDependencies": {
51-
"pinia": ">=3.0.0"
51+
"pinia": ">=3.0.2"
5252
},
5353
"publishConfig": {
5454
"access": "public"

0 commit comments

Comments
 (0)