@backstage/plugin-catalog-backend 3.1.2-next.2 → 3.1.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 +46 -0
- package/package.json +19 -19
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,51 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend
|
|
2
2
|
|
|
3
|
+
## 3.1.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 9890488: Internal refactor to remove remnants of the old backend system
|
|
8
|
+
- 6493c98: Log before provider-orphaning eviction happens
|
|
9
|
+
- 2aaf01a: Fix for duplicate search results in entity-facets API call
|
|
10
|
+
- e489661: Moved catalog processor and provider disabling and priorities under own config objects.
|
|
11
|
+
|
|
12
|
+
This is due to issue with some existing providers, such as GitHub, using array syntax for the provider configuration.
|
|
13
|
+
|
|
14
|
+
The new config format is not backwards compatible, so users will need to update their config files. The new format
|
|
15
|
+
is as follows:
|
|
16
|
+
|
|
17
|
+
```yaml
|
|
18
|
+
catalog:
|
|
19
|
+
providerOptions:
|
|
20
|
+
providerA:
|
|
21
|
+
disabled: false
|
|
22
|
+
providerB:
|
|
23
|
+
disabled: true
|
|
24
|
+
processorOptions:
|
|
25
|
+
processorA:
|
|
26
|
+
disabled: false
|
|
27
|
+
priority: 10
|
|
28
|
+
processorB:
|
|
29
|
+
disabled: true
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
- 77516c5: Added new `catalog:validate-entity` action to actions registry.
|
|
33
|
+
|
|
34
|
+
This action can be used to validate entities against the software catalog.
|
|
35
|
+
This is useful for validating `catalog-info.yaml` file changes locally using the
|
|
36
|
+
Backstage MCP server.
|
|
37
|
+
|
|
38
|
+
- Updated dependencies
|
|
39
|
+
- @backstage/integration@1.18.1
|
|
40
|
+
- @backstage/config@1.3.5
|
|
41
|
+
- @backstage/backend-openapi-utils@0.6.2
|
|
42
|
+
- @backstage/backend-plugin-api@1.4.4
|
|
43
|
+
- @backstage/plugin-catalog-common@1.1.6
|
|
44
|
+
- @backstage/plugin-catalog-node@1.19.1
|
|
45
|
+
- @backstage/plugin-events-node@0.4.16
|
|
46
|
+
- @backstage/plugin-permission-common@0.9.2
|
|
47
|
+
- @backstage/plugin-permission-node@0.10.5
|
|
48
|
+
|
|
3
49
|
## 3.1.2-next.2
|
|
4
50
|
|
|
5
51
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-backend",
|
|
3
|
-
"version": "3.1.2
|
|
3
|
+
"version": "3.1.2",
|
|
4
4
|
"description": "The Backstage backend plugin that provides the Backstage catalog",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin",
|
|
@@ -73,19 +73,19 @@
|
|
|
73
73
|
"test": "backstage-cli package test"
|
|
74
74
|
},
|
|
75
75
|
"dependencies": {
|
|
76
|
-
"@backstage/backend-openapi-utils": "0.6.2
|
|
77
|
-
"@backstage/backend-plugin-api": "1.4.4
|
|
78
|
-
"@backstage/catalog-client": "1.12.0",
|
|
79
|
-
"@backstage/catalog-model": "1.7.5",
|
|
80
|
-
"@backstage/config": "1.3.5
|
|
81
|
-
"@backstage/errors": "1.2.7",
|
|
82
|
-
"@backstage/integration": "1.18.1
|
|
83
|
-
"@backstage/plugin-catalog-common": "1.1.6
|
|
84
|
-
"@backstage/plugin-catalog-node": "1.19.1
|
|
85
|
-
"@backstage/plugin-events-node": "0.4.16
|
|
86
|
-
"@backstage/plugin-permission-common": "0.9.2
|
|
87
|
-
"@backstage/plugin-permission-node": "0.10.5
|
|
88
|
-
"@backstage/types": "1.2.2",
|
|
76
|
+
"@backstage/backend-openapi-utils": "^0.6.2",
|
|
77
|
+
"@backstage/backend-plugin-api": "^1.4.4",
|
|
78
|
+
"@backstage/catalog-client": "^1.12.0",
|
|
79
|
+
"@backstage/catalog-model": "^1.7.5",
|
|
80
|
+
"@backstage/config": "^1.3.5",
|
|
81
|
+
"@backstage/errors": "^1.2.7",
|
|
82
|
+
"@backstage/integration": "^1.18.1",
|
|
83
|
+
"@backstage/plugin-catalog-common": "^1.1.6",
|
|
84
|
+
"@backstage/plugin-catalog-node": "^1.19.1",
|
|
85
|
+
"@backstage/plugin-events-node": "^0.4.16",
|
|
86
|
+
"@backstage/plugin-permission-common": "^0.9.2",
|
|
87
|
+
"@backstage/plugin-permission-node": "^0.10.5",
|
|
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",
|
|
@@ -106,11 +106,11 @@
|
|
|
106
106
|
"zod": "^3.22.4"
|
|
107
107
|
},
|
|
108
108
|
"devDependencies": {
|
|
109
|
-
"@backstage/backend-defaults": "0.13.0
|
|
110
|
-
"@backstage/backend-test-utils": "1.9.1
|
|
111
|
-
"@backstage/cli": "0.34.4
|
|
112
|
-
"@backstage/plugin-permission-common": "0.9.2
|
|
113
|
-
"@backstage/repo-tools": "0.15.3
|
|
109
|
+
"@backstage/backend-defaults": "^0.13.0",
|
|
110
|
+
"@backstage/backend-test-utils": "^1.9.1",
|
|
111
|
+
"@backstage/cli": "^0.34.4",
|
|
112
|
+
"@backstage/plugin-permission-common": "^0.9.2",
|
|
113
|
+
"@backstage/repo-tools": "^0.15.3",
|
|
114
114
|
"@types/core-js": "^2.5.4",
|
|
115
115
|
"@types/express": "^4.17.6",
|
|
116
116
|
"@types/git-url-parse": "^9.0.0",
|