@backstage/plugin-catalog-backend-module-backstage-openapi 0.4.4-next.1 → 0.4.5-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 +25 -0
- package/README.md +3 -3
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend-module-backstage-openapi
|
|
2
2
|
|
|
3
|
+
## 0.4.5-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/plugin-catalog-node@1.15.2-next.0
|
|
9
|
+
- @backstage/backend-plugin-api@1.2.0-next.0
|
|
10
|
+
- @backstage/backend-openapi-utils@0.4.2-next.0
|
|
11
|
+
- @backstage/catalog-model@1.7.3
|
|
12
|
+
- @backstage/config@1.3.2
|
|
13
|
+
- @backstage/errors@1.2.7
|
|
14
|
+
|
|
15
|
+
## 0.4.4
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- 12ba80f: docs: Use a valid configuration as example
|
|
20
|
+
- Updated dependencies
|
|
21
|
+
- @backstage/backend-openapi-utils@0.4.1
|
|
22
|
+
- @backstage/backend-plugin-api@1.1.1
|
|
23
|
+
- @backstage/catalog-model@1.7.3
|
|
24
|
+
- @backstage/config@1.3.2
|
|
25
|
+
- @backstage/errors@1.2.7
|
|
26
|
+
- @backstage/plugin-catalog-node@1.15.1
|
|
27
|
+
|
|
3
28
|
## 0.4.4-next.1
|
|
4
29
|
|
|
5
30
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -26,14 +26,14 @@ catalog:
|
|
|
26
26
|
backstageOpenapi:
|
|
27
27
|
plugins:
|
|
28
28
|
- catalog
|
|
29
|
-
-
|
|
29
|
+
- events
|
|
30
30
|
- search
|
|
31
31
|
entityOverrides: # All optional
|
|
32
32
|
metadata:
|
|
33
|
-
name: 'my
|
|
33
|
+
name: 'my-name'
|
|
34
34
|
title: 'my title'
|
|
35
35
|
spec:
|
|
36
|
-
owner: 'my
|
|
36
|
+
owner: 'my-team'
|
|
37
37
|
```
|
|
38
38
|
|
|
39
39
|
We will attempt to load each plugin's OpenAPI spec hosted at `${pluginRoute}/openapi.json`. These are automatically added if you are using `@backstage/backend-openapi-utils`'s `createValidatedOpenApiRouter`.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-backend-module-backstage-openapi",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.5-next.0",
|
|
4
4
|
"backstage": {
|
|
5
5
|
"role": "backend-plugin-module",
|
|
6
6
|
"pluginId": "catalog",
|
|
@@ -33,19 +33,19 @@
|
|
|
33
33
|
"test": "backstage-cli package test"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@backstage/backend-openapi-utils": "0.4.
|
|
37
|
-
"@backstage/backend-plugin-api": "1.
|
|
38
|
-
"@backstage/catalog-model": "1.7.3
|
|
39
|
-
"@backstage/config": "1.3.2
|
|
40
|
-
"@backstage/errors": "1.2.7
|
|
41
|
-
"@backstage/plugin-catalog-node": "1.15.
|
|
36
|
+
"@backstage/backend-openapi-utils": "0.4.2-next.0",
|
|
37
|
+
"@backstage/backend-plugin-api": "1.2.0-next.0",
|
|
38
|
+
"@backstage/catalog-model": "1.7.3",
|
|
39
|
+
"@backstage/config": "1.3.2",
|
|
40
|
+
"@backstage/errors": "1.2.7",
|
|
41
|
+
"@backstage/plugin-catalog-node": "1.15.2-next.0",
|
|
42
42
|
"cross-fetch": "^4.0.0",
|
|
43
43
|
"lodash": "^4.17.21",
|
|
44
44
|
"openapi-merge": "^1.3.2",
|
|
45
45
|
"uuid": "^11.0.0"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@backstage/cli": "0.
|
|
48
|
+
"@backstage/cli": "0.30.0-next.0",
|
|
49
49
|
"openapi3-ts": "^3.1.2"
|
|
50
50
|
},
|
|
51
51
|
"configSchema": "config.d.ts",
|