@backstage/plugin-catalog-backend-module-openapi 0.1.27-next.0 → 0.1.27-next.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 +31 -0
- package/README.md +1 -1
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend-module-openapi
|
|
2
2
|
|
|
3
|
+
## 0.1.27-next.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 9aac2b0: Use `--cwd` as the first `yarn` argument
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/backend-common@0.21.0-next.2
|
|
10
|
+
- @backstage/backend-plugin-api@0.6.10-next.2
|
|
11
|
+
- @backstage/plugin-catalog-backend@1.17.0-next.2
|
|
12
|
+
- @backstage/plugin-catalog-node@1.6.2-next.2
|
|
13
|
+
- @backstage/config@1.1.1
|
|
14
|
+
- @backstage/catalog-model@1.4.4-next.0
|
|
15
|
+
- @backstage/integration@1.9.0-next.0
|
|
16
|
+
- @backstage/types@1.1.1
|
|
17
|
+
- @backstage/plugin-catalog-common@1.0.21-next.0
|
|
18
|
+
|
|
19
|
+
## 0.1.27-next.1
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- Updated dependencies
|
|
24
|
+
- @backstage/catalog-model@1.4.4-next.0
|
|
25
|
+
- @backstage/plugin-catalog-backend@1.17.0-next.1
|
|
26
|
+
- @backstage/backend-plugin-api@0.6.10-next.1
|
|
27
|
+
- @backstage/backend-common@0.21.0-next.1
|
|
28
|
+
- @backstage/integration@1.9.0-next.0
|
|
29
|
+
- @backstage/config@1.1.1
|
|
30
|
+
- @backstage/types@1.1.1
|
|
31
|
+
- @backstage/plugin-catalog-common@1.0.21-next.0
|
|
32
|
+
- @backstage/plugin-catalog-node@1.6.2-next.1
|
|
33
|
+
|
|
3
34
|
## 0.1.27-next.0
|
|
4
35
|
|
|
5
36
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@ This is useful for OpenAPI and AsyncAPI specifications.
|
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
14
|
# From your Backstage root directory
|
|
15
|
-
yarn
|
|
15
|
+
yarn --cwd packages/backend add @backstage/plugin-catalog-backend-module-openapi
|
|
16
16
|
```
|
|
17
17
|
|
|
18
18
|
### Adding the plugin to your `packages/backend`
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-backend-module-openapi",
|
|
3
3
|
"description": "A Backstage catalog backend module that helps with OpenAPI specifications",
|
|
4
|
-
"version": "0.1.27-next.
|
|
4
|
+
"version": "0.1.27-next.2",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -33,21 +33,21 @@
|
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@apidevtools/json-schema-ref-parser": "^9.0.6",
|
|
36
|
-
"@backstage/backend-common": "^0.21.0-next.
|
|
37
|
-
"@backstage/backend-plugin-api": "^0.6.10-next.
|
|
38
|
-
"@backstage/catalog-model": "^1.4.
|
|
36
|
+
"@backstage/backend-common": "^0.21.0-next.2",
|
|
37
|
+
"@backstage/backend-plugin-api": "^0.6.10-next.2",
|
|
38
|
+
"@backstage/catalog-model": "^1.4.4-next.0",
|
|
39
39
|
"@backstage/config": "^1.1.1",
|
|
40
|
-
"@backstage/integration": "^1.
|
|
41
|
-
"@backstage/plugin-catalog-backend": "^1.17.0-next.
|
|
42
|
-
"@backstage/plugin-catalog-common": "^1.0.
|
|
43
|
-
"@backstage/plugin-catalog-node": "^1.6.2-next.
|
|
40
|
+
"@backstage/integration": "^1.9.0-next.0",
|
|
41
|
+
"@backstage/plugin-catalog-backend": "^1.17.0-next.2",
|
|
42
|
+
"@backstage/plugin-catalog-common": "^1.0.21-next.0",
|
|
43
|
+
"@backstage/plugin-catalog-node": "^1.6.2-next.2",
|
|
44
44
|
"@backstage/types": "^1.1.1",
|
|
45
45
|
"winston": "^3.2.1",
|
|
46
46
|
"yaml": "^2.1.1"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@backstage/backend-test-utils": "^0.3.0-next.
|
|
50
|
-
"@backstage/cli": "^0.25.2-next.
|
|
49
|
+
"@backstage/backend-test-utils": "^0.3.0-next.2",
|
|
50
|
+
"@backstage/cli": "^0.25.2-next.2",
|
|
51
51
|
"openapi-types": "^12.0.0"
|
|
52
52
|
},
|
|
53
53
|
"files": [
|