@backstage/backend-openapi-utils 0.5.0-next.3 → 0.5.1-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.
Files changed (2) hide show
  1. package/CHANGELOG.md +32 -0
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,37 @@
1
1
  # @backstage/backend-openapi-utils
2
2
 
3
+ ## 0.5.1-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/backend-plugin-api@1.2.1-next.0
9
+
10
+ ## 0.5.0
11
+
12
+ ### Minor Changes
13
+
14
+ - 700d32b: **BREAKING**: The `wrapInOpenApiTestServer` and `wrapServer` functions are now exported via `/testUtils` subpath. If you were importing these functions directly from the root of the package, you will need to update your imports to use the `/testUtils` subpath:
15
+
16
+ ```diff
17
+ - import { wrapInOpenApiTestServer } from '@backstage/backend-openapi-utils';
18
+ + import { wrapInOpenApiTestServer } from '@backstage/backend-openapi-utils/testUtils';
19
+ ```
20
+
21
+ or
22
+
23
+ ```diff
24
+ - import { wrapServer } from '@backstage/backend-openapi-utils';
25
+ + import { wrapServer } from '@backstage/backend-openapi-utils/testUtils';
26
+ ```
27
+
28
+ ### Patch Changes
29
+
30
+ - Updated dependencies
31
+ - @backstage/backend-plugin-api@1.2.0
32
+ - @backstage/errors@1.2.7
33
+ - @backstage/types@1.2.1
34
+
3
35
  ## 0.5.0-next.3
4
36
 
5
37
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/backend-openapi-utils",
3
- "version": "0.5.0-next.3",
3
+ "version": "0.5.1-next.0",
4
4
  "description": "OpenAPI typescript support.",
5
5
  "backstage": {
6
6
  "role": "node-library"
@@ -54,7 +54,7 @@
54
54
  },
55
55
  "dependencies": {
56
56
  "@apidevtools/swagger-parser": "^10.1.0",
57
- "@backstage/backend-plugin-api": "1.2.0-next.2",
57
+ "@backstage/backend-plugin-api": "1.2.1-next.0",
58
58
  "@backstage/errors": "1.2.7",
59
59
  "@backstage/types": "1.2.1",
60
60
  "@types/express": "^4.17.6",
@@ -71,8 +71,8 @@
71
71
  "openapi3-ts": "^3.1.2"
72
72
  },
73
73
  "devDependencies": {
74
- "@backstage/cli": "0.30.0-next.3",
75
- "@backstage/test-utils": "1.7.5-next.0",
74
+ "@backstage/cli": "0.30.0",
75
+ "@backstage/test-utils": "1.7.5",
76
76
  "msw": "^1.0.0",
77
77
  "supertest": "^7.0.0"
78
78
  }