Merge branch 'master' into 'code-snippet-wrap-long-lines'

Signed-off-by: Antonio Ereiz <51959110+SonilPro@users.noreply.github.com>
This commit is contained in:
Antonio Ereiz
2025-11-15 22:19:44 +01:00
committed by GitHub
1824 changed files with 94605 additions and 36443 deletions
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/backend-defaults': patch
---
Deduplicate discovered features discovered with discoveryFeatureLoader
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/cli': patch
---
Updated the WebPack configuration to use `contenthash`. This fixes an issue were builds would sometimes generate output files with the same name but different content across builds, leading to breakages when loading the frontend app.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/ui': patch
---
Fix broken external links in Backstage UI Header component.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-org': patch
---
Improved responsiveness of GroupProfileCard component
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/cli': patch
---
Disallow import fallback of critical shared dependencies in module federation.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/config-loader': patch
---
Allow using `BACKSTAGE_ENV` for loading environment specific config files
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/backend-defaults': patch
---
Adjusted the log line wording of task worker starting
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/cli': patch
---
The templates executed with the `yarn new` command now supports templating filenames.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/backend-defaults': patch
---
Fixed cache namespace and key prefix separator configuration to properly use configured values instead of hardcoded plugin ID. The cache manager now correctly combines the configured namespace with plugin IDs using the configured separator for Redis and Valkey. Memcache and memory store continue to use plugin ID as namespace.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/create-app': patch
---
Creates a plugin that redirects from the Home page to the Catalog index page to avoid seeing a not found page error when starting the app.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-backend-module-puppetdb': patch
---
**BREAKING ALPHA**: The module has been moved from the `/alpha` export to the root of the package.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/repo-tools': patch
---
Updated knip-reports to detect dependencies in dev/alpha pattern
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-catalog-backend': minor
---
Enable YAML merge keys in yamlPlaceholderResolver
-18
View File
@@ -1,18 +0,0 @@
---
'@backstage/plugin-scaffolder-backend-module-github': patch
---
Add `auto_init` option to `github:repo:create` action to create repository with an initial commit containing a README.md file
This initial commit is created by GitHub itself and the commit is signed, so the repository will not be empty after creation.
```diff
- action: github:repo:create
id: init-new-repo
input:
repoUrl: 'github.com?repo=repo&owner=owner'
description: This is the description
visibility: private
+ autoInit: true
```
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-scaffolder-backend': patch
---
Added support for executing actions from the `ActionsRegistry` in the `scaffolder-backend`
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/ui': patch
---
Add missing class for flex: baseline
+10
View File
@@ -0,0 +1,10 @@
---
'@backstage/plugin-search-backend-module-elasticsearch': patch
'@backstage/plugin-kubernetes-backend': patch
'@backstage/plugin-techdocs-backend': patch
'@backstage/plugin-signals-backend': patch
'@backstage/plugin-techdocs': patch
'@backstage/plugin-signals': patch
---
Removed/moved unused dependencies
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-techdocs': patch
---
Updated dependency `dompurify` to `^3.2.4`.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-techdocs': patch
---
TechDocs page titles have been improved, especially for deeply nested pages.
+8
View File
@@ -0,0 +1,8 @@
---
'@backstage/plugin-search-react': minor
'@backstage/plugin-techdocs': minor
'@backstage/plugin-catalog': minor
'@backstage/plugin-search': minor
---
Add support for customizable icons in `SearchResultListItemBlueprint` and related components
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-react': patch
---
Fix a potential race condition in EntityListProvider when selecting filters
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-notifications': patch
---
Fixed missing app context when rendering the notifications view
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/cli': patch
---
Fixed the `new-frontend-plugin` template that was incorrectly passing `id` instead of `pluginId` to `createFrontendPlugin` and unnecessarily importing `React`.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/create-app': patch
---
Bumped create-app version.
+27
View File
@@ -0,0 +1,27 @@
---
'@backstage/ui': minor
---
**BREAKING**: Migrated Avatar component from Base UI to custom implementation with size changes:
- Base UI-specific props are no longer supported
- Size values have been updated:
- New `x-small` size added (1.25rem / 20px)
- `small` size unchanged (1.5rem / 24px)
- `medium` size unchanged (2rem / 32px, default)
- `large` size **changed from 3rem to 2.5rem** (40px)
- New `x-large` size added (3rem / 48px)
Migration:
```diff
# Remove Base UI-specific props
- <Avatar src="..." name="..." render={...} />
+ <Avatar src="..." name="..." />
# Update large size usage to x-large for same visual size
- <Avatar src="..." name="..." size="large" />
+ <Avatar src="..." name="..." size="x-large" />
```
Added `purpose` prop for accessibility control (`'informative'` or `'decoration'`).
+58
View File
@@ -0,0 +1,58 @@
---
'@backstage/ui': minor
---
**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>
```
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-backend-module-gitlab': patch
---
When possible, requests a more limited set of results from the Gitlab projects API, which can reduce the amount of network traffic required to sync with Gitlab.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-backend': patch
---
The 'get-catalog-entity' action now throws a ConflictError instead of generic Error if multiple entities are found, so MCP call doesn't fail with 500.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-backend': patch
---
Updating `catalog:get-catalog-entity` action to be `readOnly` and non destructive
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/ui': patch
---
Fixed CSS issues in Select component including popover width constraints, focus outline behavior, and overflow handling.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/app-defaults': minor
---
Add and configure the OpenShift authentication provider to the default APIs.
-6
View File
@@ -1,6 +0,0 @@
---
'@backstage/plugin-catalog-graph': minor
---
Support custom relations by using an API to define known relations and which to show by default
Fixes "simplified" bug (#30121) which caused graphs not to be simplified
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-catalog': patch
---
Fix React warnings for elements not having stable keys.
+6
View File
@@ -0,0 +1,6 @@
---
'@backstage/plugin-catalog-backend': minor
'@backstage/plugin-catalog-node': minor
---
Make YAML merge (<<:) support configurable in the Backstage Catalog instead of always being enabled
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-org': patch
---
Fixing issue with extra slash in the routing
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-home': patch
---
Allow customization of `VisitList` by adding optional `enrichVisit`, `transformPathname`, `canSave` functions to `VisitsStorageApi`, along with `VisitDisplayProvider` for colors, labels
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-techdocs-react': patch
---
Update to documentation regarding TechDocs redirects.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-app-visualizer': patch
---
Improve tree visualizer to use a horizontal layout and fill the content space.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/backend-defaults': patch
---
Fix a bug in the Gitlab URL reader where `search` did not handle multiple globs
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-mcp-actions-backend': patch
---
Proxy `/.well-known/oauth-authorization-server` to `/.well-known/openid-configuration` on `auth-backend` when `auth.experimentalDynamicClientRegistration.enabled` is enabled.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-auth-backend': patch
---
Implementing Dynamic Client Registration with the OIDC server. You can enable this by setting `auth.experimentalDynamicClientRegistration.enabled` in `app-config.yaml`. This is highly experimental, but feedback welcome.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-catalog-react': patch
---
Added missing i18n
+7
View File
@@ -0,0 +1,7 @@
---
'@backstage/backend-test-utils': minor
---
Added support for Postgres 18 to the available `TestDatabases`.
Note that the set of _default_ databases to test against for users of the `TestDatabases` class was also updated to include Postgres 14 and 18, instead of 13 and 17. If you need to override this, you can pass in an explicit `ids` argument, for example `ids: ['POSTGRES_17', 'POSTGRES_13', 'SQLITE_3']`.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/dev-utils': patch
---
Fixed styling of the dev app by adding a lazy import of `@backstage/ui/css/styles.css`.
+9
View File
@@ -0,0 +1,9 @@
---
'@backstage/plugin-notifications-backend': minor
'@backstage/plugin-notifications-common': minor
---
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.
-11
View File
@@ -1,11 +0,0 @@
---
'@backstage/cli': patch
---
Modify the `backstage.json` also for custom patterns if it extends the default pattern.
Examples:
- `@backstage/*` (default pattern)
- `@{backstage,backstage-community}/*`
- `@{extra1,backstage,extra2}/*`
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/ui': patch
---
Improved visual consistency of PasswordField, SearchField, and MenuAutocomplete components.
+10
View File
@@ -0,0 +1,10 @@
---
'@backstage/plugin-notifications-backend': patch
---
Show default settings for notifications even before receiving first notification.
Previously, it was not possible for the users to see or modify their notification settings until they had received at
least one notification from specific origin or topic.
This update ensures that default settings are displayed from the outset,
allowing users to customize their preferences immediately.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/ui': patch
---
Fix default text color in Backstage UI
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/frontend-plugin-api': patch
---
Improved the types of `createFrontendPlugin` and `createFrontendModule` so that errors due to incompatible options are indicated more clearly.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-notifications-backend-module-email': patch
---
Updated `AWS SES` client to version 2 to support `nodemailer` version 7.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/ui': patch
---
Fix Select component to properly attach aria-label and aria-labelledby props to the rendered element for improved accessibility.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/ui': patch
---
Fixed Text component to prevent `truncate` prop from being spread to the underlying DOM element.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-techdocs-backend': minor
---
Techdocs: support HumanDuration for cache TTL and timeout configuration
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-catalog-backend-module-openapi': patch
---
fix wrong dereferencing for AsyncApi 3 documents
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-scaffolder-backend-module-gitlab': minor
---
fix scaffolder action createDeployToken to allow usage of oauth tokens
-7
View File
@@ -1,7 +0,0 @@
---
'@backstage/plugin-auth-backend': patch
'@backstage/plugin-auth-react': patch
'@backstage/plugin-auth-node': patch
---
Updating plugin metadata
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/cli': patch
---
Fix inconsistent behavior in the `new` command for the `@internal` scope: it now consistently defaults to the `backstage-plugin-` infix whether the `--scope` option is not set or it's set to `internal`.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-techdocs-module-addons-contrib': patch
---
ExpandableCollapse Techdocs Addon was breaking native sidebar collapse on Firefox
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-auth': minor
---
Initial publish of the `auth` frontend package
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/ui': patch
---
Improved the Link component structure in Backstage UI.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/backend-test-utils': minor
---
The `mockServices.rootConfig()` instance now has an `update` method that can be used to test configuration subscriptions and updates.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-app-backend': patch
---
Internal update to not expose the old `createRouter`.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-scaffolder-react': patch
---
Fixed a bug in the Scaffolder's template parsing in the `useTemplateSchema` hook by removing the title instead of setting it to `undefined`
+70
View File
@@ -0,0 +1,70 @@
---
'@backstage/plugin-catalog-backend-module-ldap': minor
---
Moved from `ldapjs` dependency to `ldapts`
### Breaking Changes
**Type Migration**
Custom transformers must now accept `Entry` from `ldapts` instead of `SearchEntry`
from `ldapjs` The Entry type provides direct property access without need for
`.object()` or `.raw()` methods.
If you have custom user or group transformers, update the signature from:
```typescript
(vendor: LdapVendor, config: UserConfig, entry: SearchEntry) =>
Promise<UserEntity | undefined>;
```
to
```typescript
(vendor: LdapVendor, config: UserConfig, entry: Entry) =>
Promise<UserEntity | undefined>;
```
**Search Options**
Updated LDAP search configuration `typesOnly: false``attributeValues: true`
This inverts the boolean logic: `ldapjs` used negative form while `ldapts` uses
positive form. Both achieve the same result: retrieving attribute values rather
than just attribute names.
Update LDAP search options in configuration from
```yaml
options:
typesOnly: false
```
to
```yaml
options:
attributeValues: true
```
**API Changes** Removed `LdapClient.searchStreaming()` method. Users should
migrate to `LdapClient.search()` instead
If you're using `searchStreaming` directly:
```typescript
// Before
await client.searchStreaming(dn, options, async entry => {
// process each entry
});
// After
const entries = await client.search(dn, options);
for (const entry of entries) {
// process each entry
}
```
> **_NOTE:_**: Both methods have always loaded all entries into memory. The
> `searchStreaming` method was only needed internally to handle `ldapjs`'s
> event-based API.
-6
View File
@@ -1,6 +0,0 @@
---
'@backstage/plugin-home': patch
---
Fixed race condition in CustomHomepageGrid by waiting for storage to load before rendering custom layout to prevent
rendering of the default content.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-kubernetes-backend': patch
---
Fix a bug where `getDefault` in the `kubernetesFetcherExtensionPoint` had the wrong `this` value
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/ui': patch
---
Fixed dialog backdrop appearance in dark mode.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/backend-plugin-api': minor
---
Promote `instanceMetadata` service to main entrypoint.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/core-plugin-api': minor
---
Make `openshiftAuthApiRef` available in `@backstage/core-plugin-api`.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/ui': patch
---
Migrated CellProfile component from Base UI Avatar to Backstage UI Avatar component.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-techdocs': minor
---
Adding redirect handling for TechDocs URLs that reference entities that now reference an external entity for TechDocs. Including tests and documentation.
-7
View File
@@ -1,7 +0,0 @@
---
'@backstage/plugin-mcp-actions-backend': patch
---
The MCP backend will now convert known Backstage errors into textual responses with `isError: true`.
The error message can be useful for an LLM to understand and maybe give back to the user.
Previously all errors where thrown out to `@modelcontextprotocol/sdk` which causes a generic 500.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/ui': minor
---
Fixing styles on SearchField in Backstage UI after migration to CSS modules. `SearchField` has now its own set of class names. We previously used class names from `TextField` but this approach was creating some confusion so going forward in your theme you'll be able to theme `TextField` and `SearchField` separately.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-scaffolder': patch
---
Render a TechDocs link on the Scaffolder Template List page when templates include either `backstage.io/techdocs-ref` or `backstage.io/techdocs-entity` annotations, using the shared `buildTechDocsURL` helper. Also adds tests to verify both annotations and optional `backstage.io/techdocs-entity-path` are respected.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-app': minor
---
Add implementation of OpenShift authentication provider.
-9
View File
@@ -1,9 +0,0 @@
---
'@backstage/catalog-client': patch
'@backstage/plugin-catalog-backend': patch
'@backstage/plugin-events-backend': patch
'@backstage/plugin-search-backend': patch
'@backstage/plugin-events-node': patch
---
Updated generated schemas
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-backend': patch
---
Prevent deadlock in catalog deferred stitching
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/integration': minor
---
Added support for limiting GithubAppCredentialsMux to specific apps
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/create-app': patch
---
Added `@backstage/plugin-app-visualizer` to the app in the `--next` template.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-user-settings': patch
---
Add the OpenShift authenticator provider to the default `user-settings` providers page.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-catalog-react': patch
---
Apply default ordering of templates
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-search-backend-module-explore': patch
---
Deprecate and mark explore collator as moved
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/ui': patch
---
Avatar components in x-small and small sizes now display only one initial instead of two, improving readability at smaller dimensions.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/repo-tools': minor
---
The `package-docs` command will now automatically use a `typedoc.json` file if one exists at the root of your project.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-backend-module-msgraph': patch
---
Ensure that msgraph parent group stays same in case the group has multiple parents
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/cli': patch
---
Added a template for the `yarn new` command to create an catalog entity provider. To add this template to an explicit list in the root `package.json`, use `@backstage/cli/templates/catalog-provider-module`.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/frontend-test-utils': patch
---
Internal update to use and throw app errors.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-techdocs-backend': minor
---
Adding new entity that specifies an external entity in the techdocs-entity annotation and updates to documentation regarding TechDocs redirects.
-6
View File
@@ -1,6 +0,0 @@
---
'@backstage/plugin-catalog-react': patch
'@backstage/plugin-catalog': patch
---
Catalog table columns support i18n
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/cli': patch
---
Fixed an issue that could cause conflicts of detected modules in workspaces with multiple apps.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-scaffolder-backend-module-gitlab': patch
---
The log message now indicates that the pipeline trigger token was deleted and not pipeline itself.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-gateway-backend': minor
---
Update usage of the `instanceMetadata` service.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/core-components': minor
---
Add optional `distance` property to `DependencyEdge` to reflect the distance to a root.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-techdocs': patch
---
Fixed an issue where the entire TechDocs page would re-render when navigating between pages within the same entity's documentation.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/backend-plugin-api': minor
---
Explicitly mark `coreServices.rootInstanceMetadata` as a root service.
-24
View File
@@ -1,24 +0,0 @@
---
'@backstage/catalog-client': minor
'@backstage/plugin-catalog-react': minor
'@backstage/plugin-catalog-node': minor
---
Introduced new `streamEntities` async generator method for the catalog.
Catalog API and Catalog Service now includes a `streamEntities` method that allows for streaming entities from the catalog.
This method is designed to handle large datasets efficiently by processing entities in a stream rather than loading them
all into memory at once. This is useful when you need to fetch a large number of entities but do not want to use pagination
or fetch all entities at once.
Example usage:
```ts
const pageStream = catalogClient.streamEntities({ pageSize: 100 }, { token });
for await (const page of pageStream) {
// Handle page of entities
for (const entity of page) {
console.log(entity);
}
}
```
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/backend-test-utils': patch
---
Tweak some of the mock services to have more precise types
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/backend-app-api': minor
---
Updates API for `instanceMetadata` service to return a list of plugins not features.

Some files were not shown because too many files have changed in this diff Show More