@backstage/plugin-catalog-node 2.1.0-next.1 → 2.1.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 +28 -0
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-node
|
|
2
2
|
|
|
3
|
+
## 2.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- bf71677: Added the ability for SCM events subscribers to mark the fact that they have taken actions based on events, which produces output metrics:
|
|
8
|
+
|
|
9
|
+
- `catalog.events.scm.actions` with attribute `action`: Counter for the number of actions actually taken by catalog internals or other subscribers, based on SCM events. The `action` is currently either `create`, `delete`, `refresh`, or `move`.
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
- @backstage/backend-plugin-api@1.8.0
|
|
15
|
+
- @backstage/backend-test-utils@1.11.1
|
|
16
|
+
- @backstage/catalog-client@1.14.0
|
|
17
|
+
- @backstage/plugin-permission-common@0.9.7
|
|
18
|
+
- @backstage/plugin-permission-node@0.10.11
|
|
19
|
+
- @backstage/catalog-model@1.7.7
|
|
20
|
+
|
|
21
|
+
## 2.1.0-next.2
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- Updated dependencies
|
|
26
|
+
- @backstage/backend-test-utils@1.11.1-next.2
|
|
27
|
+
- @backstage/backend-plugin-api@1.8.0-next.1
|
|
28
|
+
- @backstage/catalog-client@1.14.0-next.2
|
|
29
|
+
- @backstage/plugin-permission-node@0.10.11-next.1
|
|
30
|
+
|
|
3
31
|
## 2.1.0-next.1
|
|
4
32
|
|
|
5
33
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-node",
|
|
3
|
-
"version": "2.1.0
|
|
3
|
+
"version": "2.1.0",
|
|
4
4
|
"description": "The plugin-catalog-node module for @backstage/plugin-catalog-backend",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "node-library",
|
|
@@ -72,25 +72,25 @@
|
|
|
72
72
|
"test": "backstage-cli package test"
|
|
73
73
|
},
|
|
74
74
|
"dependencies": {
|
|
75
|
-
"@backstage/backend-plugin-api": "1.
|
|
76
|
-
"@backstage/catalog-client": "1.14.0
|
|
77
|
-
"@backstage/catalog-model": "1.7.
|
|
78
|
-
"@backstage/errors": "1.2.7",
|
|
79
|
-
"@backstage/plugin-catalog-common": "1.1.8",
|
|
80
|
-
"@backstage/plugin-permission-common": "0.9.
|
|
81
|
-
"@backstage/plugin-permission-node": "0.10.11
|
|
82
|
-
"@backstage/types": "1.2.2",
|
|
75
|
+
"@backstage/backend-plugin-api": "^1.8.0",
|
|
76
|
+
"@backstage/catalog-client": "^1.14.0",
|
|
77
|
+
"@backstage/catalog-model": "^1.7.7",
|
|
78
|
+
"@backstage/errors": "^1.2.7",
|
|
79
|
+
"@backstage/plugin-catalog-common": "^1.1.8",
|
|
80
|
+
"@backstage/plugin-permission-common": "^0.9.7",
|
|
81
|
+
"@backstage/plugin-permission-node": "^0.10.11",
|
|
82
|
+
"@backstage/types": "^1.2.2",
|
|
83
83
|
"@opentelemetry/api": "^1.9.0",
|
|
84
84
|
"lodash": "^4.17.21",
|
|
85
85
|
"yaml": "^2.0.0"
|
|
86
86
|
},
|
|
87
87
|
"devDependencies": {
|
|
88
|
-
"@backstage/backend-test-utils": "1.11.1
|
|
89
|
-
"@backstage/cli": "0.36.0
|
|
88
|
+
"@backstage/backend-test-utils": "^1.11.1",
|
|
89
|
+
"@backstage/cli": "^0.36.0",
|
|
90
90
|
"msw": "^1.0.0"
|
|
91
91
|
},
|
|
92
92
|
"peerDependencies": {
|
|
93
|
-
"@backstage/backend-test-utils": "1.11.1
|
|
93
|
+
"@backstage/backend-test-utils": "^1.11.1"
|
|
94
94
|
},
|
|
95
95
|
"peerDependenciesMeta": {
|
|
96
96
|
"@backstage/backend-test-utils": {
|