Version Packages (next)

This commit is contained in:
github-actions[bot]
2026-03-31 15:30:51 +00:00
parent 292b6431a2
commit a2cb332e25
334 changed files with 3572 additions and 167 deletions
+11
View File
@@ -1,5 +1,16 @@
# @backstage/frontend-plugin-api
## 0.16.0-next.1
### Minor Changes
- 49397c1: Simplified the type signature of `createRouteRef` by replacing the dual `TParams`/`TParamKeys` type parameters with a single `TParamKey` parameter. This is a breaking change for callers that explicitly provided type arguments, but most usage that relies on inference is unaffected.
### Patch Changes
- ddc5247: Fixed `FlattenedMessages` type to avoid excessive type instantiation depth in TypeScript 6 when using `createTranslationRef` with the `translations` option.
- fa55078: Refactored the internal `createSchemaFromZod` helper to use a schema-first generic pattern, replacing the `ZodSchema<TOutput, ZodTypeDef, TInput>` constraint with `TSchema extends ZodType`. This avoids "excessively deep" type inference errors when multiple Zod copies are resolved.
## 0.15.2-next.0
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/frontend-plugin-api",
"version": "0.15.2-next.0",
"version": "0.16.0-next.1",
"backstage": {
"role": "web-library"
},