@ziacik/upgrade-verify 5.0.0 → 6.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -1
- package/package.json +7 -5
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [6.0.0] - 2026-06-27
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Upgraded nx to 23.0.1.
|
|
15
|
+
|
|
16
|
+
## [5.0.1] - 2026-03-13
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
- Upgraded nx to 22.5.4.
|
|
21
|
+
- Moved selected integration dependencies to `peerDependencies`.
|
|
22
|
+
- Relaxed supported dependency ranges to major-only versions where applicable.
|
|
23
|
+
|
|
10
24
|
## [5.0.0] - 2026-02-28
|
|
11
25
|
|
|
12
26
|
### Changed
|
|
@@ -137,7 +151,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
137
151
|
- READMEs updated and props added to package.json.
|
|
138
152
|
- A _Package subpath './package.json' is not defined by "exports"_ error hopefully fixed.
|
|
139
153
|
|
|
140
|
-
[unreleased]: https://github.com/ziacik/nx-tools/compare/upgrade-verify-5.0.
|
|
154
|
+
[unreleased]: https://github.com/ziacik/nx-tools/compare/upgrade-verify-5.0.1...HEAD
|
|
155
|
+
[5.0.1]: https://github.com/ziacik/nx-tools/compare/upgrade-verify-5.0.0...upgrade-verify-5.0.1
|
|
141
156
|
[5.0.0]: https://github.com/ziacik/nx-tools/compare/upgrade-verify-4.0.0...upgrade-verify-5.0.0
|
|
142
157
|
[4.0.0]: https://github.com/ziacik/nx-tools/compare/upgrade-verify-3.3.1...upgrade-verify-4.0.0
|
|
143
158
|
[3.3.1]: https://github.com/ziacik/nx-tools/compare/upgrade-verify-3.3.0...upgrade-verify-3.3.1
|
package/package.json
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ziacik/upgrade-verify",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "6.0.0",
|
|
4
4
|
"dependencies": {
|
|
5
|
-
"@nx/devkit": "
|
|
6
|
-
"@swc/helpers": "~0.5.18"
|
|
7
|
-
|
|
5
|
+
"@nx/devkit": "23.0.1",
|
|
6
|
+
"@swc/helpers": "~0.5.18"
|
|
7
|
+
},
|
|
8
|
+
"peerDependencies": {
|
|
9
|
+
"@nx/vite": "23.0.1",
|
|
8
10
|
"vitest": "^4.0.0"
|
|
9
11
|
},
|
|
10
12
|
"type": "commonjs",
|
|
@@ -22,7 +24,7 @@
|
|
|
22
24
|
],
|
|
23
25
|
"repository": {
|
|
24
26
|
"type": "git",
|
|
25
|
-
"url": "https://github.com/ziacik/nx-tools",
|
|
27
|
+
"url": "git+https://github.com/ziacik/nx-tools.git",
|
|
26
28
|
"directory": "packages/upgrade-verify"
|
|
27
29
|
},
|
|
28
30
|
"license": "MIT",
|