@backstage/plugin-catalog-backend 2.0.0-next.1 → 2.0.0-next.3
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/README.md +1 -0
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,44 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend
|
|
2
2
|
|
|
3
|
+
## 2.0.0-next.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 8e0f15f: "Added a note clarifying that `entity-fetch` audit events are not visible by default in the logs and are only displayed when the log severity level is adjusted."
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/integration@1.17.0-next.3
|
|
10
|
+
- @backstage/backend-openapi-utils@0.5.3-next.2
|
|
11
|
+
- @backstage/backend-plugin-api@1.3.1-next.2
|
|
12
|
+
- @backstage/catalog-client@1.10.0-next.0
|
|
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.4-next.0
|
|
18
|
+
- @backstage/plugin-catalog-node@1.17.0-next.2
|
|
19
|
+
- @backstage/plugin-events-node@0.4.11-next.2
|
|
20
|
+
- @backstage/plugin-permission-common@0.9.0-next.0
|
|
21
|
+
- @backstage/plugin-permission-node@0.10.0-next.2
|
|
22
|
+
|
|
23
|
+
## 2.0.0-next.2
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- Updated dependencies
|
|
28
|
+
- @backstage/integration@1.17.0-next.2
|
|
29
|
+
- @backstage/backend-openapi-utils@0.5.3-next.1
|
|
30
|
+
- @backstage/config@1.3.2
|
|
31
|
+
- @backstage/plugin-permission-node@0.10.0-next.1
|
|
32
|
+
- @backstage/backend-plugin-api@1.3.1-next.1
|
|
33
|
+
- @backstage/catalog-client@1.10.0-next.0
|
|
34
|
+
- @backstage/catalog-model@1.7.3
|
|
35
|
+
- @backstage/errors@1.2.7
|
|
36
|
+
- @backstage/types@1.2.1
|
|
37
|
+
- @backstage/plugin-catalog-common@1.1.4-next.0
|
|
38
|
+
- @backstage/plugin-catalog-node@1.17.0-next.1
|
|
39
|
+
- @backstage/plugin-events-node@0.4.11-next.1
|
|
40
|
+
- @backstage/plugin-permission-common@0.9.0-next.0
|
|
41
|
+
|
|
3
42
|
## 2.0.0-next.1
|
|
4
43
|
|
|
5
44
|
### Major Changes
|
package/README.md
CHANGED
|
@@ -94,6 +94,7 @@ The Catalog backend emits audit events for various operations. Events are groupe
|
|
|
94
94
|
**Entity Events:**
|
|
95
95
|
|
|
96
96
|
- **`entity-fetch`**: Retrieves entities.
|
|
97
|
+
- **Note:** By default, "low" severity audit events like `entity-fetch` aren't logged because they map to the "debug" level, while Backstage defaults to "info" level logging. To see `entity-fetch` events, update your `app-config.yaml` by setting `backend.auditor.severityLogLevelMappings.low: info`. See the [Auditor Service documentation](https://backstage.io/docs/backend-system/core-services/auditor/#severity-levels-and-default-mappings) for details on severity mappings.
|
|
97
98
|
|
|
98
99
|
Filter on `queryType`.
|
|
99
100
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-backend",
|
|
3
|
-
"version": "2.0.0-next.
|
|
3
|
+
"version": "2.0.0-next.3",
|
|
4
4
|
"description": "The Backstage backend plugin that provides the Backstage catalog",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin",
|
|
@@ -73,18 +73,18 @@
|
|
|
73
73
|
"test": "backstage-cli package test"
|
|
74
74
|
},
|
|
75
75
|
"dependencies": {
|
|
76
|
-
"@backstage/backend-openapi-utils": "0.5.3-next.
|
|
77
|
-
"@backstage/backend-plugin-api": "1.3.1-next.
|
|
76
|
+
"@backstage/backend-openapi-utils": "0.5.3-next.2",
|
|
77
|
+
"@backstage/backend-plugin-api": "1.3.1-next.2",
|
|
78
78
|
"@backstage/catalog-client": "1.10.0-next.0",
|
|
79
79
|
"@backstage/catalog-model": "1.7.3",
|
|
80
80
|
"@backstage/config": "1.3.2",
|
|
81
81
|
"@backstage/errors": "1.2.7",
|
|
82
|
-
"@backstage/integration": "1.
|
|
82
|
+
"@backstage/integration": "1.17.0-next.3",
|
|
83
83
|
"@backstage/plugin-catalog-common": "1.1.4-next.0",
|
|
84
|
-
"@backstage/plugin-catalog-node": "1.17.0-next.
|
|
85
|
-
"@backstage/plugin-events-node": "0.4.11-next.
|
|
84
|
+
"@backstage/plugin-catalog-node": "1.17.0-next.2",
|
|
85
|
+
"@backstage/plugin-events-node": "0.4.11-next.2",
|
|
86
86
|
"@backstage/plugin-permission-common": "0.9.0-next.0",
|
|
87
|
-
"@backstage/plugin-permission-node": "0.10.0-next.
|
|
87
|
+
"@backstage/plugin-permission-node": "0.10.0-next.2",
|
|
88
88
|
"@backstage/types": "1.2.1",
|
|
89
89
|
"@opentelemetry/api": "^1.9.0",
|
|
90
90
|
"codeowners-utils": "^1.0.2",
|
|
@@ -106,12 +106,12 @@
|
|
|
106
106
|
"zod": "^3.22.4"
|
|
107
107
|
},
|
|
108
108
|
"devDependencies": {
|
|
109
|
-
"@backstage/backend-defaults": "0.10.0-next.
|
|
110
|
-
"@backstage/backend-test-utils": "1.5.0-next.
|
|
111
|
-
"@backstage/cli": "0.32.1-next.
|
|
109
|
+
"@backstage/backend-defaults": "0.10.0-next.3",
|
|
110
|
+
"@backstage/backend-test-utils": "1.5.0-next.3",
|
|
111
|
+
"@backstage/cli": "0.32.1-next.3",
|
|
112
112
|
"@backstage/plugin-permission-common": "0.9.0-next.0",
|
|
113
|
-
"@backstage/repo-tools": "0.13.3-next.
|
|
114
|
-
"@backstage/test-utils": "1.7.8-next.
|
|
113
|
+
"@backstage/repo-tools": "0.13.3-next.3",
|
|
114
|
+
"@backstage/test-utils": "1.7.8-next.2",
|
|
115
115
|
"@types/core-js": "^2.5.4",
|
|
116
116
|
"@types/express": "^4.17.6",
|
|
117
117
|
"@types/git-url-parse": "^9.0.0",
|