@backstage/cli-node 0.3.2-next.1 → 0.3.2
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 +9 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @backstage/cli-node
|
|
2
2
|
|
|
3
|
+
## 0.3.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 357d639: Fixed a bug in `PackageGraph.listChangedPackages` where removed dependencies were not detected during lockfile analysis. The dependency graph from the previous lockfile was not being merged, causing transitive dependency removals to be missed.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/errors@1.3.1
|
|
10
|
+
- @backstage/cli-common@0.2.2
|
|
11
|
+
|
|
3
12
|
## 0.3.2-next.1
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/cli-node",
|
|
3
|
-
"version": "0.3.2
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"description": "Node.js library for Backstage CLIs",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "node-library"
|
|
@@ -32,9 +32,9 @@
|
|
|
32
32
|
"test": "backstage-cli package test"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@backstage/cli-common": "0.2.2
|
|
36
|
-
"@backstage/errors": "1.3.1
|
|
37
|
-
"@backstage/types": "1.2.2",
|
|
35
|
+
"@backstage/cli-common": "^0.2.2",
|
|
36
|
+
"@backstage/errors": "^1.3.1",
|
|
37
|
+
"@backstage/types": "^1.2.2",
|
|
38
38
|
"@manypkg/get-packages": "^1.1.3",
|
|
39
39
|
"@yarnpkg/lockfile": "^1.1.0",
|
|
40
40
|
"@yarnpkg/parsers": "^3.0.0",
|
|
@@ -48,9 +48,9 @@
|
|
|
48
48
|
"zod": "^3.25.76 || ^4.0.0"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@backstage/backend-test-utils": "1.11.3
|
|
52
|
-
"@backstage/cli": "0.36.2
|
|
53
|
-
"@backstage/test-utils": "1.7.18
|
|
51
|
+
"@backstage/backend-test-utils": "^1.11.3",
|
|
52
|
+
"@backstage/cli": "^0.36.2",
|
|
53
|
+
"@backstage/test-utils": "^1.7.18",
|
|
54
54
|
"@types/proper-lockfile": "^4",
|
|
55
55
|
"@types/yarnpkg__lockfile": "^1.1.4"
|
|
56
56
|
},
|