@ziacik/upgrade-verify 5.0.0 → 5.0.1
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 +10 -1
- package/package.json +6 -4
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [5.0.1] - 2026-03-13
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Upgraded nx to 22.5.4.
|
|
15
|
+
- Moved selected integration dependencies to `peerDependencies`.
|
|
16
|
+
- Relaxed supported dependency ranges to major-only versions where applicable.
|
|
17
|
+
|
|
10
18
|
## [5.0.0] - 2026-02-28
|
|
11
19
|
|
|
12
20
|
### Changed
|
|
@@ -137,7 +145,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
137
145
|
- READMEs updated and props added to package.json.
|
|
138
146
|
- A _Package subpath './package.json' is not defined by "exports"_ error hopefully fixed.
|
|
139
147
|
|
|
140
|
-
[unreleased]: https://github.com/ziacik/nx-tools/compare/upgrade-verify-5.0.
|
|
148
|
+
[unreleased]: https://github.com/ziacik/nx-tools/compare/upgrade-verify-5.0.1...HEAD
|
|
149
|
+
[5.0.1]: https://github.com/ziacik/nx-tools/compare/upgrade-verify-5.0.0...upgrade-verify-5.0.1
|
|
141
150
|
[5.0.0]: https://github.com/ziacik/nx-tools/compare/upgrade-verify-4.0.0...upgrade-verify-5.0.0
|
|
142
151
|
[4.0.0]: https://github.com/ziacik/nx-tools/compare/upgrade-verify-3.3.1...upgrade-verify-4.0.0
|
|
143
152
|
[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": "5.0.
|
|
3
|
+
"version": "5.0.1",
|
|
4
4
|
"dependencies": {
|
|
5
|
-
"@nx/devkit": "22.
|
|
6
|
-
"@swc/helpers": "~0.5.18"
|
|
7
|
-
|
|
5
|
+
"@nx/devkit": "^22.0.0",
|
|
6
|
+
"@swc/helpers": "~0.5.18"
|
|
7
|
+
},
|
|
8
|
+
"peerDependencies": {
|
|
9
|
+
"@nx/vite": "^22.0.0",
|
|
8
10
|
"vitest": "^4.0.0"
|
|
9
11
|
},
|
|
10
12
|
"type": "commonjs",
|