Version Packages (next)

This commit is contained in:
github-actions[bot]
2025-10-24 13:22:48 +00:00
parent 5c614fff85
commit 2c1fe37d3b
21 changed files with 9509 additions and 11 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/create-app': patch
---
Bumped create-app version.
+6
View File
@@ -209,6 +209,8 @@
"changesets": [
"better-hats-cross",
"better-steaks-act",
"create-app-1761312116",
"cruel-plums-talk",
"every-ants-count",
"every-clocks-arrive",
"fine-hands-return",
@@ -218,14 +220,18 @@
"ninety-cobras-feel",
"polite-seas-divide",
"rich-streets-rule",
"seven-cycles-pick",
"short-sides-feel",
"silver-garlics-thank",
"smart-donuts-teach",
"solid-bees-agree",
"solid-dancers-march",
"stupid-doodles-love",
"tender-regions-know",
"typescript-constructor-refactor",
"upset-teeth-add",
"warm-moments-repeat",
"wild-donkeys-sneeze",
"wild-owls-divide"
]
}
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "root",
"version": "1.45.0-next.0",
"version": "1.45.0-next.1",
"backstage": {
"cli": {
"new": {
+7
View File
@@ -1,5 +1,12 @@
# example-app-next
## 0.0.29-next.1
### Patch Changes
- Updated dependencies
- @backstage/ui@0.9.0-next.1
## 0.0.29-next.0
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "example-app-next",
"version": "0.0.29-next.0",
"version": "0.0.29-next.1",
"backstage": {
"role": "frontend"
},
+8
View File
@@ -1,5 +1,13 @@
# example-app
## 0.2.115-next.1
### Patch Changes
- Updated dependencies
- @backstage/ui@0.9.0-next.1
- @backstage/plugin-mui-to-bui@0.2.1-next.1
## 0.2.115-next.0
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "example-app",
"version": "0.2.115-next.0",
"version": "0.2.115-next.1",
"backstage": {
"role": "frontend"
},
+6
View File
@@ -1,5 +1,11 @@
# @backstage/create-app
## 0.7.6-next.1
### Patch Changes
- Bumped create-app version.
## 0.7.6-next.0
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/create-app",
"version": "0.7.6-next.0",
"version": "0.7.6-next.1",
"description": "A CLI that helps you create your own Backstage app",
"backstage": {
"role": "cli"
+7
View File
@@ -1,5 +1,12 @@
# @backstage/dev-utils
## 1.1.17-next.1
### Patch Changes
- Updated dependencies
- @backstage/ui@0.9.0-next.1
## 1.1.17-next.0
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/dev-utils",
"version": "1.1.17-next.0",
"version": "1.1.17-next.1",
"description": "Utilities for developing Backstage plugins.",
"backstage": {
"role": "web-library"
@@ -1,5 +1,12 @@
# techdocs-cli-embedded-app
## 0.2.114-next.1
### Patch Changes
- Updated dependencies
- @backstage/ui@0.9.0-next.1
## 0.2.114-next.0
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "techdocs-cli-embedded-app",
"version": "0.2.114-next.0",
"version": "0.2.114-next.1",
"backstage": {
"role": "frontend"
},
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@techdocs/cli",
"version": "1.10.1-next.0",
"version": "1.10.2-next.0",
"description": "Utility CLI for managing TechDocs sites in Backstage.",
"backstage": {
"role": "cli"
+78
View File
@@ -1,5 +1,83 @@
# @backstage/ui
## 0.9.0-next.1
### Minor Changes
- 5c614ff: **BREAKING**: Migrated Checkbox component from Base UI to React Aria Components.
API changes required:
- `checked``isSelected`
- `defaultChecked``defaultSelected`
- `disabled``isDisabled`
- `required``isRequired`
- `label` prop removed - use `children` instead
- CSS: `bui-CheckboxLabel` class removed
- Data attribute: `data-checked``data-selected`
- Use without label is no longer supported
Migration examples:
Before:
```tsx
<Checkbox label="Accept terms" checked={agreed} onChange={setAgreed} />
```
After:
```tsx
<Checkbox isSelected={agreed} onChange={setAgreed}>
Accept terms
</Checkbox>
```
Before:
```tsx
<Checkbox label="Option" disabled />
```
After:
```tsx
<Checkbox isDisabled>Option</Checkbox>
```
Before:
```tsx
<Checkbox />
```
After:
```tsx
<Checkbox>
<VisuallyHidden>Accessible label</VisuallyHidden>
</Checkbox>
```
- b78fc45: **BREAKING**: Changed className prop behavior to augment default styles instead of being ignored or overriding them.
Affected components:
- Menu, MenuListBox, MenuAutocomplete, MenuAutocompleteListbox, MenuItem, MenuListBoxItem, MenuSection, MenuSeparator
- Switch
- Skeleton
- FieldLabel
- Header, HeaderToolbar
- HeaderPage
- Tabs, TabList, Tab, TabPanel
If you were passing custom className values to any of these components that relied on the previous behavior, you may need to adjust your styles to account for the default classes now being applied alongside your custom classes.
### Patch Changes
- ff9f0c3: Enable tree-shaking of imports other than `*.css`.
- 1ef3ca4: Added new VisuallyHidden component for hiding content visually while keeping it accessible to screen readers.
## 0.8.2-next.0
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/ui",
"version": "0.8.2-next.0",
"version": "0.9.0-next.1",
"backstage": {
"role": "web-library"
},
+8
View File
@@ -1,5 +1,13 @@
# @backstage/plugin-mui-to-bui
## 0.2.1-next.1
### Patch Changes
- 5c614ff: Updated BUI checkbox preview example to align with new component API.
- Updated dependencies
- @backstage/ui@0.9.0-next.1
## 0.2.1-next.0
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-mui-to-bui",
"version": "0.2.1-next.0",
"version": "0.2.1-next.1",
"backstage": {
"role": "frontend-plugin",
"pluginId": "mui-to-bui",
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-notifications-backend-module-email",
"version": "0.3.15-next.0",
"version": "0.3.16-next.0",
"description": "The email backend module for the notifications plugin.",
"backstage": {
"role": "backend-plugin-module",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-techdocs",
"version": "1.15.2-next.0",
"version": "1.15.3-next.0",
"description": "The Backstage plugin that renders technical documentation for your components",
"backstage": {
"role": "frontend-plugin",