@backstage/plugin-catalog-backend 1.32.0-next.2 → 1.32.1-next.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 +50 -0
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,55 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend
|
|
2
2
|
|
|
3
|
+
## 1.32.1-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/integration@1.16.3-next.0
|
|
9
|
+
- @backstage/plugin-permission-node@0.9.0
|
|
10
|
+
- @backstage/backend-openapi-utils@0.5.1
|
|
11
|
+
- @backstage/backend-plugin-api@1.2.1
|
|
12
|
+
- @backstage/catalog-client@1.9.1
|
|
13
|
+
- @backstage/catalog-model@1.7.3
|
|
14
|
+
- @backstage/config@1.3.2
|
|
15
|
+
- @backstage/errors@1.2.7
|
|
16
|
+
- @backstage/types@1.2.1
|
|
17
|
+
- @backstage/plugin-catalog-common@1.1.3
|
|
18
|
+
- @backstage/plugin-catalog-node@1.16.1
|
|
19
|
+
- @backstage/plugin-events-node@0.4.9
|
|
20
|
+
- @backstage/plugin-permission-common@0.8.4
|
|
21
|
+
- @backstage/plugin-search-backend-module-catalog@0.3.2
|
|
22
|
+
- @backstage/plugin-search-common@1.2.17
|
|
23
|
+
|
|
24
|
+
## 1.32.0
|
|
25
|
+
|
|
26
|
+
### Minor Changes
|
|
27
|
+
|
|
28
|
+
- ca9c51b: Added opt-in ability to evict entities from the catalog whose provider is no longer configured. See [Catalog configuration documentation](https://backstage.io/docs/features/software-catalog/configuration#clean-up-entities-from-orphaned-entity-providers)
|
|
29
|
+
|
|
30
|
+
### Patch Changes
|
|
31
|
+
|
|
32
|
+
- 4306303: Added a fix in `@backstage/plugin-catalog-backend` to prevent duplicate path keys in entity search if only casing is different.
|
|
33
|
+
- 5243aa4: Fixed an issue occurred when authorizing permissions using custom rules passed via the `PermissionsRegistryService`.
|
|
34
|
+
- fbc1666: Correctly use the `catalog.useUrlReadersSearch` config.
|
|
35
|
+
- 75cadc1: Minor internal tweak to `refreshByRefreshKeys`
|
|
36
|
+
- Updated dependencies
|
|
37
|
+
- @backstage/integration@1.16.2
|
|
38
|
+
- @backstage/plugin-permission-node@0.9.0
|
|
39
|
+
- @backstage/plugin-events-node@0.4.9
|
|
40
|
+
- @backstage/backend-openapi-utils@0.5.1
|
|
41
|
+
- @backstage/backend-plugin-api@1.2.1
|
|
42
|
+
- @backstage/catalog-client@1.9.1
|
|
43
|
+
- @backstage/catalog-model@1.7.3
|
|
44
|
+
- @backstage/config@1.3.2
|
|
45
|
+
- @backstage/errors@1.2.7
|
|
46
|
+
- @backstage/types@1.2.1
|
|
47
|
+
- @backstage/plugin-catalog-common@1.1.3
|
|
48
|
+
- @backstage/plugin-catalog-node@1.16.1
|
|
49
|
+
- @backstage/plugin-permission-common@0.8.4
|
|
50
|
+
- @backstage/plugin-search-backend-module-catalog@0.3.2
|
|
51
|
+
- @backstage/plugin-search-common@1.2.17
|
|
52
|
+
|
|
3
53
|
## 1.32.0-next.2
|
|
4
54
|
|
|
5
55
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-backend",
|
|
3
|
-
"version": "1.32.
|
|
3
|
+
"version": "1.32.1-next.0",
|
|
4
4
|
"description": "The Backstage backend plugin that provides the Backstage catalog",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin",
|
|
@@ -76,19 +76,19 @@
|
|
|
76
76
|
},
|
|
77
77
|
"dependencies": {
|
|
78
78
|
"@backstage/backend-common": "^0.25.0",
|
|
79
|
-
"@backstage/backend-openapi-utils": "0.5.1
|
|
80
|
-
"@backstage/backend-plugin-api": "1.2.1
|
|
79
|
+
"@backstage/backend-openapi-utils": "0.5.1",
|
|
80
|
+
"@backstage/backend-plugin-api": "1.2.1",
|
|
81
81
|
"@backstage/catalog-client": "1.9.1",
|
|
82
82
|
"@backstage/catalog-model": "1.7.3",
|
|
83
83
|
"@backstage/config": "1.3.2",
|
|
84
84
|
"@backstage/errors": "1.2.7",
|
|
85
|
-
"@backstage/integration": "1.16.
|
|
85
|
+
"@backstage/integration": "1.16.3-next.0",
|
|
86
86
|
"@backstage/plugin-catalog-common": "1.1.3",
|
|
87
|
-
"@backstage/plugin-catalog-node": "1.16.1
|
|
88
|
-
"@backstage/plugin-events-node": "0.4.9
|
|
87
|
+
"@backstage/plugin-catalog-node": "1.16.1",
|
|
88
|
+
"@backstage/plugin-events-node": "0.4.9",
|
|
89
89
|
"@backstage/plugin-permission-common": "0.8.4",
|
|
90
|
-
"@backstage/plugin-permission-node": "0.
|
|
91
|
-
"@backstage/plugin-search-backend-module-catalog": "0.3.2
|
|
90
|
+
"@backstage/plugin-permission-node": "0.9.0",
|
|
91
|
+
"@backstage/plugin-search-backend-module-catalog": "0.3.2",
|
|
92
92
|
"@backstage/plugin-search-common": "1.2.17",
|
|
93
93
|
"@backstage/types": "1.2.1",
|
|
94
94
|
"@opentelemetry/api": "^1.9.0",
|
|
@@ -112,12 +112,12 @@
|
|
|
112
112
|
"zod": "^3.22.4"
|
|
113
113
|
},
|
|
114
114
|
"devDependencies": {
|
|
115
|
-
"@backstage/backend-defaults": "0.
|
|
116
|
-
"@backstage/backend-test-utils": "1.3.
|
|
117
|
-
"@backstage/cli": "0.
|
|
115
|
+
"@backstage/backend-defaults": "0.9.0-next.1",
|
|
116
|
+
"@backstage/backend-test-utils": "1.3.2-next.1",
|
|
117
|
+
"@backstage/cli": "0.32.0-next.1",
|
|
118
118
|
"@backstage/plugin-permission-common": "0.8.4",
|
|
119
|
-
"@backstage/repo-tools": "0.13.1
|
|
120
|
-
"@backstage/test-utils": "1.7.6
|
|
119
|
+
"@backstage/repo-tools": "0.13.1",
|
|
120
|
+
"@backstage/test-utils": "1.7.6",
|
|
121
121
|
"@types/core-js": "^2.5.4",
|
|
122
122
|
"@types/git-url-parse": "^9.0.0",
|
|
123
123
|
"@types/glob": "^8.0.0",
|