# Release v1.34.0
Upgrade Helper: [https://backstage.github.io/upgrade-helper/?to=1.34.0](https://backstage.github.io/upgrade-helper/?to=1.34.0)
## @backstage/backend-app-api@1.1.0
### Minor Changes
- ebf083d: 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)`.
- 12eac85: **EXPERIMENTAL**: Adds a new `instanceMetadataService` to hold information about a specific backend instance.
### Patch Changes
- eef3ef1: Removed unused `express` dependencies.
- ae2408b: Add a `toString` on the default `BackendFeatureMeta` implementations
- 5c9cc05: Use native fetch instead of node-fetch
- 0e9c9fa: As soon as a backend termination signal is received, call before shutting down root lifecycle hooks.
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-permission-node@0.8.6
- @backstage/config-loader@1.9.3
- @backstage/errors@1.2.6
- @backstage/cli-common@0.1.15
- @backstage/config@1.3.1
- @backstage/types@1.2.0
## @backstage/backend-defaults@0.6.0
### Minor Changes
- fd5d337: 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.
- 3f34ea9: Throttles Bitbucket Server API calls
- de6f280: **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
```
- 29180ec: **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 })
```
- 277092a: Implemented `AzureBlobStorageUrlReader` to read from the url of committed location from the entity provider
- 18a2c00: All middleware used by the default `coreServices.http` is now exported for use by custom implementations.
### Patch Changes
- dfc8b41: Updated dependency `@opentelemetry/api` to `^1.9.0`.
- 5b1e68c: Immediately close all connections when shutting down in local development.
- 8863b38: Export `PluginTokenHandler` and `pluginTokenHandlerDecoratorServiceRef` to allow for custom decoration of the plugin token handler without having to re-implement the entire handler.
- 29180ec: Fix server response time by moving the lifecycle startup hooks back to the plugin lifecycle service.
- 57e0b11: 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.
- 97c6837: Export `DefaultHttpAuthService` to allow for custom token extraction logic.
- e5255f1: 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`.
- 57e0b11: The default `authServiceFactory` now correctly depends on the plugin scoped `Logger` services rather than the root scoped one.
- fe87fbf: Add task metrics as two gauges that track the last start and end timestamps as epoch seconds.
- 1ac6b72: Support `connection.type: cloudsql` in database client for usage with `@google-cloud/cloud-sql-connector` and `iam` auth
- 0e9c9fa: Implements the `DefaultRootLifecycleService.addBeforeShutdownHook` method, and updates `DefaultRootHttpRouterService` and `DefaultRootHealthService` to listen to that event to stop accepting traffic and close service connections.
- d0cbd82: 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.
- 5c9cc05: Use native fetch instead of node-fetch
- cf627c6: Fixed an issue in the WinstonLogger where Errors thrown and given to logger.error with field values that could not be cast to a string would throw a TypeError
- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/backend-app-api@1.1.0
- @backstage/plugin-events-node@0.4.6
- @backstage/cli-node@0.2.11
- @backstage/plugin-permission-node@0.8.6
- @backstage/config-loader@1.9.3
- @backstage/errors@1.2.6
- @backstage/backend-dev-utils@0.1.5
- @backstage/cli-common@0.1.15
- @backstage/config@1.3.1
- @backstage/integration-aws-node@0.1.14
- @backstage/types@1.2.0
## @backstage/backend-openapi-utils@0.4.0
### Minor Changes
- afcebea: Fixed a Typescript error when trying to use the new OpenAPI server-side generated code.
### Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/errors@1.2.6
- @backstage/types@1.2.0
## @backstage/backend-plugin-api@1.1.0
### Minor Changes
- 12eac85: **EXPERIMENTAL**: Adds a new `instanceMetadataService` to hold information about a specific backend instance.
### Patch Changes
- eef3ef1: Removed unused `express` dependencies.
- 0e9c9fa: 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.
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/errors@1.2.6
- @backstage/cli-common@0.1.15
- @backstage/config@1.3.1
- @backstage/types@1.2.0
- @backstage/plugin-permission-common@0.8.3
## @backstage/backend-test-utils@1.2.0
### Minor Changes
- de6f280: **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
```
### Patch Changes
- 0e9c9fa: Mock the new `RootLifecycleService.addBeforeShutdownHook` method.
- Updated dependencies
- @backstage/backend-defaults@0.6.0
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/backend-app-api@1.1.0
- @backstage/plugin-events-node@0.4.6
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
- @backstage/types@1.2.0
## @backstage/catalog-client@1.9.0
### Minor Changes
- 384e494: Internal updates to generated code.
### Patch Changes
- d7e7836: Fixed a bug in the `queryEntities` method where errors were not being handled properly.
- Updated dependencies
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
## @backstage/integration@1.16.0
### Minor Changes
- 277092a: Add the integration for Azure blob storage to read the credentials to access the storage account and provide the default credential provider.
### Patch Changes
- Updated dependencies
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
## @backstage/repo-tools@0.12.0
### Minor Changes
- c1eccd6: Fix invalid path and malformed flags bugs in api-reports.ts
### Patch Changes
- 860e3b5: Generated OpenAPI clients now support paths with tags.
- 5f04976: Fixed a bug that caused missing code in published packages.
- 00058d0: The `generate-patch` command will now add a single resolution entry for all versions of the patched package, rather than separate entries for each version query.
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/cli-node@0.2.11
- @backstage/config-loader@1.9.3
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/cli-common@0.1.15
## @backstage/plugin-catalog@1.26.0
### Minor Changes
- 25beb82: Adds an optional columns attribute to HasSubdomainsCardProps and changes its default columns
- 39f1abc: Consistent title behaviour across CatalogTable, CursorPaginatedCatalogTable, and OffsetPaginatedCatalogTable.
- 1ffb9f3: Update `CatalogTable` title to use properly capitalized Kind facets (e.g. 'Component' instead of 'component')
### Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.15.0
- @backstage/plugin-scaffolder-common@1.5.8
- @backstage/plugin-search-react@1.8.4
- @backstage/catalog-client@1.9.0
- @backstage/core-compat-api@0.3.4
- @backstage/frontend-plugin-api@0.9.3
- @backstage/core-components@0.16.2
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/core-plugin-api@1.10.2
- @backstage/integration-react@1.2.2
- @backstage/types@1.2.0
- @backstage/plugin-catalog-common@1.1.2
- @backstage/plugin-permission-react@0.4.29
- @backstage/plugin-search-common@1.2.16
## @backstage/plugin-catalog-backend@1.29.0
### Minor Changes
- 02bd2cb: 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.
- c1307b4: Implement `/entities` in terms of `queryEntities` to not run into memory and performance problems on large catalogs
- 384e494: Internal updates to generated code.
- 1d0bc11: Fetch all facets in a single database query
### Patch Changes
- dfc8b41: Updated dependency `@opentelemetry/api` to `^1.9.0`.
- 8013c9c: Perform the by-query count inlined with the main query
- feba9ee: Internal refactor of filter parsing logic.
- 1fdb48e: Use a faster count method on pg when computing some metrics
- e4aab10: Fix a bug where sometimes the `by-query` endpoint could return nulls for entities that were not yet stitched.
- f159b25: Compute deltas more efficiently, which generally leads to less wasted processing cycles
- 0c33465: Implement `/entities/by-name/:kind/:namespace/:name` using `getEntitiesByRefs`
- 56511ba: Be more aggressive in dequeueing entities for stitching
- 71152e3: Correctly report stitching queue length
- 5c9cc05: Use native fetch instead of node-fetch
- d93390d: When parsing filters, do not make redundant `anyOf` and `allOf` nodes when there's only a single entry within them
- 3ab57c6: Support changing location keys on existing entities, in delta mutations
- 24ecea8: Avoid extra ordering in by-query when the user doesn't ask for it
- 2924ffe: Compute some metrics using search table facet aggregations instead of reading the full refresh state
- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-search-backend-module-catalog@0.2.6
- @backstage/plugin-catalog-node@1.15.0
- @backstage/plugin-events-node@0.4.6
- @backstage/catalog-client@1.9.0
- @backstage/plugin-permission-node@0.8.6
- @backstage/backend-openapi-utils@0.4.0
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/types@1.2.0
- @backstage/plugin-catalog-common@1.1.2
- @backstage/plugin-permission-common@0.8.3
## @backstage/plugin-catalog-backend-module-azure@0.3.0
### Minor Changes
- 277092a: Added the Azure Blob Storage as catalog entity provider to import all the desired entities from storage account provided in app-config.yaml
### Patch Changes
- 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/config@1.3.1
- @backstage/plugin-catalog-common@1.1.2
## @backstage/plugin-catalog-backend-module-bitbucket-server@0.3.0
### Minor Changes
- 3f34ea9: Throttles Bitbucket Server API calls
### Patch Changes
- 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
## @backstage/plugin-catalog-backend-module-gitlab@0.6.0
### Minor Changes
- 99dce5c: Implemented discovery for top-level groups defined in config.group or if undefined global top-level group in Gitlab
### Patch Changes
- 191e5bf: `restrictUsersToGroup` should use the entire group path when getting members
- 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/backend-defaults@0.6.0
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/plugin-events-node@0.4.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/plugin-catalog-common@1.1.2
## @backstage/plugin-catalog-backend-module-ldap@0.11.0
### Minor Changes
- 732700a: Updated fix for ldap entity mapping which doesn't require extra config setting of dnCaseSensitive
- 95ac4a2: Add new ldap vendor config 'LLDAP'
### Patch Changes
- 5f04976: Fixed a bug that caused missing code in published packages.
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/types@1.2.0
- @backstage/plugin-catalog-common@1.1.2
## @backstage/plugin-catalog-node@1.15.0
### Minor Changes
- 8edc4cd: Updated the `catalogServiceMock` return type to match both `CatalogService` and `CatalogApi`
### Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/catalog-client@1.9.0
- @backstage/plugin-permission-node@0.8.6
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/types@1.2.0
- @backstage/plugin-catalog-common@1.1.2
- @backstage/plugin-permission-common@0.8.3
## @backstage/plugin-catalog-react@1.15.0
### Minor Changes
- 1ffb9f3: Update `EntityKindFilter` to include a `label` field with the properly capitalized Kind facet string
- ceaf602: Sort EntityTypePicker by default
### Patch Changes
- d97a2cd: Fixed an issue causing the `EntityOwnerPicker` to reset scrolling when more elements are loaded.
- c36bd35: Internal refactor to break potential circular imports
- f18c67d: Fix catalog filtering to allow searching entities by display name
- 95092a6: Fixed an issue where `` would re-render its children on page load for smaller screens, potentially leading to unnecessary additional backend requests.
- 4a43398: Fixed an issue where the `EntityOwnerPicker` component failed to load when the `mode` prop was set to `owners-only`. In this mode, the `EntityOwnerPicker` does not load details about the owners, such as `displayName` or `title`. To display these details, use `mode=all` instead.
- Updated dependencies
- @backstage/catalog-client@1.9.0
- @backstage/core-compat-api@0.3.4
- @backstage/frontend-plugin-api@0.9.3
- @backstage/core-components@0.16.2
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/core-plugin-api@1.10.2
- @backstage/frontend-test-utils@0.2.4
- @backstage/integration-react@1.2.2
- @backstage/types@1.2.0
- @backstage/version-bridge@1.0.10
- @backstage/plugin-catalog-common@1.1.2
- @backstage/plugin-permission-common@0.8.3
- @backstage/plugin-permission-react@0.4.29
## @backstage/plugin-devtools-backend@0.5.0
### Minor Changes
- c781a9a: **BREAKING** Removed support for what is known as the legacy backend, please use the New Backend System.
### Patch Changes
- 1e624ca: Restrict `@types/express` version range from `*` to `^4.17.6`.
- 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/backend-defaults@0.6.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-permission-node@0.8.6
- @backstage/config-loader@1.9.3
- @backstage/errors@1.2.6
- @backstage/cli-common@0.1.15
- @backstage/config@1.3.1
- @backstage/types@1.2.0
- @backstage/plugin-devtools-common@0.1.14
- @backstage/plugin-permission-common@0.8.3
## @backstage/plugin-events-backend@0.4.0
### Minor Changes
- 384e494: Internal updates to generated code.
### Patch Changes
- 1577511: Allow configuring a timeout for event bus polling requests. This can be set like so in your app-config:
```yaml
events:
notifyTimeoutMs: 30000
```
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-events-node@0.4.6
- @backstage/backend-openapi-utils@0.4.0
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
- @backstage/types@1.2.0
## @backstage/plugin-notifications@0.5.0
### Minor Changes
- fc15b77: Switched to using the new `/notifications` endpoints. Be sure to update the `notifications` plugin backend before deploying this frontend plugin change.
### Patch Changes
- Updated dependencies
- @backstage/theme@0.6.3
- @backstage/core-components@0.16.2
- @backstage/errors@1.2.6
- @backstage/core-plugin-api@1.10.2
- @backstage/types@1.2.0
- @backstage/plugin-notifications-common@0.0.7
- @backstage/plugin-signals-react@0.0.8
## @backstage/plugin-notifications-backend@0.5.0
### Minor Changes
- fc15b77: **BREAKING**: Removed redundant `/health` endpoint, switch to using [the built-in endpoint instead](https://backstage.io/docs/backend-system/core-services/root-health).
### Patch Changes
- fc15b77: Deprecated root '/' endpoints, moving them under `/notifications` instead.
- 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/plugin-events-node@0.4.6
- @backstage/catalog-client@1.9.0
- @backstage/plugin-notifications-node@0.2.10
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/plugin-notifications-common@0.0.7
- @backstage/plugin-signals-node@0.1.15
## @backstage/plugin-scaffolder-backend@1.28.0
### Minor Changes
- c05a343: Emit scaffolder events using the optional `EventsService`
### Patch Changes
- dfc8b41: Updated dependency `@opentelemetry/api` to `^1.9.0`.
- 3c62a50: Experimental support for `formDecorators` to enable secret collection and mutations to the parameters for scaffolder tasks
- 6c326cf: The --no-node-snapshot check needs to be done against process.execArgv instead of process.argv
- e913fdf: Add github backend module to create-app and improve error messages
- 8f59dc5: Add fs:readdir to scaffolder startup
- 0851834: Resolved an issue where the `templateManagementPermission` was not being exposed through the `/permissions/metadata` endpoint.
- Updated dependencies
- @backstage/backend-defaults@0.6.0
- @backstage/plugin-scaffolder-backend-module-github@0.5.4
- @backstage/integration@1.16.0
- @backstage/plugin-auth-node@0.5.5
- @backstage/plugin-scaffolder-common@1.5.8
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/plugin-events-node@0.4.6
- @backstage/plugin-scaffolder-backend-module-gitlab@0.7.0
- @backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.2.4
- @backstage/plugin-scaffolder-node@0.6.2
- @backstage/catalog-client@1.9.0
- @backstage/plugin-permission-node@0.8.6
- @backstage/plugin-scaffolder-backend-module-bitbucket@0.3.5
- @backstage/plugin-scaffolder-backend-module-bitbucket-server@0.2.4
- @backstage/plugin-scaffolder-backend-module-gerrit@0.2.4
- @backstage/plugin-scaffolder-backend-module-gitea@0.2.4
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/types@1.2.0
- @backstage/plugin-bitbucket-cloud-common@0.2.26
- @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.3
- @backstage/plugin-permission-common@0.8.3
- @backstage/plugin-scaffolder-backend-module-azure@0.2.4
## @backstage/plugin-scaffolder-backend-module-gitlab@0.7.0
### Minor Changes
- c4ffd13: Added the autocomplete feature to GitlabRepoUrlPicker
- 32459d0: **BREAKING**: Upgraded the `gitbeaker` library to version 41. As part of this, the `scopes` parameter to the `gitlab:projectDeployToken:create` is no longer optional, so you will have to pass it a value (for example `['read_repository']`).
### Patch Changes
- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-scaffolder-node@0.6.2
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
## @backstage/plugin-search-backend@1.8.0
### Minor Changes
- 384e494: Internal updates to generated code.
### Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.6.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-permission-node@0.8.6
- @backstage/backend-openapi-utils@0.4.0
- @backstage/plugin-search-backend-node@1.3.6
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
- @backstage/types@1.2.0
- @backstage/plugin-permission-common@0.8.3
- @backstage/plugin-search-common@1.2.16
## @backstage/plugin-techdocs@1.12.0
### Minor Changes
- e153ca6: Add pagination support to TechDocs Index Page and make it the default
### Patch Changes
- 7d8777d: Added support for the Search bar in docs residing in the entity page tab, and not only the global "/docs" page.
- Updated dependencies
- @backstage/plugin-catalog-react@1.15.0
- @backstage/integration@1.16.0
- @backstage/plugin-search-react@1.8.4
- @backstage/core-compat-api@0.3.4
- @backstage/frontend-plugin-api@0.9.3
- @backstage/theme@0.6.3
- @backstage/core-components@0.16.2
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/core-plugin-api@1.10.2
- @backstage/integration-react@1.2.2
- @backstage/plugin-auth-react@0.1.10
- @backstage/plugin-search-common@1.2.16
- @backstage/plugin-techdocs-common@0.1.0
- @backstage/plugin-techdocs-react@1.2.12
## @backstage/app-defaults@1.5.15
### Patch Changes
- Updated dependencies
- @backstage/core-app-api@1.15.3
- @backstage/theme@0.6.3
- @backstage/core-components@0.16.2
- @backstage/core-plugin-api@1.10.2
- @backstage/plugin-permission-react@0.4.29
## @backstage/backend-dynamic-feature-service@0.5.2
### Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.6.0
- @backstage/plugin-catalog-backend@1.29.0
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/backend-app-api@1.1.0
- @backstage/plugin-events-node@0.4.6
- @backstage/plugin-scaffolder-node@0.6.2
- @backstage/cli-node@0.2.11
- @backstage/plugin-events-backend@0.4.0
- @backstage/plugin-permission-node@0.8.6
- @backstage/plugin-search-backend-node@1.3.6
- @backstage/config-loader@1.9.3
- @backstage/errors@1.2.6
- @backstage/cli-common@0.1.15
- @backstage/config@1.3.1
- @backstage/types@1.2.0
- @backstage/plugin-app-node@0.1.28
- @backstage/plugin-permission-common@0.8.3
- @backstage/plugin-search-common@1.2.16
## @backstage/catalog-model@1.7.2
### Patch Changes
- Updated dependencies
- @backstage/errors@1.2.6
- @backstage/types@1.2.0
## @backstage/cli@0.29.4
### Patch Changes
- 2b6c1ea: If the Backstage yarn plugin is installed, it will now be automatically updated as part of `versions:bump`.
- 7dcff85: Remove special-casing for `@types` packages when generating dependency entries
during templating
- 3c3a7e6: Revert `css-loader@v7` bump
- 0aff006: Bumped the version range for `html-webpack-plugin` to fix the `htmlPluginExports.getCompilationHooks is not a function` error when using experimental Rspack.
- 583f3d4: Added `@backstage/cli/config/prettier` as a replacement for `@spotify/prettier-config`, but with the same configuration.
- 62a9062: Updated dependency `@module-federation/enhanced` to `^0.8.0`.
- 5f04976: Update `rollup` to avoid issues with build output when running `backstage-cli package build`.
- 5f04976: Fixed a bug that caused missing code in published packages.
- a49030a: Add support for `--output-file` option from ESLint to `package lint` and `repo lint` commands.
- 96331fa: Enhance the behavior of the experimental support for module federation in the backstage CLI,
by using the `package.json` exports (when present) to complete the list of exposed modules.
This allows, for example, using exported `alpha` definitions through module federation.
- 5c9cc05: Use native fetch instead of node-fetch
- dcd99d2: added experimental RSPack support for build command in the repo scope
- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/release-manifests@0.0.12
- @backstage/cli-node@0.2.11
- @backstage/config-loader@1.9.3
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/cli-common@0.1.15
- @backstage/config@1.3.1
- @backstage/eslint-plugin@0.1.10
- @backstage/types@1.2.0
## @backstage/cli-node@0.2.11
### Patch Changes
- af665ea: add PackageManager and Lockfile interfaces for future use
- cbfc69e: Internal refactor
- Updated dependencies
- @backstage/errors@1.2.6
- @backstage/cli-common@0.1.15
- @backstage/types@1.2.0
## @backstage/config@1.3.1
### Patch Changes
- Updated dependencies
- @backstage/errors@1.2.6
- @backstage/types@1.2.0
## @backstage/config-loader@1.9.3
### Patch Changes
- 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/errors@1.2.6
- @backstage/cli-common@0.1.15
- @backstage/config@1.3.1
- @backstage/types@1.2.0
## @backstage/core-app-api@1.15.3
### Patch Changes
- e5fa018: 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.
- 2830689: Decrease OAuth2 token refresh grace period
- Updated dependencies
- @backstage/config@1.3.1
- @backstage/core-plugin-api@1.10.2
- @backstage/types@1.2.0
- @backstage/version-bridge@1.0.10
## @backstage/core-compat-api@0.3.4
### Patch Changes
- 1f30730: Updated dependency `@oriflame/backstage-plugin-score-card` to `^0.9.0`.
- Updated dependencies
- @backstage/frontend-plugin-api@0.9.3
- @backstage/core-plugin-api@1.10.2
- @backstage/version-bridge@1.0.10
## @backstage/core-components@0.16.2
### Patch Changes
- e47be38: Added data-testid to placeholder rendered by Progress component to simplify assertions in tests
- Updated dependencies
- @backstage/theme@0.6.3
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
- @backstage/core-plugin-api@1.10.2
- @backstage/version-bridge@1.0.10
## @backstage/core-plugin-api@1.10.2
### Patch Changes
- Updated dependencies
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
- @backstage/types@1.2.0
- @backstage/version-bridge@1.0.10
## @backstage/create-app@0.5.23
### Patch Changes
- 5819f8d: Updated Dockerfile to include `backstage.json` file
- 583f3d4: Updated the template to use `@backstage/cli/config/prettier` instead of `@spotify/prettier-config`.
- e913fdf: Add github backend module to create-app and improve error messages
- 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/cli-common@0.1.15
## @backstage/dev-utils@1.1.5
### Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.15.0
- @backstage/core-app-api@1.15.3
- @backstage/theme@0.6.3
- @backstage/core-components@0.16.2
- @backstage/app-defaults@1.5.15
- @backstage/catalog-model@1.7.2
- @backstage/core-plugin-api@1.10.2
- @backstage/integration-react@1.2.2
## @backstage/errors@1.2.6
### Patch Changes
- 1d4b5b9: Trim `error.cause.stack` in addition to `error.stack` when trimming stack traces from serialized errors.
- Updated dependencies
- @backstage/types@1.2.0
## @backstage/frontend-app-api@0.10.3
### Patch Changes
- Updated dependencies
- @backstage/core-app-api@1.15.3
- @backstage/frontend-plugin-api@0.9.3
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
- @backstage/core-plugin-api@1.10.2
- @backstage/frontend-defaults@0.1.4
- @backstage/types@1.2.0
- @backstage/version-bridge@1.0.10
## @backstage/frontend-defaults@0.1.4
### Patch Changes
- Updated dependencies
- @backstage/plugin-app@0.1.4
- @backstage/frontend-plugin-api@0.9.3
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
- @backstage/frontend-app-api@0.10.3
## @backstage/frontend-plugin-api@0.9.3
### Patch Changes
- 5f04976: Fixed a bug that caused missing code in published packages.
- Updated dependencies
- @backstage/core-components@0.16.2
- @backstage/core-plugin-api@1.10.2
- @backstage/types@1.2.0
- @backstage/version-bridge@1.0.10
## @backstage/frontend-test-utils@0.2.4
### Patch Changes
- Updated dependencies
- @backstage/plugin-app@0.1.4
- @backstage/frontend-plugin-api@0.9.3
- @backstage/config@1.3.1
- @backstage/frontend-app-api@0.10.3
- @backstage/test-utils@1.7.3
- @backstage/types@1.2.0
- @backstage/version-bridge@1.0.10
## @backstage/integration-aws-node@0.1.14
### Patch Changes
- Updated dependencies
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
## @backstage/integration-react@1.2.2
### Patch Changes
- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/config@1.3.1
- @backstage/core-plugin-api@1.10.2
## @backstage/release-manifests@0.0.12
### Patch Changes
- 2e140dc: Switch to native fetch for loading release manifests
- b29eaea: Allow overriding the fetch function used inside getManifestByVersion
## @techdocs/cli@1.8.24
### Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.6.0
- @backstage/plugin-techdocs-node@1.12.15
- @backstage/catalog-model@1.7.2
- @backstage/cli-common@0.1.15
- @backstage/config@1.3.1
## @backstage/test-utils@1.7.3
### Patch Changes
- Updated dependencies
- @backstage/core-app-api@1.15.3
- @backstage/theme@0.6.3
- @backstage/config@1.3.1
- @backstage/core-plugin-api@1.10.2
- @backstage/types@1.2.0
- @backstage/plugin-permission-common@0.8.3
- @backstage/plugin-permission-react@0.4.29
## @backstage/theme@0.6.3
### Patch Changes
- 5f04976: Fixed a bug that caused missing code in published packages.
## @backstage/plugin-api-docs@0.12.2
### Patch Changes
- 11babd9: Fix link styling in ProvidedApisCard component so it aligns with other card components.
- Updated dependencies
- @backstage/plugin-catalog-react@1.15.0
- @backstage/plugin-catalog@1.26.0
- @backstage/core-compat-api@0.3.4
- @backstage/frontend-plugin-api@0.9.3
- @backstage/core-components@0.16.2
- @backstage/catalog-model@1.7.2
- @backstage/core-plugin-api@1.10.2
- @backstage/plugin-catalog-common@1.1.2
- @backstage/plugin-permission-react@0.4.29
## @backstage/plugin-app@0.1.4
### Patch Changes
- e5fa018: 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.
- 5f04976: Fixed a bug that caused missing code in published packages.
- Updated dependencies
- @backstage/frontend-plugin-api@0.9.3
- @backstage/theme@0.6.3
- @backstage/core-components@0.16.2
- @backstage/core-plugin-api@1.10.2
- @backstage/integration-react@1.2.2
- @backstage/plugin-permission-react@0.4.29
## @backstage/plugin-app-backend@0.4.3
### Patch Changes
- 74c3f2a: Fixed a bug where config would not be injected on the `/` and `/index.html` paths.
- 5c9cc05: Use native fetch instead of node-fetch
- d66fa80: Fix root route handling when query parameters are present
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/config-loader@1.9.3
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
- @backstage/types@1.2.0
- @backstage/plugin-app-node@0.1.28
## @backstage/plugin-app-node@0.1.28
### Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/config-loader@1.9.3
## @backstage/plugin-app-visualizer@0.1.14
### Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.9.3
- @backstage/core-components@0.16.2
- @backstage/core-plugin-api@1.10.2
## @backstage/plugin-auth-backend@0.24.1
### Patch Changes
- c907440: Improved error forwarding for OAuth refresh endpoints
- 40518ab: Fix issue with `jwks` endpoint returning invalid data with `firestore`
- 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/catalog-client@1.9.0
- @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.3.3
- @backstage/plugin-auth-backend-module-bitbucket-server-provider@0.1.3
- @backstage/plugin-auth-backend-module-microsoft-provider@0.2.3
- @backstage/plugin-auth-backend-module-aws-alb-provider@0.3.1
- @backstage/plugin-auth-backend-module-google-provider@0.2.3
- @backstage/errors@1.2.6
- @backstage/plugin-auth-backend-module-atlassian-provider@0.3.3
- @backstage/plugin-auth-backend-module-auth0-provider@0.1.3
- @backstage/plugin-auth-backend-module-bitbucket-provider@0.2.3
- @backstage/plugin-auth-backend-module-github-provider@0.2.3
- @backstage/plugin-auth-backend-module-gitlab-provider@0.2.3
- @backstage/plugin-auth-backend-module-oauth2-provider@0.3.3
- @backstage/plugin-auth-backend-module-oidc-provider@0.3.3
- @backstage/plugin-auth-backend-module-okta-provider@0.1.3
- @backstage/plugin-auth-backend-module-onelogin-provider@0.2.3
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/types@1.2.0
- @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.3
- @backstage/plugin-auth-backend-module-gcp-iap-provider@0.3.3
- @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.3
## @backstage/plugin-auth-backend-module-atlassian-provider@0.3.3
### Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
## @backstage/plugin-auth-backend-module-auth0-provider@0.1.3
### Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
## @backstage/plugin-auth-backend-module-aws-alb-provider@0.3.1
### Patch Changes
- 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/plugin-auth-backend@0.24.1
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/errors@1.2.6
## @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.3
### Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
## @backstage/plugin-auth-backend-module-bitbucket-provider@0.2.3
### Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
## @backstage/plugin-auth-backend-module-bitbucket-server-provider@0.1.3
### Patch Changes
- 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
## @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.3.3
### Patch Changes
- 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
## @backstage/plugin-auth-backend-module-gcp-iap-provider@0.3.3
### Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/errors@1.2.6
- @backstage/types@1.2.0
## @backstage/plugin-auth-backend-module-github-provider@0.2.3
### Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
## @backstage/plugin-auth-backend-module-gitlab-provider@0.2.3
### Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
## @backstage/plugin-auth-backend-module-google-provider@0.2.3
### Patch Changes
- 79b055a: Pass through `includeGrantedScopes` in order to persist scopes across refresh calls
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
## @backstage/plugin-auth-backend-module-guest-provider@0.2.3
### Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
## @backstage/plugin-auth-backend-module-microsoft-provider@0.2.3
### Patch Changes
- 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
## @backstage/plugin-auth-backend-module-oauth2-provider@0.3.3
### Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
## @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.3
### Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/errors@1.2.6
## @backstage/plugin-auth-backend-module-oidc-provider@0.3.3
### Patch Changes
- Updated dependencies
- @backstage/plugin-auth-backend@0.24.1
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
## @backstage/plugin-auth-backend-module-okta-provider@0.1.3
### Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
## @backstage/plugin-auth-backend-module-onelogin-provider@0.2.3
### Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
## @backstage/plugin-auth-backend-module-pinniped-provider@0.2.3
### Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/config@1.3.1
## @backstage/plugin-auth-backend-module-vmware-cloud-provider@0.4.2
### Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/catalog-model@1.7.2
## @backstage/plugin-auth-node@0.5.5
### Patch Changes
- c907440: Improved error forwarding for OAuth refresh endpoints
- 1e624ca: Restrict `@types/express` version range from `*` to `^4.17.6`.
- 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/catalog-client@1.9.0
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/types@1.2.0
## @backstage/plugin-auth-react@0.1.10
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.16.2
- @backstage/errors@1.2.6
- @backstage/core-plugin-api@1.10.2
## @backstage/plugin-bitbucket-cloud-common@0.2.26
### Patch Changes
- Updated dependencies
- @backstage/integration@1.16.0
## @backstage/plugin-catalog-backend-module-aws@0.4.6
### Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.6.0
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/integration-aws-node@0.1.14
- @backstage/plugin-catalog-common@1.1.2
- @backstage/plugin-kubernetes-common@0.9.1
## @backstage/plugin-catalog-backend-module-backstage-openapi@0.4.3
### Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/backend-openapi-utils@0.4.0
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
## @backstage/plugin-catalog-backend-module-bitbucket-cloud@0.4.3
### Patch Changes
- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/plugin-events-node@0.4.6
- @backstage/catalog-client@1.9.0
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/plugin-bitbucket-cloud-common@0.2.26
- @backstage/plugin-catalog-common@1.1.2
## @backstage/plugin-catalog-backend-module-gcp@0.3.3
### Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/plugin-kubernetes-common@0.9.1
## @backstage/plugin-catalog-backend-module-gerrit@0.2.5
### Patch Changes
- 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
## @backstage/plugin-catalog-backend-module-github@0.7.8
### Patch Changes
- 468bbcc: Pass in a default schedule to the `GithubEntityProvider` if none is provided
- 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/plugin-catalog-backend@1.29.0
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/plugin-events-node@0.4.6
- @backstage/catalog-client@1.9.0
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/plugin-catalog-common@1.1.2
## @backstage/plugin-catalog-backend-module-github-org@0.3.5
### Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-backend-module-github@0.7.8
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/plugin-events-node@0.4.6
- @backstage/config@1.3.1
## @backstage/plugin-catalog-backend-module-gitlab-org@0.2.4
### Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-backend-module-gitlab@0.6.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/plugin-events-node@0.4.6
## @backstage/plugin-catalog-backend-module-incremental-ingestion@0.6.1
### Patch Changes
- dfc8b41: Updated dependency `@opentelemetry/api` to `^1.9.0`.
- cce9cae: Deprecate old-backend-system `IncrementalCatalogBuilder`
- fe87fbf: Add task metrics as two gauges that track the last start and end timestamps as epoch seconds.
- 5aa44d2: Wire up the events together in the new backend system
- d42ecb0: Remove backend-common package from incremental-ingestion plugin and update related code
- cbfc69e: Create a `dev/index.ts` entrypoint for `yarn start`
- 3ca5f70: Ensure that the scheduled worker task doesn't run at an unreasonably high frequency
- Updated dependencies
- @backstage/backend-defaults@0.6.0
- @backstage/plugin-catalog-backend@1.29.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/plugin-events-node@0.4.6
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/types@1.2.0
- @backstage/plugin-permission-common@0.8.3
## @backstage/plugin-catalog-backend-module-logs@0.1.5
### Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-backend@1.29.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-events-node@0.4.6
## @backstage/plugin-catalog-backend-module-msgraph@0.6.5
### Patch Changes
- 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/plugin-catalog-common@1.1.2
## @backstage/plugin-catalog-backend-module-openapi@0.2.5
### Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-backend@1.29.0
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/types@1.2.0
- @backstage/plugin-catalog-common@1.1.2
## @backstage/plugin-catalog-backend-module-puppetdb@0.2.5
### Patch Changes
- 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/types@1.2.0
## @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.3
### Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-common@1.5.8
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/catalog-model@1.7.2
- @backstage/plugin-catalog-common@1.1.2
## @backstage/plugin-catalog-backend-module-unprocessed@0.5.3
### Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/plugin-catalog-unprocessed-entities-common@0.0.6
- @backstage/plugin-permission-common@0.8.3
## @backstage/plugin-catalog-common@1.1.2
### Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.7.2
- @backstage/plugin-permission-common@0.8.3
- @backstage/plugin-search-common@1.2.16
## @backstage/plugin-catalog-graph@0.4.14
### Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.15.0
- @backstage/catalog-client@1.9.0
- @backstage/core-compat-api@0.3.4
- @backstage/frontend-plugin-api@0.9.3
- @backstage/core-components@0.16.2
- @backstage/catalog-model@1.7.2
- @backstage/core-plugin-api@1.10.2
- @backstage/types@1.2.0
## @backstage/plugin-catalog-import@0.12.8
### Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.15.0
- @backstage/integration@1.16.0
- @backstage/catalog-client@1.9.0
- @backstage/core-compat-api@0.3.4
- @backstage/frontend-plugin-api@0.9.3
- @backstage/core-components@0.16.2
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/core-plugin-api@1.10.2
- @backstage/integration-react@1.2.2
- @backstage/plugin-catalog-common@1.1.2
## @backstage/plugin-catalog-unprocessed-entities@0.2.12
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.16.2
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/core-plugin-api@1.10.2
## @backstage/plugin-catalog-unprocessed-entities-common@0.0.6
### Patch Changes
- Updated dependencies
- @backstage/plugin-permission-common@0.8.3
## @backstage/plugin-config-schema@0.1.63
### Patch Changes
- c36bd35: Internal refactor to break potential circular imports
- Updated dependencies
- @backstage/core-components@0.16.2
- @backstage/errors@1.2.6
- @backstage/core-plugin-api@1.10.2
- @backstage/types@1.2.0
## @backstage/plugin-devtools@0.1.22
### Patch Changes
- Updated dependencies
- @backstage/core-compat-api@0.3.4
- @backstage/frontend-plugin-api@0.9.3
- @backstage/core-components@0.16.2
- @backstage/errors@1.2.6
- @backstage/core-plugin-api@1.10.2
- @backstage/plugin-devtools-common@0.1.14
- @backstage/plugin-permission-react@0.4.29
## @backstage/plugin-devtools-common@0.1.14
### Patch Changes
- Updated dependencies
- @backstage/types@1.2.0
- @backstage/plugin-permission-common@0.8.3
## @backstage/plugin-events-backend-module-aws-sqs@0.4.6
### Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-events-node@0.4.6
- @backstage/config@1.3.1
- @backstage/types@1.2.0
## @backstage/plugin-events-backend-module-azure@0.2.15
### Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-events-node@0.4.6
## @backstage/plugin-events-backend-module-bitbucket-cloud@0.2.15
### Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-events-node@0.4.6
## @backstage/plugin-events-backend-module-gerrit@0.2.15
### Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-events-node@0.4.6
## @backstage/plugin-events-backend-module-github@0.2.15
### Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-events-node@0.4.6
- @backstage/config@1.3.1
## @backstage/plugin-events-backend-module-gitlab@0.2.15
### Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-events-node@0.4.6
- @backstage/config@1.3.1
## @backstage/plugin-events-backend-test-utils@0.1.39
### Patch Changes
- Updated dependencies
- @backstage/plugin-events-node@0.4.6
## @backstage/plugin-events-node@0.4.6
### Patch Changes
- 79a06f6: Clarified purpose of subscriber ID in TSDoc for `EventsServiceSubscribeOptions`.
- 1577511: Allow configuring a timeout for event bus polling requests. This can be set like so in your app-config:
```yaml
events:
notifyTimeoutMs: 30000
```
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/errors@1.2.6
- @backstage/types@1.2.0
## @backstage/plugin-home@0.8.3
### Patch Changes
- 7248f3b: 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';
}
cardDescription="Backstage system model will help you create new entities"
video={
}
downloadImage={
}
/>
See the [storybook examples](https://backstage.io/storybook/?path=/story/plugins-home-components-quickstartcard--default)
- 9951ba4: 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`.
- Updated dependencies
- @backstage/plugin-catalog-react@1.15.0
- @backstage/core-app-api@1.15.3
- @backstage/catalog-client@1.9.0
- @backstage/plugin-home-react@0.1.21
- @backstage/core-compat-api@0.3.4
- @backstage/frontend-plugin-api@0.9.3
- @backstage/theme@0.6.3
- @backstage/core-components@0.16.2
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/core-plugin-api@1.10.2
## @backstage/plugin-home-react@0.1.21
### Patch Changes
- 9951ba4: 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`.
- Updated dependencies
- @backstage/core-components@0.16.2
- @backstage/core-plugin-api@1.10.2
## @backstage/plugin-kubernetes@0.12.2
### Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.15.0
- @backstage/core-compat-api@0.3.4
- @backstage/frontend-plugin-api@0.9.3
- @backstage/core-components@0.16.2
- @backstage/catalog-model@1.7.2
- @backstage/core-plugin-api@1.10.2
- @backstage/plugin-kubernetes-common@0.9.1
- @backstage/plugin-kubernetes-react@0.5.2
## @backstage/plugin-kubernetes-backend@0.19.1
### Patch Changes
- cbfc69e: Create a `dev/index.ts` entrypoint for `yarn start`
- 928db6a: Support fetch pod metrics with custom resources
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/catalog-client@1.9.0
- @backstage/plugin-permission-node@0.8.6
- @backstage/errors@1.2.6
- @backstage/plugin-kubernetes-node@0.2.1
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/integration-aws-node@0.1.14
- @backstage/types@1.2.0
- @backstage/plugin-kubernetes-common@0.9.1
- @backstage/plugin-permission-common@0.8.3
## @backstage/plugin-kubernetes-cluster@0.0.20
### Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.15.0
- @backstage/core-components@0.16.2
- @backstage/catalog-model@1.7.2
- @backstage/core-plugin-api@1.10.2
- @backstage/plugin-kubernetes-common@0.9.1
- @backstage/plugin-kubernetes-react@0.5.2
## @backstage/plugin-kubernetes-common@0.9.1
### Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.7.2
- @backstage/types@1.2.0
- @backstage/plugin-permission-common@0.8.3
## @backstage/plugin-kubernetes-node@0.2.1
### Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/catalog-model@1.7.2
- @backstage/types@1.2.0
- @backstage/plugin-kubernetes-common@0.9.1
## @backstage/plugin-kubernetes-react@0.5.2
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.16.2
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/core-plugin-api@1.10.2
- @backstage/types@1.2.0
- @backstage/plugin-kubernetes-common@0.9.1
## @backstage/plugin-notifications-backend-module-email@0.3.4
### Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/catalog-client@1.9.0
- @backstage/plugin-notifications-node@0.2.10
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/integration-aws-node@0.1.14
- @backstage/types@1.2.0
- @backstage/plugin-notifications-common@0.0.7
## @backstage/plugin-notifications-common@0.0.7
### Patch Changes
- Updated dependencies
- @backstage/config@1.3.1
## @backstage/plugin-notifications-node@0.2.10
### Patch Changes
- 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/catalog-client@1.9.0
- @backstage/catalog-model@1.7.2
- @backstage/plugin-notifications-common@0.0.7
- @backstage/plugin-signals-node@0.1.15
## @backstage/plugin-org@0.6.34
### Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.15.0
- @backstage/core-compat-api@0.3.4
- @backstage/frontend-plugin-api@0.9.3
- @backstage/core-components@0.16.2
- @backstage/catalog-model@1.7.2
- @backstage/core-plugin-api@1.10.2
- @backstage/plugin-catalog-common@1.1.2
## @backstage/plugin-org-react@0.1.33
### Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.15.0
- @backstage/catalog-client@1.9.0
- @backstage/core-components@0.16.2
- @backstage/catalog-model@1.7.2
- @backstage/core-plugin-api@1.10.2
## @backstage/plugin-permission-backend@0.5.52
### Patch Changes
- 1e624ca: Restrict `@types/express` version range from `*` to `^4.17.6`.
- 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-permission-node@0.8.6
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
- @backstage/plugin-permission-common@0.8.3
## @backstage/plugin-permission-backend-module-allow-all-policy@0.2.3
### Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-permission-node@0.8.6
- @backstage/plugin-permission-common@0.8.3
## @backstage/plugin-permission-common@0.8.3
### Patch Changes
- Updated dependencies
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
- @backstage/types@1.2.0
## @backstage/plugin-permission-node@0.8.6
### Patch Changes
- b149e2a: The `createPermissionIntegrationRouter` function now detects and prevents the exposure of duplicate permissions.
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
- @backstage/plugin-permission-common@0.8.3
## @backstage/plugin-permission-react@0.4.29
### Patch Changes
- Updated dependencies
- @backstage/config@1.3.1
- @backstage/core-plugin-api@1.10.2
- @backstage/plugin-permission-common@0.8.3
## @backstage/plugin-proxy-backend@0.5.9
### Patch Changes
- 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/config@1.3.1
- @backstage/types@1.2.0
## @backstage/plugin-scaffolder@1.27.2
### Patch Changes
- 3c62a50: Experimental support for `formDecorators` to enable secret collection and mutations to the parameters for scaffolder tasks
- c4ffd13: Added the autocomplete feature to GitlabRepoUrlPicker
- 9951ba4: 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`.
- 184161f: Scaffolder field extensions registered with `FormFieldBlueprint` are now collected in the `useCustomFieldExtensions` hook, enabling them for use in the scaffolder.
- Updated dependencies
- @backstage/plugin-catalog-react@1.15.0
- @backstage/integration@1.16.0
- @backstage/plugin-scaffolder-common@1.5.8
- @backstage/plugin-scaffolder-react@1.14.2
- @backstage/catalog-client@1.9.0
- @backstage/core-compat-api@0.3.4
- @backstage/frontend-plugin-api@0.9.3
- @backstage/core-components@0.16.2
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/core-plugin-api@1.10.2
- @backstage/integration-react@1.2.2
- @backstage/types@1.2.0
- @backstage/plugin-catalog-common@1.1.2
- @backstage/plugin-permission-react@0.4.29
## @backstage/plugin-scaffolder-backend-module-azure@0.2.4
### Patch Changes
- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-scaffolder-node@0.6.2
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
## @backstage/plugin-scaffolder-backend-module-bitbucket@0.3.5
### Patch Changes
- 5f04976: Fixed a bug that caused missing code in published packages.
- 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.2.4
- @backstage/plugin-scaffolder-node@0.6.2
- @backstage/plugin-scaffolder-backend-module-bitbucket-server@0.2.4
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
## @backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.2.4
### Patch Changes
- c4ffd13: Added the autocomplete feature to GitlabRepoUrlPicker
- 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-scaffolder-node@0.6.2
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
- @backstage/plugin-bitbucket-cloud-common@0.2.26
## @backstage/plugin-scaffolder-backend-module-bitbucket-server@0.2.4
### Patch Changes
- 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-scaffolder-node@0.6.2
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
## @backstage/plugin-scaffolder-backend-module-confluence-to-markdown@0.3.4
### Patch Changes
- 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-scaffolder-node@0.6.2
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
## @backstage/plugin-scaffolder-backend-module-cookiecutter@0.3.5
### Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.6.0
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-scaffolder-node@0.6.2
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
- @backstage/types@1.2.0
## @backstage/plugin-scaffolder-backend-module-gcp@0.2.4
### Patch Changes
- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-scaffolder-node@0.6.2
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
## @backstage/plugin-scaffolder-backend-module-gerrit@0.2.4
### Patch Changes
- 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-scaffolder-node@0.6.2
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
## @backstage/plugin-scaffolder-backend-module-gitea@0.2.4
### Patch Changes
- 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-scaffolder-node@0.6.2
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
## @backstage/plugin-scaffolder-backend-module-github@0.5.4
### Patch Changes
- 7df6179: adding requiredLinearHistory property for branch protection settings
- b5e002b: Change `github:environment:create` action to request and use a token when resolving reviewer entity refs from the Backstage catalog.
- e913fdf: Add github backend module to create-app and improve error messages
- 973dd6f: Minor spell fix in action parameters
- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-scaffolder-node@0.6.2
- @backstage/catalog-client@1.9.0
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
## @backstage/plugin-scaffolder-backend-module-notifications@0.1.5
### Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-scaffolder-node@0.6.2
- @backstage/plugin-notifications-node@0.2.10
- @backstage/plugin-notifications-common@0.0.7
## @backstage/plugin-scaffolder-backend-module-rails@0.5.4
### Patch Changes
- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-scaffolder-node@0.6.2
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
- @backstage/types@1.2.0
## @backstage/plugin-scaffolder-backend-module-sentry@0.2.4
### Patch Changes
- 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-scaffolder-node@0.6.2
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
## @backstage/plugin-scaffolder-backend-module-yeoman@0.4.5
### Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-scaffolder-node@0.6.2
- @backstage/types@1.2.0
- @backstage/plugin-scaffolder-node-test-utils@0.1.17
## @backstage/plugin-scaffolder-common@1.5.8
### Patch Changes
- 3c62a50: Experimental support for `formDecorators` to enable secret collection and mutations to the parameters for scaffolder tasks
- Updated dependencies
- @backstage/catalog-model@1.7.2
- @backstage/types@1.2.0
- @backstage/plugin-permission-common@0.8.3
## @backstage/plugin-scaffolder-node@0.6.2
### Patch Changes
- c4ffd13: Added the autocomplete feature to GitlabRepoUrlPicker
- 1a23421: Make sure that isomorphic git push commands are not proxied.
- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/plugin-scaffolder-common@1.5.8
- @backstage/backend-plugin-api@1.1.0
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/types@1.2.0
## @backstage/plugin-scaffolder-node-test-utils@0.1.17
### Patch Changes
- Updated dependencies
- @backstage/backend-test-utils@1.2.0
- @backstage/plugin-scaffolder-node@0.6.2
- @backstage/types@1.2.0
## @backstage/plugin-scaffolder-react@1.14.2
### Patch Changes
- 3c62a50: Experimental support for `formDecorators` to enable secret collection and mutations to the parameters for scaffolder tasks
- c4ffd13: Added the autocomplete feature to GitlabRepoUrlPicker
- 28e286f: Added test coverage selectors to TemplateCard and its sub-components
- c846d76: Updated dependency `flatted` to `3.3.2`.
- 9951ba4: 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`.
- 97a13ad: Improve performance of typing into scaffolder secret widget
- 184161f: Scaffolder field extensions registered with `FormFieldBlueprint` are now collected in the `useCustomFieldExtensions` hook, enabling them for use in the scaffolder.
- b21a5ae: Open links in the scaffolder entity and step descriptions in a new tab, to ensure consistency and improve user experience
- Updated dependencies
- @backstage/plugin-catalog-react@1.15.0
- @backstage/plugin-scaffolder-common@1.5.8
- @backstage/catalog-client@1.9.0
- @backstage/frontend-plugin-api@0.9.3
- @backstage/theme@0.6.3
- @backstage/core-components@0.16.2
- @backstage/catalog-model@1.7.2
- @backstage/core-plugin-api@1.10.2
- @backstage/types@1.2.0
- @backstage/version-bridge@1.0.10
- @backstage/plugin-permission-react@0.4.29
## @backstage/plugin-search@1.4.21
### Patch Changes
- d311c84: Use Select from core-components and update Lifecycle filter to use Select instead checkboxes.
- Updated dependencies
- @backstage/plugin-catalog-react@1.15.0
- @backstage/plugin-search-react@1.8.4
- @backstage/core-compat-api@0.3.4
- @backstage/frontend-plugin-api@0.9.3
- @backstage/core-components@0.16.2
- @backstage/errors@1.2.6
- @backstage/core-plugin-api@1.10.2
- @backstage/types@1.2.0
- @backstage/version-bridge@1.0.10
- @backstage/plugin-search-common@1.2.16
## @backstage/plugin-search-backend-module-catalog@0.2.6
### Patch Changes
- ed0aaec: Update README
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/catalog-client@1.9.0
- @backstage/plugin-search-backend-node@1.3.6
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/plugin-catalog-common@1.1.2
- @backstage/plugin-permission-common@0.8.3
- @backstage/plugin-search-common@1.2.16
## @backstage/plugin-search-backend-module-elasticsearch@1.6.3
### Patch Changes
- 991c9fe: Update the ElasticSearchSearchEngine translator to handle phrase searches.
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-search-backend-node@1.3.6
- @backstage/config@1.3.1
- @backstage/integration-aws-node@0.1.14
- @backstage/plugin-search-common@1.2.16
## @backstage/plugin-search-backend-module-explore@0.2.6
### Patch Changes
- ed0aaec: Update README
- 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-search-backend-node@1.3.6
- @backstage/config@1.3.1
- @backstage/plugin-search-common@1.2.16
## @backstage/plugin-search-backend-module-pg@0.5.39
### Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-search-backend-node@1.3.6
- @backstage/config@1.3.1
- @backstage/plugin-search-common@1.2.16
## @backstage/plugin-search-backend-module-stack-overflow-collator@0.3.4
### Patch Changes
- 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-search-backend-node@1.3.6
- @backstage/config@1.3.1
- @backstage/plugin-search-common@1.2.16
## @backstage/plugin-search-backend-module-techdocs@0.3.4
### Patch Changes
- ed0aaec: Update README
- 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/catalog-client@1.9.0
- @backstage/plugin-techdocs-node@1.12.15
- @backstage/plugin-search-backend-node@1.3.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/plugin-catalog-common@1.1.2
- @backstage/plugin-permission-common@0.8.3
- @backstage/plugin-search-common@1.2.16
## @backstage/plugin-search-backend-node@1.3.6
### Patch Changes
- 5ae8a2c: Removed unnecessary dependency on `@backstage/backend-defaults`.
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
- @backstage/plugin-permission-common@0.8.3
- @backstage/plugin-search-common@1.2.16
## @backstage/plugin-search-common@1.2.16
### Patch Changes
- Updated dependencies
- @backstage/types@1.2.0
- @backstage/plugin-permission-common@0.8.3
## @backstage/plugin-search-react@1.8.4
### Patch Changes
- d311c84: Use Select from core-components and update Lifecycle filter to use Select instead checkboxes.
- Updated dependencies
- @backstage/frontend-plugin-api@0.9.3
- @backstage/theme@0.6.3
- @backstage/core-components@0.16.2
- @backstage/core-plugin-api@1.10.2
- @backstage/types@1.2.0
- @backstage/version-bridge@1.0.10
- @backstage/plugin-search-common@1.2.16
## @backstage/plugin-signals@0.0.14
### Patch Changes
- Updated dependencies
- @backstage/theme@0.6.3
- @backstage/core-components@0.16.2
- @backstage/core-plugin-api@1.10.2
- @backstage/types@1.2.0
- @backstage/plugin-signals-react@0.0.8
## @backstage/plugin-signals-backend@0.2.4
### Patch Changes
- 1e624ca: Restrict `@types/express` version range from `*` to `^4.17.6`.
- 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-events-node@0.4.6
- @backstage/config@1.3.1
- @backstage/types@1.2.0
- @backstage/plugin-signals-node@0.1.15
## @backstage/plugin-signals-node@0.1.15
### Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-events-node@0.4.6
- @backstage/config@1.3.1
- @backstage/types@1.2.0
## @backstage/plugin-signals-react@0.0.8
### Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.10.2
- @backstage/types@1.2.0
## @backstage/plugin-techdocs-addons-test-utils@1.0.43
### Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.15.0
- @backstage/plugin-techdocs@1.12.0
- @backstage/core-app-api@1.15.3
- @backstage/plugin-catalog@1.26.0
- @backstage/plugin-search-react@1.8.4
- @backstage/core-plugin-api@1.10.2
- @backstage/integration-react@1.2.2
- @backstage/test-utils@1.7.3
- @backstage/plugin-techdocs-react@1.2.12
## @backstage/plugin-techdocs-backend@1.11.4
### Patch Changes
- 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-search-backend-module-techdocs@0.3.4
- @backstage/plugin-catalog-node@1.15.0
- @backstage/catalog-client@1.9.0
- @backstage/plugin-techdocs-node@1.12.15
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/plugin-catalog-common@1.1.2
- @backstage/plugin-permission-common@0.8.3
- @backstage/plugin-techdocs-common@0.1.0
## @backstage/plugin-techdocs-module-addons-contrib@1.1.19
### Patch Changes
- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/core-components@0.16.2
- @backstage/core-plugin-api@1.10.2
- @backstage/integration-react@1.2.2
- @backstage/plugin-techdocs-react@1.2.12
## @backstage/plugin-techdocs-node@1.12.15
### Patch Changes
- 5f04976: Fixed a bug that caused missing code in published packages.
- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/integration-aws-node@0.1.14
- @backstage/plugin-search-common@1.2.16
- @backstage/plugin-techdocs-common@0.1.0
## @backstage/plugin-techdocs-react@1.2.12
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.16.2
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/core-plugin-api@1.10.2
- @backstage/version-bridge@1.0.10
## @backstage/plugin-user-settings@0.8.17
### Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.15.0
- @backstage/core-app-api@1.15.3
- @backstage/core-compat-api@0.3.4
- @backstage/frontend-plugin-api@0.9.3
- @backstage/theme@0.6.3
- @backstage/core-components@0.16.2
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/core-plugin-api@1.10.2
- @backstage/types@1.2.0
- @backstage/plugin-signals-react@0.0.8
- @backstage/plugin-user-settings-common@0.0.1
## @backstage/plugin-user-settings-backend@0.2.28
### Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.6.0
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
- @backstage/types@1.2.0
- @backstage/plugin-signals-node@0.1.15
- @backstage/plugin-user-settings-common@0.0.1
## example-app@0.2.104
### Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.15.0
- @backstage/cli@0.29.4
- @backstage/plugin-home@0.8.3
- @backstage/plugin-techdocs@1.12.0
- @backstage/core-app-api@1.15.3
- @backstage/plugin-catalog@1.26.0
- @backstage/plugin-scaffolder-react@1.14.2
- @backstage/plugin-scaffolder@1.27.2
- @backstage/plugin-search-react@1.8.4
- @backstage/plugin-search@1.4.21
- @backstage/plugin-notifications@0.5.0
- @backstage/theme@0.6.3
- @backstage/plugin-api-docs@0.12.2
- @backstage/core-components@0.16.2
- @backstage/plugin-catalog-graph@0.4.14
- @backstage/plugin-catalog-import@0.12.8
- @backstage/plugin-kubernetes@0.12.2
- @backstage/plugin-kubernetes-cluster@0.0.20
- @backstage/plugin-org@0.6.34
- @backstage/plugin-user-settings@0.8.17
- @backstage/app-defaults@1.5.15
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/core-plugin-api@1.10.2
- @backstage/frontend-app-api@0.10.3
- @backstage/integration-react@1.2.2
- @backstage/plugin-auth-react@0.1.10
- @backstage/plugin-catalog-common@1.1.2
- @backstage/plugin-catalog-unprocessed-entities@0.2.12
- @backstage/plugin-devtools@0.1.22
- @backstage/plugin-permission-react@0.4.29
- @backstage/plugin-search-common@1.2.16
- @backstage/plugin-signals@0.0.14
- @backstage/plugin-techdocs-module-addons-contrib@1.1.19
- @backstage/plugin-techdocs-react@1.2.12
## example-app-next@0.0.18
### Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.15.0
- @backstage/cli@0.29.4
- @backstage/plugin-home@0.8.3
- @backstage/plugin-techdocs@1.12.0
- @backstage/core-app-api@1.15.3
- @backstage/plugin-app@0.1.4
- @backstage/plugin-catalog@1.26.0
- @backstage/plugin-scaffolder-react@1.14.2
- @backstage/plugin-scaffolder@1.27.2
- @backstage/plugin-search-react@1.8.4
- @backstage/plugin-search@1.4.21
- @backstage/plugin-notifications@0.5.0
- @backstage/core-compat-api@0.3.4
- @backstage/frontend-plugin-api@0.9.3
- @backstage/theme@0.6.3
- @backstage/plugin-api-docs@0.12.2
- @backstage/core-components@0.16.2
- @backstage/plugin-catalog-graph@0.4.14
- @backstage/plugin-catalog-import@0.12.8
- @backstage/plugin-kubernetes@0.12.2
- @backstage/plugin-kubernetes-cluster@0.0.20
- @backstage/plugin-org@0.6.34
- @backstage/plugin-user-settings@0.8.17
- @backstage/app-defaults@1.5.15
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/core-plugin-api@1.10.2
- @backstage/frontend-app-api@0.10.3
- @backstage/frontend-defaults@0.1.4
- @backstage/integration-react@1.2.2
- @backstage/plugin-app-visualizer@0.1.14
- @backstage/plugin-auth-react@0.1.10
- @backstage/plugin-catalog-common@1.1.2
- @backstage/plugin-catalog-unprocessed-entities@0.2.12
- @backstage/plugin-permission-react@0.4.29
- @backstage/plugin-search-common@1.2.16
- @backstage/plugin-signals@0.0.14
- @backstage/plugin-techdocs-module-addons-contrib@1.1.19
- @backstage/plugin-techdocs-react@1.2.12
## app-next-example-plugin@0.0.18
### Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.9.3
- @backstage/core-components@0.16.2
## example-backend@0.0.33
### Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-backend@1.28.0
- @backstage/backend-defaults@0.6.0
- @backstage/plugin-catalog-backend@1.29.0
- @backstage/plugin-scaffolder-backend-module-github@0.5.4
- @backstage/plugin-auth-backend@0.24.1
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-search-backend-module-techdocs@0.3.4
- @backstage/plugin-search-backend-module-catalog@0.2.6
- @backstage/plugin-search-backend-module-explore@0.2.6
- @backstage/plugin-app-backend@0.4.3
- @backstage/plugin-events-backend@0.4.0
- @backstage/plugin-search-backend@1.8.0
- @backstage/plugin-permission-backend@0.5.52
- @backstage/plugin-devtools-backend@0.5.0
- @backstage/plugin-signals-backend@0.2.4
- @backstage/plugin-notifications-backend@0.5.0
- @backstage/plugin-permission-node@0.8.6
- @backstage/plugin-search-backend-node@1.3.6
- @backstage/plugin-techdocs-backend@1.11.4
- @backstage/plugin-proxy-backend@0.5.9
- @backstage/plugin-kubernetes-backend@0.19.1
- @backstage/plugin-auth-backend-module-github-provider@0.2.3
- @backstage/plugin-catalog-backend-module-openapi@0.2.5
- @backstage/catalog-model@1.7.2
- @backstage/plugin-auth-backend-module-guest-provider@0.2.3
- @backstage/plugin-catalog-backend-module-backstage-openapi@0.4.3
- @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.3
- @backstage/plugin-catalog-backend-module-unprocessed@0.5.3
- @backstage/plugin-permission-backend-module-allow-all-policy@0.2.3
- @backstage/plugin-permission-common@0.8.3
- @backstage/plugin-scaffolder-backend-module-notifications@0.1.5
## example-backend-legacy@0.2.105
### Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-backend@1.28.0
- @backstage/backend-defaults@0.6.0
- @backstage/plugin-catalog-backend@1.29.0
- @backstage/integration@1.16.0
- @backstage/plugin-search-backend-module-elasticsearch@1.6.3
- @backstage/plugin-auth-backend@0.24.1
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-search-backend-module-techdocs@0.3.4
- @backstage/plugin-search-backend-module-catalog@0.2.6
- @backstage/plugin-search-backend-module-explore@0.2.6
- @backstage/plugin-app-backend@0.4.3
- @backstage/plugin-catalog-node@1.15.0
- @backstage/plugin-events-node@0.4.6
- @backstage/plugin-scaffolder-backend-module-gitlab@0.7.0
- @backstage/catalog-client@1.9.0
- @backstage/plugin-events-backend@0.4.0
- @backstage/plugin-search-backend@1.8.0
- @backstage/plugin-permission-backend@0.5.52
- @backstage/plugin-signals-backend@0.2.4
- @backstage/plugin-permission-node@0.8.6
- @backstage/plugin-search-backend-node@1.3.6
- @backstage/plugin-techdocs-backend@1.11.4
- @backstage/plugin-proxy-backend@0.5.9
- @backstage/plugin-scaffolder-backend-module-confluence-to-markdown@0.3.4
- @backstage/plugin-kubernetes-backend@0.19.1
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.3
- @backstage/plugin-catalog-backend-module-unprocessed@0.5.3
- @backstage/plugin-permission-common@0.8.3
- @backstage/plugin-scaffolder-backend-module-rails@0.5.4
- @backstage/plugin-search-backend-module-pg@0.5.39
- @backstage/plugin-signals-node@0.1.15
## e2e-test@0.2.23
### Patch Changes
- Updated dependencies
- @backstage/create-app@0.5.23
- @backstage/errors@1.2.6
- @backstage/cli-common@0.1.15
## @internal/frontend@0.0.4
### Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.9.3
- @backstage/types@1.2.0
- @backstage/version-bridge@1.0.10
## @internal/scaffolder@0.0.4
### Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-react@1.14.2
- @backstage/frontend-plugin-api@0.9.3
## techdocs-cli-embedded-app@0.2.103
### Patch Changes
- Updated dependencies
- @backstage/cli@0.29.4
- @backstage/plugin-techdocs@1.12.0
- @backstage/core-app-api@1.15.3
- @backstage/plugin-catalog@1.26.0
- @backstage/theme@0.6.3
- @backstage/core-components@0.16.2
- @backstage/app-defaults@1.5.15
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/core-plugin-api@1.10.2
- @backstage/integration-react@1.2.2
- @backstage/test-utils@1.7.3
- @backstage/plugin-techdocs-react@1.2.12
## yarn-plugin-backstage@0.0.4
### Patch Changes
- 48cc7c5: Use yarn's built-in http utilities for fetching release manifests
- ac91864: Switch to using `reduceDependency` hook to replace `backstage:^` versions. This
makes the same yarn.lock file valid whether or not the plugin is installed.
- ee49cb4: Fixed path resolution on windows
- Updated dependencies
- @backstage/release-manifests@0.0.12
- @backstage/cli-common@0.1.15
## @internal/plugin-todo-list@1.0.34
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.16.2
- @backstage/core-plugin-api@1.10.2
## @internal/plugin-todo-list-backend@1.0.34
### Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/errors@1.2.6
## @internal/plugin-todo-list-common@1.0.23
### Patch Changes
- Updated dependencies
- @backstage/plugin-permission-common@0.8.3