diff --git a/.changeset/create-app-1762897504.md b/.changeset/create-app-1762897504.md
new file mode 100644
index 0000000000..b50d431d4b
--- /dev/null
+++ b/.changeset/create-app-1762897504.md
@@ -0,0 +1,5 @@
+---
+'@backstage/create-app': patch
+---
+
+Bumped create-app version.
diff --git a/.changeset/pre.json b/.changeset/pre.json
index a8ef8fe974..f068415e9f 100644
--- a/.changeset/pre.json
+++ b/.changeset/pre.json
@@ -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",
diff --git a/docs/releases/v1.45.0-next.3-changelog.md b/docs/releases/v1.45.0-next.3-changelog.md
new file mode 100644
index 0000000000..0f66b0ca65
--- /dev/null
+++ b/docs/releases/v1.45.0-next.3-changelog.md
@@ -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';
+
+ -
+ - } />
+ - Content
+ -
+
+ +
+ +
+ + Content
+ +
+ ```
+
+ 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';
+
+
+
+ Content
+ ;
+ ```
+
+- 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
diff --git a/package.json b/package.json
index cbefee8708..5039c29e2b 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "root",
- "version": "1.45.0-next.2",
+ "version": "1.45.0-next.3",
"backstage": {
"cli": {
"new": {
diff --git a/packages/backend-plugin-api/CHANGELOG.md b/packages/backend-plugin-api/CHANGELOG.md
index 0b820e221c..a12734cc98 100644
--- a/packages/backend-plugin-api/CHANGELOG.md
+++ b/packages/backend-plugin-api/CHANGELOG.md
@@ -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
diff --git a/packages/backend-plugin-api/package.json b/packages/backend-plugin-api/package.json
index 2c47843444..90d3959658 100644
--- a/packages/backend-plugin-api/package.json
+++ b/packages/backend-plugin-api/package.json
@@ -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"
diff --git a/packages/backend-test-utils/CHANGELOG.md b/packages/backend-test-utils/CHANGELOG.md
index 8ce8e92fda..a30fc1fa68 100644
--- a/packages/backend-test-utils/CHANGELOG.md
+++ b/packages/backend-test-utils/CHANGELOG.md
@@ -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
diff --git a/packages/backend-test-utils/package.json b/packages/backend-test-utils/package.json
index 8da6bb6640..ea0c2d0c85 100644
--- a/packages/backend-test-utils/package.json
+++ b/packages/backend-test-utils/package.json
@@ -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"
diff --git a/packages/backend/CHANGELOG.md b/packages/backend/CHANGELOG.md
index f59395af02..cb84bcbc4c 100644
--- a/packages/backend/CHANGELOG.md
+++ b/packages/backend/CHANGELOG.md
@@ -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
diff --git a/packages/backend/package.json b/packages/backend/package.json
index 3f2d388318..199304ae5a 100644
--- a/packages/backend/package.json
+++ b/packages/backend/package.json
@@ -1,6 +1,6 @@
{
"name": "example-backend",
- "version": "0.0.44-next.1",
+ "version": "0.0.44-next.2",
"backstage": {
"role": "backend"
},
diff --git a/packages/core-components/CHANGELOG.md b/packages/core-components/CHANGELOG.md
index e7a6b37f53..b4d7f1c7b0 100644
--- a/packages/core-components/CHANGELOG.md
+++ b/packages/core-components/CHANGELOG.md
@@ -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
diff --git a/packages/core-components/package.json b/packages/core-components/package.json
index 32548a13cc..958f566c88 100644
--- a/packages/core-components/package.json
+++ b/packages/core-components/package.json
@@ -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"
diff --git a/packages/create-app/CHANGELOG.md b/packages/create-app/CHANGELOG.md
index 5e91ba3fa8..f86586b990 100644
--- a/packages/create-app/CHANGELOG.md
+++ b/packages/create-app/CHANGELOG.md
@@ -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
diff --git a/packages/create-app/package.json b/packages/create-app/package.json
index 810d5598c4..d0b5850d58 100644
--- a/packages/create-app/package.json
+++ b/packages/create-app/package.json
@@ -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"
diff --git a/packages/frontend-plugin-api/CHANGELOG.md b/packages/frontend-plugin-api/CHANGELOG.md
index 1bf8f64a43..9c97055ceb 100644
--- a/packages/frontend-plugin-api/CHANGELOG.md
+++ b/packages/frontend-plugin-api/CHANGELOG.md
@@ -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
diff --git a/packages/frontend-plugin-api/package.json b/packages/frontend-plugin-api/package.json
index c00227563d..fec762ff63 100644
--- a/packages/frontend-plugin-api/package.json
+++ b/packages/frontend-plugin-api/package.json
@@ -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"
},
diff --git a/packages/repo-tools/CHANGELOG.md b/packages/repo-tools/CHANGELOG.md
index ad70afb07e..d9ef90fe21 100644
--- a/packages/repo-tools/CHANGELOG.md
+++ b/packages/repo-tools/CHANGELOG.md
@@ -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
diff --git a/packages/repo-tools/package.json b/packages/repo-tools/package.json
index f6de3a7cba..b250018017 100644
--- a/packages/repo-tools/package.json
+++ b/packages/repo-tools/package.json
@@ -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"
diff --git a/packages/ui/CHANGELOG.md b/packages/ui/CHANGELOG.md
index 254ad0a7a4..7347058a0c 100644
--- a/packages/ui/CHANGELOG.md
+++ b/packages/ui/CHANGELOG.md
@@ -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';
+
+ -
+ - } />
+ - Content
+ -
+
+ +
+ +
+ + Content
+ +
+ ```
+
+ 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';
+
+
+
+ Content
+ ;
+ ```
+
+- 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
diff --git a/packages/ui/package.json b/packages/ui/package.json
index 600f960083..767af01601 100644
--- a/packages/ui/package.json
+++ b/packages/ui/package.json
@@ -1,6 +1,6 @@
{
"name": "@backstage/ui",
- "version": "0.9.0-next.2",
+ "version": "0.9.0-next.3",
"backstage": {
"role": "web-library"
},
diff --git a/plugins/app-visualizer/CHANGELOG.md b/plugins/app-visualizer/CHANGELOG.md
index 21dc607fe0..bca80d09ff 100644
--- a/plugins/app-visualizer/CHANGELOG.md
+++ b/plugins/app-visualizer/CHANGELOG.md
@@ -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
diff --git a/plugins/app-visualizer/package.json b/plugins/app-visualizer/package.json
index 89bf7b3c5b..1d664e951d 100644
--- a/plugins/app-visualizer/package.json
+++ b/plugins/app-visualizer/package.json
@@ -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",
diff --git a/plugins/catalog-graph/CHANGELOG.md b/plugins/catalog-graph/CHANGELOG.md
index a86a361ba1..7871553741 100644
--- a/plugins/catalog-graph/CHANGELOG.md
+++ b/plugins/catalog-graph/CHANGELOG.md
@@ -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
diff --git a/plugins/catalog-graph/package.json b/plugins/catalog-graph/package.json
index 42caa258e4..bef23e5085 100644
--- a/plugins/catalog-graph/package.json
+++ b/plugins/catalog-graph/package.json
@@ -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",
diff --git a/plugins/catalog-react/CHANGELOG.md b/plugins/catalog-react/CHANGELOG.md
index e6a7c49ad7..5e5fbaa14b 100644
--- a/plugins/catalog-react/CHANGELOG.md
+++ b/plugins/catalog-react/CHANGELOG.md
@@ -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
diff --git a/plugins/catalog-react/package.json b/plugins/catalog-react/package.json
index 31dfaa908d..35054769ae 100644
--- a/plugins/catalog-react/package.json
+++ b/plugins/catalog-react/package.json
@@ -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",
diff --git a/plugins/home/CHANGELOG.md b/plugins/home/CHANGELOG.md
index 77b44362a5..03213110af 100644
--- a/plugins/home/CHANGELOG.md
+++ b/plugins/home/CHANGELOG.md
@@ -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
diff --git a/plugins/home/package.json b/plugins/home/package.json
index 5557f9c2b8..41ef166872 100644
--- a/plugins/home/package.json
+++ b/plugins/home/package.json
@@ -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",
diff --git a/plugins/kubernetes-backend/CHANGELOG.md b/plugins/kubernetes-backend/CHANGELOG.md
index 8607a6c4ea..00d0e0b208 100644
--- a/plugins/kubernetes-backend/CHANGELOG.md
+++ b/plugins/kubernetes-backend/CHANGELOG.md
@@ -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
diff --git a/plugins/kubernetes-backend/package.json b/plugins/kubernetes-backend/package.json
index 7f5681b319..84cf786152 100644
--- a/plugins/kubernetes-backend/package.json
+++ b/plugins/kubernetes-backend/package.json
@@ -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",
diff --git a/plugins/kubernetes-common/CHANGELOG.md b/plugins/kubernetes-common/CHANGELOG.md
index 3a06e414c5..7f8edbf994 100644
--- a/plugins/kubernetes-common/CHANGELOG.md
+++ b/plugins/kubernetes-common/CHANGELOG.md
@@ -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
diff --git a/plugins/kubernetes-common/package.json b/plugins/kubernetes-common/package.json
index 435cb2a594..d7ca1408a7 100644
--- a/plugins/kubernetes-common/package.json
+++ b/plugins/kubernetes-common/package.json
@@ -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",
diff --git a/plugins/kubernetes-node/CHANGELOG.md b/plugins/kubernetes-node/CHANGELOG.md
index 0adc3eb3ef..68b3512bf1 100644
--- a/plugins/kubernetes-node/CHANGELOG.md
+++ b/plugins/kubernetes-node/CHANGELOG.md
@@ -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
diff --git a/plugins/kubernetes-node/package.json b/plugins/kubernetes-node/package.json
index c410074e2a..d8f9e1b687 100644
--- a/plugins/kubernetes-node/package.json
+++ b/plugins/kubernetes-node/package.json
@@ -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",
diff --git a/plugins/kubernetes-react/CHANGELOG.md b/plugins/kubernetes-react/CHANGELOG.md
index e9d3df57c4..ee40502a51 100644
--- a/plugins/kubernetes-react/CHANGELOG.md
+++ b/plugins/kubernetes-react/CHANGELOG.md
@@ -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
diff --git a/plugins/kubernetes-react/package.json b/plugins/kubernetes-react/package.json
index 571414e7ea..02b902f4f5 100644
--- a/plugins/kubernetes-react/package.json
+++ b/plugins/kubernetes-react/package.json
@@ -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",
diff --git a/plugins/notifications-backend-module-email/CHANGELOG.md b/plugins/notifications-backend-module-email/CHANGELOG.md
index e647808217..dafe434598 100644
--- a/plugins/notifications-backend-module-email/CHANGELOG.md
+++ b/plugins/notifications-backend-module-email/CHANGELOG.md
@@ -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
diff --git a/plugins/notifications-backend-module-email/package.json b/plugins/notifications-backend-module-email/package.json
index 3e0ba96c6b..2c112604a7 100644
--- a/plugins/notifications-backend-module-email/package.json
+++ b/plugins/notifications-backend-module-email/package.json
@@ -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",
diff --git a/plugins/notifications-backend-module-slack/CHANGELOG.md b/plugins/notifications-backend-module-slack/CHANGELOG.md
index 226460a3f6..49d99dbe2e 100644
--- a/plugins/notifications-backend-module-slack/CHANGELOG.md
+++ b/plugins/notifications-backend-module-slack/CHANGELOG.md
@@ -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
diff --git a/plugins/notifications-backend-module-slack/package.json b/plugins/notifications-backend-module-slack/package.json
index a4096e180a..eb5634b607 100644
--- a/plugins/notifications-backend-module-slack/package.json
+++ b/plugins/notifications-backend-module-slack/package.json
@@ -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",
diff --git a/plugins/notifications-backend/CHANGELOG.md b/plugins/notifications-backend/CHANGELOG.md
index 192d567ac4..521aaac7bf 100644
--- a/plugins/notifications-backend/CHANGELOG.md
+++ b/plugins/notifications-backend/CHANGELOG.md
@@ -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
diff --git a/plugins/notifications-backend/package.json b/plugins/notifications-backend/package.json
index bb13a1f90c..6c4a73afba 100644
--- a/plugins/notifications-backend/package.json
+++ b/plugins/notifications-backend/package.json
@@ -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",
diff --git a/plugins/notifications-common/CHANGELOG.md b/plugins/notifications-common/CHANGELOG.md
index 002b6e75e3..d604d1de47 100644
--- a/plugins/notifications-common/CHANGELOG.md
+++ b/plugins/notifications-common/CHANGELOG.md
@@ -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
diff --git a/plugins/notifications-common/package.json b/plugins/notifications-common/package.json
index 31043a59db..fa7ce981ea 100644
--- a/plugins/notifications-common/package.json
+++ b/plugins/notifications-common/package.json
@@ -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",
diff --git a/plugins/notifications-node/CHANGELOG.md b/plugins/notifications-node/CHANGELOG.md
index ee6ae20311..2afdd1647b 100644
--- a/plugins/notifications-node/CHANGELOG.md
+++ b/plugins/notifications-node/CHANGELOG.md
@@ -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
diff --git a/plugins/notifications-node/package.json b/plugins/notifications-node/package.json
index 9b47aa030d..ca746418db 100644
--- a/plugins/notifications-node/package.json
+++ b/plugins/notifications-node/package.json
@@ -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",
diff --git a/plugins/notifications/CHANGELOG.md b/plugins/notifications/CHANGELOG.md
index a72cee1cb1..581cbd110a 100644
--- a/plugins/notifications/CHANGELOG.md
+++ b/plugins/notifications/CHANGELOG.md
@@ -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
diff --git a/plugins/notifications/package.json b/plugins/notifications/package.json
index 32a270f0b9..d1df83e79f 100644
--- a/plugins/notifications/package.json
+++ b/plugins/notifications/package.json
@@ -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",
diff --git a/plugins/org/CHANGELOG.md b/plugins/org/CHANGELOG.md
index 21b38d7bc7..5455ba07bc 100644
--- a/plugins/org/CHANGELOG.md
+++ b/plugins/org/CHANGELOG.md
@@ -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
diff --git a/plugins/org/package.json b/plugins/org/package.json
index 39fc6e6aea..275dd8538b 100644
--- a/plugins/org/package.json
+++ b/plugins/org/package.json
@@ -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",
diff --git a/plugins/scaffolder-backend-module-notifications/CHANGELOG.md b/plugins/scaffolder-backend-module-notifications/CHANGELOG.md
index bb0be4e959..de28e741e9 100644
--- a/plugins/scaffolder-backend-module-notifications/CHANGELOG.md
+++ b/plugins/scaffolder-backend-module-notifications/CHANGELOG.md
@@ -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
diff --git a/plugins/scaffolder-backend-module-notifications/package.json b/plugins/scaffolder-backend-module-notifications/package.json
index 7ea4e9e2f4..5d1d5e49ae 100644
--- a/plugins/scaffolder-backend-module-notifications/package.json
+++ b/plugins/scaffolder-backend-module-notifications/package.json
@@ -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",