@backstage/backend-openapi-utils 0.7.0-next.1 → 0.7.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 +11 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @backstage/backend-openapi-utils
|
|
2
2
|
|
|
3
|
+
## 0.7.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 84171b3: **BREAKING**: Removed `wrapInOpenApiTestServer`. This function redirected test traffic through the Optic `capture` proxy via the `OPTIC_PROXY` environment variable. Since the Optic dependency has been removed, this function no longer serves a purpose. Use `wrapServer` instead for OpenAPI spec validation in tests.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @backstage/backend-plugin-api@1.9.3
|
|
13
|
+
|
|
3
14
|
## 0.7.0-next.1
|
|
4
15
|
|
|
5
16
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/backend-openapi-utils",
|
|
3
|
-
"version": "0.7.0
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"description": "OpenAPI typescript support.",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "node-library"
|
|
@@ -54,9 +54,9 @@
|
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
56
|
"@apidevtools/swagger-parser": "^10.1.0",
|
|
57
|
-
"@backstage/backend-plugin-api": "1.9.3
|
|
58
|
-
"@backstage/errors": "1.3.1",
|
|
59
|
-
"@backstage/types": "1.2.2",
|
|
57
|
+
"@backstage/backend-plugin-api": "^1.9.3",
|
|
58
|
+
"@backstage/errors": "^1.3.1",
|
|
59
|
+
"@backstage/types": "^1.2.2",
|
|
60
60
|
"@types/express": "^4.17.6",
|
|
61
61
|
"@types/express-serve-static-core": "^4.17.5",
|
|
62
62
|
"ajv": "^8.16.0",
|
|
@@ -71,8 +71,8 @@
|
|
|
71
71
|
"openapi3-ts": "^3.1.2"
|
|
72
72
|
},
|
|
73
73
|
"devDependencies": {
|
|
74
|
-
"@backstage/cli": "0.36.4
|
|
75
|
-
"@backstage/test-utils": "1.7.20
|
|
74
|
+
"@backstage/cli": "^0.36.4",
|
|
75
|
+
"@backstage/test-utils": "^1.7.20",
|
|
76
76
|
"msw": "^2.0.0",
|
|
77
77
|
"supertest": "^7.0.0"
|
|
78
78
|
}
|