@backstage/plugin-catalog-backend 3.8.1-next.0 → 3.8.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 +22 -0
- package/package.json +21 -22
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend
|
|
2
2
|
|
|
3
|
+
## 3.8.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 28c1c1c: Synced zod-validation-error versions between packages
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/backend-openapi-utils@0.7.0
|
|
10
|
+
- @backstage/filter-predicates@0.1.4
|
|
11
|
+
- @backstage/backend-plugin-api@1.9.3
|
|
12
|
+
- @backstage/catalog-client@1.16.1
|
|
13
|
+
- @backstage/plugin-catalog-node@2.2.3
|
|
14
|
+
- @backstage/plugin-events-node@0.4.24
|
|
15
|
+
- @backstage/plugin-permission-node@0.11.2
|
|
16
|
+
|
|
17
|
+
## 3.8.1-next.1
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies
|
|
22
|
+
- @backstage/backend-openapi-utils@0.7.0-next.1
|
|
23
|
+
- @backstage/backend-plugin-api@1.9.3-next.1
|
|
24
|
+
|
|
3
25
|
## 3.8.1-next.0
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-backend",
|
|
3
|
-
"version": "3.8.1
|
|
3
|
+
"version": "3.8.1",
|
|
4
4
|
"description": "The Backstage backend plugin that provides the Backstage catalog",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin",
|
|
@@ -66,7 +66,6 @@
|
|
|
66
66
|
"scripts": {
|
|
67
67
|
"build": "backstage-cli package build",
|
|
68
68
|
"clean": "backstage-cli package clean",
|
|
69
|
-
"diff": "backstage-repo-tools package schema openapi diff",
|
|
70
69
|
"fuzz": "backstage-repo-tools package schema openapi fuzz --exclude-checks response_schema_conformance",
|
|
71
70
|
"generate": "backstage-repo-tools package schema openapi generate --server --client-package packages/catalog-client",
|
|
72
71
|
"lint": "backstage-cli package lint",
|
|
@@ -76,20 +75,20 @@
|
|
|
76
75
|
"test": "backstage-cli package test"
|
|
77
76
|
},
|
|
78
77
|
"dependencies": {
|
|
79
|
-
"@backstage/backend-openapi-utils": "0.
|
|
80
|
-
"@backstage/backend-plugin-api": "1.9.3
|
|
81
|
-
"@backstage/catalog-client": "1.16.1
|
|
82
|
-
"@backstage/catalog-model": "1.9.0",
|
|
83
|
-
"@backstage/config": "1.3.8",
|
|
84
|
-
"@backstage/errors": "1.3.1",
|
|
85
|
-
"@backstage/filter-predicates": "0.1.4
|
|
86
|
-
"@backstage/integration": "2.0.3",
|
|
87
|
-
"@backstage/plugin-catalog-common": "1.1.10",
|
|
88
|
-
"@backstage/plugin-catalog-node": "2.2.3
|
|
89
|
-
"@backstage/plugin-events-node": "0.4.24
|
|
90
|
-
"@backstage/plugin-permission-common": "0.9.9",
|
|
91
|
-
"@backstage/plugin-permission-node": "0.11.2
|
|
92
|
-
"@backstage/types": "1.2.2",
|
|
78
|
+
"@backstage/backend-openapi-utils": "^0.7.0",
|
|
79
|
+
"@backstage/backend-plugin-api": "^1.9.3",
|
|
80
|
+
"@backstage/catalog-client": "^1.16.1",
|
|
81
|
+
"@backstage/catalog-model": "^1.9.0",
|
|
82
|
+
"@backstage/config": "^1.3.8",
|
|
83
|
+
"@backstage/errors": "^1.3.1",
|
|
84
|
+
"@backstage/filter-predicates": "^0.1.4",
|
|
85
|
+
"@backstage/integration": "^2.0.3",
|
|
86
|
+
"@backstage/plugin-catalog-common": "^1.1.10",
|
|
87
|
+
"@backstage/plugin-catalog-node": "^2.2.3",
|
|
88
|
+
"@backstage/plugin-events-node": "^0.4.24",
|
|
89
|
+
"@backstage/plugin-permission-common": "^0.9.9",
|
|
90
|
+
"@backstage/plugin-permission-node": "^0.11.2",
|
|
91
|
+
"@backstage/types": "^1.2.2",
|
|
93
92
|
"@opentelemetry/api": "^1.9.0",
|
|
94
93
|
"ajv": "^8.10.0",
|
|
95
94
|
"ajv-errors": "^3.0.0",
|
|
@@ -112,12 +111,12 @@
|
|
|
112
111
|
"zod-validation-error": "^5.0.0"
|
|
113
112
|
},
|
|
114
113
|
"devDependencies": {
|
|
115
|
-
"@backstage/backend-defaults": "0.17.
|
|
116
|
-
"@backstage/backend-test-utils": "1.11.5
|
|
117
|
-
"@backstage/cli": "0.36.4
|
|
118
|
-
"@backstage/plugin-catalog-backend-module-logs": "0.1.24
|
|
119
|
-
"@backstage/plugin-scaffolder-common": "2.2.1",
|
|
120
|
-
"@backstage/repo-tools": "0.
|
|
114
|
+
"@backstage/backend-defaults": "^0.17.5",
|
|
115
|
+
"@backstage/backend-test-utils": "^1.11.5",
|
|
116
|
+
"@backstage/cli": "^0.36.4",
|
|
117
|
+
"@backstage/plugin-catalog-backend-module-logs": "^0.1.24",
|
|
118
|
+
"@backstage/plugin-scaffolder-common": "^2.2.1",
|
|
119
|
+
"@backstage/repo-tools": "^0.18.0",
|
|
121
120
|
"@types/core-js": "^2.5.4",
|
|
122
121
|
"@types/express": "^4.17.6",
|
|
123
122
|
"@types/git-url-parse": "^9.0.0",
|