@backstage/plugin-catalog-backend-module-openapi 0.1.0-next.0 → 0.1.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +38 -0
  2. package/package.json +9 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,43 @@
1
1
  # @backstage/plugin-catalog-backend-module-openapi
2
2
 
3
+ ## 0.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 67503d159e: Add basic OpenAPI \$ref support.
8
+
9
+ For more information see [here](https://github.com/backstage/backstage/tree/master/plugins/catalog-backend-module-openapi).
10
+
11
+ ### Patch Changes
12
+
13
+ - 4881dc4c84: Updated dependency `openapi-types` to `^12.0.0`.
14
+ - Updated dependencies
15
+ - @backstage/plugin-catalog-backend@1.3.0
16
+ - @backstage/backend-common@0.14.1
17
+ - @backstage/catalog-model@1.1.0
18
+ - @backstage/integration@1.2.2
19
+
20
+ ## 0.1.0-next.2
21
+
22
+ ### Patch Changes
23
+
24
+ - Updated dependencies
25
+ - @backstage/plugin-catalog-backend@1.3.0-next.3
26
+ - @backstage/backend-common@0.14.1-next.3
27
+ - @backstage/integration@1.2.2-next.3
28
+ - @backstage/catalog-model@1.1.0-next.3
29
+
30
+ ## 0.1.0-next.1
31
+
32
+ ### Patch Changes
33
+
34
+ - 4881dc4c84: Updated dependency `openapi-types` to `^12.0.0`.
35
+ - Updated dependencies
36
+ - @backstage/catalog-model@1.1.0-next.2
37
+ - @backstage/backend-common@0.14.1-next.2
38
+ - @backstage/plugin-catalog-backend@1.2.1-next.2
39
+ - @backstage/integration@1.2.2-next.2
40
+
3
41
  ## 0.1.0-next.0
4
42
 
5
43
  ### Minor Changes
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.0-next.0",
4
+ "version": "0.1.0",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -34,21 +34,21 @@
34
34
  },
35
35
  "dependencies": {
36
36
  "@apidevtools/swagger-parser": "^10.1.0",
37
- "@backstage/backend-common": "^0.14.1-next.1",
38
- "@backstage/catalog-model": "^1.1.0-next.1",
37
+ "@backstage/backend-common": "^0.14.1",
38
+ "@backstage/catalog-model": "^1.1.0",
39
39
  "@backstage/config": "^1.0.1",
40
- "@backstage/integration": "^1.2.2-next.1",
41
- "@backstage/plugin-catalog-backend": "^1.2.1-next.1",
40
+ "@backstage/integration": "^1.2.2",
41
+ "@backstage/plugin-catalog-backend": "^1.3.0",
42
42
  "winston": "^3.2.1",
43
43
  "yaml": "^2.1.1"
44
44
  },
45
45
  "devDependencies": {
46
- "@backstage/backend-test-utils": "^0.1.26-next.1",
47
- "@backstage/cli": "^0.18.0-next.1",
48
- "openapi-types": "^11.0.1"
46
+ "@backstage/backend-test-utils": "^0.1.26",
47
+ "@backstage/cli": "^0.18.0",
48
+ "openapi-types": "^12.0.0"
49
49
  },
50
50
  "files": [
51
51
  "dist"
52
52
  ],
53
- "gitHead": "e0a993834c31487a97a1ae6878eaf3685f03fc1a"
53
+ "gitHead": "999878d8f1ae30f6a15925816af2016cb9d717a1"
54
54
  }