Version Packages (next)
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
---
|
||||
'@backstage/create-app': patch
|
||||
---
|
||||
|
||||
Bumped create-app version.
|
||||
@@ -208,6 +208,7 @@
|
||||
},
|
||||
"changesets": [
|
||||
"all-camels-agree",
|
||||
"all-parrots-change",
|
||||
"better-hats-cross",
|
||||
"better-steaks-act",
|
||||
"breezy-times-ring",
|
||||
@@ -215,13 +216,19 @@
|
||||
"busy-goats-create",
|
||||
"clever-boats-clap",
|
||||
"create-app-1761312116",
|
||||
"create-app-1762897504",
|
||||
"cruel-items-dig",
|
||||
"cruel-plums-talk",
|
||||
"deep-gifts-slide",
|
||||
"easy-hands-grow",
|
||||
"eighty-mails-leave",
|
||||
"eighty-results-prove",
|
||||
"eleven-carpets-win",
|
||||
"eleven-lights-taste",
|
||||
"every-ants-count",
|
||||
"every-clocks-arrive",
|
||||
"fancy-years-camp",
|
||||
"fast-tables-sink",
|
||||
"fast-tools-mate",
|
||||
"fine-hands-return",
|
||||
"five-seas-jam",
|
||||
@@ -233,24 +240,34 @@
|
||||
"giant-lamps-happen",
|
||||
"grumpy-planes-bet",
|
||||
"heavy-cars-wash",
|
||||
"honest-lamps-occur",
|
||||
"honest-pandas-win",
|
||||
"huge-taxis-grab",
|
||||
"itchy-bars-smell",
|
||||
"legal-weeks-walk",
|
||||
"lemon-spies-sleep",
|
||||
"long-humans-sink",
|
||||
"long-impalas-burn",
|
||||
"loud-carpets-throw",
|
||||
"moody-plums-add",
|
||||
"ninety-cobras-feel",
|
||||
"odd-states-melt",
|
||||
"open-cloths-listen",
|
||||
"open-items-open",
|
||||
"plugin-relative-extensions",
|
||||
"polite-eggs-dance",
|
||||
"polite-seas-divide",
|
||||
"pretty-kids-allow",
|
||||
"purple-deer-bet",
|
||||
"quiet-singers-pick",
|
||||
"renovate-cd75086",
|
||||
"rich-streets-rule",
|
||||
"ripe-crabs-care",
|
||||
"seven-cycles-pick",
|
||||
"sharp-dragons-relate",
|
||||
"short-sides-feel",
|
||||
"silver-garlics-thank",
|
||||
"sixty-clowns-run",
|
||||
"smart-donuts-teach",
|
||||
"solid-bees-agree",
|
||||
"solid-dancers-march",
|
||||
@@ -259,11 +276,15 @@
|
||||
"tender-regions-know",
|
||||
"thirty-hoops-own",
|
||||
"tough-sloths-spend",
|
||||
"true-taxes-cover",
|
||||
"twelve-spoons-feel",
|
||||
"typescript-constructor-refactor",
|
||||
"upset-teeth-add",
|
||||
"warm-carrots-lead",
|
||||
"warm-ducks-notice",
|
||||
"warm-moments-repeat",
|
||||
"warm-shrimps-clap",
|
||||
"wicked-cycles-enter",
|
||||
"wide-papers-run",
|
||||
"wild-donkeys-sneeze",
|
||||
"wild-owls-divide",
|
||||
|
||||
@@ -0,0 +1,282 @@
|
||||
# Release v1.45.0-next.3
|
||||
|
||||
Upgrade Helper: [https://backstage.github.io/upgrade-helper/?to=1.45.0-next.3](https://backstage.github.io/upgrade-helper/?to=1.45.0-next.3)
|
||||
|
||||
## @backstage/backend-plugin-api@1.5.0-next.2
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- 62fc2de: Explicitly mark `coreServices.rootInstanceMetadata` as a root service.
|
||||
|
||||
## @backstage/repo-tools@0.16.0-next.2
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- 11c61f2: The `package-docs` command will now automatically use a `typedoc.json` file if one exists at the root of your project.
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/backend-plugin-api@1.5.0-next.2
|
||||
|
||||
## @backstage/ui@0.9.0-next.3
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- 83c100e: **BREAKING**: Removed `Collapsible` component. Migrate to `Accordion` or use React Aria `Disclosure`.
|
||||
|
||||
## Migration Path 1: Accordion (Opinionated Styled Component)
|
||||
|
||||
Accordion provides preset styling with a similar component structure.
|
||||
|
||||
```diff
|
||||
- import { Collapsible } from '@backstage/ui';
|
||||
+ import { Accordion, AccordionTrigger, AccordionPanel } from '@backstage/ui';
|
||||
|
||||
- <Collapsible.Root>
|
||||
- <Collapsible.Trigger render={(props) => <Button {...props}>Toggle</Button>} />
|
||||
- <Collapsible.Panel>Content</Collapsible.Panel>
|
||||
- </Collapsible.Root>
|
||||
|
||||
+ <Accordion>
|
||||
+ <AccordionTrigger title="Toggle" />
|
||||
+ <AccordionPanel>Content</AccordionPanel>
|
||||
+ </Accordion>
|
||||
```
|
||||
|
||||
CSS classes: `.bui-CollapsibleRoot` → `.bui-Accordion`, `.bui-CollapsibleTrigger` → `.bui-AccordionTrigger` (now on heading element), `.bui-CollapsiblePanel` → `.bui-AccordionPanel`
|
||||
|
||||
## Migration Path 2: React Aria Disclosure (Full Customization)
|
||||
|
||||
For custom styling without preset styles:
|
||||
|
||||
```tsx
|
||||
import { Disclosure, Button, DisclosurePanel } from 'react-aria-components';
|
||||
|
||||
<Disclosure>
|
||||
<Button slot="trigger">Toggle</Button>
|
||||
<DisclosurePanel>Content</DisclosurePanel>
|
||||
</Disclosure>;
|
||||
```
|
||||
|
||||
- 816af0f: **BREAKING**: The `SelectProps` interface now accepts a generic type parameter for selection mode.
|
||||
|
||||
Added searchable and multiple selection support to Select component. The component now accepts `searchable`, `selectionMode`, and `searchPlaceholder` props to enable filtering and multi-selection modes.
|
||||
|
||||
Migration: If you're using `SelectProps` type directly, update from `SelectProps` to `SelectProps<'single' | 'multiple'>`. Component usage remains backward compatible.
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 35a3614: Fixed CSS issues in Select component including popover width constraints, focus outline behavior, and overflow handling.
|
||||
- 01476f0: Improved visual consistency of PasswordField, SearchField, and MenuAutocomplete components.
|
||||
- 836b0c7: Fixed dialog backdrop appearance in dark mode.
|
||||
- 6d35a6b: Removed `@base-ui-components/react` dependency as all components now use React Aria Components.
|
||||
- 7839e7b: Added `loading` prop to Button and ButtonIcon components for displaying spinner during async operations.
|
||||
- a00fb88: Fixed Table Row component to properly support opening links in new tabs via right-click or Cmd+Click when using the href prop.
|
||||
|
||||
## @backstage/plugin-notifications-backend@0.6.0-next.2
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- 87e597c: Adds support for default configuration for an entire notification channel.
|
||||
This setting will also be inherited down to origins and topics while still respecting the users individual choices.
|
||||
|
||||
This will be handy if you want to use a "opt-in" strategy.
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-notifications-common@0.2.0-next.1
|
||||
- @backstage/backend-plugin-api@1.5.0-next.2
|
||||
- @backstage/plugin-notifications-node@0.2.21-next.2
|
||||
|
||||
## @backstage/plugin-notifications-common@0.2.0-next.1
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- 87e597c: Adds support for default configuration for an entire notification channel.
|
||||
This setting will also be inherited down to origins and topics while still respecting the users individual choices.
|
||||
|
||||
This will be handy if you want to use a "opt-in" strategy.
|
||||
|
||||
## @backstage/backend-test-utils@1.10.0-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- f3001fd: Tweak some of the mock services to have more precise types
|
||||
- Updated dependencies
|
||||
- @backstage/backend-plugin-api@1.5.0-next.2
|
||||
|
||||
## @backstage/core-components@0.18.3-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 96ad674: Line numbers in LogViewer will not be selectable in UI anymore
|
||||
|
||||
## @backstage/create-app@0.7.6-next.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Bumped create-app version.
|
||||
|
||||
## @backstage/frontend-plugin-api@0.12.2-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 7c6a66d: Added support for plugin-relative `attachTo` declarations for extension definitions. This allows for the creation of extension and extension blueprints that attach to other extensions of a particular `kind` in the same plugin, rather than needing to provide the exact extension ID. This is particularly useful when wanting to provide extension blueprints with a built-in hierarchy where the extensions created from one blueprint attach to extensions created from the other blueprint, for example:
|
||||
|
||||
```ts
|
||||
// kind: 'tabbed-page'
|
||||
const parentPage = TabbedPageBlueprint.make({
|
||||
params: {....}
|
||||
})
|
||||
// attachTo: { kind: 'tabbed-page', input: 'tabs' }
|
||||
const child1 = TabContentBlueprint.make({
|
||||
name: 'tab1',
|
||||
params: {....}
|
||||
})
|
||||
```
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/core-components@0.18.3-next.2
|
||||
|
||||
## @backstage/plugin-app-visualizer@0.1.25-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 722e2df: Migrated to use `@backstage/ui`.
|
||||
- Updated dependencies
|
||||
- @backstage/ui@0.9.0-next.3
|
||||
- @backstage/frontend-plugin-api@0.12.2-next.2
|
||||
- @backstage/core-components@0.18.3-next.2
|
||||
|
||||
## @backstage/plugin-catalog-graph@0.5.3-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- a2d7ae7: Ensure the catalog graph entity card respects the height prop so the visualization scales down properly on wide screens.
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.21.3-next.2
|
||||
- @backstage/frontend-plugin-api@0.12.2-next.2
|
||||
- @backstage/core-components@0.18.3-next.2
|
||||
|
||||
## @backstage/plugin-catalog-react@1.21.3-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 36d7582: Added missing i18n
|
||||
- Updated dependencies
|
||||
- @backstage/frontend-plugin-api@0.12.2-next.2
|
||||
- @backstage/core-components@0.18.3-next.2
|
||||
|
||||
## @backstage/plugin-home@0.8.14-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 2ac5d29: Allow customization of VisitList by adding optional enrichVisit, transformPathname, canSave functions to VisitsStorageApi, along with VisitDisplayProvider for colors, labels
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.21.3-next.2
|
||||
- @backstage/frontend-plugin-api@0.12.2-next.2
|
||||
- @backstage/core-components@0.18.3-next.2
|
||||
|
||||
## @backstage/plugin-kubernetes-backend@0.20.4-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 1906d37: Updated dependency `@kubernetes/client-node` to `1.4.0`.
|
||||
- Updated dependencies
|
||||
- @backstage/backend-plugin-api@1.5.0-next.2
|
||||
- @backstage/plugin-kubernetes-common@0.9.8-next.1
|
||||
- @backstage/plugin-kubernetes-node@0.3.6-next.2
|
||||
|
||||
## @backstage/plugin-kubernetes-common@0.9.8-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 1906d37: Updated dependency `@kubernetes/client-node` to `1.4.0`.
|
||||
|
||||
## @backstage/plugin-kubernetes-node@0.3.6-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 1906d37: Updated dependency `@kubernetes/client-node` to `1.4.0`.
|
||||
- Updated dependencies
|
||||
- @backstage/backend-plugin-api@1.5.0-next.2
|
||||
- @backstage/plugin-kubernetes-common@0.9.8-next.1
|
||||
|
||||
## @backstage/plugin-kubernetes-react@0.5.13-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 1906d37: Updated dependency `@kubernetes/client-node` to `1.4.0`.
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-kubernetes-common@0.9.8-next.1
|
||||
- @backstage/core-components@0.18.3-next.2
|
||||
|
||||
## @backstage/plugin-notifications@0.5.11-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-notifications-common@0.2.0-next.1
|
||||
- @backstage/frontend-plugin-api@0.12.2-next.2
|
||||
- @backstage/core-components@0.18.3-next.2
|
||||
|
||||
## @backstage/plugin-notifications-backend-module-email@0.3.16-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-notifications-common@0.2.0-next.1
|
||||
- @backstage/backend-plugin-api@1.5.0-next.2
|
||||
- @backstage/plugin-notifications-node@0.2.21-next.2
|
||||
|
||||
## @backstage/plugin-notifications-backend-module-slack@0.2.1-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-notifications-common@0.2.0-next.1
|
||||
- @backstage/backend-plugin-api@1.5.0-next.2
|
||||
- @backstage/plugin-notifications-node@0.2.21-next.2
|
||||
|
||||
## @backstage/plugin-notifications-node@0.2.21-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-notifications-common@0.2.0-next.1
|
||||
- @backstage/backend-plugin-api@1.5.0-next.2
|
||||
|
||||
## @backstage/plugin-org@0.6.46-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 6db9e7e: Improved responsiveness of GroupProfileCard component
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.21.3-next.2
|
||||
- @backstage/frontend-plugin-api@0.12.2-next.2
|
||||
- @backstage/core-components@0.18.3-next.2
|
||||
|
||||
## @backstage/plugin-scaffolder-backend-module-notifications@0.1.16-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-notifications-common@0.2.0-next.1
|
||||
- @backstage/backend-plugin-api@1.5.0-next.2
|
||||
- @backstage/plugin-notifications-node@0.2.21-next.2
|
||||
|
||||
## example-backend@0.0.44-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-notifications-backend@0.6.0-next.2
|
||||
- @backstage/backend-plugin-api@1.5.0-next.2
|
||||
- @backstage/plugin-kubernetes-backend@0.20.4-next.2
|
||||
- @backstage/plugin-scaffolder-backend-module-notifications@0.1.16-next.2
|
||||
- @backstage/plugin-catalog-backend@3.2.0-next.1
|
||||
- @backstage/plugin-events-backend@0.5.8-next.1
|
||||
- @backstage/plugin-scaffolder-backend@3.0.1-next.1
|
||||
- @backstage/plugin-search-backend@2.0.8-next.1
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "root",
|
||||
"version": "1.45.0-next.2",
|
||||
"version": "1.45.0-next.3",
|
||||
"backstage": {
|
||||
"cli": {
|
||||
"new": {
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
# @backstage/backend-plugin-api
|
||||
|
||||
## 1.5.0-next.2
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- 62fc2de: Explicitly mark `coreServices.rootInstanceMetadata` as a root service.
|
||||
|
||||
## 1.5.0-next.1
|
||||
|
||||
### Minor Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@backstage/backend-plugin-api",
|
||||
"version": "1.5.0-next.1",
|
||||
"version": "1.5.0-next.2",
|
||||
"description": "Core API used by Backstage backend plugins",
|
||||
"backstage": {
|
||||
"role": "node-library"
|
||||
|
||||
@@ -1,5 +1,13 @@
|
||||
# @backstage/backend-test-utils
|
||||
|
||||
## 1.10.0-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- f3001fd: Tweak some of the mock services to have more precise types
|
||||
- Updated dependencies
|
||||
- @backstage/backend-plugin-api@1.5.0-next.2
|
||||
|
||||
## 1.10.0-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@backstage/backend-test-utils",
|
||||
"version": "1.10.0-next.1",
|
||||
"version": "1.10.0-next.2",
|
||||
"description": "Test helpers library for Backstage backends",
|
||||
"backstage": {
|
||||
"role": "node-library"
|
||||
|
||||
@@ -1,5 +1,19 @@
|
||||
# example-backend
|
||||
|
||||
## 0.0.44-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-notifications-backend@0.6.0-next.2
|
||||
- @backstage/backend-plugin-api@1.5.0-next.2
|
||||
- @backstage/plugin-kubernetes-backend@0.20.4-next.2
|
||||
- @backstage/plugin-scaffolder-backend-module-notifications@0.1.16-next.2
|
||||
- @backstage/plugin-catalog-backend@3.2.0-next.1
|
||||
- @backstage/plugin-events-backend@0.5.8-next.1
|
||||
- @backstage/plugin-scaffolder-backend@3.0.1-next.1
|
||||
- @backstage/plugin-search-backend@2.0.8-next.1
|
||||
|
||||
## 0.0.44-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "example-backend",
|
||||
"version": "0.0.44-next.1",
|
||||
"version": "0.0.44-next.2",
|
||||
"backstage": {
|
||||
"role": "backend"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
# @backstage/core-components
|
||||
|
||||
## 0.18.3-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 96ad674: Line numbers in LogViewer will not be selectable in UI anymore
|
||||
|
||||
## 0.18.3-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@backstage/core-components",
|
||||
"version": "0.18.3-next.1",
|
||||
"version": "0.18.3-next.2",
|
||||
"description": "Core components used by Backstage plugins and apps",
|
||||
"backstage": {
|
||||
"role": "web-library"
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
# @backstage/create-app
|
||||
|
||||
## 0.7.6-next.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Bumped create-app version.
|
||||
|
||||
## 0.7.6-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@backstage/create-app",
|
||||
"version": "0.7.6-next.2",
|
||||
"version": "0.7.6-next.3",
|
||||
"description": "A CLI that helps you create your own Backstage app",
|
||||
"backstage": {
|
||||
"role": "cli"
|
||||
|
||||
@@ -1,5 +1,26 @@
|
||||
# @backstage/frontend-plugin-api
|
||||
|
||||
## 0.12.2-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 7c6a66d: Added support for plugin-relative `attachTo` declarations for extension definitions. This allows for the creation of extension and extension blueprints that attach to other extensions of a particular `kind` in the same plugin, rather than needing to provide the exact extension ID. This is particularly useful when wanting to provide extension blueprints with a built-in hierarchy where the extensions created from one blueprint attach to extensions created from the other blueprint, for example:
|
||||
|
||||
```ts
|
||||
// kind: 'tabbed-page'
|
||||
const parentPage = TabbedPageBlueprint.make({
|
||||
params: {....}
|
||||
})
|
||||
// attachTo: { kind: 'tabbed-page', input: 'tabs' }
|
||||
const child1 = TabContentBlueprint.make({
|
||||
name: 'tab1',
|
||||
params: {....}
|
||||
})
|
||||
```
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/core-components@0.18.3-next.2
|
||||
|
||||
## 0.12.2-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@backstage/frontend-plugin-api",
|
||||
"version": "0.12.2-next.1",
|
||||
"version": "0.12.2-next.2",
|
||||
"backstage": {
|
||||
"role": "web-library"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,16 @@
|
||||
# @backstage/repo-tools
|
||||
|
||||
## 0.16.0-next.2
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- 11c61f2: The `package-docs` command will now automatically use a `typedoc.json` file if one exists at the root of your project.
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/backend-plugin-api@1.5.0-next.2
|
||||
|
||||
## 0.15.4-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@backstage/repo-tools",
|
||||
"version": "0.15.4-next.1",
|
||||
"version": "0.16.0-next.2",
|
||||
"description": "CLI for Backstage repo tooling ",
|
||||
"backstage": {
|
||||
"role": "cli"
|
||||
|
||||
@@ -1,5 +1,60 @@
|
||||
# @backstage/ui
|
||||
|
||||
## 0.9.0-next.3
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- 83c100e: **BREAKING**: Removed `Collapsible` component. Migrate to `Accordion` or use React Aria `Disclosure`.
|
||||
|
||||
## Migration Path 1: Accordion (Opinionated Styled Component)
|
||||
|
||||
Accordion provides preset styling with a similar component structure.
|
||||
|
||||
```diff
|
||||
- import { Collapsible } from '@backstage/ui';
|
||||
+ import { Accordion, AccordionTrigger, AccordionPanel } from '@backstage/ui';
|
||||
|
||||
- <Collapsible.Root>
|
||||
- <Collapsible.Trigger render={(props) => <Button {...props}>Toggle</Button>} />
|
||||
- <Collapsible.Panel>Content</Collapsible.Panel>
|
||||
- </Collapsible.Root>
|
||||
|
||||
+ <Accordion>
|
||||
+ <AccordionTrigger title="Toggle" />
|
||||
+ <AccordionPanel>Content</AccordionPanel>
|
||||
+ </Accordion>
|
||||
```
|
||||
|
||||
CSS classes: `.bui-CollapsibleRoot` → `.bui-Accordion`, `.bui-CollapsibleTrigger` → `.bui-AccordionTrigger` (now on heading element), `.bui-CollapsiblePanel` → `.bui-AccordionPanel`
|
||||
|
||||
## Migration Path 2: React Aria Disclosure (Full Customization)
|
||||
|
||||
For custom styling without preset styles:
|
||||
|
||||
```tsx
|
||||
import { Disclosure, Button, DisclosurePanel } from 'react-aria-components';
|
||||
|
||||
<Disclosure>
|
||||
<Button slot="trigger">Toggle</Button>
|
||||
<DisclosurePanel>Content</DisclosurePanel>
|
||||
</Disclosure>;
|
||||
```
|
||||
|
||||
- 816af0f: **BREAKING**: The `SelectProps` interface now accepts a generic type parameter for selection mode.
|
||||
|
||||
Added searchable and multiple selection support to Select component. The component now accepts `searchable`, `selectionMode`, and `searchPlaceholder` props to enable filtering and multi-selection modes.
|
||||
|
||||
Migration: If you're using `SelectProps` type directly, update from `SelectProps` to `SelectProps<'single' | 'multiple'>`. Component usage remains backward compatible.
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 35a3614: Fixed CSS issues in Select component including popover width constraints, focus outline behavior, and overflow handling.
|
||||
- 01476f0: Improved visual consistency of PasswordField, SearchField, and MenuAutocomplete components.
|
||||
- 836b0c7: Fixed dialog backdrop appearance in dark mode.
|
||||
- 6d35a6b: Removed `@base-ui-components/react` dependency as all components now use React Aria Components.
|
||||
- 7839e7b: Added `loading` prop to Button and ButtonIcon components for displaying spinner during async operations.
|
||||
- a00fb88: Fixed Table Row component to properly support opening links in new tabs via right-click or Cmd+Click when using the href prop.
|
||||
|
||||
## 0.9.0-next.2
|
||||
|
||||
### Minor Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@backstage/ui",
|
||||
"version": "0.9.0-next.2",
|
||||
"version": "0.9.0-next.3",
|
||||
"backstage": {
|
||||
"role": "web-library"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,15 @@
|
||||
# @backstage/plugin-app-visualizer
|
||||
|
||||
## 0.1.25-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 722e2df: Migrated to use `@backstage/ui`.
|
||||
- Updated dependencies
|
||||
- @backstage/ui@0.9.0-next.3
|
||||
- @backstage/frontend-plugin-api@0.12.2-next.2
|
||||
- @backstage/core-components@0.18.3-next.2
|
||||
|
||||
## 0.1.25-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@backstage/plugin-app-visualizer",
|
||||
"version": "0.1.25-next.1",
|
||||
"version": "0.1.25-next.2",
|
||||
"description": "Visualizes the Backstage app structure",
|
||||
"backstage": {
|
||||
"role": "frontend-plugin",
|
||||
|
||||
@@ -1,5 +1,15 @@
|
||||
# @backstage/plugin-catalog-graph
|
||||
|
||||
## 0.5.3-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- a2d7ae7: Ensure the catalog graph entity card respects the height prop so the visualization scales down properly on wide screens.
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.21.3-next.2
|
||||
- @backstage/frontend-plugin-api@0.12.2-next.2
|
||||
- @backstage/core-components@0.18.3-next.2
|
||||
|
||||
## 0.5.3-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@backstage/plugin-catalog-graph",
|
||||
"version": "0.5.3-next.1",
|
||||
"version": "0.5.3-next.2",
|
||||
"backstage": {
|
||||
"role": "frontend-plugin",
|
||||
"pluginId": "catalog-graph",
|
||||
|
||||
@@ -1,5 +1,14 @@
|
||||
# @backstage/plugin-catalog-react
|
||||
|
||||
## 1.21.3-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 36d7582: Added missing i18n
|
||||
- Updated dependencies
|
||||
- @backstage/frontend-plugin-api@0.12.2-next.2
|
||||
- @backstage/core-components@0.18.3-next.2
|
||||
|
||||
## 1.21.3-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@backstage/plugin-catalog-react",
|
||||
"version": "1.21.3-next.1",
|
||||
"version": "1.21.3-next.2",
|
||||
"description": "A frontend library that helps other Backstage plugins interact with the catalog",
|
||||
"backstage": {
|
||||
"role": "web-library",
|
||||
|
||||
@@ -1,5 +1,15 @@
|
||||
# @backstage/plugin-home
|
||||
|
||||
## 0.8.14-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 2ac5d29: Allow customization of VisitList by adding optional enrichVisit, transformPathname, canSave functions to VisitsStorageApi, along with VisitDisplayProvider for colors, labels
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.21.3-next.2
|
||||
- @backstage/frontend-plugin-api@0.12.2-next.2
|
||||
- @backstage/core-components@0.18.3-next.2
|
||||
|
||||
## 0.8.14-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@backstage/plugin-home",
|
||||
"version": "0.8.14-next.0",
|
||||
"version": "0.8.14-next.1",
|
||||
"description": "A Backstage plugin that helps you build a home page",
|
||||
"backstage": {
|
||||
"role": "frontend-plugin",
|
||||
|
||||
@@ -1,5 +1,15 @@
|
||||
# @backstage/plugin-kubernetes-backend
|
||||
|
||||
## 0.20.4-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 1906d37: Updated dependency `@kubernetes/client-node` to `1.4.0`.
|
||||
- Updated dependencies
|
||||
- @backstage/backend-plugin-api@1.5.0-next.2
|
||||
- @backstage/plugin-kubernetes-common@0.9.8-next.1
|
||||
- @backstage/plugin-kubernetes-node@0.3.6-next.2
|
||||
|
||||
## 0.20.4-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@backstage/plugin-kubernetes-backend",
|
||||
"version": "0.20.4-next.1",
|
||||
"version": "0.20.4-next.2",
|
||||
"description": "A Backstage backend plugin that integrates towards Kubernetes",
|
||||
"backstage": {
|
||||
"role": "backend-plugin",
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
# @backstage/plugin-kubernetes-common
|
||||
|
||||
## 0.9.8-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 1906d37: Updated dependency `@kubernetes/client-node` to `1.4.0`.
|
||||
|
||||
## 0.9.8-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@backstage/plugin-kubernetes-common",
|
||||
"version": "0.9.8-next.0",
|
||||
"version": "0.9.8-next.1",
|
||||
"description": "Common functionalities for kubernetes, to be shared between kubernetes and kubernetes-backend plugin",
|
||||
"backstage": {
|
||||
"role": "common-library",
|
||||
|
||||
@@ -1,5 +1,14 @@
|
||||
# @backstage/plugin-kubernetes-node
|
||||
|
||||
## 0.3.6-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 1906d37: Updated dependency `@kubernetes/client-node` to `1.4.0`.
|
||||
- Updated dependencies
|
||||
- @backstage/backend-plugin-api@1.5.0-next.2
|
||||
- @backstage/plugin-kubernetes-common@0.9.8-next.1
|
||||
|
||||
## 0.3.6-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@backstage/plugin-kubernetes-node",
|
||||
"version": "0.3.6-next.1",
|
||||
"version": "0.3.6-next.2",
|
||||
"description": "Node.js library for the kubernetes plugin",
|
||||
"backstage": {
|
||||
"role": "node-library",
|
||||
|
||||
@@ -1,5 +1,14 @@
|
||||
# @backstage/plugin-kubernetes-react
|
||||
|
||||
## 0.5.13-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 1906d37: Updated dependency `@kubernetes/client-node` to `1.4.0`.
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-kubernetes-common@0.9.8-next.1
|
||||
- @backstage/core-components@0.18.3-next.2
|
||||
|
||||
## 0.5.13-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@backstage/plugin-kubernetes-react",
|
||||
"version": "0.5.13-next.0",
|
||||
"version": "0.5.13-next.1",
|
||||
"description": "Web library for the kubernetes-react plugin",
|
||||
"backstage": {
|
||||
"role": "web-library",
|
||||
|
||||
@@ -1,5 +1,14 @@
|
||||
# @backstage/plugin-notifications-backend-module-email
|
||||
|
||||
## 0.3.16-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-notifications-common@0.2.0-next.1
|
||||
- @backstage/backend-plugin-api@1.5.0-next.2
|
||||
- @backstage/plugin-notifications-node@0.2.21-next.2
|
||||
|
||||
## 0.3.16-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@backstage/plugin-notifications-backend-module-email",
|
||||
"version": "0.3.16-next.1",
|
||||
"version": "0.3.16-next.2",
|
||||
"description": "The email backend module for the notifications plugin.",
|
||||
"backstage": {
|
||||
"role": "backend-plugin-module",
|
||||
|
||||
@@ -1,5 +1,14 @@
|
||||
# @backstage/plugin-notifications-backend-module-slack
|
||||
|
||||
## 0.2.1-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-notifications-common@0.2.0-next.1
|
||||
- @backstage/backend-plugin-api@1.5.0-next.2
|
||||
- @backstage/plugin-notifications-node@0.2.21-next.2
|
||||
|
||||
## 0.2.1-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@backstage/plugin-notifications-backend-module-slack",
|
||||
"version": "0.2.1-next.1",
|
||||
"version": "0.2.1-next.2",
|
||||
"description": "The slack backend module for the notifications plugin.",
|
||||
"backstage": {
|
||||
"role": "backend-plugin-module",
|
||||
|
||||
@@ -1,5 +1,21 @@
|
||||
# @backstage/plugin-notifications-backend
|
||||
|
||||
## 0.6.0-next.2
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- 87e597c: Adds support for default configuration for an entire notification channel.
|
||||
This setting will also be inherited down to origins and topics while still respecting the users individual choices.
|
||||
|
||||
This will be handy if you want to use a "opt-in" strategy.
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-notifications-common@0.2.0-next.1
|
||||
- @backstage/backend-plugin-api@1.5.0-next.2
|
||||
- @backstage/plugin-notifications-node@0.2.21-next.2
|
||||
|
||||
## 0.5.12-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@backstage/plugin-notifications-backend",
|
||||
"version": "0.5.12-next.1",
|
||||
"version": "0.6.0-next.2",
|
||||
"backstage": {
|
||||
"role": "backend-plugin",
|
||||
"pluginId": "notifications",
|
||||
|
||||
@@ -1,5 +1,14 @@
|
||||
# @backstage/plugin-notifications-common
|
||||
|
||||
## 0.2.0-next.1
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- 87e597c: Adds support for default configuration for an entire notification channel.
|
||||
This setting will also be inherited down to origins and topics while still respecting the users individual choices.
|
||||
|
||||
This will be handy if you want to use a "opt-in" strategy.
|
||||
|
||||
## 0.1.2-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@backstage/plugin-notifications-common",
|
||||
"version": "0.1.2-next.0",
|
||||
"version": "0.2.0-next.1",
|
||||
"description": "Common functionalities for the notifications plugin",
|
||||
"backstage": {
|
||||
"role": "common-library",
|
||||
|
||||
@@ -1,5 +1,13 @@
|
||||
# @backstage/plugin-notifications-node
|
||||
|
||||
## 0.2.21-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-notifications-common@0.2.0-next.1
|
||||
- @backstage/backend-plugin-api@1.5.0-next.2
|
||||
|
||||
## 0.2.21-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@backstage/plugin-notifications-node",
|
||||
"version": "0.2.21-next.1",
|
||||
"version": "0.2.21-next.2",
|
||||
"description": "Node.js library for the notifications plugin",
|
||||
"backstage": {
|
||||
"role": "node-library",
|
||||
|
||||
@@ -1,5 +1,14 @@
|
||||
# @backstage/plugin-notifications
|
||||
|
||||
## 0.5.11-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-notifications-common@0.2.0-next.1
|
||||
- @backstage/frontend-plugin-api@0.12.2-next.2
|
||||
- @backstage/core-components@0.18.3-next.2
|
||||
|
||||
## 0.5.11-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@backstage/plugin-notifications",
|
||||
"version": "0.5.11-next.0",
|
||||
"version": "0.5.11-next.1",
|
||||
"backstage": {
|
||||
"role": "frontend-plugin",
|
||||
"pluginId": "notifications",
|
||||
|
||||
@@ -1,5 +1,15 @@
|
||||
# @backstage/plugin-org
|
||||
|
||||
## 0.6.46-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 6db9e7e: Improved responsiveness of GroupProfileCard component
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.21.3-next.2
|
||||
- @backstage/frontend-plugin-api@0.12.2-next.2
|
||||
- @backstage/core-components@0.18.3-next.2
|
||||
|
||||
## 0.6.46-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@backstage/plugin-org",
|
||||
"version": "0.6.46-next.0",
|
||||
"version": "0.6.46-next.1",
|
||||
"description": "A Backstage plugin that helps you create entity pages for your organization",
|
||||
"backstage": {
|
||||
"role": "frontend-plugin",
|
||||
|
||||
@@ -1,5 +1,14 @@
|
||||
# @backstage/plugin-scaffolder-backend-module-notifications
|
||||
|
||||
## 0.1.16-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-notifications-common@0.2.0-next.1
|
||||
- @backstage/backend-plugin-api@1.5.0-next.2
|
||||
- @backstage/plugin-notifications-node@0.2.21-next.2
|
||||
|
||||
## 0.1.16-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@backstage/plugin-scaffolder-backend-module-notifications",
|
||||
"version": "0.1.16-next.1",
|
||||
"version": "0.1.16-next.2",
|
||||
"description": "The notifications backend module for the scaffolder plugin.",
|
||||
"backstage": {
|
||||
"role": "backend-plugin-module",
|
||||
|
||||
Reference in New Issue
Block a user