Version Packages

This commit is contained in:
github-actions[bot]
2025-02-18 15:19:53 +00:00
parent fd15e2ef27
commit 0df84b6ae4
472 changed files with 5560 additions and 1922 deletions
@@ -1,5 +1,30 @@
# @backstage/backend-openapi-utils
## 0.5.0
### Minor Changes
- 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:
```diff
- import { wrapInOpenApiTestServer } from '@backstage/backend-openapi-utils';
+ import { wrapInOpenApiTestServer } from '@backstage/backend-openapi-utils/testUtils';
```
or
```diff
- import { wrapServer } from '@backstage/backend-openapi-utils';
+ import { wrapServer } from '@backstage/backend-openapi-utils/testUtils';
```
### Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.2.0
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
## 0.5.0-next.3
### Patch Changes