@backstage/plugin-catalog-backend 3.2.0 → 3.2.1-next.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 +39 -0
- package/dist/alpha.d.ts +2 -1
- package/dist/index.d.ts +2 -1
- package/package.json +20 -20
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,44 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend
|
|
2
2
|
|
|
3
|
+
## 3.2.1-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/backend-openapi-utils@0.6.4-next.1
|
|
10
|
+
- @backstage/plugin-events-node@0.4.18-next.1
|
|
11
|
+
- @backstage/plugin-permission-node@0.10.7-next.1
|
|
12
|
+
- @backstage/integration@1.18.3-next.1
|
|
13
|
+
- @backstage/backend-plugin-api@1.6.0-next.1
|
|
14
|
+
- @backstage/catalog-client@1.12.1
|
|
15
|
+
- @backstage/catalog-model@1.7.6
|
|
16
|
+
- @backstage/config@1.3.6
|
|
17
|
+
- @backstage/errors@1.2.7
|
|
18
|
+
- @backstage/types@1.2.2
|
|
19
|
+
- @backstage/plugin-catalog-common@1.1.7
|
|
20
|
+
- @backstage/plugin-catalog-node@1.20.1-next.1
|
|
21
|
+
- @backstage/plugin-permission-common@0.9.3
|
|
22
|
+
|
|
23
|
+
## 3.2.1-next.0
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- Updated dependencies
|
|
28
|
+
- @backstage/backend-plugin-api@1.5.1-next.0
|
|
29
|
+
- @backstage/integration@1.18.3-next.0
|
|
30
|
+
- @backstage/plugin-permission-node@0.10.7-next.0
|
|
31
|
+
- @backstage/backend-openapi-utils@0.6.4-next.0
|
|
32
|
+
- @backstage/plugin-catalog-node@1.20.1-next.0
|
|
33
|
+
- @backstage/plugin-events-node@0.4.18-next.0
|
|
34
|
+
- @backstage/config@1.3.6
|
|
35
|
+
- @backstage/catalog-client@1.12.1
|
|
36
|
+
- @backstage/catalog-model@1.7.6
|
|
37
|
+
- @backstage/errors@1.2.7
|
|
38
|
+
- @backstage/types@1.2.2
|
|
39
|
+
- @backstage/plugin-catalog-common@1.1.7
|
|
40
|
+
- @backstage/plugin-permission-common@0.9.3
|
|
41
|
+
|
|
3
42
|
## 3.2.0
|
|
4
43
|
|
|
5
44
|
### Minor Changes
|
package/dist/alpha.d.ts
CHANGED
|
@@ -118,4 +118,5 @@ declare const permissionRules: {
|
|
|
118
118
|
}>;
|
|
119
119
|
};
|
|
120
120
|
|
|
121
|
-
export {
|
|
121
|
+
export { catalogConditions, createCatalogConditionalDecision, createCatalogPermissionRule, permissionRules };
|
|
122
|
+
export type { CatalogPermissionRule };
|
package/dist/index.d.ts
CHANGED
|
@@ -113,4 +113,5 @@ declare const CATALOG_CONFLICTS_TOPIC = "experimental.catalog.conflict";
|
|
|
113
113
|
/** @public */
|
|
114
114
|
declare const CATALOG_ERRORS_TOPIC = "experimental.catalog.errors";
|
|
115
115
|
|
|
116
|
-
export { AnnotateLocationEntityProcessor, AnnotateScmSlugEntityProcessor, BuiltinKindsEntityProcessor, CATALOG_CONFLICTS_TOPIC, CATALOG_ERRORS_TOPIC, CodeOwnersProcessor, FileReaderProcessor, PlaceholderProcessor,
|
|
116
|
+
export { AnnotateLocationEntityProcessor, AnnotateScmSlugEntityProcessor, BuiltinKindsEntityProcessor, CATALOG_CONFLICTS_TOPIC, CATALOG_ERRORS_TOPIC, CodeOwnersProcessor, FileReaderProcessor, PlaceholderProcessor, UrlReaderProcessor, catalogPlugin as default, transformLegacyPolicyToProcessor };
|
|
117
|
+
export type { PlaceholderProcessorOptions };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-backend",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.1-next.1",
|
|
4
4
|
"description": "The Backstage backend plugin that provides the Backstage catalog",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin",
|
|
@@ -73,23 +73,23 @@
|
|
|
73
73
|
"test": "backstage-cli package test"
|
|
74
74
|
},
|
|
75
75
|
"dependencies": {
|
|
76
|
-
"@backstage/backend-openapi-utils": "
|
|
77
|
-
"@backstage/backend-plugin-api": "
|
|
78
|
-
"@backstage/catalog-client": "
|
|
79
|
-
"@backstage/catalog-model": "
|
|
80
|
-
"@backstage/config": "
|
|
81
|
-
"@backstage/errors": "
|
|
82
|
-
"@backstage/integration": "
|
|
83
|
-
"@backstage/plugin-catalog-common": "
|
|
84
|
-
"@backstage/plugin-catalog-node": "
|
|
85
|
-
"@backstage/plugin-events-node": "
|
|
86
|
-
"@backstage/plugin-permission-common": "
|
|
87
|
-
"@backstage/plugin-permission-node": "
|
|
88
|
-
"@backstage/types": "
|
|
76
|
+
"@backstage/backend-openapi-utils": "0.6.4-next.1",
|
|
77
|
+
"@backstage/backend-plugin-api": "1.6.0-next.1",
|
|
78
|
+
"@backstage/catalog-client": "1.12.1",
|
|
79
|
+
"@backstage/catalog-model": "1.7.6",
|
|
80
|
+
"@backstage/config": "1.3.6",
|
|
81
|
+
"@backstage/errors": "1.2.7",
|
|
82
|
+
"@backstage/integration": "1.18.3-next.1",
|
|
83
|
+
"@backstage/plugin-catalog-common": "1.1.7",
|
|
84
|
+
"@backstage/plugin-catalog-node": "1.20.1-next.1",
|
|
85
|
+
"@backstage/plugin-events-node": "0.4.18-next.1",
|
|
86
|
+
"@backstage/plugin-permission-common": "0.9.3",
|
|
87
|
+
"@backstage/plugin-permission-node": "0.10.7-next.1",
|
|
88
|
+
"@backstage/types": "1.2.2",
|
|
89
89
|
"@opentelemetry/api": "^1.9.0",
|
|
90
90
|
"codeowners-utils": "^1.0.2",
|
|
91
91
|
"core-js": "^3.6.5",
|
|
92
|
-
"express": "^4.
|
|
92
|
+
"express": "^4.22.0",
|
|
93
93
|
"fast-json-stable-stringify": "^2.1.0",
|
|
94
94
|
"fs-extra": "^11.2.0",
|
|
95
95
|
"git-url-parse": "^15.0.0",
|
|
@@ -106,11 +106,11 @@
|
|
|
106
106
|
"zod": "^3.22.4"
|
|
107
107
|
},
|
|
108
108
|
"devDependencies": {
|
|
109
|
-
"@backstage/backend-defaults": "
|
|
110
|
-
"@backstage/backend-test-utils": "
|
|
111
|
-
"@backstage/cli": "
|
|
112
|
-
"@backstage/plugin-permission-common": "
|
|
113
|
-
"@backstage/repo-tools": "
|
|
109
|
+
"@backstage/backend-defaults": "0.14.0-next.1",
|
|
110
|
+
"@backstage/backend-test-utils": "1.10.2-next.1",
|
|
111
|
+
"@backstage/cli": "0.35.0-next.2",
|
|
112
|
+
"@backstage/plugin-permission-common": "0.9.3",
|
|
113
|
+
"@backstage/repo-tools": "0.16.1-next.2",
|
|
114
114
|
"@types/core-js": "^2.5.4",
|
|
115
115
|
"@types/express": "^4.17.6",
|
|
116
116
|
"@types/git-url-parse": "^9.0.0",
|