Skip to content

Commit 3eee335

Browse files
committed
1 parent 5c98ea9 commit 3eee335

File tree

5 files changed

+30
-4
lines changed

5 files changed

+30
-4
lines changed

packages/nuxt/CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
# [0.5.0](https://github.com/vuejs/pinia/compare/@pinia/[email protected]...@pinia/[email protected]) (2023-10-13)
2+
3+
### Features
4+
5+
- **imports:** add storeDirs auto import ([70a95ba](https://github.com/vuejs/pinia/commit/70a95ba9b1d6a55aeea72088dfedd478aa4db766)), closes [#1604](https://github.com/vuejs/pinia/issues/1604)
6+
7+
### BREAKING CHANGES
8+
9+
- **imports:** the option `autoImports` has been removed as it offered
10+
no value compared to the existing `imports` option in Nuxt. Instead, we
11+
are automatically adding `defineStore()`, and `acceptHMRUpdate()` to the
12+
list of auto imported functions. We are also adding the `./stores` dirs
13+
to auto imports now, so if you were manually adding that option, it can
14+
be removed.
15+
116
## [0.4.11](https://github.com/vuejs/pinia/compare/@pinia/[email protected]...@pinia/[email protected]) (2023-05-17)
217

318
This release only contains build related changes

packages/nuxt/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pinia/nuxt",
3-
"version": "0.4.11",
3+
"version": "0.5.0",
44
"description": "Nuxt Module for pinia",
55
"keywords": [
66
"pinia",
@@ -47,7 +47,7 @@
4747
},
4848
"dependencies": {
4949
"@nuxt/kit": "^3.5.0",
50-
"pinia": ">=2.1.0"
50+
"pinia": ">=2.1.7"
5151
},
5252
"devDependencies": {
5353
"@nuxt/module-builder": "^0.3.1",

packages/pinia/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## [2.1.7](https://github.com/vuejs/pinia/compare/[email protected]@2.1.7) (2023-10-13)
2+
3+
### Bug Fixes
4+
5+
- **devtools:** correctly load initial states ([9d49e30](https://github.com/vuejs/pinia/commit/9d49e3005ca677f8892e7af209e96d43b41e121c))
6+
7+
### Features
8+
9+
- **types:** SetupStoreDefinition ([391f9ac](https://github.com/vuejs/pinia/commit/391f9ac4f5e845afdd4b7d44fb1a9c7fb2b299a0))
10+
- **warn:** improve getActivePinia warning ([4640f09](https://github.com/vuejs/pinia/commit/4640f09d12094d8c2c2d9d2039b4479fd7d38d35))
11+
112
## [2.1.6](https://github.com/vuejs/pinia/compare/[email protected]@2.1.6) (2023-07-26)
213

314
### 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": "2.1.6",
3+
"version": "2.1.7",
44
"description": "Intuitive, type safe and flexible Store for Vue",
55
"main": "index.js",
66
"module": "dist/pinia.mjs",

pnpm-lock.yaml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)