# Release v1.13.0
## @backstage/app-defaults@1.3.0
### Minor Changes
- 7908d72e033: Introduce a new global config parameter, `enableExperimentalRedirectFlow`. When enabled, auth will happen with an in-window redirect flow rather than through a popup window.
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/core-app-api@1.7.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/plugin-permission-react@0.4.12
## @backstage/catalog-model@1.3.0
### Minor Changes
- be9c4228073: Modified the regex for DNS label validation to support IDN domains
### Patch Changes
- Updated dependencies
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
## @backstage/cli-node@0.1.0
### Minor Changes
- 3156b0d85dc: Introduced the new `@backstage/cli-node` package, which provides utilities for use across Backstage CLIs.
### Patch Changes
- Updated dependencies
- @backstage/cli-common@0.1.12
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
## @backstage/config-loader@1.2.0
### Minor Changes
- c791fcd96b9: Configuration validation is now more permissive when it comes to config whose values are `string` but whose schemas declare them to be `boolean` or `number`.
For example, configuration was previously marked invalid when a string `'true'` was set on a property expecting type `boolean` or a string `'146'` was set on a property expecting type `number` (as when providing configuration via variable substitution sourced from environment variables). Now, such configurations will be considered valid and their values will be coerced to the right type at read-time.
### Patch Changes
- Updated dependencies
- @backstage/cli-common@0.1.12
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
## @backstage/core-app-api@1.7.0
### Minor Changes
- 7908d72e033: Introduce a new global config parameter, `enableExperimentalRedirectFlow`. When enabled, auth will happen with an in-window redirect flow rather than through a popup window.
- c15e0cedbe1: The `AuthConnector` interface now supports specifying a set of scopes when
refreshing a session. The `DefaultAuthConnector` implementation passes the
`scope` query parameter to the auth-backend plugin appropriately. The
`RefreshingAuthSessionManager` passes any scopes in its `GetSessionRequest`
appropriately.
### Patch Changes
- 1e4f5e91b8e: Bump `zod` and `zod-to-json-schema` dependencies.
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-plugin-api@1.5.1
- @backstage/version-bridge@1.0.4
- @backstage/config@1.0.7
- @backstage/types@1.0.2
## @backstage/core-components@0.13.0
### Minor Changes
- 01cd4e25754: **BREAKING:** Removing `Tabs` component from `core-components` as it is neither used in the core Backstage app nor in the monorepo plugins. If you are using this component in your instance please consider replacing it with the [Material UI `Tabs`](https://v4.mui.com/components/tabs/#tabs) component like the following:
```diff
- ,
- content:
Label
,
- }]}
- />
+
+ }
+ />
+
```
### Patch Changes
- d0befd3fb23: Fixed a bug that could prevent auth from working when using the `guest` or `custom` auth providers.
- 67140d9f96f: Upgrade `react-virtualized-auto-sizer“ to version `^1.0.11\`
- 6e0b71493df: Switched internal declaration of `DependencyGraphTypes` to use `namespace`.
- c8779cc1d09: Updated `LogLine` component, which is used by the `LogViewer`, to turn URLs into clickable links. This feature is on by default
- 7908d72e033: Introduce a new global config parameter, `enableExperimentalRedirectFlow`. When enabled, auth will happen with an in-window redirect flow rather than through a popup window.
- 1e4f5e91b8e: Bump `zod` and `zod-to-json-schema` dependencies.
- 29ba8267d69: Updated dependency `@material-ui/lab` to `4.0.0-alpha.61`.
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- 303c2c3ce51: Allow `closeButton` color in `DismissableBanner` to be configurable (via. `theme.palette.banner.closeButtonColor`)
- 7e60bee2dea: Split the `BackstageSidebar` style `drawer` class, such that the `width` property is in a separate `drawerWidth` class instead. This makes it such that you can style the `drawer` class in your theme again.
- 7245e744ab1: Fixed the font color on `BackstageHeaderLabel` to respect the active page theme.
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/version-bridge@1.0.4
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
## @backstage/create-app@0.5.0
### Minor Changes
- 10744537bf5: Renamed `permissionApi` to `permissions` when passed as dependency of the scaffolder-backend plugin
### Patch Changes
- 5af2c4f412f: Bumped create-app version.
- ab75a16da7a: Bumped create-app version.
- 71fd0966d10: Add `permissionApi` as dependency of the scaffolder-backend plugin
- 2945923b133: Upgraded the TypeScript version to 5.0
To apply this change in your own project, switch the TypeScript version in your root `package.json`:
```diff
- "typescript": "~4.6.4",
+ "typescript": "~5.0.0",
```
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/cli-common@0.1.12
## @backstage/repo-tools@0.2.0
### Minor Changes
- a876e69b20e: Adding two new commands to support OpenAPI spec writing, `schema:openapi:generate` to generate the Typescript file that `@backstage/backend-openapi-utils` needs for typing and `schema:openapi:verify` to verify that this file exists and matches your `src/schema/openapi.yaml` file.
### Patch Changes
- f59041a3c07: Package paths provided to `api-reports` and OpenAPI commands will now match any path within the target package.
- f59041a3c07: Added `--include ` and `--exclude ` options for `api-reports` command that work based on package names.
- 9129ca8cabb: Log API report instructions when api-report is missing.
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/cli-node@0.1.0
- @backstage/cli-common@0.1.12
- @backstage/errors@1.1.5
## @backstage/test-utils@1.3.0
### Minor Changes
- 7908d72e033: Introduce a new global config parameter, `enableExperimentalRedirectFlow`. When enabled, auth will happen with an in-window redirect flow rather than through a popup window.
### Patch Changes
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-app-api@1.7.0
- @backstage/plugin-permission-common@0.7.5
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/plugin-permission-react@0.4.12
- @backstage/config@1.0.7
- @backstage/types@1.0.2
## @backstage/plugin-adr@0.5.0
### Minor Changes
- a2218363301: Use `fetchApi` instead of raw `fetch` in order to pass auth header if necessary.
### Patch Changes
- 77aa3a4d47e: use path attribute to fetch files instead of name and update the UI to navigate over subdirectories
- 7d75f6d9b8f: chore: Improve API Reference documentation
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/plugin-search-react@1.5.2
- @backstage/plugin-adr-common@0.2.8
- @backstage/integration-react@1.1.12
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/plugin-search-common@1.2.3
## @backstage/plugin-catalog@1.10.0
### Minor Changes
- 4dbf3d3e4da: Added a new EntitySwitch isResourceType to allow different views depending on Resource type
- fc6cab4eb48: Added `isEntityWith` condition helper for `EntitySwitch` case statements.
### Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/catalog-client@1.4.1
- @backstage/plugin-catalog-react@1.5.0
- @backstage/plugin-search-react@1.5.2
- @backstage/integration-react@1.1.12
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-catalog-common@1.0.13
- @backstage/plugin-search-common@1.2.3
## @backstage/plugin-catalog-backend@1.9.0
### Minor Changes
- 329b63f4dab: The catalog now has a new, optional `catalog.orphanStrategy` app-config parameter, which can have the string values `'keep'` (default) or `'delete'`.
If set to `'keep'` or left unset, the old behavior is maintained of keeping orphaned entities around until manually deleted.
If set to `'delete'`, the catalog will attempt to automatically clean out orphaned entities without manual intervention. Note that there are no guarantees that this process is instantaneous, so there may be some delay before orphaned items disappear.
For context, the [Life of an Entity](https://backstage.io/docs/features/software-catalog/life-of-an-entity/#orphaning) article goes into some more details on how the nature of orphaning works.
To enable the new behavior, you will need to pass the plugin task scheduler to your catalog backend builder. If your code already looks like this, you don't need to change it:
```ts
// in packages/backend/src/plugins/catalog.ts
export default async function createPlugin(
env: PluginEnvironment,
): Promise {
const builder = await CatalogBuilder.create(env);
```
But if you pass things into the catalog builder one by one, you'll need to add the new field:
```diff
// in packages/backend/src/plugins/catalog.ts
const builder = await CatalogBuilder.create({
// ... other dependencies
+ scheduler: env.scheduler,
});
```
Finally adjust your app-config:
```yaml
catalog:
orphanStrategy: delete
```
- 92a4590fc3a: Add monorepo support to CodeOwnersProccesor.
### Patch Changes
- 62a725e3a94: Use the `LocationSpec` type from the `catalog-common` package in place of the deprecated `LocationSpec` from the `catalog-node` package.
- be5aca50114: Updates and moves OpenAPI spec to `src/schema/openapi.yaml` and uses `ApiRouter` type from `@backstage/backend-openapi-utils` to handle automatic types from the OpenAPI spec file.
- c9a0fdcd2c8: Fix deprecated types.
- 899ebfd8e02: Add full text search support to the `by-query` endpoint.
- 1e4f5e91b8e: Bump `zod` and `zod-to-json-schema` dependencies.
- c4b846359c0: Allow replacement of the BuiltinKindsEntityProcessor which enables customization of schema validation and connections emitted.
- c36b89f2af3: Fixed bug in the `DefaultCatalogProcessingEngine` where entities that contained multiple different types of relations for the same source entity would not properly trigger stitching for that source entity.
- 01ae205352e: Collator factories instantiated in new backend system modules and now marked as deprecated. Will be continued to be exported publicly until the new backend system is fully rolled out.
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/plugin-scaffolder-common@1.2.7
- @backstage/catalog-client@1.4.1
- @backstage/plugin-permission-node@0.7.7
- @backstage/plugin-permission-common@0.7.5
- @backstage/backend-tasks@0.5.1
- @backstage/catalog-model@1.3.0
- @backstage/plugin-search-backend-module-catalog@0.1.0
- @backstage/integration@1.4.4
- @backstage/plugin-catalog-node@1.3.5
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-catalog-common@1.0.13
- @backstage/plugin-search-common@1.2.3
## @backstage/plugin-catalog-backend-module-gitlab@0.2.0
### Minor Changes
- f64345108a0: **BREAKING**: The configuration of the `GitlabDiscoveryEntityProvider` has changed as follows:
- The configuration key `branch` is now used to define the branch from which the catalog-info should be discovered.
- The old configuration key `branch` is now called `fallbackBranch`. This value specifies which branch should be used
if no default branch is defined on the project itself.
To migrate to the new configuration value, rename `branch` to `fallbackBranch`
### Patch Changes
- 7b1b7bfdb7b: The gitlab org data integration now makes use of the GraphQL API to determine
the relationships between imported User and Group entities, effectively making
this integration usable without an administrator account's Personal Access
Token.
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/backend-tasks@0.5.1
- @backstage/catalog-model@1.3.0
- @backstage/integration@1.4.4
- @backstage/plugin-catalog-node@1.3.5
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
## @backstage/plugin-catalog-react@1.5.0
### Minor Changes
- a49fb39df5a: Attempt to load entity owner names in the EntityOwnerPicker through the `by-refs` endpoint. If `spec.profile.displayName` or `metadata.title` are populated, we now attempt to show those before showing the `humanizeEntityRef`'d version.
**BREAKING**: `EntityOwnerFilter` now uses the full entity ref instead of the `humanizeEntityRef`. If you rely on `EntityOwnerFilter.values` or the `queryParameters.owners` of `useEntityList`, you will need to adjust your code like the following.
```tsx
const { queryParameters: { owners } } = useEntityList();
// or
const { filter: { owners } } = useEntityList();
// Instead of,
if (owners.some(ref => ref === humanizeEntityRef(myEntity))) ...
// You'll need to use,
if (owners.some(ref => ref === stringifyEntityRef(myEntity))) ...
```
### Patch Changes
- 81bee24c5de: Fixed bug in catalog filters where you could not click on the text to select a value.
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- d1f5324dff7: Reverted the check if the selected options list is different than the query parameters list before invoking `setSelectedOptions` method. This was preventing updating list items when a query string was already present in the URL when loading the page.
- 2898b6c8d52: Minor type tweaks for TypeScript 5.0
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/catalog-client@1.4.1
- @backstage/plugin-permission-common@0.7.5
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/plugin-permission-react@0.4.12
- @backstage/version-bridge@1.0.4
- @backstage/integration@1.4.4
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-catalog-common@1.0.13
## @backstage/plugin-entity-feedback@0.2.0
### Minor Changes
- 7eba760e6f6: Added an endpoint to fetch anonymous aggregated results from an entity
### Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-entity-feedback-common@0.1.1
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
## @backstage/plugin-home@0.5.0
### Minor Changes
- 760f521b979: Add support for customizable homepage.
Allows customizing homepage components, their placement, size and
individual settings. For maximum size and settings, the existing home
components should add necessary data attributes to their components.
See `plugins/home/README.md` for more information how to configure
the customizable homepage.
### Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
## @backstage/plugin-kubernetes@0.8.0
### Minor Changes
- 754be7c5106: refactor kubernetes error detection to make way for proposed solutions
**BREAKING**: `DetectedError` now appears once per Kubernetes resource per error instead of for all resources which have that error, `namespace` and `name` fields are now in `sourceRef` object `message` is now a `string` instead of a `string[]`. `ErrorDetectableKind` has been removed.
### Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e7fb0117485: fixes a bug where an empty authorization header was provided to the proxy endpoint when a cluster had a server-side auth provider
- c159ab64a60: `KubernetesBackendClient` now requires a `kubernetesAuthProvidersApi` value to be provided. `KubernetesApi` interface now has a proxy method requirement.
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/plugin-kubernetes-common@0.6.2
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
## @backstage/plugin-kubernetes-backend@0.10.0
### Minor Changes
- e6c7c850129: Plugins that instantiate the `KubernetesProxy` must now provide a parameter of the type `KubernetesProxyOptions` which includes providing a `KubernetesAuthTranslator`. The `KubernetesBuilder` now builds its own `KubernetesAuthTranslatorMap` that it provides to the `KubernetesProxy`. The `DispatchingKubernetesAuthTranslator` expects a `KubernetesTranslatorMap` to be provided as a parameter. The `KubernetesBuilder` now has a method called `setAuthTranslatorMap` which allows integrators to bring their own `KubernetesAuthTranslator's` to the `KubernetesPlugin`.
- 804f6d16b0c: **BREAKING**: `KubernetesBuilder.create` now requires a `permissions` field of type `PermissionEvaluator`. The kubernetes `/proxy` endpoint now requires two tokens: the `Backstage-Kubernetes-Authorization` header should contain a bearer token for the target cluster, and the `Authorization` header should contain a backstage identity token. The kubernetes `/proxy` endpoint now requires a `Backstage-Kubernetes-Cluster` header replacing the previously required `X-Kubernetes-Cluster` header.
- 88fbb3d075a: Add support for the new plugin system to the Kubernetes plugin
### Patch Changes
- 56a28b559e5: Updated kubernetes config schema to match available options
- 75d4985f5e8: Fixes bug whereby backstage crashes when bad credentials are provided to the kubernetes plugin.
- 83d250badc6: Fix parsing error when kubernetes api is returning badly structured data.
- 76e8f08fa24: fix localKubectlProxy auth provider fetching
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/catalog-client@1.4.1
- @backstage/plugin-permission-node@0.7.7
- @backstage/plugin-permission-common@0.7.5
- @backstage/catalog-model@1.3.0
- @backstage/plugin-kubernetes-common@0.6.2
- @backstage/plugin-auth-node@0.2.13
- @backstage/plugin-catalog-node@1.3.5
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
## @backstage/plugin-lighthouse-backend@0.2.0
### Minor Changes
- 7a89555e73d: Lighthouse backend plugin can now use an authenticated catalog backend API.
- Breaking \* You must now pass the `tokenManager` to the lighthouse `createScheduler`.
### Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/catalog-client@1.4.1
- @backstage/backend-tasks@0.5.1
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
- @backstage/types@1.0.2
- @backstage/plugin-lighthouse-common@0.1.1
## @backstage/plugin-playlist-backend@0.3.0
### Minor Changes
- 9a98a96f9e8: Exposes the announcements plugin's permissions in a metadata endpoint.
### Patch Changes
- 1e4f5e91b8e: Bump `zod` and `zod-to-json-schema` dependencies.
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/catalog-client@1.4.1
- @backstage/plugin-permission-node@0.7.7
- @backstage/plugin-permission-common@0.7.5
- @backstage/catalog-model@1.3.0
- @backstage/plugin-auth-node@0.2.13
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/plugin-playlist-common@0.1.6
## @backstage/plugin-puppetdb@0.1.0
### Minor Changes
- 70a036e940e: Initial version of [PuppetDB plugin](https://github.com/backstage/backstage/blob/v1.13.0/plugins/puppetdb/README.md).
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
## @backstage/plugin-scaffolder@1.13.0
### Minor Changes
- b71f58d7d8f: Fixed bug in EntityPicker component that allowed for empty values when field is required. This bug occurs only after a user fills the EntityPicker field, clears it, and then continues to the next form step.
- cdab34fd9a2: scaffolder/next: removing the `routeRefs` and exporting the originals on `scaffolderPlugin.routes.x` instead
- e5ad1bd61ec: Allow `TemplateListPage` and `TemplateWizardPage` to be passed in as props
- 92cf86a4b5d: Added a `templateFilter` prop to the `` component to allow for filtering of templates through a function.
- cf18c32934a: The Installed Actions page now shows details for nested objects and arrays
- 259d3407b9b: Move `CategoryPicker` from `scaffolder` into `scaffolder-react`
Move `ContextMenu` into `scaffolder-react` and rename it to `ScaffolderPageContextMenu`
### Patch Changes
- 7e1d900413a: `scaffolder/next`: Bump `@rjsf/*` dependencies to 5.5.2
- e27ddc36dad: Added a possibility to cancel the running task (executing of a scaffolder template)
- 57c1b4752fa: Allow use of `{ exists: true }` value inside filters to filter entities that has that key.
this example will filter all entities that has the annotation `someAnnotation` set to any value.
```yaml
ui:options:
catalogFilter:
kind: Group
metadata.annotations.someAnnotation: { exists: true }
```
- 7917cfccfc7: Fix some hard-coded white font colors in scaffolder
- 0435174b06f: Accessibility issues identified using lighthouse fixed.
- 7a6b16cc506: `scaffolder/next`: Bump `@rjsf/*` deps to 5.3.1
- 90dda42cfd2: bug: Invert `templateFilter` predicate to align with `Array.filter`
- 1e4f5e91b8e: Bump `zod` and `zod-to-json-schema` dependencies.
- f84fc7fd040: Updated dependency `@rjsf/validator-ajv8` to `5.3.0`.
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- 34dab7ee7f8: `scaffolder/next`: bump `rjsf` dependencies to `5.5.0`
- e0c6e8b9c3c: Update peer dependencies
- cf71c3744a5: scaffolder/next: Bump `@rjsf/*` dependencies to 5.6.0
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-scaffolder-common@1.2.7
- @backstage/plugin-scaffolder-react@1.3.0
- @backstage/catalog-client@1.4.1
- @backstage/plugin-catalog-react@1.5.0
- @backstage/integration-react@1.1.12
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/plugin-permission-react@0.4.12
- @backstage/integration@1.4.4
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-catalog-common@1.0.13
## @backstage/plugin-scaffolder-backend@1.13.0
### Minor Changes
- 2b15cb4aa0a: The non-PR/MR Git Actions now return the commit hash of the commit pushed as a new output called `commitHash`, isomorphic-git is now on version 1.23.0
- 30ffdae70f9: Added `fetch:plain:file` action to fetch a single file, this action is also added to the list of built-in actions.
- 65e989f4018: Added the possibility to authorize parameters and steps of a template
The scaffolder plugin is now integrated with the permission framework.
It is possible to toggle parameters or actions within templates by marking each section with specific `tags`, inside a `backstage:permissions` property under each parameter or action. Each parameter or action can then be permissioned by using a conditional decision containing the `scaffolderTemplateRules.hasTag` rule.
- 3b68b09fc2d: Renamed permissionApi router option to permissions
- bcae5aaf25c: Added the possibility to authorize actions
It is now possible to decide who should be able to execute certain actions or who should be able to pass specific input to specified actions.
Some of the existing utility functions for creating conditional decisions have been renamed:
- `createScaffolderConditionalDecision` has been renamed to `createScaffolderActionConditionalDecision`
- `scaffolderConditions` has been renamed to `scaffolderTemplateConditions`
- d7c8c222e25: Allow for a commit message to differ from the PR title when publishing a GitHub pull request.
- 95ea9f69b6f: Provide some more default filters out of the box and refactoring how the filters are applied to the `SecureTemplater`.
- `parseEntityRef` will take an string entity triplet and return a parsed object.
- `pick` will allow you to reference a specific property in the piped object.
So you can now combine things like this: `${{ parameters.entity | parseEntityRef | pick('name') }}` to get the name of a specific entity, or `${{ parameters.repoUrl | parseRepoUrl | pick('owner') }}` to get the owner of a repo.
### Patch Changes
- e23abb37ec1: Rename output parameter `mergeRequestURL` of `publish:gitlab:merge-request` action to `mergeRequestUrl`.
- e27ddc36dad: Added a possibility to cancel the running task (executing of a scaffolder template)
- a7eb36c6e38: Improve type-check for scaffolder output parameters
- c9a0fdcd2c8: Fix deprecated types.
- 1e4f5e91b8e: Bump `zod` and `zod-to-json-schema` dependencies.
- 9c26e6d8ed3: Updated the alpha `scaffolderPlugin` to not require options.
- f37a95adcd8: Stripped entity types and namespace before passing to GitHub API
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/plugin-catalog-backend@1.9.0
- @backstage/plugin-scaffolder-common@1.2.7
- @backstage/plugin-scaffolder-node@0.1.2
- @backstage/catalog-client@1.4.1
- @backstage/plugin-permission-node@0.7.7
- @backstage/plugin-permission-common@0.7.5
- @backstage/backend-tasks@0.5.1
- @backstage/catalog-model@1.3.0
- @backstage/integration@1.4.4
- @backstage/plugin-auth-node@0.2.13
- @backstage/plugin-catalog-node@1.3.5
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-catalog-common@1.0.13
## @backstage/plugin-scaffolder-backend-module-confluence-to-markdown@0.1.0
### Minor Changes
- 1b49a18bf8d: Created `confluence:transform:markdown` action for converting confluence docs to Markdown.
### Patch Changes
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/plugin-scaffolder-backend@1.13.0
- @backstage/plugin-scaffolder-node@0.1.2
- @backstage/integration@1.4.4
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
## @backstage/plugin-scaffolder-backend-module-gitlab@0.1.0
### Minor Changes
- 1ad400bb2de: Add Gitlab Scaffolder Plugin
### Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.1.2
- @backstage/integration@1.4.4
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
## @backstage/plugin-scaffolder-react@1.3.0
### Minor Changes
- 259d3407b9b: Move `CategoryPicker` from `scaffolder` into `scaffolder-react`
Move `ContextMenu` into `scaffolder-react` and rename it to `ScaffolderPageContextMenu`
- 2cfd03d7376: To offer better customization options, `ScaffolderPageContextMenu` takes callbacks as props instead of booleans
- 48da4c46e45: `scaffolder/next`: Export the `TemplateGroupFilter` and `TemplateGroups` and make an extensible component
### Patch Changes
- 7e1d900413a: `scaffolder/next`: Bump `@rjsf/*` dependencies to 5.5.2
- e27ddc36dad: Added a possibility to cancel the running task (executing of a scaffolder template)
- 0435174b06f: Accessibility issues identified using lighthouse fixed.
- 7a6b16cc506: `scaffolder/next`: Bump `@rjsf/*` deps to 5.3.1
- 90dda42cfd2: bug: Invert `templateFilter` predicate to align with `Array.filter`
- d2488f5e54c: Add an indication that the validators are running when clicking `next` on each step of the form.
- 1e4f5e91b8e: Bump `zod` and `zod-to-json-schema` dependencies.
- 8c40997df44: Updated dependency `@rjsf/core-v5` to `npm:@rjsf/core@5.5.2`.
- f84fc7fd040: Updated dependency `@rjsf/validator-ajv8` to `5.3.0`.
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- 34dab7ee7f8: `scaffolder/next`: bump `rjsf` dependencies to `5.5.0`
- 2898b6c8d52: Minor type tweaks for TypeScript 5.0
- e0c6e8b9c3c: Update peer dependencies
- cf71c3744a5: scaffolder/next: Bump `@rjsf/*` dependencies to 5.6.0
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-scaffolder-common@1.2.7
- @backstage/catalog-client@1.4.1
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/version-bridge@1.0.4
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
## @backstage/plugin-search@1.2.0
### Minor Changes
- d6b73b0380d: Search modal auto closes on location change
### Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/plugin-search-react@1.5.2
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/version-bridge@1.0.4
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-search-common@1.2.3
## @backstage/plugin-search-backend@1.3.0
### Minor Changes
- 1469daa409e: Exports search plugin that can be used with the new backend system. For documentation on how to migrate, check out the [how to migrate to the new backend system guide](https://backstage.io/docs/features/search/how-to-guides/#how-to-migrate-your-backend-installation-to-use-search-together-with-the-new-backend-system).
### Patch Changes
- 1e4f5e91b8e: Bump `zod` and `zod-to-json-schema` dependencies.
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/plugin-permission-node@0.7.7
- @backstage/plugin-permission-common@0.7.5
- @backstage/plugin-search-backend-node@1.2.0
- @backstage/plugin-auth-node@0.2.13
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-search-common@1.2.3
## @backstage/plugin-search-backend-module-catalog@0.1.0
### Minor Changes
- 01ae205352e: Package introduced to export search backend modules that can be used with the new backend system to extend search with plugin specific functionality, such as collators. For documentation on how to migrate, check out the [how to migrate to the new backend system guide](https://backstage.io/docs/features/search/how-to-guides/#how-to-migrate-your-backend-installation-to-use-search-together-with-the-new-backend-system).
### Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/catalog-client@1.4.1
- @backstage/plugin-permission-common@0.7.5
- @backstage/backend-tasks@0.5.1
- @backstage/catalog-model@1.3.0
- @backstage/plugin-search-backend-node@1.2.0
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/plugin-catalog-common@1.0.13
- @backstage/plugin-search-common@1.2.3
## @backstage/plugin-search-backend-module-elasticsearch@1.2.0
### Minor Changes
- 1469daa409e: Search backend modules migrated to the new backend system. For documentation on how to migrate, check out the [how to migrate to the new backend system guide](https://backstage.io/docs/features/search/how-to-guides/#how-to-migrate-your-backend-installation-to-use-search-together-with-the-new-backend-system).
### Patch Changes
- 104b6b19487: fix ElasticSearch throwing error when index is missing
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/plugin-search-backend-node@1.2.0
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/plugin-search-common@1.2.3
## @backstage/plugin-search-backend-module-explore@0.1.0
### Minor Changes
- 01ae205352e: Package introduced to export search backend modules that can be used with the new backend system to extend search with plugin specific functionality, such as collators. For documentation on how to migrate, check out the [how to migrate to the new backend system guide](https://backstage.io/docs/features/search/how-to-guides/#how-to-migrate-your-backend-installation-to-use-search-together-with-the-new-backend-system).
### Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/backend-tasks@0.5.1
- @backstage/plugin-search-backend-node@1.2.0
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/plugin-explore-common@0.0.1
- @backstage/plugin-search-common@1.2.3
## @backstage/plugin-search-backend-module-techdocs@0.1.0
### Minor Changes
- 01ae205352e: Package introduced to export search backend modules that can be used with the new backend system to extend search with plugin specific functionality, such as collators. For documentation on how to migrate, check out the [how to migrate to the new backend system guide](https://backstage.io/docs/features/search/how-to-guides/#how-to-migrate-your-backend-installation-to-use-search-together-with-the-new-backend-system).
### Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/catalog-client@1.4.1
- @backstage/plugin-techdocs-node@1.7.0
- @backstage/plugin-permission-common@0.7.5
- @backstage/backend-tasks@0.5.1
- @backstage/catalog-model@1.3.0
- @backstage/plugin-search-backend-node@1.2.0
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/plugin-catalog-common@1.0.13
- @backstage/plugin-search-common@1.2.3
## @backstage/plugin-search-backend-node@1.2.0
### Minor Changes
- 1469daa409e: Exports services and extension points that can be used with the new backend system. For documentation on how to migrate, check out the [how to migrate to the new backend system guide](https://backstage.io/docs/features/search/how-to-guides/#how-to-migrate-your-backend-installation-to-use-search-together-with-the-new-backend-system).
### Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/plugin-permission-common@0.7.5
- @backstage/backend-tasks@0.5.1
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/plugin-search-common@1.2.3
## @backstage/plugin-stack-overflow-backend@0.2.0
### Minor Changes
- 51ff6f9edff: Adding support for v2.3 API and PAT authentication
### Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/config@1.0.7
- @backstage/plugin-search-common@1.2.3
## @backstage/plugin-techdocs-node@1.7.0
### Minor Changes
- a8b9357eb71: Use the latest version `v.1.2.0` of the spotify/techdocs docker image as default
### Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/catalog-model@1.3.0
- @backstage/integration@1.4.4
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/integration-aws-node@0.1.2
- @backstage/plugin-search-common@1.2.3
## @backstage/plugin-vault-backend@0.3.0
### Minor Changes
- 5e959c9eb62: Allow generic Vault clients to be passed into the builder
### Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/backend-tasks@0.5.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
## @backstage/backend-app-api@0.4.2
### Patch Changes
- 5c7ce585824: Allow an additionalConfig to be provided to loadBackendConfig that fetches config values during runtime.
- 8cce2205a39: Register unhandled rejection and uncaught exception handlers to avoid backend crashes.
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/config-loader@1.2.0
- @backstage/plugin-permission-node@0.7.7
- @backstage/backend-tasks@0.5.1
- @backstage/plugin-auth-node@0.2.13
- @backstage/backend-plugin-api@0.5.1
- @backstage/cli-common@0.1.12
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
## @backstage/backend-common@0.18.4
### Patch Changes
- a1002df2dc2: Support commit hashes at `GithubUrlReader.readTree/search` additionally to branch names.
Additionally, this will reduce the number of API calls from 2 to 1 for retrieving the "repo details"
for all cases besides when the default branch has to be resolved and used
(e.g., repo URL without any branch or commit hash).
- 5c7ce585824: Allow an additionalConfig to be provided to loadBackendConfig that fetches config values during runtime.
- 2b15cb4aa0a: The dependency isomorphic-git is now on version 1.23.0
- 34167270b31: Renamed the `loadBackendConfig` option `additionalConfig` to `additionalConfigs` as an array, and ensured that they get passed on properly.
This is technically breaking, but the [original addition](https://github.com/backstage/backstage/pull/16643) hasn't been released in mainline yet so we are taking this step now as a `patch` change.
- 420164593cf: Improve GitlabUrlReader to only load requested sub-path
- Updated dependencies
- @backstage/config-loader@1.2.0
- @backstage/backend-app-api@0.4.2
- @backstage/integration@1.4.4
- @backstage/backend-dev-utils@0.1.1
- @backstage/backend-plugin-api@0.5.1
- @backstage/cli-common@0.1.12
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/integration-aws-node@0.1.2
- @backstage/types@1.0.2
## @backstage/backend-defaults@0.1.9
### Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/backend-app-api@0.4.2
- @backstage/backend-plugin-api@0.5.1
## @backstage/backend-openapi-utils@0.0.1
### Patch Changes
- 62fe726fdc5: New plugin! Primary focus is to support types on `Router`s in backend packages. Developers can use the `ApiRouter` from this package in their packages to support a typed experience based on their OpenAPI specs. The `ApiRouter` supports request bodies, response bodies, query parameters and path parameters, as well as full path-based context of the above. This means no more guessing on an endpoint like `req.post('/not-my-route', (req, res)=>{res.send(req.body.badparam)})`. Typescript would catch `/not-my-route`, `req.body.badparam`, `res.send(req.body.badparam)`.
## @backstage/backend-plugin-api@0.5.1
### Patch Changes
- Updated dependencies
- @backstage/plugin-permission-common@0.7.5
- @backstage/backend-tasks@0.5.1
- @backstage/plugin-auth-node@0.2.13
- @backstage/config@1.0.7
- @backstage/types@1.0.2
## @backstage/backend-tasks@0.5.1
### Patch Changes
- 1e4f5e91b8e: Bump `zod` and `zod-to-json-schema` dependencies.
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
## @backstage/backend-test-utils@0.1.36
### Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/backend-app-api@0.4.2
- @backstage/plugin-auth-node@0.2.13
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/types@1.0.2
## @backstage/catalog-client@1.4.1
### Patch Changes
- c1c4e080b79: Fixed bug in `queryEntities` of `CatalogClient` where the `sortField` is supposed to be changed to `orderField`.
- Updated dependencies
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
## @backstage/cli@0.22.6
### Patch Changes
- 24432ae52fb: Fix the build for packages with multiple entry points to avoid duplicated modules.
- 8075b67e64c: When building a backend package with dependencies any `--config ` options will now be forwarded to any dependent app package builds, unless the build script in the app package already contains a `--config` option.
- 79e91d4c30a: Support importing `.md` files in build loader
- 3156b0d85dc: Internal refactor to move many internal utilities to the new `@backstage/cli-node` package.
- b9839d7135c: Fixed backend start command on Windows by removing the use of platform dependent path joins.
- 1e4f5e91b8e: Bump `zod` and `zod-to-json-schema` dependencies.
- 29ba8267d69: Updated dependency `@material-ui/lab` to `4.0.0-alpha.61`.
- 9bbb00d5b49: Updated dependency `@swc/helpers` to `^0.5.0`.
- b588ab73972: Ensure that the `package prepack` command and backend bundling uses posix paths in `package.json` on all OSes.
- c07c3b7364b: Add `onboard` command. While still in development, this command aims to guide users in setting up their Backstage App.
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/cli-node@0.1.0
- @backstage/config-loader@1.2.0
- @backstage/eslint-plugin@0.1.3
- @backstage/cli-common@0.1.12
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/release-manifests@0.0.9
- @backstage/types@1.0.2
## @backstage/core-plugin-api@1.5.1
### Patch Changes
- 760f521b979: Add component name as data attribute for all components
- 2898b6c8d52: Minor type tweaks for TypeScript 5.0
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/version-bridge@1.0.4
- @backstage/config@1.0.7
- @backstage/types@1.0.2
## @backstage/dev-utils@1.0.14
### Patch Changes
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/app-defaults@1.3.0
- @backstage/core-app-api@1.7.0
- @backstage/test-utils@1.3.0
- @backstage/integration-react@1.1.12
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
## @backstage/eslint-plugin@0.1.3
### Patch Changes
- 911c25de59c: Add support for auto-fixing missing imports detected by the `no-undeclared-imports` rule.
## @backstage/integration@1.4.4
### Patch Changes
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
## @backstage/integration-react@1.1.12
### Patch Changes
- 29ba8267d69: Updated dependency `@material-ui/lab` to `4.0.0-alpha.61`.
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/integration@1.4.4
- @backstage/config@1.0.7
## @techdocs/cli@1.4.1
### Patch Changes
- b348420a804: Adding global-agent to enable the ability to publish through a proxy
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/plugin-techdocs-node@1.7.0
- @backstage/catalog-model@1.3.0
- @backstage/cli-common@0.1.12
- @backstage/config@1.0.7
## @backstage/theme@0.2.19
### Patch Changes
- 303c2c3ce51: Allow `closeButton` color in `DismissableBanner` to be configurable (via. `theme.palette.banner.closeButtonColor`)
- e0c6e8b9c3c: Update peer dependencies
## @backstage/version-bridge@1.0.4
### Patch Changes
- e0c6e8b9c3c: Update peer dependencies
## @backstage/plugin-adr-backend@0.3.2
### Patch Changes
- 7d75f6d9b8f: chore: Improve API Reference documentation
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/catalog-client@1.4.1
- @backstage/plugin-adr-common@0.2.8
- @backstage/catalog-model@1.3.0
- @backstage/integration@1.4.4
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/plugin-search-common@1.2.3
## @backstage/plugin-adr-common@0.2.8
### Patch Changes
- 77aa3a4d47e: use path attribute to fetch files instead of name and update the UI to navigate over subdirectories
- Updated dependencies
- @backstage/catalog-model@1.3.0
- @backstage/integration@1.4.4
- @backstage/plugin-search-common@1.2.3
## @backstage/plugin-airbrake@0.3.17
### Patch Changes
- 7d75f6d9b8f: chore: Improve API Reference documentation
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/test-utils@1.3.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/dev-utils@1.0.14
## @backstage/plugin-airbrake-backend@0.2.17
### Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/config@1.0.7
## @backstage/plugin-allure@0.1.33
### Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
## @backstage/plugin-analytics-module-ga@0.1.28
### Patch Changes
- 7d75f6d9b8f: chore: Improve API Reference documentation
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/config@1.0.7
## @backstage/plugin-apache-airflow@0.2.10
### Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
## @backstage/plugin-api-docs@0.9.2
### Patch Changes
- ca50c3bbea1: Corrected styling of nested objects in AsyncAPI to avoid inappropriate uppercase text transformation of nested objects.
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/plugin-catalog@1.10.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
## @backstage/plugin-api-docs-module-protoc-gen-doc@0.1.2
### Patch Changes
- e0c6e8b9c3c: Update peer dependencies
## @backstage/plugin-apollo-explorer@0.1.10
### Patch Changes
- 7d75f6d9b8f: chore: Improve API Reference documentation
- 29ba8267d69: Updated dependency `@material-ui/lab` to `4.0.0-alpha.61`.
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
## @backstage/plugin-app-backend@0.3.44
### Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/config-loader@1.2.0
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/types@1.0.2
## @backstage/plugin-auth-backend@0.18.2
### Patch Changes
- d8f774c30df: Enforce the secret visibility of certificates and client secrets in the auth backend. Also, document all known options for each auth plugin.
- 7908d72e033: Introduce a new global config parameter, `enableExperimentalRedirectFlow`. When enabled, auth will happen with an in-window redirect flow rather than through a popup window.
- 475abd1dc3f: The `microsoft` (i.e. Azure) auth provider now supports negotiating tokens for
Azure resources besides Microsoft Graph (e.g. AKS, Virtual Machines, Machine
Learning Services, etc.). When the `/frame/handler` endpoint is called with an
authorization code for a non-Microsoft Graph scope, the user profile will not be
fetched. Similarly no user profile or photo data will be fetched by the backend
if the `/refresh` endpoint is called with the `scope` query parameter strictly
containing scopes for resources besides Microsoft Graph.
Furthermore, the `offline_access` scope will be requested by default, even when
it is not mentioned in the argument to `getAccessToken`. This means that any
Azure access token can be automatically refreshed, even if the user has not
signed in via Azure.
- 6a900951336: Add common identify resolvers for `oidc` auth provider.
- a0ef1ec7349: Export Azure Easy Auth provider so it can actually be used.
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/catalog-client@1.4.1
- @backstage/catalog-model@1.3.0
- @backstage/plugin-auth-node@0.2.13
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
## @backstage/plugin-auth-node@0.2.13
### Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
## @backstage/plugin-azure-devops@0.2.8
### Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
- @backstage/plugin-azure-devops-common@0.3.0
## @backstage/plugin-azure-devops-backend@0.3.23
### Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/config@1.0.7
- @backstage/plugin-azure-devops-common@0.3.0
## @backstage/plugin-azure-sites@0.1.6
### Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/plugin-azure-sites-common@0.1.0
## @backstage/plugin-azure-sites-backend@0.1.6
### Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/config@1.0.7
- @backstage/plugin-azure-sites-common@0.1.0
## @backstage/plugin-badges@0.2.41
### Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
## @backstage/plugin-badges-backend@0.1.38
### Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/catalog-client@1.4.1
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
## @backstage/plugin-bazaar@0.2.7
### Patch Changes
- fbd6f36611a: Added the `docs` parameter (optional) to link the project documentation
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- 656914bb0ad: Added the `fullWidth` and `fullHeight` optional properties to the `BazaarPage`,
to replicate the styling options available on the `BazaarOverviewCard`.
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/cli@0.22.6
- @backstage/catalog-client@1.4.1
- @backstage/plugin-catalog-react@1.5.0
- @backstage/plugin-catalog@1.10.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
## @backstage/plugin-bazaar-backend@0.2.7
### Patch Changes
- fbd6f36611a: Added the `docs` parameter (optional) to link the project documentation
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/plugin-auth-node@0.2.13
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
## @backstage/plugin-bitbucket-cloud-common@0.2.5
### Patch Changes
- Updated dependencies
- @backstage/integration@1.4.4
## @backstage/plugin-bitrise@0.1.44
### Patch Changes
- 55a969fe574: Bumped `recharts` dependency to `^2.5.0`.
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
## @backstage/plugin-catalog-backend-module-aws@0.1.18
### Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/backend-tasks@0.5.1
- @backstage/catalog-model@1.3.0
- @backstage/plugin-kubernetes-common@0.6.2
- @backstage/integration@1.4.4
- @backstage/plugin-catalog-node@1.3.5
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-catalog-common@1.0.13
## @backstage/plugin-catalog-backend-module-azure@0.1.15
### Patch Changes
- 62a725e3a94: Use the `LocationSpec` type from the `catalog-common` package in place of the deprecated `LocationSpec` from the `catalog-node` package.
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/backend-tasks@0.5.1
- @backstage/catalog-model@1.3.0
- @backstage/integration@1.4.4
- @backstage/plugin-catalog-node@1.3.5
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-catalog-common@1.0.13
## @backstage/plugin-catalog-backend-module-bitbucket@0.2.11
### Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/catalog-model@1.3.0
- @backstage/integration@1.4.4
- @backstage/plugin-catalog-node@1.3.5
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-bitbucket-cloud-common@0.2.5
## @backstage/plugin-catalog-backend-module-bitbucket-cloud@0.1.11
### Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/catalog-client@1.4.1
- @backstage/backend-tasks@0.5.1
- @backstage/catalog-model@1.3.0
- @backstage/integration@1.4.4
- @backstage/plugin-catalog-node@1.3.5
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/plugin-bitbucket-cloud-common@0.2.5
- @backstage/plugin-catalog-common@1.0.13
- @backstage/plugin-events-node@0.2.5
## @backstage/plugin-catalog-backend-module-bitbucket-server@0.1.9
### Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/backend-tasks@0.5.1
- @backstage/catalog-model@1.3.0
- @backstage/integration@1.4.4
- @backstage/plugin-catalog-node@1.3.5
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
## @backstage/plugin-catalog-backend-module-gerrit@0.1.12
### Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/backend-tasks@0.5.1
- @backstage/catalog-model@1.3.0
- @backstage/integration@1.4.4
- @backstage/plugin-catalog-node@1.3.5
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
## @backstage/plugin-catalog-backend-module-github@0.2.7
### Patch Changes
- 3756dd98feb: `GitHubEntityProvider`: Add option to configure visibility filter via `app-config.yaml`.
Please find how to configure visibility filter config at
- 3160138d8d4: Implement `GithubMultiOrgEntityProvider` for sourcing group and user entities from multiple GitHub organizations
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/plugin-catalog-backend@1.9.0
- @backstage/catalog-client@1.4.1
- @backstage/backend-tasks@0.5.1
- @backstage/catalog-model@1.3.0
- @backstage/integration@1.4.4
- @backstage/plugin-catalog-node@1.3.5
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-catalog-common@1.0.13
- @backstage/plugin-events-node@0.2.5
## @backstage/plugin-catalog-backend-module-incremental-ingestion@0.3.1
### Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/plugin-catalog-backend@1.9.0
- @backstage/plugin-permission-common@0.7.5
- @backstage/backend-tasks@0.5.1
- @backstage/catalog-model@1.3.0
- @backstage/plugin-catalog-node@1.3.5
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/plugin-events-node@0.2.5
## @backstage/plugin-catalog-backend-module-ldap@0.5.11
### Patch Changes
- c9a0fdcd2c8: Fix deprecated types.
- Updated dependencies
- @backstage/backend-tasks@0.5.1
- @backstage/catalog-model@1.3.0
- @backstage/plugin-catalog-node@1.3.5
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-catalog-common@1.0.13
## @backstage/plugin-catalog-backend-module-msgraph@0.5.3
### Patch Changes
- c9a0fdcd2c8: Fix deprecated types.
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/backend-tasks@0.5.1
- @backstage/catalog-model@1.3.0
- @backstage/plugin-catalog-node@1.3.5
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/plugin-catalog-common@1.0.13
## @backstage/plugin-catalog-backend-module-openapi@0.1.10
### Patch Changes
- c9a0fdcd2c8: Fix deprecated types.
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/plugin-catalog-backend@1.9.0
- @backstage/catalog-model@1.3.0
- @backstage/integration@1.4.4
- @backstage/plugin-catalog-node@1.3.5
- @backstage/config@1.0.7
- @backstage/types@1.0.2
- @backstage/plugin-catalog-common@1.0.13
## @backstage/plugin-catalog-backend-module-puppetdb@0.1.1
### Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/backend-tasks@0.5.1
- @backstage/catalog-model@1.3.0
- @backstage/plugin-catalog-node@1.3.5
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
## @backstage/plugin-catalog-common@1.0.13
### Patch Changes
- Updated dependencies
- @backstage/plugin-permission-common@0.7.5
- @backstage/catalog-model@1.3.0
- @backstage/plugin-search-common@1.2.3
## @backstage/plugin-catalog-graph@0.2.29
### Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/catalog-client@1.4.1
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
## @backstage/plugin-catalog-graphql@0.3.20
### Patch Changes
- e47e69eadf0: Updated dependency `@apollo/server` to `^4.0.0`.
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
- @backstage/types@1.0.2
## @backstage/plugin-catalog-import@0.9.7
### Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/catalog-client@1.4.1
- @backstage/plugin-catalog-react@1.5.0
- @backstage/integration-react@1.1.12
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/integration@1.4.4
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/plugin-catalog-common@1.0.13
## @backstage/plugin-catalog-node@1.3.5
### Patch Changes
- Updated dependencies
- @backstage/catalog-client@1.4.1
- @backstage/catalog-model@1.3.0
- @backstage/backend-plugin-api@0.5.1
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-catalog-common@1.0.13
## @backstage/plugin-cicd-statistics@0.1.19
### Patch Changes
- 55a969fe574: Bumped `recharts` dependency to `^2.5.0`.
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/plugin-catalog-react@1.5.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
## @backstage/plugin-cicd-statistics-module-gitlab@0.1.13
### Patch Changes
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/plugin-cicd-statistics@0.1.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
## @backstage/plugin-circleci@0.3.17
### Patch Changes
- d14ac997c36: Add hover over CircleCI avatar icon to show user name in builds table
- 7d75f6d9b8f: chore: Improve API Reference documentation
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
## @backstage/plugin-cloudbuild@0.3.17
### Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
## @backstage/plugin-code-climate@0.1.17
### Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
## @backstage/plugin-code-coverage@0.2.10
### Patch Changes
- 55a969fe574: Bumped `recharts` dependency to `^2.5.0`.
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
## @backstage/plugin-code-coverage-backend@0.2.10
### Patch Changes
- d3645a62b74: Bump `xml2js` from 0.4.23 to 0.5.0
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/catalog-client@1.4.1
- @backstage/catalog-model@1.3.0
- @backstage/integration@1.4.4
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
## @backstage/plugin-codescene@0.1.12
### Patch Changes
- 29ba8267d69: Updated dependency `@material-ui/lab` to `4.0.0-alpha.61`.
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
## @backstage/plugin-config-schema@0.1.40
### Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
## @backstage/plugin-cost-insights@0.12.6
### Patch Changes
- 55a969fe574: Bumped `recharts` dependency to `^2.5.0`.
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
- @backstage/plugin-cost-insights-common@0.1.1
## @backstage/plugin-dynatrace@4.0.0
### Patch Changes
- 7d75f6d9b8f: chore: Improve API Reference documentation
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
## @backstage/plugin-entity-feedback-backend@0.1.2
### Patch Changes
- 7eba760e6f6: Added an endpoint to fetch anonymous aggregated results from an entity
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/catalog-client@1.4.1
- @backstage/plugin-entity-feedback-common@0.1.1
- @backstage/catalog-model@1.3.0
- @backstage/plugin-auth-node@0.2.13
- @backstage/config@1.0.7
## @backstage/plugin-entity-feedback-common@0.1.1
### Patch Changes
- 7eba760e6f6: Added an endpoint to fetch anonymous aggregated results from an entity
## @backstage/plugin-entity-validation@0.1.2
### Patch Changes
- 29ba8267d69: Updated dependency `@material-ui/lab` to `4.0.0-alpha.61`.
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/catalog-client@1.4.1
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
- @backstage/plugin-catalog-common@1.0.13
## @backstage/plugin-events-backend@0.2.5
### Patch Changes
- 3538d9ad2c4: Export `DefaultEventBroker` to allow decoupling of the catalog and events backends in the `example-backend`.
Please look at `plugins/events-backend/README.md` for the currently advised way to set up the event backend and catalog providers.
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/plugin-events-node@0.2.5
## @backstage/plugin-events-backend-module-aws-sqs@0.1.6
### Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/backend-tasks@0.5.1
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/types@1.0.2
- @backstage/plugin-events-node@0.2.5
## @backstage/plugin-events-backend-module-azure@0.1.6
### Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.5.1
- @backstage/plugin-events-node@0.2.5
## @backstage/plugin-events-backend-module-bitbucket-cloud@0.1.6
### Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.5.1
- @backstage/plugin-events-node@0.2.5
## @backstage/plugin-events-backend-module-gerrit@0.1.6
### Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.5.1
- @backstage/plugin-events-node@0.2.5
## @backstage/plugin-events-backend-module-github@0.1.6
### Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/plugin-events-node@0.2.5
## @backstage/plugin-events-backend-module-gitlab@0.1.6
### Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/plugin-events-node@0.2.5
## @backstage/plugin-events-backend-test-utils@0.1.6
### Patch Changes
- Updated dependencies
- @backstage/plugin-events-node@0.2.5
## @backstage/plugin-events-node@0.2.5
### Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.5.1
## @backstage/plugin-explore@0.4.2
### Patch Changes
- f9ea944422e: Extracted generic `CatalogKindExploreContent` component so that it is easy to show any component kinds in their own tab in the explore page.
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/plugin-search-react@1.5.2
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/plugin-explore-react@0.0.28
- @backstage/errors@1.1.5
- @backstage/plugin-explore-common@0.0.1
- @backstage/plugin-search-common@1.2.3
## @backstage/plugin-explore-backend@0.0.6
### Patch Changes
- 01ae205352e: Collator factories instantiated in new backend system modules and now marked as deprecated. Will be continued to be exported publicly until the new backend system is fully rolled out.
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/plugin-search-backend-module-explore@0.1.0
- @backstage/config@1.0.7
- @backstage/plugin-explore-common@0.0.1
- @backstage/plugin-search-common@1.2.3
## @backstage/plugin-explore-react@0.0.28
### Patch Changes
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-plugin-api@1.5.1
- @backstage/plugin-explore-common@0.0.1
## @backstage/plugin-firehydrant@0.2.1
### Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
## @backstage/plugin-fossa@0.2.49
### Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
## @backstage/plugin-gcalendar@0.3.13
### Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/errors@1.1.5
## @backstage/plugin-gcp-projects@0.3.36
### Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
## @backstage/plugin-git-release-manager@0.3.30
### Patch Changes
- 55a969fe574: Bumped `recharts` dependency to `^2.5.0`.
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/integration@1.4.4
## @backstage/plugin-github-actions@0.5.17
### Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/integration@1.4.4
## @backstage/plugin-github-deployments@0.1.48
### Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/integration-react@1.1.12
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/integration@1.4.4
- @backstage/errors@1.1.5
## @backstage/plugin-github-issues@0.2.6
### Patch Changes
- 29ba8267d69: Updated dependency `@material-ui/lab` to `4.0.0-alpha.61`.
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/integration@1.4.4
- @backstage/errors@1.1.5
## @backstage/plugin-github-pull-requests-board@0.1.11
### Patch Changes
- 2ef8aee1d0c: Add a new "Archived" Filter Options to the Github Pull Requests Dashboard.
When toggling this option on, the dashboard will display PRs from archived repositories.
These PRs will not be displayed in the default filter.
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/integration@1.4.4
## @backstage/plugin-gitops-profiles@0.3.35
### Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/config@1.0.7
## @backstage/plugin-gocd@0.1.23
### Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
## @backstage/plugin-graphiql@0.2.49
### Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- 8b9e8ece403: Allow to pass lazy GraphQL endpoint URL
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
## @backstage/plugin-graphql-backend@0.1.34
### Patch Changes
- e47e69eadf0: Updated dependency `@apollo/server` to `^4.0.0`.
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/plugin-catalog-graphql@0.3.20
- @backstage/config@1.0.7
## @backstage/plugin-graphql-voyager@0.1.2
### Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
## @backstage/plugin-ilert@0.2.6
### Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
## @backstage/plugin-jenkins@0.7.16
### Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
- @backstage/plugin-jenkins-common@0.1.15
## @backstage/plugin-jenkins-backend@0.1.34
### Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/catalog-client@1.4.1
- @backstage/plugin-permission-common@0.7.5
- @backstage/catalog-model@1.3.0
- @backstage/plugin-auth-node@0.2.13
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/plugin-jenkins-common@0.1.15
## @backstage/plugin-jenkins-common@0.1.15
### Patch Changes
- Updated dependencies
- @backstage/plugin-permission-common@0.7.5
- @backstage/plugin-catalog-common@1.0.13
## @backstage/plugin-kafka@0.3.17
### Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
## @backstage/plugin-kafka-backend@0.2.37
### Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/catalog-model@1.3.0
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
## @backstage/plugin-kubernetes-common@0.6.2
### Patch Changes
- 804f6d16b0c: Introduced proxy permission types to be used with the kubernetes proxy endpoint's permission framework integration.
- Updated dependencies
- @backstage/plugin-permission-common@0.7.5
- @backstage/catalog-model@1.3.0
## @backstage/plugin-lighthouse@0.4.2
### Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
- @backstage/plugin-lighthouse-common@0.1.1
## @backstage/plugin-linguist@0.1.2
### Patch Changes
- 29ba8267d69: Updated dependency `@material-ui/lab` to `4.0.0-alpha.61`.
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
- @backstage/plugin-linguist-common@0.1.0
## @backstage/plugin-linguist-backend@0.2.1
### Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/catalog-client@1.4.1
- @backstage/backend-tasks@0.5.1
- @backstage/catalog-model@1.3.0
- @backstage/plugin-auth-node@0.2.13
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-linguist-common@0.1.0
## @backstage/plugin-microsoft-calendar@0.1.2
### Patch Changes
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/errors@1.1.5
## @backstage/plugin-newrelic@0.3.35
### Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
## @backstage/plugin-newrelic-dashboard@0.2.10
### Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
## @backstage/plugin-octopus-deploy@0.1.1
### Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
## @backstage/plugin-org@0.6.7
### Patch Changes
- d7c8d8c52dd: Allow the title of the group profile card to use the title of the entity, if it is set.
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- 228ab677d31: Added `entityLimit` to change the limit of entities displayed in the ownership boxes.
[StoryBook Example for Ownership Card](https://backstage.io/storybook/?path=/story/plugins-org-ownership-card--default)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
## @backstage/plugin-org-react@0.1.6
### Patch Changes
- 29ba8267d69: Updated dependency `@material-ui/lab` to `4.0.0-alpha.61`.
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/catalog-client@1.4.1
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
## @backstage/plugin-pagerduty@0.5.10
### Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
## @backstage/plugin-periskop@0.1.15
### Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
## @backstage/plugin-periskop-backend@0.1.15
### Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
## @backstage/plugin-permission-backend@0.5.19
### Patch Changes
- 84946a580c4: Introduced alpha export of the `permissionPlugin` for use in the new backend system, along with a `permissionModuleAllowAllPolicy` that can be used to allow all requests.
- 1e4f5e91b8e: Bump `zod` and `zod-to-json-schema` dependencies.
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/plugin-permission-node@0.7.7
- @backstage/plugin-permission-common@0.7.5
- @backstage/plugin-auth-node@0.2.13
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
## @backstage/plugin-permission-common@0.7.5
### Patch Changes
- 1e4f5e91b8e: Bump `zod` and `zod-to-json-schema` dependencies.
- Updated dependencies
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
## @backstage/plugin-permission-node@0.7.7
### Patch Changes
- 788f0f5a152: Introduced alpha export of the `policyExtensionPoint` for use in the new backend system.
- 71fd0966d10: Added createConditionAuthorizer utility function, which takes some permission conditions and returns a function that returns a definitive authorization result given a decision and a resource.
- 1e4f5e91b8e: Bump `zod` and `zod-to-json-schema` dependencies.
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/plugin-permission-common@0.7.5
- @backstage/plugin-auth-node@0.2.13
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
## @backstage/plugin-permission-react@0.4.12
### Patch Changes
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/plugin-permission-common@0.7.5
- @backstage/core-plugin-api@1.5.1
- @backstage/config@1.0.7
## @backstage/plugin-playlist@0.1.8
### Patch Changes
- 1b3c0546047: Added config properties to change dynamically the group noun for all the components in the UI
- 29ba8267d69: Updated dependency `@material-ui/lab` to `4.0.0-alpha.61`.
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/plugin-search-react@1.5.2
- @backstage/plugin-permission-common@0.7.5
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/plugin-permission-react@0.4.12
- @backstage/errors@1.1.5
- @backstage/plugin-catalog-common@1.0.13
- @backstage/plugin-playlist-common@0.1.6
## @backstage/plugin-playlist-common@0.1.6
### Patch Changes
- Updated dependencies
- @backstage/plugin-permission-common@0.7.5
## @backstage/plugin-proxy-backend@0.2.38
### Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
## @backstage/plugin-rollbar@0.4.17
### Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
## @backstage/plugin-rollbar-backend@0.1.41
### Patch Changes
- 66b6cfc5716: Replace `camelcase-keys` dependency with one with better compatibility.
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/config@1.0.7
## @backstage/plugin-scaffolder-backend-module-cookiecutter@0.2.19
### Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/plugin-scaffolder-backend@1.13.0
- @backstage/plugin-scaffolder-node@0.1.2
- @backstage/integration@1.4.4
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
## @backstage/plugin-scaffolder-backend-module-rails@0.4.12
### Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/plugin-scaffolder-backend@1.13.0
- @backstage/plugin-scaffolder-node@0.1.2
- @backstage/integration@1.4.4
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
## @backstage/plugin-scaffolder-backend-module-sentry@0.1.4
### Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.1.2
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
## @backstage/plugin-scaffolder-backend-module-yeoman@0.2.17
### Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.1.2
- @backstage/config@1.0.7
- @backstage/types@1.0.2
## @backstage/plugin-scaffolder-common@1.2.7
### Patch Changes
- 65e989f4018: Added permissions for authorizing parameters and steps
- 48da4c46e45: Export `typeguard` for `isTemplateEntityV1beta3`
- bcae5aaf25c: Added permissions for authorizing actions
- 65e989f4018: Define optional `backstage:permissions` property to parameters and steps used to authorize part of the template using the permission framework
- Updated dependencies
- @backstage/plugin-permission-common@0.7.5
- @backstage/catalog-model@1.3.0
- @backstage/types@1.0.2
## @backstage/plugin-scaffolder-node@0.1.2
### Patch Changes
- e27ddc36dad: Added a possibility to cancel the running task (executing of a scaffolder template)
- a7eb36c6e38: Improve type-check for scaffolder output parameters
- 1e4f5e91b8e: Bump `zod` and `zod-to-json-schema` dependencies.
- 2898b6c8d52: Minor type tweaks for TypeScript 5.0
- Updated dependencies
- @backstage/plugin-scaffolder-common@1.2.7
- @backstage/catalog-model@1.3.0
- @backstage/backend-plugin-api@0.5.1
- @backstage/types@1.0.2
## @backstage/plugin-search-backend-module-pg@0.5.5
### Patch Changes
- 1469daa409e: Search backend modules migrated to the new backend system. For documentation on how to migrate, check out the [how to migrate to the new backend system guide](https://backstage.io/docs/features/search/how-to-guides/#how-to-migrate-your-backend-installation-to-use-search-together-with-the-new-backend-system).
- 87ca22ce9c9: Fixed a bug that could cause orphaned PG connections to accumulate (eventually
exhausting available connections) when errors were encountered earlier in the
search indexing process.
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/plugin-search-backend-node@1.2.0
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/plugin-search-common@1.2.3
## @backstage/plugin-search-common@1.2.3
### Patch Changes
- Updated dependencies
- @backstage/plugin-permission-common@0.7.5
- @backstage/types@1.0.2
## @backstage/plugin-search-react@1.5.2
### Patch Changes
- b2e182cdfa4: Fixes a UI bug in search result item which rendered the item text with incorrect font size and color
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/version-bridge@1.0.4
- @backstage/types@1.0.2
- @backstage/plugin-search-common@1.2.3
## @backstage/plugin-sentry@0.5.2
### Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
## @backstage/plugin-shortcuts@0.3.9
### Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- 328ec5f96c6: Added the Analytics event in the save handler of AddShortcut and EditShortcut
- 99df676e324: Allow external links to be added as shortcuts
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/types@1.0.2
## @backstage/plugin-sonarqube@0.6.6
### Patch Changes
- 5a368d12bc9: amend getSecurityHotspotsUrl to conditionally remove project path if sonarqube is self hosted
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/plugin-sonarqube-react@0.1.5
## @backstage/plugin-sonarqube-backend@0.1.9
### Patch Changes
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
## @backstage/plugin-sonarqube-react@0.1.5
### Patch Changes
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
## @backstage/plugin-splunk-on-call@0.4.6
### Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
## @backstage/plugin-stack-overflow@0.1.13
### Patch Changes
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-search-react@1.5.2
- @backstage/plugin-home@0.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/config@1.0.7
- @backstage/plugin-search-common@1.2.3
## @backstage/plugin-stackstorm@0.1.1
### Patch Changes
- 29ba8267d69: Updated dependency `@material-ui/lab` to `4.0.0-alpha.61`.
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/errors@1.1.5
## @backstage/plugin-tech-insights@0.3.9
### Patch Changes
- f538b9c5b83: The `Check` type now optionally includes the `failureMetadata` and `successMetadata` as returned by the `runChecks` call.
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-tech-insights-common@0.2.10
## @backstage/plugin-tech-insights-backend@0.5.10
### Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/catalog-client@1.4.1
- @backstage/backend-tasks@0.5.1
- @backstage/catalog-model@1.3.0
- @backstage/plugin-tech-insights-node@0.4.2
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-tech-insights-common@0.2.10
## @backstage/plugin-tech-insights-backend-module-jsonfc@0.1.28
### Patch Changes
- 9cb1db6546a: When multiple fact retrievers are used for a check, allow for cases where only one returns a given fact
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/plugin-tech-insights-node@0.4.2
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/plugin-tech-insights-common@0.2.10
## @backstage/plugin-tech-insights-node@0.4.2
### Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/backend-tasks@0.5.1
- @backstage/config@1.0.7
- @backstage/types@1.0.2
- @backstage/plugin-tech-insights-common@0.2.10
## @backstage/plugin-tech-radar@0.6.3
### Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
## @backstage/plugin-techdocs@1.6.1
### Patch Changes
- 6c809d1a41c: Minor visual tweaks to adapt to changes in mkdocs-material v9
- b2e182cdfa4: Fixes a UI bug in search result item which rendered the item text with incorrect font size and color
- 847a1eee3da: Change anchor links color in Techdocs content
With the color (mkdocs supplied) used for anchor links the background and foreground colors do not have a sufficient contrast ratio. Using the link color from theme palette.
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- 2e493480626: Fix a bug in sub-path navigation due to double addition of a sub-path if one was set up in `app.baseUrl`.
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/plugin-search-react@1.5.2
- @backstage/plugin-techdocs-react@1.1.5
- @backstage/integration-react@1.1.12
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/integration@1.4.4
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/plugin-search-common@1.2.3
## @backstage/plugin-techdocs-addons-test-utils@1.0.12
### Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-techdocs@1.6.1
- @backstage/plugin-catalog@1.10.0
- @backstage/core-app-api@1.7.0
- @backstage/test-utils@1.3.0
- @backstage/plugin-search-react@1.5.2
- @backstage/plugin-techdocs-react@1.1.5
- @backstage/integration-react@1.1.12
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
## @backstage/plugin-techdocs-backend@1.6.1
### Patch Changes
- 01ae205352e: Collator factories instantiated in new backend system modules and now marked as deprecated. Will be continued to be exported publicly until the new backend system is fully rolled out.
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/catalog-client@1.4.1
- @backstage/plugin-techdocs-node@1.7.0
- @backstage/plugin-permission-common@0.7.5
- @backstage/catalog-model@1.3.0
- @backstage/plugin-search-backend-module-techdocs@0.1.0
- @backstage/integration@1.4.4
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/plugin-catalog-common@1.0.13
- @backstage/plugin-search-common@1.2.3
## @backstage/plugin-techdocs-module-addons-contrib@1.0.12
### Patch Changes
- c657d0a610e: Bump `photoswipe` dependency to `^5.3.7`.
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-techdocs-react@1.1.5
- @backstage/integration-react@1.1.12
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/integration@1.4.4
## @backstage/plugin-techdocs-react@1.1.5
### Patch Changes
- 7e0c7b09a47: Fix a bug that caused the header to not render when generating a document for the first time
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/version-bridge@1.0.4
- @backstage/config@1.0.7
## @backstage/plugin-todo@0.2.19
### Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
## @backstage/plugin-todo-backend@0.1.41
### Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/catalog-client@1.4.1
- @backstage/catalog-model@1.3.0
- @backstage/integration@1.4.4
- @backstage/plugin-catalog-node@1.3.5
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
## @backstage/plugin-user-settings@0.7.2
### Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/core-app-api@1.7.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
## @backstage/plugin-user-settings-backend@0.1.8
### Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/catalog-model@1.3.0
- @backstage/plugin-auth-node@0.2.13
- @backstage/backend-plugin-api@0.5.1
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
## @backstage/plugin-vault@0.1.11
### Patch Changes
- 7c7f8d38a51: Use `fetchApi` instead of raw `fetch` in order to pass auth header if necessary.
- 29ba8267d69: Updated dependency `@material-ui/lab` to `4.0.0-alpha.61`.
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
## @backstage/plugin-xcmetrics@0.2.37
### Patch Changes
- 55a969fe574: Bumped `recharts` dependency to `^2.5.0`.
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/errors@1.1.5
## example-app@0.2.82
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-kubernetes@0.8.0
- @backstage/cli@0.22.6
- @backstage/plugin-circleci@0.3.17
- @backstage/plugin-techdocs-module-addons-contrib@1.0.12
- @backstage/plugin-scaffolder-react@1.3.0
- @backstage/plugin-scaffolder@1.13.0
- @backstage/plugin-api-docs@0.9.2
- @backstage/plugin-org@0.6.7
- @backstage/plugin-entity-feedback@0.2.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/plugin-techdocs@1.6.1
- @backstage/plugin-puppetdb@0.1.0
- @backstage/plugin-explore@0.4.2
- @backstage/plugin-tech-insights@0.3.9
- @backstage/app-defaults@1.3.0
- @backstage/core-app-api@1.7.0
- @backstage/plugin-search-react@1.5.2
- @backstage/plugin-code-coverage@0.2.10
- @backstage/plugin-cost-insights@0.12.6
- @backstage/plugin-playlist@0.1.8
- @backstage/plugin-home@0.5.0
- @backstage/plugin-dynatrace@4.0.0
- @backstage/plugin-airbrake@0.3.17
- @backstage/plugin-techdocs-react@1.1.5
- @backstage/integration-react@1.1.12
- @backstage/plugin-stackstorm@0.1.1
- @backstage/plugin-linguist@0.1.2
- @backstage/plugin-newrelic-dashboard@0.2.10
- @backstage/plugin-apache-airflow@0.2.10
- @backstage/plugin-catalog-import@0.9.7
- @backstage/plugin-github-actions@0.5.17
- @backstage/plugin-catalog-graph@0.2.29
- @backstage/plugin-user-settings@0.7.2
- @backstage/plugin-azure-devops@0.2.8
- @backstage/plugin-gcp-projects@0.3.36
- @backstage/plugin-azure-sites@0.1.6
- @backstage/plugin-cloudbuild@0.3.17
- @backstage/plugin-lighthouse@0.4.2
- @backstage/plugin-tech-radar@0.6.3
- @backstage/plugin-gcalendar@0.3.13
- @backstage/plugin-pagerduty@0.5.10
- @backstage/plugin-shortcuts@0.3.9
- @backstage/plugin-graphiql@0.2.49
- @backstage/plugin-newrelic@0.3.35
- @backstage/plugin-jenkins@0.7.16
- @backstage/plugin-rollbar@0.4.17
- @backstage/plugin-badges@0.2.41
- @backstage/plugin-search@1.2.0
- @backstage/plugin-sentry@0.5.2
- @backstage/plugin-kafka@0.3.17
- @backstage/plugin-gocd@0.1.23
- @backstage/plugin-todo@0.2.19
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/plugin-microsoft-calendar@0.1.2
- @backstage/plugin-permission-react@0.4.12
- @backstage/plugin-stack-overflow@0.1.13
- @backstage/config@1.0.7
- @backstage/plugin-catalog-common@1.0.13
- @backstage/plugin-linguist-common@0.1.0
- @backstage/plugin-search-common@1.2.3
- @internal/plugin-catalog-customized@0.0.9
## example-backend@0.2.82
### Patch Changes
- Updated dependencies
- @backstage/plugin-kubernetes-backend@0.10.0
- @backstage/backend-common@0.18.4
- @backstage/plugin-scaffolder-backend@1.13.0
- @backstage/plugin-catalog-backend@1.9.0
- @backstage/plugin-code-coverage-backend@0.2.10
- @backstage/catalog-client@1.4.1
- @backstage/plugin-permission-node@0.7.7
- @backstage/plugin-permission-backend@0.5.19
- @backstage/plugin-entity-feedback-backend@0.1.2
- @backstage/plugin-rollbar-backend@0.1.41
- @backstage/plugin-search-backend@1.3.0
- @backstage/plugin-search-backend-module-elasticsearch@1.2.0
- @backstage/plugin-search-backend-module-pg@0.5.5
- @backstage/plugin-auth-backend@0.18.2
- @backstage/plugin-lighthouse-backend@0.2.0
- @backstage/plugin-permission-common@0.7.5
- @backstage/plugin-playlist-backend@0.3.0
- @backstage/backend-tasks@0.5.1
- @backstage/plugin-tech-insights-backend-module-jsonfc@0.1.28
- @backstage/plugin-adr-backend@0.3.2
- @backstage/plugin-graphql-backend@0.1.34
- @backstage/catalog-model@1.3.0
- @backstage/plugin-techdocs-backend@1.6.1
- @backstage/plugin-explore-backend@0.0.6
- @backstage/plugin-events-backend@0.2.5
- @backstage/plugin-search-backend-node@1.2.0
- @backstage/integration@1.4.4
- example-app@0.2.82
- @backstage/plugin-app-backend@0.3.44
- @backstage/plugin-auth-node@0.2.13
- @backstage/plugin-azure-devops-backend@0.3.23
- @backstage/plugin-azure-sites-backend@0.1.6
- @backstage/plugin-badges-backend@0.1.38
- @backstage/plugin-catalog-node@1.3.5
- @backstage/plugin-jenkins-backend@0.1.34
- @backstage/plugin-kafka-backend@0.2.37
- @backstage/plugin-linguist-backend@0.2.1
- @backstage/plugin-proxy-backend@0.2.38
- @backstage/plugin-scaffolder-backend-module-rails@0.4.12
- @backstage/plugin-tech-insights-backend@0.5.10
- @backstage/plugin-tech-insights-node@0.4.2
- @backstage/plugin-todo-backend@0.1.41
- @backstage/config@1.0.7
- @backstage/plugin-events-node@0.2.5
- @backstage/plugin-search-common@1.2.3
## example-backend-next@0.0.10
### Patch Changes
- Updated dependencies
- @backstage/plugin-kubernetes-backend@0.10.0
- @backstage/plugin-scaffolder-backend@1.13.0
- @backstage/plugin-catalog-backend@1.9.0
- @backstage/plugin-permission-node@0.7.7
- @backstage/plugin-permission-backend@0.5.19
- @backstage/plugin-search-backend@1.3.0
- @backstage/plugin-permission-common@0.7.5
- @backstage/plugin-techdocs-backend@1.6.1
- @backstage/plugin-search-backend-node@1.2.0
- @backstage/plugin-search-backend-module-techdocs@0.1.0
- @backstage/plugin-search-backend-module-catalog@0.1.0
- @backstage/plugin-search-backend-module-explore@0.1.0
- @backstage/backend-defaults@0.1.9
- @backstage/plugin-app-backend@0.3.44
- @backstage/plugin-auth-node@0.2.13
- @backstage/plugin-todo-backend@0.1.41
## e2e-test@0.2.2
### Patch Changes
- Updated dependencies
- @backstage/create-app@0.5.0
- @backstage/cli-common@0.1.12
- @backstage/errors@1.1.5
## techdocs-cli-embedded-app@0.2.81
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/cli@0.22.6
- @backstage/plugin-techdocs@1.6.1
- @backstage/plugin-catalog@1.10.0
- @backstage/app-defaults@1.3.0
- @backstage/core-app-api@1.7.0
- @backstage/test-utils@1.3.0
- @backstage/plugin-techdocs-react@1.1.5
- @backstage/integration-react@1.1.12
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
## @internal/plugin-catalog-customized@0.0.9
### Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.5.0
- @backstage/plugin-catalog@1.10.0
## @internal/plugin-todo-list@1.0.12
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
## @internal/plugin-todo-list-backend@1.0.12
### Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/plugin-auth-node@0.2.13
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
## @internal/plugin-todo-list-common@1.0.10
### Patch Changes
- Updated dependencies
- @backstage/plugin-permission-common@0.7.5