Merge pull request #28079 from backstage/changeset-release/master

Version Packages
This commit is contained in:
Fredrik Adelöw
2024-12-17 12:43:51 +01:00
committed by GitHub
500 changed files with 5414 additions and 1918 deletions
-5
View File
@@ -1,5 +0,0 @@
---
'yarn-plugin-backstage': patch
---
Use yarn's built-in http utilities for fetching release manifests
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-react': minor
---
Update `EntityKindFilter` to include a `label` field with the properly capitalized Kind facet string
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-backend-module-gitlab': patch
---
`restrictUsersToGroup` should use the entire group path when getting members
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/create-app': patch
---
Updated Dockerfile to include `backstage.json` file
-8
View File
@@ -1,8 +0,0 @@
---
'@backstage/plugin-catalog-backend-module-incremental-ingestion': patch
'@backstage/plugin-scaffolder-backend': patch
'@backstage/backend-defaults': patch
'@backstage/plugin-catalog-backend': patch
---
Updated dependency `@opentelemetry/api` to `^1.9.0`.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/backend-defaults': patch
---
Immediately close all connections when shutting down in local development.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/cli': patch
---
If the Backstage yarn plugin is installed, it will now be automatically updated as part of `versions:bump`.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-scaffolder-backend-module-github': patch
---
adding requiredLinearHistory property for branch protection settings
-44
View File
@@ -1,44 +0,0 @@
---
'@backstage/plugin-home': patch
---
Added a new Quick Start Card to `plugin-home`, which can display basic info to get users the info they need to onboard to the Catalog.
```
import { QuickStartCard } from '@backstage/plugin-home';
<QuickStartCard
title="Onboarding to the Catalog"
modalTitle="Onboarding Quick Start"
docsLinkTitle="Learn more with getting started docs"
docsLink="https://backstage.io/docs/getting-started"
image={
<img
src={ContentImage}
alt="quick start"
width="100%"
height="100%"
/>
}
cardDescription="Backstage system model will help you create new entities"
video={
<video
controls
preload="auto"
poster={"./videoPoster.png"}
>
<source src={"OnboardingDemo.mp4"} type="video/mp4" />
</video>
}
downloadImage={
<Button
href={QuickStartPDF}
target={'_blank'}
download={true}
>
Download infographic button
</Button>
}
/>
```
See the [storybook examples](https://backstage.io/storybook/?path=/story/plugins-home-components-quickstartcard--default)
-7
View File
@@ -1,7 +0,0 @@
---
'@backstage/backend-defaults': minor
---
Added a new `backend.health.headers` configuration that can be used to set additional headers to include in health check responses.
**BREAKING CONSUMERS**: As part of this change the `createHealthRouter` function exported from `@backstage/backend-defaults/rootHttpRouter` now requires the root config service to be passed through the `config` option.
-6
View File
@@ -1,6 +0,0 @@
---
'@backstage/cli': patch
---
Remove special-casing for `@types` packages when generating dependency entries
during templating
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/create-app': patch
---
Updated the template to use `@backstage/cli/config/prettier` instead of `@spotify/prettier-config`.
-6
View File
@@ -1,6 +0,0 @@
---
'@backstage/plugin-catalog-backend-module-bitbucket-server': minor
'@backstage/backend-defaults': minor
---
Throttles Bitbucket Server API calls
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/backend-defaults': patch
---
Export `PluginTokenHandler` and `pluginTokenHandlerDecoratorServiceRef` to allow for custom decoration of the plugin token handler without having to re-implement the entire handler.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-backend-module-github': patch
---
Pass in a default schedule to the `GithubEntityProvider` if none is provided
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-techdocs': minor
---
Add pagination support to TechDocs Index Page and make it the default
-18
View File
@@ -1,18 +0,0 @@
---
'@backstage/backend-defaults': minor
'@backstage/backend-test-utils': minor
---
**BREAKING** Upgraded @keyv/redis and keyv packages to resolve a bug related to incorrect resolution of cache keys.
This is a breaking change for clients using the `redis` store for cache with `useRedisSets` option set to false since cache keys will be calculated differently (without the sets:namespace: prefix). For clients with default configuration (or useRedisSets set to false) the cache keys will stay the same, but since @keyv/redis library no longer supports redis sets they won't be utilised anymore.
If you were using `useRedisSets` option in configuration make sure to remove it from `app-config.yaml`:
```diff
backend:
cache:
store: redis
connection: redis://user:pass@cache.example.com:6379
- useRedisSets: false
```
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-backend': minor
---
Added a new `catalog.disableRelationsCompatibility` configuration option that avoids JSON deserialization and serialization if possible when reading entities. This significantly reduces the memory usage of the catalog, and slightly increases performance, but it removes the backwards compatibility processing that ensures that both `entity.relation[].target` and `entity.relation[].targetRef` are present in returned entities.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/backend-defaults': patch
---
Fix server response time by moving the lifecycle startup hooks back to the plugin lifecycle service.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/integration': minor
---
Add the integration for Azure blob storage to read the credentials to access the storage account and provide the default credential provider.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-backend': patch
---
Perform the by-query count inlined with the main query
-6
View File
@@ -1,6 +0,0 @@
---
'@backstage/core-app-api': patch
'@backstage/plugin-app': patch
---
The OAuth 2 client implementations will now attempt to refresh the session when the existing session doesn't have the required scopes. The previous behavior was to only try to refresh the session of it was missing, and otherwise directly request a new session. This fixes an issue where some auth providers will not return access tokens with certain scopes unless explicitly requested, leading to an auth popup even if the underlying session already had been granted the requested scopes.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/backend-defaults': patch
---
The user and plugin token verification in the default `AuthService` implementation will no longer forward verification errors to the caller, and instead log them as warnings.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog': minor
---
Adds an optional columns attribute to HasSubdomainsCardProps and changes its default columns
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/backend-defaults': patch
---
Export `DefaultHttpAuthService` to allow for custom token extraction logic.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-backend': patch
---
Internal refactor of filter parsing logic.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-search-backend-module-elasticsearch': patch
---
Update the ElasticSearchSearchEngine translator to handle phrase searches.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-backend-module-incremental-ingestion': patch
---
Deprecate old-backend-system `IncrementalCatalogBuilder`
-10
View File
@@ -1,10 +0,0 @@
---
'@backstage/backend-defaults': minor
---
**BREAKING PRODUCERS**: The `LifecycleMiddlewareOptions.startupRequestPauseTimeout` has been removed. Use the `backend.lifecycle.startupRequestPauseTimeout` setting in your `app-config.yaml` file to customize how the `createLifecycleMiddleware` function should behave. Also the root config service is required as an option when calling the `createLifecycleMiddleware` function:
```diff
- createLifecycleMiddleware({ lifecycle, startupRequestPauseTimeout })
+ createLifecycleMiddleware({ config, lifecycle })
```
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-backend-module-ldap': minor
---
Updated fix for ldap entity mapping which doesn't require extra config setting of dnCaseSensitive
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-react': patch
---
Fixed an issue causing the `EntityOwnerPicker` to reset scrolling when more elements are loaded.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-backend': minor
---
Implement `/entities` in terms of `queryEntities` to not run into memory and performance problems on large catalogs
-6
View File
@@ -1,6 +0,0 @@
---
'@backstage/backend-defaults': patch
---
Log request and response metadata so it can be used for filtering log messages.
The format of the request date was also changed from `clf` to `utc`.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/backend-defaults': minor
---
Implemented `AzureBlobStorageUrlReader` to read from the url of committed location from the entity provider
-6
View File
@@ -1,6 +0,0 @@
---
'@backstage/plugin-auth-backend': patch
'@backstage/plugin-auth-node': patch
---
Improved error forwarding for OAuth refresh endpoints
-8
View File
@@ -1,8 +0,0 @@
---
'@backstage/plugin-scaffolder-backend': patch
'@backstage/plugin-scaffolder-common': patch
'@backstage/plugin-scaffolder-react': patch
'@backstage/plugin-scaffolder': patch
---
Experimental support for `formDecorators` to enable secret collection and mutations to the parameters for scaffolder tasks
-6
View File
@@ -1,6 +0,0 @@
---
'@backstage/backend-plugin-api': patch
'@backstage/backend-app-api': patch
---
Removed unused `express` dependencies.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/backend-defaults': patch
---
The default `authServiceFactory` now correctly depends on the plugin scoped `Logger` services rather than the root scoped one.
-7
View File
@@ -1,7 +0,0 @@
---
'@backstage/plugin-search-backend-module-techdocs': patch
'@backstage/plugin-search-backend-module-catalog': patch
'@backstage/plugin-search-backend-module-explore': patch
---
Update README
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/backend-app-api': patch
---
Add a `toString` on the default `BackendFeatureMeta` implementations
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-backend': patch
---
Use a faster count method on pg when computing some metrics
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-backend': patch
---
Fix a bug where sometimes the `by-query` endpoint could return nulls for entities that were not yet stitched.
-6
View File
@@ -1,6 +0,0 @@
---
'@backstage/plugin-catalog-react': patch
'@backstage/plugin-config-schema': patch
---
Internal refactor to break potential circular imports
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-scaffolder-backend': patch
---
The --no-node-snapshot check needs to be done against process.execArgv instead of process.argv
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-app-backend': patch
---
Fixed a bug where config would not be injected on the `/` and `/index.html` paths.
-7
View File
@@ -1,7 +0,0 @@
---
'@backstage/backend-plugin-api': patch
---
The `RootLifecycleService` now has a new `addBeforeShutdownHook` method, and hooks added through this method will run immediately when a termination event is received.
The backend will not proceed with the shutdown and run the `Shutdown` hooks until all `BeforeShutdown` hooks have completed.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/release-manifests': patch
---
Switch to native fetch for loading release manifests
-6
View File
@@ -1,6 +0,0 @@
---
'@backstage/plugin-search-react': patch
'@backstage/plugin-search': patch
---
Use Select from core-components and update Lifecycle filter to use Select instead checkboxes.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-react': minor
---
Sort EntityTypePicker by default
-6
View File
@@ -1,6 +0,0 @@
---
'@backstage/backend-defaults': patch
'@backstage/plugin-catalog-backend-module-incremental-ingestion': patch
---
Add task metrics as two gauges that track the last start and end timestamps as epoch seconds.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/backend-app-api': minor
---
Service factories added by feature loaders now have lower priority and will be ignored if a factory for the same service is added directly by `backend.add(serviceFactory)`.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/cli': patch
---
Revert `css-loader@v7` bump
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-node': minor
---
Updated the `catalogServiceMock` return type to match both `CatalogService` and `CatalogApi`
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/repo-tools': patch
---
Generated OpenAPI clients now support paths with tags.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-backend': patch
---
Compute deltas more efficiently, which generally leads to less wasted processing cycles
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-backend': patch
---
Implement `/entities/by-name/:kind/:namespace/:name` using `getEntitiesByRefs`
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-events-node': patch
---
Clarified purpose of subscriber ID in TSDoc for `EventsServiceSubscribeOptions`.
-9
View File
@@ -1,9 +0,0 @@
---
'@backstage/plugin-scaffolder-backend-module-gitlab': minor
'@backstage/plugin-scaffolder-backend-module-bitbucket-cloud': patch
'@backstage/plugin-scaffolder-react': patch
'@backstage/plugin-scaffolder-node': patch
'@backstage/plugin-scaffolder': patch
---
Added the autocomplete feature to GitlabRepoUrlPicker
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-scaffolder-react': patch
---
Added test coverage selectors to TemplateCard and its sub-components
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/backend-test-utils': patch
---
Mock the new `RootLifecycleService.addBeforeShutdownHook` method.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-auth-backend': patch
---
Fix issue with `jwks` endpoint returning invalid data with `firestore`
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-react': patch
---
Fix catalog filtering to allow searching entities by display name
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog': minor
---
Consistent title behaviour across CatalogTable, CursorPaginatedCatalogTable, and OffsetPaginatedCatalogTable.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-scaffolder-backend-module-github': patch
---
Change `github:environment:create` action to request and use a token when resolving reviewer entity refs from the Backstage catalog.
-7
View File
@@ -1,7 +0,0 @@
---
'@backstage/plugin-scaffolder-backend-module-github': patch
'@backstage/plugin-scaffolder-backend': patch
'@backstage/create-app': patch
---
Add github backend module to create-app and improve error messages
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/cli-node': patch
---
add PackageManager and Lockfile interfaces for future use
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-notifications': minor
---
Switched to using the new `/notifications` endpoints. Be sure to update the `notifications` plugin backend before deploying this frontend plugin change.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-backend': patch
---
Be more aggressive in dequeueing entities for stitching
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/repo-tools': minor
---
Fix invalid path and malformed flags bugs in api-reports.ts
-8
View File
@@ -1,8 +0,0 @@
---
'@backstage/catalog-client': minor
'@backstage/plugin-catalog-backend': minor
'@backstage/plugin-events-backend': minor
'@backstage/plugin-search-backend': minor
---
Internal updates to generated code.
-6
View File
@@ -1,6 +0,0 @@
---
'yarn-plugin-backstage': patch
---
Switch to using `reduceDependency` hook to replace `backstage:^` versions. This
makes the same yarn.lock file valid whether or not the plugin is installed.
-8
View File
@@ -1,8 +0,0 @@
---
'@backstage/plugin-auth-node': patch
'@backstage/plugin-permission-backend': patch
'@backstage/plugin-devtools-backend': patch
'@backstage/plugin-signals-backend': patch
---
Restrict `@types/express` version range from `*` to `^4.17.6`.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-notifications-backend': patch
---
Deprecated root '/' endpoints, moving them under `/notifications` instead.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-backend': patch
---
Correctly report stitching queue length
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-scaffolder-backend-module-github': patch
---
Minor spell fix in action parameters
-11
View File
@@ -1,11 +0,0 @@
---
'@backstage/plugin-events-backend': patch
'@backstage/plugin-events-node': patch
---
Allow configuring a timeout for event bus polling requests. This can be set like so in your app-config:
```yaml
events:
notifyTimeoutMs: 30000
```
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-techdocs': patch
---
Added support for the Search bar in docs residing in the entity page tab, and not only the global "/docs" page.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-devtools-backend': minor
---
**BREAKING** Removed support for what is known as the legacy backend, please use the New Backend System.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-scaffolder-backend': minor
---
Emit scaffolder events using the optional `EventsService`
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-notifications-backend': minor
---
**BREAKING**: Removed redundant `/health` endpoint, switch to using [the built-in endpoint instead](https://backstage.io/docs/backend-system/core-services/root-health).
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-scaffolder-node': patch
---
Make sure that isomorphic git push commands are not proxied.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/backend-defaults': patch
---
Support `connection.type: cloudsql` in database client for usage with `@google-cloud/cloud-sql-connector` and `iam` auth
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-scaffolder-backend': patch
---
Add fs:readdir to scaffolder startup
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/cli': patch
---
Bumped the version range for `html-webpack-plugin` to fix the `htmlPluginExports.getCompilationHooks is not a function` error when using experimental Rspack.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/cli': patch
---
Added `@backstage/cli/config/prettier` as a replacement for `@spotify/prettier-config`, but with the same configuration.
-314
View File
@@ -1,314 +0,0 @@
{
"mode": "exit",
"tag": "next",
"initialVersions": {
"example-app": "0.2.103",
"@backstage/app-defaults": "1.5.13",
"example-app-next": "0.0.17",
"app-next-example-plugin": "0.0.17",
"example-backend": "0.0.32",
"@backstage/backend-app-api": "1.0.2",
"@backstage/backend-defaults": "0.5.3",
"@backstage/backend-dev-utils": "0.1.5",
"@backstage/backend-dynamic-feature-service": "0.5.0",
"example-backend-legacy": "0.2.104",
"@backstage/backend-openapi-utils": "0.3.0",
"@backstage/backend-plugin-api": "1.0.2",
"@backstage/backend-test-utils": "1.1.0",
"@backstage/catalog-client": "1.8.0",
"@backstage/catalog-model": "1.7.1",
"@backstage/cli": "0.29.0",
"@backstage/cli-common": "0.1.15",
"@backstage/cli-node": "0.2.10",
"@backstage/codemods": "0.1.52",
"@backstage/config": "1.3.0",
"@backstage/config-loader": "1.9.2",
"@backstage/core-app-api": "1.15.2",
"@backstage/core-compat-api": "0.3.2",
"@backstage/core-components": "0.16.0",
"@backstage/core-plugin-api": "1.10.1",
"@backstage/create-app": "0.5.22",
"@backstage/dev-utils": "1.1.3",
"e2e-test": "0.2.22",
"@backstage/e2e-test-utils": "0.1.1",
"@backstage/errors": "1.2.5",
"@backstage/eslint-plugin": "0.1.10",
"@backstage/frontend-app-api": "0.10.1",
"@backstage/frontend-defaults": "0.1.2",
"@internal/frontend": "0.0.3",
"@backstage/frontend-plugin-api": "0.9.1",
"@backstage/frontend-test-utils": "0.2.2",
"@backstage/integration": "1.15.2",
"@backstage/integration-aws-node": "0.1.13",
"@backstage/integration-react": "1.2.1",
"@internal/opaque": "0.0.1",
"@backstage/release-manifests": "0.0.11",
"@backstage/repo-tools": "0.11.0",
"@internal/scaffolder": "0.0.3",
"@techdocs/cli": "1.8.22",
"techdocs-cli-embedded-app": "0.2.102",
"@backstage/test-utils": "1.7.1",
"@backstage/theme": "0.6.1",
"@backstage/types": "1.2.0",
"@backstage/version-bridge": "1.0.10",
"yarn-plugin-backstage": "0.0.3",
"@backstage/plugin-api-docs": "0.12.0",
"@backstage/plugin-api-docs-module-protoc-gen-doc": "0.1.8",
"@backstage/plugin-app": "0.1.2",
"@backstage/plugin-app-backend": "0.4.0",
"@backstage/plugin-app-node": "0.1.27",
"@backstage/plugin-app-visualizer": "0.1.12",
"@backstage/plugin-auth-backend": "0.24.0",
"@backstage/plugin-auth-backend-module-atlassian-provider": "0.3.2",
"@backstage/plugin-auth-backend-module-auth0-provider": "0.1.2",
"@backstage/plugin-auth-backend-module-aws-alb-provider": "0.3.0",
"@backstage/plugin-auth-backend-module-azure-easyauth-provider": "0.2.2",
"@backstage/plugin-auth-backend-module-bitbucket-provider": "0.2.2",
"@backstage/plugin-auth-backend-module-bitbucket-server-provider": "0.1.2",
"@backstage/plugin-auth-backend-module-cloudflare-access-provider": "0.3.2",
"@backstage/plugin-auth-backend-module-gcp-iap-provider": "0.3.2",
"@backstage/plugin-auth-backend-module-github-provider": "0.2.2",
"@backstage/plugin-auth-backend-module-gitlab-provider": "0.2.2",
"@backstage/plugin-auth-backend-module-google-provider": "0.2.2",
"@backstage/plugin-auth-backend-module-guest-provider": "0.2.2",
"@backstage/plugin-auth-backend-module-microsoft-provider": "0.2.2",
"@backstage/plugin-auth-backend-module-oauth2-provider": "0.3.2",
"@backstage/plugin-auth-backend-module-oauth2-proxy-provider": "0.2.2",
"@backstage/plugin-auth-backend-module-oidc-provider": "0.3.2",
"@backstage/plugin-auth-backend-module-okta-provider": "0.1.2",
"@backstage/plugin-auth-backend-module-onelogin-provider": "0.2.2",
"@backstage/plugin-auth-backend-module-pinniped-provider": "0.2.2",
"@backstage/plugin-auth-backend-module-vmware-cloud-provider": "0.4.1",
"@backstage/plugin-auth-node": "0.5.4",
"@backstage/plugin-auth-react": "0.1.8",
"@backstage/plugin-bitbucket-cloud-common": "0.2.25",
"@backstage/plugin-catalog": "1.25.0",
"@backstage/plugin-catalog-backend": "1.28.0",
"@backstage/plugin-catalog-backend-module-aws": "0.4.5",
"@backstage/plugin-catalog-backend-module-azure": "0.2.4",
"@backstage/plugin-catalog-backend-module-backstage-openapi": "0.4.2",
"@backstage/plugin-catalog-backend-module-bitbucket-cloud": "0.4.2",
"@backstage/plugin-catalog-backend-module-bitbucket-server": "0.2.4",
"@backstage/plugin-catalog-backend-module-gcp": "0.3.2",
"@backstage/plugin-catalog-backend-module-gerrit": "0.2.4",
"@backstage/plugin-catalog-backend-module-github": "0.7.7",
"@backstage/plugin-catalog-backend-module-github-org": "0.3.4",
"@backstage/plugin-catalog-backend-module-gitlab": "0.5.0",
"@backstage/plugin-catalog-backend-module-gitlab-org": "0.2.3",
"@backstage/plugin-catalog-backend-module-incremental-ingestion": "0.6.0",
"@backstage/plugin-catalog-backend-module-ldap": "0.10.0",
"@backstage/plugin-catalog-backend-module-logs": "0.1.4",
"@backstage/plugin-catalog-backend-module-msgraph": "0.6.4",
"@backstage/plugin-catalog-backend-module-openapi": "0.2.4",
"@backstage/plugin-catalog-backend-module-puppetdb": "0.2.4",
"@backstage/plugin-catalog-backend-module-scaffolder-entity-model": "0.2.2",
"@backstage/plugin-catalog-backend-module-unprocessed": "0.5.2",
"@backstage/plugin-catalog-common": "1.1.1",
"@backstage/plugin-catalog-graph": "0.4.12",
"@backstage/plugin-catalog-import": "0.12.6",
"@backstage/plugin-catalog-node": "1.14.0",
"@backstage/plugin-catalog-react": "1.14.1",
"@backstage/plugin-catalog-unprocessed-entities": "0.2.10",
"@backstage/plugin-catalog-unprocessed-entities-common": "0.0.5",
"@backstage/plugin-config-schema": "0.1.61",
"@backstage/plugin-devtools": "0.1.20",
"@backstage/plugin-devtools-backend": "0.4.2",
"@backstage/plugin-devtools-common": "0.1.13",
"@backstage/plugin-events-backend": "0.3.16",
"@backstage/plugin-events-backend-module-aws-sqs": "0.4.5",
"@backstage/plugin-events-backend-module-azure": "0.2.14",
"@backstage/plugin-events-backend-module-bitbucket-cloud": "0.2.14",
"@backstage/plugin-events-backend-module-gerrit": "0.2.14",
"@backstage/plugin-events-backend-module-github": "0.2.14",
"@backstage/plugin-events-backend-module-gitlab": "0.2.14",
"@backstage/plugin-events-backend-test-utils": "0.1.38",
"@backstage/plugin-events-node": "0.4.5",
"@internal/plugin-todo-list": "1.0.33",
"@internal/plugin-todo-list-backend": "1.0.33",
"@internal/plugin-todo-list-common": "1.0.22",
"@backstage/plugin-home": "0.8.1",
"@backstage/plugin-home-react": "0.1.19",
"@backstage/plugin-kubernetes": "0.12.0",
"@backstage/plugin-kubernetes-backend": "0.19.0",
"@backstage/plugin-kubernetes-cluster": "0.0.18",
"@backstage/plugin-kubernetes-common": "0.9.0",
"@backstage/plugin-kubernetes-node": "0.2.0",
"@backstage/plugin-kubernetes-react": "0.5.0",
"@backstage/plugin-notifications": "0.4.0",
"@backstage/plugin-notifications-backend": "0.4.3",
"@backstage/plugin-notifications-backend-module-email": "0.3.3",
"@backstage/plugin-notifications-common": "0.0.6",
"@backstage/plugin-notifications-node": "0.2.9",
"@backstage/plugin-org": "0.6.32",
"@backstage/plugin-org-react": "0.1.31",
"@backstage/plugin-permission-backend": "0.5.51",
"@backstage/plugin-permission-backend-module-allow-all-policy": "0.2.2",
"@backstage/plugin-permission-common": "0.8.2",
"@backstage/plugin-permission-node": "0.8.5",
"@backstage/plugin-permission-react": "0.4.28",
"@backstage/plugin-proxy-backend": "0.5.8",
"@backstage/plugin-scaffolder": "1.27.0",
"@backstage/plugin-scaffolder-backend": "1.27.0",
"@backstage/plugin-scaffolder-backend-module-azure": "0.2.2",
"@backstage/plugin-scaffolder-backend-module-bitbucket": "0.3.2",
"@backstage/plugin-scaffolder-backend-module-bitbucket-cloud": "0.2.2",
"@backstage/plugin-scaffolder-backend-module-bitbucket-server": "0.2.2",
"@backstage/plugin-scaffolder-backend-module-confluence-to-markdown": "0.3.2",
"@backstage/plugin-scaffolder-backend-module-cookiecutter": "0.3.3",
"@backstage/plugin-scaffolder-backend-module-gcp": "0.2.2",
"@backstage/plugin-scaffolder-backend-module-gerrit": "0.2.2",
"@backstage/plugin-scaffolder-backend-module-gitea": "0.2.2",
"@backstage/plugin-scaffolder-backend-module-github": "0.5.2",
"@backstage/plugin-scaffolder-backend-module-gitlab": "0.6.1",
"@backstage/plugin-scaffolder-backend-module-notifications": "0.1.3",
"@backstage/plugin-scaffolder-backend-module-rails": "0.5.2",
"@backstage/plugin-scaffolder-backend-module-sentry": "0.2.2",
"@backstage/plugin-scaffolder-backend-module-yeoman": "0.4.3",
"@backstage/plugin-scaffolder-common": "1.5.7",
"@backstage/plugin-scaffolder-node": "0.6.0",
"@backstage/plugin-scaffolder-node-test-utils": "0.1.15",
"@backstage/plugin-scaffolder-react": "1.14.0",
"@backstage/plugin-search": "1.4.19",
"@backstage/plugin-search-backend": "1.7.0",
"@backstage/plugin-search-backend-module-catalog": "0.2.5",
"@backstage/plugin-search-backend-module-elasticsearch": "1.6.2",
"@backstage/plugin-search-backend-module-explore": "0.2.5",
"@backstage/plugin-search-backend-module-pg": "0.5.38",
"@backstage/plugin-search-backend-module-stack-overflow-collator": "0.3.3",
"@backstage/plugin-search-backend-module-techdocs": "0.3.2",
"@backstage/plugin-search-backend-node": "1.3.5",
"@backstage/plugin-search-common": "1.2.15",
"@backstage/plugin-search-react": "1.8.2",
"@backstage/plugin-signals": "0.0.12",
"@backstage/plugin-signals-backend": "0.2.3",
"@backstage/plugin-signals-node": "0.1.14",
"@backstage/plugin-signals-react": "0.0.7",
"@backstage/plugin-techdocs": "1.11.1",
"@backstage/plugin-techdocs-addons-test-utils": "1.0.41",
"@backstage/plugin-techdocs-backend": "1.11.2",
"@backstage/plugin-techdocs-common": "0.1.0",
"@backstage/plugin-techdocs-module-addons-contrib": "1.1.17",
"@backstage/plugin-techdocs-node": "1.12.13",
"@backstage/plugin-techdocs-react": "1.2.10",
"@backstage/plugin-user-settings": "0.8.15",
"@backstage/plugin-user-settings-backend": "0.2.27",
"@backstage/plugin-user-settings-common": "0.0.1",
"@backstage/canon": "0.0.0"
},
"changesets": [
"beige-chicken-type",
"brave-maps-deliver",
"brave-teachers-mate",
"brown-monkeys-ring",
"chatty-weeks-impress",
"chilly-games-trade",
"cold-icons-worry",
"cold-jeans-stare",
"cool-days-sparkle",
"cuddly-chicken-wink",
"cuddly-schools-scream",
"curly-hats-tell",
"cyan-rocks-divide",
"dry-badgers-prove",
"dry-needles-taste",
"dull-bulldogs-learn",
"dull-ties-film",
"empty-bugs-deliver",
"empty-colts-promise",
"empty-ways-push",
"fast-cheetahs-deliver",
"few-colts-train",
"few-pillows-remember",
"fifty-countries-decide",
"five-goats-travel",
"fluffy-cobras-sort",
"fluffy-falcons-shout",
"fluffy-zebras-cheer",
"forty-apples-complain",
"forty-ravens-fry",
"friendly-dots-thank",
"gold-crabs-agree",
"gold-stingrays-cross",
"gorgeous-panthers-count",
"great-buttons-cross",
"green-carpets-smell",
"happy-forks-listen",
"healthy-years-begin",
"heavy-needles-poke",
"heavy-tomatoes-laugh",
"honest-hornets-double",
"hungry-hairs-wait",
"itchy-rats-pump",
"itchy-ravens-punch",
"khaki-ladybugs-swim",
"khaki-shrimps-tease",
"large-birds-watch",
"lazy-pants-attack",
"lazy-years-float",
"lemon-bulldogs-study",
"lucky-crabs-vanish",
"mean-shirts-design",
"mighty-birds-rest",
"neat-insects-cough",
"new-pandas-perform",
"new-rules-teach",
"odd-apples-explain",
"odd-days-push",
"odd-worms-peel",
"old-taxis-exist",
"olive-berries-jump",
"orange-coins-confess",
"orange-moles-kick",
"perfect-fishes-kick",
"pink-bees-shake",
"pink-pets-jump",
"polite-foxes-buy",
"poor-hounds-jump",
"popular-donkeys-rhyme",
"pretty-kiwis-travel",
"real-shirts-cry",
"renovate-998a490",
"renovate-9a9f6ed",
"renovate-a5f3bd6",
"renovate-e689a2c",
"rich-beers-eat",
"rich-maps-invite",
"rich-suns-drive",
"rollup-fix-forward",
"rollup-release-borked-packages",
"rude-pears-tie",
"seven-bulldogs-count",
"short-baboons-search",
"shy-teachers-count",
"silent-pigs-collect",
"silver-actors-care",
"six-eels-add",
"sixty-shirts-rescue",
"slow-horses-destroy",
"slow-singers-jump",
"small-boxes-enjoy",
"smart-islands-judge",
"smooth-bikes-sparkle",
"spotty-shoes-exercise",
"stale-hats-exist",
"stale-rats-tease",
"strange-brooms-check",
"strong-papayas-remember",
"swift-kangaroos-drop",
"tall-comics-heal",
"ten-keys-nail",
"thick-items-bathe",
"thin-hotels-explode",
"tiny-mice-run",
"twenty-monkeys-applaud",
"twenty-parents-judge",
"violet-snakes-laugh",
"warm-pumpkins-bathe",
"weak-avocados-suffer",
"weak-meals-doubt",
"wet-rats-exist",
"young-carrots-collect",
"young-cobras-add",
"young-months-admire"
]
}
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/backend-defaults': patch
---
Implements the `DefaultRootLifecycleService.addBeforeShutdownHook` method, and updates `DefaultRootHttpRouterService` and `DefaultRootHealthService` to listen to that event to stop accepting traffic and close service connections.
-5
View File
@@ -1,5 +0,0 @@
---
'yarn-plugin-backstage': patch
---
Fixed path resolution on windows
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/cli-node': patch
---
Internal refactor
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-scaffolder-react': patch
---
Updated dependency `flatted` to `3.3.2`.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/cli': patch
---
Updated dependency `@module-federation/enhanced` to `^0.8.0`.
-11
View File
@@ -1,11 +0,0 @@
---
'@backstage/plugin-home-react': patch
'@backstage/plugin-home': patch
'@backstage/plugin-scaffolder-react': patch
'@backstage/plugin-scaffolder': patch
---
Updated dependency `@rjsf/utils` to `5.23.1`.
Updated dependency `@rjsf/core` to `5.23.1`.
Updated dependency `@rjsf/material-ui` to `5.23.1`.
Updated dependency `@rjsf/validator-ajv8` to `5.23.1`.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/core-compat-api': patch
---
Updated dependency `@oriflame/backstage-plugin-score-card` to `^0.9.0`.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-backend-module-incremental-ingestion': patch
---
Wire up the events together in the new backend system
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-permission-node': patch
---
The `createPermissionIntegrationRouter` function now detects and prevents the exposure of duplicate permissions.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/backend-openapi-utils': minor
---
Fixed a Typescript error when trying to use the new OpenAPI server-side generated code.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/cli': patch
---
Update `rollup` to avoid issues with build output when running `backstage-cli package build`.
@@ -1,12 +0,0 @@
---
'@backstage/cli': patch
'@backstage/frontend-plugin-api': patch
'@backstage/repo-tools': patch
'@backstage/theme': patch
'@backstage/plugin-app': patch
'@backstage/plugin-catalog-backend-module-ldap': patch
'@backstage/plugin-scaffolder-backend-module-bitbucket': patch
'@backstage/plugin-techdocs-node': patch
---
Fixed a bug that caused missing code in published packages.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/backend-defaults': patch
---
Remove use of the `stoppable` library on the `DefaultRootHttpRouterService` as Node's native http server [close](https://nodejs.org/api/http.html#serverclosecallback) method already drains requests.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/cli': patch
---
Add support for `--output-file` option from ESLint to `package lint` and `repo lint` commands.

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