diff --git a/.changeset/beige-lies-pay.md b/.changeset/beige-lies-pay.md deleted file mode 100644 index 94206f9d9c..0000000000 --- a/.changeset/beige-lies-pay.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -'@backstage/backend-common': patch -'@backstage/backend-tasks': patch -'@backstage/backend-test-utils': patch -'@backstage/plugin-app-backend': patch -'@backstage/plugin-auth-backend': patch -'@backstage/plugin-bazaar-backend': patch -'@backstage/plugin-catalog-backend': patch -'@backstage/plugin-scaffolder-backend': patch ---- - -Do some groundwork for supporting the `better-sqlite3` driver, to maybe eventually replace `@vscode/sqlite3` (#9912) diff --git a/.changeset/big-meals-fly.md b/.changeset/big-meals-fly.md deleted file mode 100644 index be88400227..0000000000 --- a/.changeset/big-meals-fly.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -'@backstage/plugin-scaffolder-backend': patch -'@backstage/plugin-scaffolder-backend-module-cookiecutter': patch -'@backstage/plugin-scaffolder-backend-module-rails': patch -'@backstage/plugin-scaffolder-backend-module-yeoman': patch ---- - -Updating documentation for supporting `apiVersion: scaffolder.backstage.io/v1beta3` diff --git a/.changeset/big-months-deliver.md b/.changeset/big-months-deliver.md deleted file mode 100644 index 1cf873beb1..0000000000 --- a/.changeset/big-months-deliver.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@backstage/cli': patch ---- - -Added `--since ` flag for `repo build` command.` diff --git a/.changeset/brave-brooms-tie.md b/.changeset/brave-brooms-tie.md deleted file mode 100644 index a4b986c9d5..0000000000 --- a/.changeset/brave-brooms-tie.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -'@backstage/create-app': patch ---- - -Builtin support for cookiecutter based templates has been removed from `@backstage/plugin-scaffolder-backend`. Due to this, the `containerRunner` argument to its `createRouter` has also been removed. - -If you do not use cookiecutter templates and are fine with removing support from it in your own installation, update your `packages/backend/src/plugins/scaffolder.ts` file as follows: - -```diff --import { DockerContainerRunner } from '@backstage/backend-common'; - import { CatalogClient } from '@backstage/catalog-client'; - import { createRouter } from '@backstage/plugin-scaffolder-backend'; --import Docker from 'dockerode'; - import { Router } from 'express'; - import type { PluginEnvironment } from '../types'; - - export default async function createPlugin({ - reader, - discovery, - }: PluginEnvironment): Promise { -- const dockerClient = new Docker(); -- const containerRunner = new DockerContainerRunner({ dockerClient }); -- - const catalogClient = new CatalogClient({ discoveryApi: discovery }); -- - return await createRouter({ -- containerRunner, - logger, - config, - // ... -``` - -If you want to retain cookiecutter support, please use the `@backstage/plugin-scaffolder-backend-module-cookiecutter` package explicitly (see [its README](https://github.com/backstage/backstage/tree/master/plugins/scaffolder-backend-module-cookiecutter) for installation instructions). diff --git a/.changeset/brown-points-impress.md b/.changeset/brown-points-impress.md deleted file mode 100644 index 74d5e1019d..0000000000 --- a/.changeset/brown-points-impress.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@backstage/plugin-catalog': minor ---- - -**BREAKING**: Removed the `AboutCard` component which has been replaced by `EntityAboutCard`. diff --git a/.changeset/chilly-comics-jam.md b/.changeset/chilly-comics-jam.md deleted file mode 100644 index 92d7f9014e..0000000000 --- a/.changeset/chilly-comics-jam.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@backstage/plugin-catalog-react': minor ---- - -**BREAKING**: Removed `reduceCatalogFilters` and `reduceEntityFilters` due to low external utility value. diff --git a/.changeset/clever-garlics-rescue.md b/.changeset/clever-garlics-rescue.md deleted file mode 100644 index dcfa258575..0000000000 --- a/.changeset/clever-garlics-rescue.md +++ /dev/null @@ -1,69 +0,0 @@ ---- -'@backstage/plugin-catalog-backend': minor ---- - -**BREAKING**: Removed `GithubDiscoveryProcessor`, `GithubMultiOrgReaderProcessor`, `GitHubOrgEntityProvider`, `GithubOrgReaderProcessor`, and `GithubMultiOrgConfig` which now instead should be imported from `@backstage/plugin-catalog-backend-module-github`. NOTE THAT the `GithubDiscoveryProcessor` and `GithubOrgReaderProcessor` were part of the default set of processors in the catalog backend, and if you are a user of discovery or location based org ingestion on GitLab, you MUST now add them manually in the catalog initialization code of your backend. - -```diff -// In packages/backend/src/plugins/catalog.ts -+import { -+ GithubDiscoveryProcessor, -+ GithubOrgReaderProcessor, -+} from '@backstage/plugin-catalog-backend-module-github'; -+import { -+ ScmIntegrations, -+ DefaultGithubCredentialsProvider -+} from '@backstage/integration'; - - export default async function createPlugin( - env: PluginEnvironment, - ): Promise { - const builder = await CatalogBuilder.create(env); -+ const integrations = ScmIntegrations.fromConfig(config); -+ const githubCredentialsProvider = -+ DefaultGithubCredentialsProvider.fromIntegrations(integrations); -+ builder.addProcessor( -+ GithubDiscoveryProcessor.fromConfig(config, { -+ logger, -+ githubCredentialsProvider, -+ }), -+ GithubOrgReaderProcessor.fromConfig(config, { -+ logger, -+ githubCredentialsProvider, -+ }), -+ ); -``` - -**BREAKING**: Removed `GitLabDiscoveryProcessor`, which now instead should be imported from `@backstage/plugin-catalog-backend-module-gitlab`. NOTE THAT this processor was part of the default set of processors in the catalog backend, and if you are a user of discovery on GitLab, you MUST now add it manually in the catalog initialization code of your backend. - -```diff -// In packages/backend/src/plugins/catalog.ts -+import { GitLabDiscoveryProcessor } from '@backstage/plugin-catalog-backend-module-gitlab'; - - export default async function createPlugin( - env: PluginEnvironment, - ): Promise { - const builder = await CatalogBuilder.create(env); -+ builder.addProcessor( -+ GitLabDiscoveryProcessor.fromConfig(env.config, { logger: env.logger }) -+ ); -``` - -**BREAKING**: Removed `BitbucketDiscoveryProcessor`, which now instead should be imported from `@backstage/plugin-catalog-backend-module-bitbucket`. NOTE THAT this processor was part of the default set of processors in the catalog backend, and if you are a user of discovery on Bitbucket, you MUST now add it manually in the catalog initialization code of your backend. - -```diff -// In packages/backend/src/plugins/catalog.ts -+import { BitbucketDiscoveryProcessor } from '@backstage/plugin-catalog-backend-module-bitbucket'; - - export default async function createPlugin( - env: PluginEnvironment, - ): Promise { - const builder = await CatalogBuilder.create(env); -+ builder.addProcessor( -+ BitbucketDiscoveryProcessor.fromConfig(env.config, { logger: env.logger }) -+ ); -``` - -**BREAKING**: Removed `AzureDevOpsDiscoveryProcessor`, which now instead should be imported from `@backstage/plugin-catalog-backend-module-azure`. This processor was not part of the set of default processors. If you were using it, you should already have a reference to it in your backend code and only need to update the import. - -**BREAKING**: Removed the formerly deprecated type `BitbucketRepositoryParser`, which is instead reintroduced in `@backstage/plugin-catalog-backend-module-bitbucket`. diff --git a/.changeset/curvy-forks-cross.md b/.changeset/curvy-forks-cross.md deleted file mode 100644 index feced6ed0e..0000000000 --- a/.changeset/curvy-forks-cross.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -'@backstage/create-app': patch ---- - -Removed the `cookiecutter-golang` template from the default `create-app` install as we no longer provide `cookiecutter` action out of the box. - -You can remove the template by removing the following lines from your `app-config.yaml` under `catalog.locations`: - -```diff -- - type: url -- target: https://github.com/spotify/cookiecutter-golang/blob/master/template.yaml -- rules: -- - allow: [Template] -``` diff --git a/.changeset/dependabot-36562b5.md b/.changeset/dependabot-36562b5.md deleted file mode 100644 index 5e3deda70d..0000000000 --- a/.changeset/dependabot-36562b5.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@backstage/cli': patch ---- - -build(deps-dev): bump `@types/npm-packlist` from 1.1.2 to 3.0.0 diff --git a/.changeset/dependabot-4014eb7.md b/.changeset/dependabot-4014eb7.md deleted file mode 100644 index 7b4d64523a..0000000000 --- a/.changeset/dependabot-4014eb7.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@backstage/cli': patch ---- - -chore(deps): bump `minimatch` from 5.0.0 to 5.0.1 diff --git a/.changeset/dependabot-ae5fb9c.md b/.changeset/dependabot-ae5fb9c.md deleted file mode 100644 index 5648da2be7..0000000000 --- a/.changeset/dependabot-ae5fb9c.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@backstage/core-components': patch -'@backstage/plugin-gcp-projects': patch ---- - -chore(deps): bump `@react-hookz/web` from 12.3.0 to 13.0.0 diff --git a/.changeset/dependabot-d2397d3.md b/.changeset/dependabot-d2397d3.md deleted file mode 100644 index 5f8bfbf59d..0000000000 --- a/.changeset/dependabot-d2397d3.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -'@backstage/backend-common': patch -'@backstage/cli': patch -'@backstage/config-loader': patch -'@backstage/create-app': patch -'@techdocs/cli': patch -'@backstage/plugin-app-backend': patch -'@backstage/plugin-auth-backend': patch -'@backstage/plugin-catalog-backend': patch -'@backstage/plugin-kubernetes-backend': patch -'@backstage/plugin-rollbar-backend': patch -'@backstage/plugin-scaffolder-backend-module-cookiecutter': patch -'@backstage/plugin-scaffolder-backend-module-rails': patch -'@backstage/plugin-scaffolder-backend': patch -'@backstage/plugin-techdocs-backend': patch -'@backstage/plugin-techdocs-node': patch ---- - -build(deps): bump `fs-extra` from 9.1.0 to 10.0.1 diff --git a/.changeset/fair-ants-look.md b/.changeset/fair-ants-look.md deleted file mode 100644 index 4e70a042f8..0000000000 --- a/.changeset/fair-ants-look.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@backstage/plugin-catalog-backend': minor ---- - -**BREAKING**: Removed `AwsS3DiscoveryProcessor`, which now instead should be imported from `@backstage/plugin-catalog-backend-module-aws`. diff --git a/.changeset/fair-roses-hide.md b/.changeset/fair-roses-hide.md deleted file mode 100644 index 8f2c7a6660..0000000000 --- a/.changeset/fair-roses-hide.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -'@backstage/plugin-scaffolder': minor -'@backstage/plugin-scaffolder-backend': minor -'@backstage/plugin-scaffolder-common': minor ---- - -The following deprecations are now breaking and have been removed: - -- **BREAKING**: Support for `backstage.io/v1beta2` Software Templates has been removed. Please migrate your legacy templates to the new `scaffolder.backstage.io/v1beta3` `apiVersion` by following the [migration guide](https://backstage.io/docs/features/software-templates/migrating-from-v1beta2-to-v1beta3) - -- **BREAKING**: Removed the deprecated `TemplateMetadata`. Please use `TemplateInfo` instead. - -- **BREAKING**: Removed the deprecated `context.baseUrl`. It's now available on `context.templateInfo.baseUrl`. - -- **BREAKING**: Removed the deprecated `DispatchResult`, use `TaskBrokerDispatchResult` instead. - -- **BREAKING**: Removed the deprecated `runCommand`, use `executeShellCommond` instead. - -- **BREAKING**: Removed the deprecated `Status` in favour of `TaskStatus` instead. - -- **BREAKING**: Removed the deprecated `TaskState` in favour of `CurrentClaimedTask` instead. diff --git a/.changeset/fair-turtles-fetch.md b/.changeset/fair-turtles-fetch.md deleted file mode 100644 index ca61489f05..0000000000 --- a/.changeset/fair-turtles-fetch.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@backstage/plugin-catalog-backend': patch ---- - -support Bitbucket Cloud's code search to discover catalog files (multiple per repo, Location entities for existing files only) diff --git a/.changeset/fifty-brooms-whisper.md b/.changeset/fifty-brooms-whisper.md deleted file mode 100644 index b4c45555a3..0000000000 --- a/.changeset/fifty-brooms-whisper.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@backstage/plugin-catalog': minor ---- - -**BREAKING**: Removed `CatalogResultListItemProps` and `CatalogResultListItem`, replaced by `CatalogSearchResultListItemProps` and `CatalogSearchResultListItem`. diff --git a/.changeset/fuzzy-roses-swim.md b/.changeset/fuzzy-roses-swim.md deleted file mode 100644 index 234d79c96a..0000000000 --- a/.changeset/fuzzy-roses-swim.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@backstage/catalog-model': patch ---- - -Updated `parseEntityRef` to allow `:` and `/` in the entity name. For example, parsing `'component:default/foo:bar'` will result in the name `'foo:bar'`. - -Note that only parsing `'foo:bar'` itself will result in the name `'bar'` and the entity kind `'foo'`, meaning this is a particularly nasty trap for user defined entity references. For this reason it is strongly discouraged to use names that contain these characters, and the catalog model does not allow it by default. However, this change now makes is possible to use these names if the default catalog validation is replaced, and in particular a high level of automation of the catalog population can limit issues that it might otherwise cause. diff --git a/.changeset/gentle-dancers-greet.md b/.changeset/gentle-dancers-greet.md deleted file mode 100644 index bf160a7099..0000000000 --- a/.changeset/gentle-dancers-greet.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@backstage/cli': patch ---- - -Added a new ESLint configuration setup for packages, which utilizes package roles to generate the correct configuration. The new configuration is available at `@backstage/cli/config/eslint-factory`. - -Introduced a new `backstage-cli migrate package-lint-configs` command, which migrates old lint configurations to use `@backstage/cli/config/eslint-factory`. diff --git a/.changeset/giant-bottles-eat.md b/.changeset/giant-bottles-eat.md deleted file mode 100644 index d37343bfe4..0000000000 --- a/.changeset/giant-bottles-eat.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@backstage/plugin-airbrake': patch ---- - -Fix a bug where API calls were being made and errors were being added to the snack bar when no project ID was present. This is a common use case for components that haven't added the Airbrake plugin annotation to their `catalog-info.yaml`. diff --git a/.changeset/gorgeous-trains-clap.md b/.changeset/gorgeous-trains-clap.md deleted file mode 100644 index d0abf6148a..0000000000 --- a/.changeset/gorgeous-trains-clap.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@backstage/plugin-catalog': patch ---- - -Added an `allowedKinds` option to `CatalogKindHeader` to limit entity kinds available in the dropdown. diff --git a/.changeset/great-hounds-allow.md b/.changeset/great-hounds-allow.md deleted file mode 100644 index 54405fcf94..0000000000 --- a/.changeset/great-hounds-allow.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@backstage/plugin-catalog': patch ---- - -Updated `CatalogKindHeader` to respond to external changes to query parameters in the URL, such as two sidebar links that apply different catalog filters. diff --git a/.changeset/kind-experts-lay.md b/.changeset/kind-experts-lay.md deleted file mode 100644 index 00524bfe3a..0000000000 --- a/.changeset/kind-experts-lay.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@backstage/plugin-catalog-react': minor ---- - -**BREAKING**: Removed the deprecated `loadCatalogOwnerRefs` function. Usages of this function can be directly replaced with `ownershipEntityRefs` from `identityApi.getBackstageIdentity()`. - -This also affects the `useEntityOwnership` hook in that it no longer uses `loadCatalogOwnerRefs`, meaning it will no longer load in additional relations and instead only rely on the `ownershipEntityRefs` from the `IdentityApi`. diff --git a/.changeset/late-pianos-attend.md b/.changeset/late-pianos-attend.md deleted file mode 100644 index e1e0aac392..0000000000 --- a/.changeset/late-pianos-attend.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@backstage/plugin-catalog-react': minor ---- - -**BREAKING**: Removed `useEntityFromUrl`. diff --git a/.changeset/lazy-points-explain.md b/.changeset/lazy-points-explain.md deleted file mode 100644 index ced31c2195..0000000000 --- a/.changeset/lazy-points-explain.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@backstage/plugin-scaffolder': minor ---- - -**BREAKING**: Removed `ScaffolderTaskOutput.entityRef` and `ScaffolderTaskOutput.remoteUrl`, which both have been deprecated for over a year. Please use the `links` output instead. diff --git a/.changeset/many-coins-drive.md b/.changeset/many-coins-drive.md deleted file mode 100644 index b28a0b0519..0000000000 --- a/.changeset/many-coins-drive.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -'@backstage/plugin-scaffolder-backend': minor ---- - -**BREAKING**: - -- Removed the `createFetchCookiecutterAction` export, please use the `@backstage/plugin-scaffolder-backend-module-cookiecutter` package explicitly (see [its README](https://github.com/backstage/backstage/tree/master/plugins/scaffolder-backend-module-cookiecutter) for installation instructions). -- Removed the `containerRunner` argument from the types `RouterOptions` (as used by `createRouter`) and `CreateBuiltInActionsOptions` (as used by `createBuiltinActions`). diff --git a/.changeset/many-swans-sort.md b/.changeset/many-swans-sort.md deleted file mode 100644 index fec613cf00..0000000000 --- a/.changeset/many-swans-sort.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -'@backstage/plugin-catalog-backend': patch ---- - -**BREAKING**: - -- Removed the previously deprecated `runPeriodically` export. Please use the `@backstage/backend-tasks` package instead, or copy [the actual implementation](https://github.com/backstage/backstage/blob/02875d4d56708c60f86f6b0a5b3da82e24988354/plugins/catalog-backend/src/util/runPeriodically.ts#L29) into your own code if you explicitly do not want coordination of task runs across your worker nodes. -- Removed the previously deprecated `CatalogProcessorLocationResult.optional` field. Please set the corresponding `LocationSpec.presence` field to `'optional'` instead. -- Related to the previous point, the `processingResult.location` function no longer has a second boolean `optional` argument. Please set the corresponding `LocationSpec.presence` field to `'optional'` instead. -- Removed the previously deprecated `StaticLocationProcessor`. It has not been in use for some time; its functionality is covered by `ConfigLocationEntityProvider` instead. diff --git a/.changeset/many-tools-buy.md b/.changeset/many-tools-buy.md deleted file mode 100644 index c2a617edfd..0000000000 --- a/.changeset/many-tools-buy.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@backstage/backend-tasks': patch ---- - -Relaxed the task ID requirement to now support any non-empty string diff --git a/.changeset/mean-panthers-wonder.md b/.changeset/mean-panthers-wonder.md deleted file mode 100644 index 1659c855f8..0000000000 --- a/.changeset/mean-panthers-wonder.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@backstage/plugin-scaffolder': patch ---- - -Render markdown for description in software templates diff --git a/.changeset/metal-glasses-join.md b/.changeset/metal-glasses-join.md deleted file mode 100644 index aa7c6ecb9e..0000000000 --- a/.changeset/metal-glasses-join.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@backstage/backend-common': patch ---- - -add support for ETag at `BitbucketUrlReader.readUrl` diff --git a/.changeset/modern-windows-brush.md b/.changeset/modern-windows-brush.md deleted file mode 100644 index 49c45eb41e..0000000000 --- a/.changeset/modern-windows-brush.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -'@backstage/catalog-model': minor ---- - -**BREAKING**: - -- Removed the previously deprecated type `EntityRef`. Please use `string` for stringified entity refs, `CompoundEntityRef` for compound kind-namespace-name triplet objects, or custom objects like `{ kind?: string; namespace?: string; name: string }` and similar if you have need for partial types. -- Removed the previously deprecated type `LocationSpec` type, which has been moved to `@backstage/plugin-catalog-backend`. -- Removed the previously deprecated function `parseEntityName`. Please use `parseEntityRef` instead. diff --git a/.changeset/nasty-seahorses-bathe.md b/.changeset/nasty-seahorses-bathe.md deleted file mode 100644 index 884313e422..0000000000 --- a/.changeset/nasty-seahorses-bathe.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@backstage/plugin-catalog': patch -'@backstage/plugin-rollbar': patch ---- - -Removed usage of removed hook. diff --git a/.changeset/neat-tools-design.md b/.changeset/neat-tools-design.md deleted file mode 100644 index 92a52f0751..0000000000 --- a/.changeset/neat-tools-design.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@backstage/backend-test-utils': patch ---- - -Add `setupRequestMockHandlers` which sets up a good `msw` server foundation, copied from `@backstage/test-utils` which is a frontend-only package and should not be used from backends. diff --git a/.changeset/new-books-protect.md b/.changeset/new-books-protect.md deleted file mode 100644 index 568710ccd0..0000000000 --- a/.changeset/new-books-protect.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -'@backstage/plugin-catalog-backend-module-ldap': minor ---- - -**BREAKING**: Added a `schedule` field to `LdapOrgEntityProvider.fromConfig`, which is required. If you want to retain the old behavior of scheduling the provider manually, you can set it to the string value `'manual'`. But you may want to leverage the ability to instead pass in the recurring task schedule information directly. This will allow you to simplify your backend setup code to not need an intermediate variable and separate scheduling code at the bottom. - -All things said, a typical setup might now look as follows: - -```diff - // packages/backend/src/plugins/catalog.ts -+import { Duration } from 'luxon'; -+import { LdapOrgEntityProvider } from '@backstage/plugin-catalog-backend-module-ldap'; - export default async function createPlugin( - env: PluginEnvironment, - ): Promise { - const builder = await CatalogBuilder.create(env); -+ // The target parameter below needs to match the ldap.providers.target -+ // value specified in your app-config. -+ builder.addEntityProvider( -+ LdapOrgEntityProvider.fromConfig(env.config, { -+ id: 'our-ldap-master', -+ target: 'ldaps://ds.example.net', -+ logger: env.logger, -+ schedule: env.scheduler.createScheduledTaskRunner({ -+ frequency: Duration.fromObject({ minutes: 60 }), -+ timeout: Duration.fromObject({ minutes: 15 }), -+ }), -+ }), -+ ); -``` diff --git a/.changeset/nice-windows-push.md b/.changeset/nice-windows-push.md deleted file mode 100644 index 2d04141cf1..0000000000 --- a/.changeset/nice-windows-push.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@backstage/plugin-catalog-react': minor ---- - -**BREAKING**: Removed `useEntityCompoundName`, use `useRouteRefParams(entityRouteRef)` instead. diff --git a/.changeset/nine-frogs-yell.md b/.changeset/nine-frogs-yell.md deleted file mode 100644 index 7513bea4a6..0000000000 --- a/.changeset/nine-frogs-yell.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -'@backstage/plugin-scaffolder': minor ---- - -Removed the following previously deprecated exports: - -- **BREAKING**: Removed the deprecated `TemplateList` component and the `TemplateListProps` type. Please use the `TemplateCard` to create your own list component instead to render these lists. - -- **BREAKING**: Removed the deprecated `setSecret` method, please use `setSecrets` instead. - -- **BREAKING**: Removed the deprecated `TemplateCardComponent` and `TaskPageComponent` props from the `ScaffolderPage` component. These are now provided using the `components` prop with the shape `{{ TemplateCardComponent: () => JSX.Element, TaskPageComponent: () => JSX.Element }}` - -- **BREAKING**: Removed `JobStatus` as this type was actually a legacy type used in `v1alpha` templates and the workflow engine and should no longer be used or depended on. diff --git a/.changeset/ninety-cheetahs-march.md b/.changeset/ninety-cheetahs-march.md deleted file mode 100644 index db24c6a820..0000000000 --- a/.changeset/ninety-cheetahs-march.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@backstage/plugin-scaffolder': patch ---- - -Fixing the border color for the `FavoriteEntity` star button on the `TemplateCard` diff --git a/.changeset/olive-emus-speak.md b/.changeset/olive-emus-speak.md deleted file mode 100644 index 3cb6a775cf..0000000000 --- a/.changeset/olive-emus-speak.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -'@backstage/plugin-auth-backend': patch -'@backstage/plugin-badges-backend': patch -'@backstage/plugin-catalog-graph': patch -'@backstage/plugin-catalog-import': patch -'@backstage/plugin-explore': patch -'@backstage/plugin-fossa': patch ---- - -Remove usages of now-removed `CatalogApi.getEntityByName` diff --git a/.changeset/olive-roses-sleep.md b/.changeset/olive-roses-sleep.md deleted file mode 100644 index b402a5b2aa..0000000000 --- a/.changeset/olive-roses-sleep.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@backstage/create-app': patch ---- - -Updated the template to write the Backstage release version to `backstage.json`, rather than the version of `@backstage/create-app`. This change is applied automatically when running `backstage-cli versions:bump` in the latest version of the Backstage CLI. diff --git a/.changeset/perfect-moose-appear.md b/.changeset/perfect-moose-appear.md deleted file mode 100644 index 9c5c356e4a..0000000000 --- a/.changeset/perfect-moose-appear.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@backstage/backend-tasks': patch ---- - -Add support for cron syntax to configure task frequency - `TaskScheduleDefinition.frequency` can now be both a `Duration` and an object on the form `{ cron: string }`, where the latter is expected to be on standard crontab format (e.g. `'0 */2 * * *'`). diff --git a/.changeset/pink-chicken-smile.md b/.changeset/pink-chicken-smile.md deleted file mode 100644 index 71fd8aad4e..0000000000 --- a/.changeset/pink-chicken-smile.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@backstage/plugin-catalog-backend-module-github': minor ---- - -Added package, moving out GitHub specific functionality from the catalog-backend diff --git a/.changeset/pink-poets-grin.md b/.changeset/pink-poets-grin.md deleted file mode 100644 index d88431e9d5..0000000000 --- a/.changeset/pink-poets-grin.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -'@backstage/backend-common': patch -'@backstage/plugin-auth-backend': patch -'@backstage/plugin-catalog-backend': patch -'@backstage/plugin-catalog-backend-module-msgraph': patch -'@backstage/plugin-rollbar-backend': patch -'@backstage/plugin-scaffolder-backend': patch -'@backstage/plugin-techdocs-backend': patch ---- - -Use `setupRequestMockHandlers` from `@backstage/backend-test-utils` diff --git a/.changeset/polite-apples-relax.md b/.changeset/polite-apples-relax.md deleted file mode 100644 index f6d10aaabf..0000000000 --- a/.changeset/polite-apples-relax.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@backstage/plugin-catalog-backend': patch ---- - -Fixed display of the location in the log message that is printed when entity envelope validation fails. diff --git a/.changeset/popular-boxes-develop.md b/.changeset/popular-boxes-develop.md deleted file mode 100644 index 65aae2c7df..0000000000 --- a/.changeset/popular-boxes-develop.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@backstage/cli': patch ---- - -Applied the fix from version `0.15.1` of this package, which was part of the `v0.70.1` release of Backstage. diff --git a/.changeset/popular-rats-return.md b/.changeset/popular-rats-return.md deleted file mode 100644 index 3a91e6d707..0000000000 --- a/.changeset/popular-rats-return.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -'@backstage/backend-common': patch -'@backstage/catalog-model': patch -'@backstage/plugin-catalog-backend': patch -'@backstage/plugin-catalog-common': patch -'@backstage/plugin-catalog-react': patch ---- - -Applied the fix for the `/alpha` entry point resolution that was part of the `v0.70.1` release of Backstage. diff --git a/.changeset/pre.json b/.changeset/pre.json deleted file mode 100644 index 826aa3fa5f..0000000000 --- a/.changeset/pre.json +++ /dev/null @@ -1,215 +0,0 @@ -{ - "mode": "exit", - "tag": "next", - "initialVersions": { - "example-app": "0.2.67", - "@backstage/app-defaults": "0.2.0", - "example-backend": "0.2.67", - "@backstage/backend-common": "0.12.0", - "@backstage/backend-tasks": "0.1.10", - "@backstage/backend-test-utils": "0.1.20", - "@backstage/catalog-client": "0.8.0", - "@backstage/catalog-model": "0.12.0", - "@backstage/cli": "0.15.0", - "@backstage/cli-common": "0.1.8", - "@backstage/codemods": "0.1.34", - "@backstage/config": "0.1.15", - "@backstage/config-loader": "0.9.6", - "@backstage/core-app-api": "0.6.0", - "@backstage/core-components": "0.9.0", - "@backstage/core-plugin-api": "0.8.0", - "@backstage/create-app": "0.4.22", - "@backstage/dev-utils": "0.2.24", - "e2e-test": "0.2.0", - "@backstage/errors": "0.2.2", - "@backstage/integration": "0.8.0", - "@backstage/integration-react": "0.1.24", - "@backstage/release-manifests": "0.0.2", - "@backstage/search-common": "0.3.0", - "@techdocs/cli": "0.8.16", - "techdocs-cli-embedded-app": "0.2.66", - "@backstage/techdocs-common": "0.11.11", - "@backstage/test-utils": "0.3.0", - "@backstage/theme": "0.2.15", - "@backstage/types": "0.1.3", - "@backstage/version-bridge": "0.1.2", - "@backstage/plugin-airbrake": "0.3.1", - "@backstage/plugin-airbrake-backend": "0.2.1", - "@backstage/plugin-allure": "0.1.17", - "@backstage/plugin-analytics-module-ga": "0.1.12", - "@backstage/plugin-apache-airflow": "0.1.9", - "@backstage/plugin-api-docs": "0.8.1", - "@backstage/plugin-app-backend": "0.3.28", - "@backstage/plugin-auth-backend": "0.12.0", - "@backstage/plugin-auth-node": "0.1.4", - "@backstage/plugin-azure-devops": "0.1.17", - "@backstage/plugin-azure-devops-backend": "0.3.7", - "@backstage/plugin-azure-devops-common": "0.2.2", - "@backstage/plugin-badges": "0.2.25", - "@backstage/plugin-badges-backend": "0.1.22", - "@backstage/plugin-bazaar": "0.1.16", - "@backstage/plugin-bazaar-backend": "0.1.12", - "@backstage/plugin-bitrise": "0.1.28", - "@backstage/plugin-catalog": "0.9.1", - "@backstage/plugin-catalog-backend": "0.23.0", - "@backstage/plugin-catalog-backend-module-aws": "0.1.1", - "@backstage/plugin-catalog-backend-module-azure": "0.0.0", - "@backstage/plugin-catalog-backend-module-gitlab": "0.0.0", - "@backstage/plugin-catalog-backend-module-ldap": "0.3.15", - "@backstage/plugin-catalog-backend-module-msgraph": "0.2.18", - "@backstage/plugin-catalog-common": "0.2.0", - "@backstage/plugin-catalog-graph": "0.2.13", - "@backstage/plugin-catalog-graphql": "0.3.5", - "@backstage/plugin-catalog-import": "0.8.4", - "@backstage/plugin-catalog-react": "0.8.0", - "@backstage/plugin-cicd-statistics": "0.1.3", - "@backstage/plugin-circleci": "0.3.1", - "@backstage/plugin-cloudbuild": "0.3.1", - "@backstage/plugin-code-climate": "0.1.1", - "@backstage/plugin-code-coverage": "0.1.28", - "@backstage/plugin-code-coverage-backend": "0.1.26", - "@backstage/plugin-config-schema": "0.1.24", - "@backstage/plugin-cost-insights": "0.11.23", - "@backstage/plugin-explore": "0.3.32", - "@backstage/plugin-explore-react": "0.0.14", - "@backstage/plugin-firehydrant": "0.1.18", - "@backstage/plugin-fossa": "0.2.33", - "@backstage/plugin-gcp-projects": "0.3.20", - "@backstage/plugin-git-release-manager": "0.3.14", - "@backstage/plugin-github-actions": "0.5.1", - "@backstage/plugin-github-deployments": "0.1.32", - "@backstage/plugin-gitops-profiles": "0.3.19", - "@backstage/plugin-gocd": "0.1.7", - "@backstage/plugin-graphiql": "0.2.33", - "@backstage/plugin-graphql-backend": "0.1.18", - "@backstage/plugin-home": "0.4.17", - "@backstage/plugin-ilert": "0.1.27", - "@backstage/plugin-jenkins": "0.7.0", - "@backstage/plugin-jenkins-backend": "0.1.17", - "@backstage/plugin-jenkins-common": "0.1.0", - "@backstage/plugin-kafka": "0.3.1", - "@backstage/plugin-kafka-backend": "0.2.21", - "@backstage/plugin-kubernetes": "0.6.1", - "@backstage/plugin-kubernetes-backend": "0.4.11", - "@backstage/plugin-kubernetes-common": "0.2.6", - "@backstage/plugin-lighthouse": "0.3.1", - "@backstage/plugin-newrelic": "0.3.19", - "@backstage/plugin-newrelic-dashboard": "0.1.9", - "@backstage/plugin-org": "0.5.1", - "@backstage/plugin-pagerduty": "0.3.28", - "@backstage/plugin-periskop": "0.0.0", - "@backstage/plugin-periskop-backend": "0.0.0", - "@backstage/plugin-permission-backend": "0.5.3", - "@backstage/plugin-permission-common": "0.5.2", - "@backstage/plugin-permission-node": "0.5.3", - "@backstage/plugin-permission-react": "0.3.3", - "@backstage/plugin-proxy-backend": "0.2.22", - "@backstage/plugin-rollbar": "0.4.1", - "@backstage/plugin-rollbar-backend": "0.1.25", - "@backstage/plugin-scaffolder": "0.14.0", - "@backstage/plugin-scaffolder-backend": "0.17.3", - "@backstage/plugin-scaffolder-backend-module-cookiecutter": "0.2.3", - "@backstage/plugin-scaffolder-backend-module-rails": "0.3.3", - "@backstage/plugin-scaffolder-backend-module-yeoman": "0.2.1", - "@backstage/plugin-scaffolder-common": "0.2.3", - "@backstage/plugin-search": "0.7.2", - "@backstage/plugin-search-backend": "0.4.6", - "@backstage/plugin-search-backend-module-elasticsearch": "0.1.0", - "@backstage/plugin-search-backend-module-pg": "0.3.0", - "@backstage/plugin-search-backend-node": "0.5.0", - "@backstage/plugin-search-common": "0.3.0", - "@backstage/plugin-sentry": "0.3.39", - "@backstage/plugin-shortcuts": "0.2.2", - "@backstage/plugin-sonarqube": "0.3.1", - "@backstage/plugin-splunk-on-call": "0.3.25", - "@backstage/plugin-tech-insights": "0.1.11", - "@backstage/plugin-tech-insights-backend": "0.2.8", - "@backstage/plugin-tech-insights-backend-module-jsonfc": "0.1.12", - "@backstage/plugin-tech-insights-common": "0.2.3", - "@backstage/plugin-tech-insights-node": "0.2.6", - "@backstage/plugin-tech-radar": "0.5.8", - "@backstage/plugin-techdocs": "0.15.0", - "@backstage/plugin-techdocs-backend": "0.14.1", - "@backstage/plugin-techdocs-node": "0.11.11", - "@backstage/plugin-todo": "0.2.3", - "@backstage/plugin-todo-backend": "0.1.25", - "@backstage/plugin-user-settings": "0.4.0", - "@backstage/plugin-xcmetrics": "0.2.21" - }, - "changesets": [ - "beige-lies-pay", - "big-meals-fly", - "big-months-deliver", - "brave-brooms-tie", - "brown-points-impress", - "chilly-comics-jam", - "clever-garlics-rescue", - "curvy-forks-cross", - "dependabot-4014eb7", - "dependabot-ae5fb9c", - "dependabot-d2397d3", - "fair-ants-look", - "fair-roses-hide", - "fair-turtles-fetch", - "fifty-brooms-whisper", - "fuzzy-roses-swim", - "gentle-dancers-greet", - "great-hounds-allow", - "kind-experts-lay", - "late-pianos-attend", - "lazy-points-explain", - "many-coins-drive", - "many-swans-sort", - "many-tools-buy", - "mean-panthers-wonder", - "metal-glasses-join", - "modern-windows-brush", - "nasty-seahorses-bathe", - "neat-tools-design", - "new-books-protect", - "nice-windows-push", - "nine-frogs-yell", - "olive-emus-speak", - "olive-roses-sleep", - "pink-poets-grin", - "polite-apples-relax", - "popular-boxes-develop", - "popular-rats-return", - "pretty-vans-unite", - "proud-readers-nail", - "quiet-pens-wait", - "quiet-seals-fix", - "red-kiwis-divide", - "rich-ravens-clap", - "search-byta-namnet", - "search-common-people", - "search-talking-in-code", - "search-wellington-paranormal", - "shaggy-apricots-hug", - "shiny-eels-mix", - "silent-cats-kneel", - "slow-vans-rhyme", - "something-else-here", - "spotty-seals-press", - "spotty-swans-run", - "strong-beds-attack", - "strong-pandas-roll", - "swift-mails-sing", - "tasty-carpets-fold", - "techdocs-byta-namnet", - "techdocs-empty-office", - "techdocs-node-one", - "ten-queens-dance", - "ten-rats-join", - "tender-berries-lie", - "thick-games-dress", - "thick-gifts-cheat", - "twenty-birds-think", - "twenty-fireants-turn", - "twenty-planes-dress", - "two-mails-boil", - "warm-bananas-behave", - "weak-schools-wash", - "young-feet-flow" - ] -} diff --git a/.changeset/pretty-vans-unite.md b/.changeset/pretty-vans-unite.md deleted file mode 100644 index 318e86d069..0000000000 --- a/.changeset/pretty-vans-unite.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -'@backstage/cli': patch ---- - -Package roles are now marked as stable and migration is encouraged. Please check out the [migration guide](https://backstage.io/docs/tutorials/package-role-migration). - -The new `package`, `repo`, and `migrate` command categories are now marked as stable. - -Marked all commands that are being replaced by the new `package` and `repo` commands as deprecated. - -The package templates used by the `create` command have all been updated to use package roles. diff --git a/.changeset/proud-readers-nail.md b/.changeset/proud-readers-nail.md deleted file mode 100644 index 9b5a6b980c..0000000000 --- a/.changeset/proud-readers-nail.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@backstage/plugin-airbrake-backend': patch -'@backstage/plugin-code-climate': patch ---- - -Added `backstage.role` to `package.json` diff --git a/.changeset/quiet-pens-wait.md b/.changeset/quiet-pens-wait.md deleted file mode 100644 index b7510eab3f..0000000000 --- a/.changeset/quiet-pens-wait.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@backstage/plugin-catalog-react': minor ---- - -**BREAKING**: Removed `useEntityListProvider` use `useEntityList` instead. diff --git a/.changeset/quiet-seals-fix.md b/.changeset/quiet-seals-fix.md deleted file mode 100644 index d7c98958be..0000000000 --- a/.changeset/quiet-seals-fix.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@backstage/plugin-catalog-backend-module-ldap': patch ---- - -Ignore search referrals instead of throwing an error. diff --git a/.changeset/real-adults-fold.md b/.changeset/real-adults-fold.md deleted file mode 100644 index ba09ead60a..0000000000 --- a/.changeset/real-adults-fold.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@backstage/plugin-kubernetes-backend': patch ---- - -refactor kubernetes fetcher diff --git a/.changeset/red-kiwis-divide.md b/.changeset/red-kiwis-divide.md deleted file mode 100644 index 0bfb247093..0000000000 --- a/.changeset/red-kiwis-divide.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@backstage/plugin-scaffolder-backend': minor ---- - -**BREAKING**: Removed the previously deprecated `OctokitProvider` class. diff --git a/.changeset/rich-ravens-clap.md b/.changeset/rich-ravens-clap.md deleted file mode 100644 index 913f87085f..0000000000 --- a/.changeset/rich-ravens-clap.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@backstage/plugin-catalog-backend-module-azure': minor ---- - -Added package, moving out azure specific functionality from the catalog-backend diff --git a/.changeset/search-byta-namnet.md b/.changeset/search-byta-namnet.md deleted file mode 100644 index c3abc81996..0000000000 --- a/.changeset/search-byta-namnet.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@backstage/plugin-search-common': patch ---- - -Renamed `@backstage/search-common` to `@backstage/plugin-search-common`. diff --git a/.changeset/search-common-people.md b/.changeset/search-common-people.md deleted file mode 100644 index 2ed34c7573..0000000000 --- a/.changeset/search-common-people.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@backstage/search-common': patch ---- - -**DEPRECATION** - -The `@backstage/search-common` package is being renamed `@backstage/plugin-search-common`. We may continue to publish changes to `@backstage/search-common` for a time, but will stop doing so in the near future. If you depend on this package, you should update your dependencies to point at the renamed package. diff --git a/.changeset/search-talking-in-code.md b/.changeset/search-talking-in-code.md deleted file mode 100644 index 46de5f8343..0000000000 --- a/.changeset/search-talking-in-code.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@backstage/create-app': patch ---- - -Postgres-based search is now installed when PG is chosen as the desired database for Backstage. - -There is no need to make this change in an existing Backstage backend. See [supported search engines](https://backstage.io/docs/features/search/search-engines) for details about production-ready search engines. diff --git a/.changeset/search-wellington-paranormal.md b/.changeset/search-wellington-paranormal.md deleted file mode 100644 index 7cd1ead2e8..0000000000 --- a/.changeset/search-wellington-paranormal.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -'@backstage/plugin-catalog-backend': patch -'@backstage/plugin-catalog': patch -'@backstage/plugin-search-backend-module-elasticsearch': patch -'@backstage/plugin-search-backend-module-pg': patch -'@backstage/plugin-search-backend-node': patch -'@backstage/plugin-search-backend': patch -'@backstage/plugin-search': patch -'@backstage/plugin-techdocs-backend': patch -'@backstage/plugin-techdocs-node': patch ---- - -Use `@backstage/plugin-search-common` package instead of `@backstage/search-common`. diff --git a/.changeset/shaggy-apricots-hug.md b/.changeset/shaggy-apricots-hug.md deleted file mode 100644 index 62bea4c3bd..0000000000 --- a/.changeset/shaggy-apricots-hug.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@backstage/plugin-tech-radar': patch ---- - -Tech Radar Ring names are now coloured from theme via theme.palette.text.primary (instead of a hard coded colour) diff --git a/.changeset/shiny-eels-mix.md b/.changeset/shiny-eels-mix.md deleted file mode 100644 index 2d886e9a7f..0000000000 --- a/.changeset/shiny-eels-mix.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@backstage/core-components': patch ---- - -Add names to sidebar sub menu styles for customization diff --git a/.changeset/silent-cats-kneel.md b/.changeset/silent-cats-kneel.md deleted file mode 100644 index 9bd9cce0e0..0000000000 --- a/.changeset/silent-cats-kneel.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@backstage/plugin-catalog-backend-module-gitlab': minor ---- - -Added package, moving out GitLab specific functionality from the catalog-backend diff --git a/.changeset/silent-mugs-roll.md b/.changeset/silent-mugs-roll.md deleted file mode 100644 index 5081022b05..0000000000 --- a/.changeset/silent-mugs-roll.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@backstage/plugin-catalog-backend-module-bitbucket': minor ---- - -Added package, moving out Bitbucket specific functionality from the catalog-backend diff --git a/.changeset/slow-vans-rhyme.md b/.changeset/slow-vans-rhyme.md deleted file mode 100644 index 6de924899f..0000000000 --- a/.changeset/slow-vans-rhyme.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@backstage/catalog-model': minor ---- - -**BREAKING**: The default validator for `metadata.tags` now permits the colon (`:`) character as well. diff --git a/.changeset/something-else-here.md b/.changeset/something-else-here.md deleted file mode 100644 index 46e5efcb07..0000000000 --- a/.changeset/something-else-here.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@backstage/create-app': patch -'@backstage/plugin-catalog-backend': minor ---- - -- **BREAKING**: Support for `backstage.io/v1beta2` Software Templates has been removed. Please migrate your legacy templates to the new `scaffolder.backstage.io/v1beta3` `apiVersion` by following the [migration guide](https://backstage.io/docs/features/software-templates/migrating-from-v1beta2-to-v1beta3) diff --git a/.changeset/spotty-seals-press.md b/.changeset/spotty-seals-press.md deleted file mode 100644 index a0a69b2efc..0000000000 --- a/.changeset/spotty-seals-press.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@backstage/plugin-catalog-react': minor ---- - -**BREAKING**: Removed `useOwnedEntities` and moved its usage internally to the scaffolder-backend where it's used. - -**BREAKING**: Removed `EntityTypeReturn` type which is now inlined. diff --git a/.changeset/spotty-swans-run.md b/.changeset/spotty-swans-run.md deleted file mode 100644 index 7a16343d69..0000000000 --- a/.changeset/spotty-swans-run.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@backstage/cli': patch ---- - -The backend development setup now ignores the `"browser"` and `"module"` entry points in `package.json`, and instead always uses `"main"`. diff --git a/.changeset/strong-beds-attack.md b/.changeset/strong-beds-attack.md deleted file mode 100644 index f16c709daa..0000000000 --- a/.changeset/strong-beds-attack.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@backstage/plugin-catalog-react': patch -'@backstage/plugin-org': patch ---- - -Fixed EntityOwnerPicker and OwnershipCard url filter issue with more than 21 owners diff --git a/.changeset/strong-pandas-roll.md b/.changeset/strong-pandas-roll.md deleted file mode 100644 index e58e1c44c6..0000000000 --- a/.changeset/strong-pandas-roll.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@backstage/plugin-periskop': minor -'@backstage/plugin-periskop-backend': minor ---- - -Add periskop and periskop-backend plugin, for usage with exception aggregation tool https://periskop.io/ diff --git a/.changeset/swift-mails-sing.md b/.changeset/swift-mails-sing.md deleted file mode 100644 index 3df53e0340..0000000000 --- a/.changeset/swift-mails-sing.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@backstage/plugin-techdocs': patch ---- - -The panels of `TechDocsCustomHome` now use the `useEntityOwnership` hook to resolve ownership when the `'ownedByUser'` filter predicate is used. diff --git a/.changeset/tasty-carpets-fold.md b/.changeset/tasty-carpets-fold.md deleted file mode 100644 index a1e62413bc..0000000000 --- a/.changeset/tasty-carpets-fold.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@backstage/plugin-catalog-react': minor ---- - -**BREAKING**: Removed the `useEntityKinds` hook, use `catalogApi.getEntityFacets({ facets: ['kind'] })` instead. diff --git a/.changeset/techdocs-byta-namnet.md b/.changeset/techdocs-byta-namnet.md deleted file mode 100644 index f77849513b..0000000000 --- a/.changeset/techdocs-byta-namnet.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@backstage/plugin-techdocs-node': patch ---- - -Renamed `@backstage/techdocs-common` to `@backstage/plugin-techdocs-node`. diff --git a/.changeset/techdocs-empty-office.md b/.changeset/techdocs-empty-office.md deleted file mode 100644 index 082521be35..0000000000 --- a/.changeset/techdocs-empty-office.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@backstage/techdocs-common': patch ---- - -**DEPRECATION** - -The `@backstage/techdocs-common` package is being renamed `@backstage/plugin-techdocs-node`. We may continue to publish changes to `@backstage/techdocs-common` for a time, but will stop doing so in the near future. If you depend on this package, you should update your dependencies to point at the renamed package. diff --git a/.changeset/techdocs-node-one.md b/.changeset/techdocs-node-one.md deleted file mode 100644 index 706c708c4a..0000000000 --- a/.changeset/techdocs-node-one.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@backstage/plugin-techdocs-backend': patch -'@techdocs/cli': patch ---- - -Use `@backstage/plugin-techdocs-node` package instead of `@backstage/techdocs-common`. diff --git a/.changeset/ten-queens-dance.md b/.changeset/ten-queens-dance.md deleted file mode 100644 index 947675aa46..0000000000 --- a/.changeset/ten-queens-dance.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@backstage/backend-tasks': minor ---- - -**BREAKING**: The `TaskDefinition` type has been removed, and replaced by the equal pair `TaskScheduleDefinition` and `TaskInvocationDefinition`. The interface for `PluginTaskScheduler.scheduleTask` stays effectively unchanged, so this only affects you if you use the actual types directly. - -Added the method `PluginTaskScheduler.createTaskSchedule`, which returns a `TaskSchedule` wrapper that is convenient to pass down into classes that want to control their task invocations while the caller wants to retain control of the actual schedule chosen. diff --git a/.changeset/ten-rats-join.md b/.changeset/ten-rats-join.md deleted file mode 100644 index 6aa97be581..0000000000 --- a/.changeset/ten-rats-join.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -'@backstage/catalog-model': patch ---- - -**DEPRECATION**: - -- Deprecated `CommonValidatorFunctions.isValidString`, please use `isNonEmptyString` instead which is equivalent but better named. -- Deprecated `CommonValidatorFunctions.isValidTag`, with no replacement. Its purpose was too specific and not reusable, so it will be removed. diff --git a/.changeset/tender-berries-lie.md b/.changeset/tender-berries-lie.md deleted file mode 100644 index 74a3eb4707..0000000000 --- a/.changeset/tender-berries-lie.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@backstage/cli': patch ---- - -Changed the logic for how modules are marked as external in the Rollup build of packages. Rather than only marking dependencies and build-in Node.js modules as external, all non-relative imports are now considered external. diff --git a/.changeset/thick-games-dress.md b/.changeset/thick-games-dress.md deleted file mode 100644 index 5ce2decd3f..0000000000 --- a/.changeset/thick-games-dress.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -'@backstage/backend-common': minor ---- - -**BREAKING**: - -- Removed the (since way back) deprecated `createDatabase` export, please use `createDatabaseClient` instead. -- Removed the (since way back) deprecated `SingleConnectionDatabaseManager` export, please use `DatabaseManager` instead. diff --git a/.changeset/thick-gifts-cheat.md b/.changeset/thick-gifts-cheat.md deleted file mode 100644 index 00154a8492..0000000000 --- a/.changeset/thick-gifts-cheat.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@backstage/catalog-client': minor ---- - -**BREAKING**: Removed previously deprecated `CatalogApi.getEntityByName`, please use `getEntityByRef` instead. diff --git a/.changeset/twenty-birds-think.md b/.changeset/twenty-birds-think.md deleted file mode 100644 index 5b1f9481c0..0000000000 --- a/.changeset/twenty-birds-think.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -'@backstage/create-app': patch ---- - -Updated template to use package roles. To apply this change to an existing app, check out the [migration guide](https://backstage.io/docs/tutorials/package-role-migration). - -Specifically the following scripts in the root `package.json` have also been updated: - -```diff -- "build": "lerna run build", -+ "build": "backstage-cli repo build --all", - -... - -- "lint": "lerna run lint --since origin/master --", -- "lint:all": "lerna run lint --", -+ "lint": "backstage-cli repo lint --since origin/master", -+ "lint:all": "backstage-cli repo lint", -``` diff --git a/.changeset/twenty-fireants-turn.md b/.changeset/twenty-fireants-turn.md deleted file mode 100644 index fd9dc17530..0000000000 --- a/.changeset/twenty-fireants-turn.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@backstage/plugin-scaffolder-backend': patch ---- - -Allow passing more repo configuration for `publish:github` action diff --git a/.changeset/twenty-planes-dress.md b/.changeset/twenty-planes-dress.md deleted file mode 100644 index 4d1a5dc1d1..0000000000 --- a/.changeset/twenty-planes-dress.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@backstage/plugin-catalog-backend-module-aws': patch ---- - -Added `AwsS3DiscoveryProcessor`, which was moved here from `@backstage/plugin-catalog-backend` where it previously resided. diff --git a/.changeset/two-mails-boil.md b/.changeset/two-mails-boil.md deleted file mode 100644 index 22651f1bd4..0000000000 --- a/.changeset/two-mails-boil.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@backstage/catalog-client': minor ---- - -**BREAKING**: Removed `CatalogClient.getLocationByEntity` and `CatalogClient.getOriginLocationByEntity` which had previously been deprecated. Please use `CatalogApi.getLocationByRef` instead. Note that this only affects you if you were using `CatalogClient` (the class) directly, rather than `CatalogApi` (the interface), since it has been removed from the interface in an earlier release. diff --git a/.changeset/warm-bananas-behave.md b/.changeset/warm-bananas-behave.md deleted file mode 100644 index b1b6b4c8ec..0000000000 --- a/.changeset/warm-bananas-behave.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@backstage/cli': patch ---- - -The `--since` flag of repo commands now silently falls back to using the provided `ref` directly if no merge base is available. diff --git a/.changeset/weak-schools-wash.md b/.changeset/weak-schools-wash.md deleted file mode 100644 index 86f3111d93..0000000000 --- a/.changeset/weak-schools-wash.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@backstage/plugin-catalog-react': minor ---- - -**BREAKING**: Removed the deprecated `useOwnUser` hook. Existing usage can be replaced with `identityApi.getBackstageIdentity()`, followed by a call to `catalogClient.getEntityByRef(identity.userEntityRef)`. diff --git a/.changeset/young-feet-flow.md b/.changeset/young-feet-flow.md deleted file mode 100644 index 91e55da1d8..0000000000 --- a/.changeset/young-feet-flow.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@backstage/plugin-catalog-react': patch ---- - -Internalized usage of `useOwnedEntities` hook. diff --git a/package.json b/package.json index a880bb25cc..822acf3030 100644 --- a/package.json +++ b/package.json @@ -47,7 +47,7 @@ "resolutions": { "**/@graphql-codegen/cli/**/ws": "^7.4.6" }, - "version": "0.71.0-next.0", + "version": "0.71.0", "dependencies": { "@manypkg/get-packages": "^1.1.3", "@microsoft/api-documenter": "^7.15.0", diff --git a/packages/app-defaults/CHANGELOG.md b/packages/app-defaults/CHANGELOG.md index 6231b61631..9a682b9a1b 100644 --- a/packages/app-defaults/CHANGELOG.md +++ b/packages/app-defaults/CHANGELOG.md @@ -1,5 +1,12 @@ # @backstage/app-defaults +## 0.2.1 + +### Patch Changes + +- Updated dependencies + - @backstage/core-components@0.9.1 + ## 0.2.1-next.0 ### Patch Changes diff --git a/packages/app-defaults/package.json b/packages/app-defaults/package.json index 8cab2bdf07..8ef32869f0 100644 --- a/packages/app-defaults/package.json +++ b/packages/app-defaults/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/app-defaults", "description": "Provides the default wiring of a Backstage App", - "version": "0.2.1-next.0", + "version": "0.2.1", "private": false, "publishConfig": { "access": "public", @@ -33,7 +33,7 @@ "start": "backstage-cli package start" }, "dependencies": { - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-app-api": "^0.6.0", "@backstage/core-plugin-api": "^0.8.0", "@backstage/plugin-permission-react": "^0.3.3", @@ -46,7 +46,7 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/packages/app/CHANGELOG.md b/packages/app/CHANGELOG.md index 114a7f1e2f..81696113e2 100644 --- a/packages/app/CHANGELOG.md +++ b/packages/app/CHANGELOG.md @@ -1,5 +1,55 @@ # example-app +## 0.2.68 + +### Patch Changes + +- Updated dependencies + - @backstage/cli@0.15.2 + - @backstage/plugin-catalog@0.10.0 + - @backstage/plugin-catalog-react@0.9.0 + - @backstage/core-components@0.9.1 + - @backstage/plugin-gcp-projects@0.3.21 + - @backstage/plugin-scaffolder@0.15.0 + - @backstage/catalog-model@0.13.0 + - @backstage/plugin-airbrake@0.3.2 + - @backstage/plugin-rollbar@0.4.2 + - @backstage/plugin-catalog-graph@0.2.14 + - @backstage/plugin-catalog-import@0.8.5 + - @backstage/plugin-explore@0.3.33 + - @backstage/plugin-catalog-common@0.2.2 + - @backstage/plugin-search-common@0.3.1 + - @backstage/plugin-search@0.7.3 + - @backstage/plugin-tech-radar@0.5.9 + - @backstage/plugin-org@0.5.2 + - @backstage/plugin-techdocs@0.15.1 + - @backstage/app-defaults@0.2.1 + - @backstage/integration-react@0.1.25 + - @backstage/plugin-apache-airflow@0.1.10 + - @backstage/plugin-api-docs@0.8.2 + - @backstage/plugin-azure-devops@0.1.18 + - @backstage/plugin-badges@0.2.26 + - @backstage/plugin-circleci@0.3.2 + - @backstage/plugin-cloudbuild@0.3.2 + - @backstage/plugin-code-coverage@0.1.29 + - @backstage/plugin-cost-insights@0.11.24 + - @backstage/plugin-github-actions@0.5.2 + - @backstage/plugin-gocd@0.1.8 + - @backstage/plugin-graphiql@0.2.34 + - @backstage/plugin-home@0.4.18 + - @backstage/plugin-jenkins@0.7.1 + - @backstage/plugin-kafka@0.3.2 + - @backstage/plugin-kubernetes@0.6.2 + - @backstage/plugin-lighthouse@0.3.2 + - @backstage/plugin-newrelic@0.3.20 + - @backstage/plugin-newrelic-dashboard@0.1.10 + - @backstage/plugin-pagerduty@0.3.29 + - @backstage/plugin-sentry@0.3.40 + - @backstage/plugin-shortcuts@0.2.3 + - @backstage/plugin-tech-insights@0.1.12 + - @backstage/plugin-todo@0.2.4 + - @backstage/plugin-user-settings@0.4.1 + ## 0.2.68-next.0 ### Patch Changes diff --git a/packages/app/package.json b/packages/app/package.json index 1d020d20de..43824211aa 100644 --- a/packages/app/package.json +++ b/packages/app/package.json @@ -1,59 +1,59 @@ { "name": "example-app", - "version": "0.2.68-next.0", + "version": "0.2.68", "private": true, "backstage": { "role": "frontend" }, "bundled": true, "dependencies": { - "@backstage/app-defaults": "^0.2.1-next.0", - "@backstage/catalog-model": "^0.13.0-next.0", - "@backstage/cli": "^0.15.2-next.0", + "@backstage/app-defaults": "^0.2.1", + "@backstage/catalog-model": "^0.13.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", - "@backstage/integration-react": "^0.1.25-next.0", - "@backstage/plugin-airbrake": "^0.3.2-next.0", - "@backstage/plugin-api-docs": "^0.8.2-next.0", - "@backstage/plugin-azure-devops": "^0.1.18-next.0", - "@backstage/plugin-apache-airflow": "^0.1.10-next.0", - "@backstage/plugin-badges": "^0.2.26-next.0", - "@backstage/plugin-catalog": "^0.10.0-next.0", - "@backstage/plugin-catalog-common": "^0.2.2-next.0", - "@backstage/plugin-catalog-graph": "^0.2.14-next.0", - "@backstage/plugin-catalog-import": "^0.8.5-next.0", - "@backstage/plugin-catalog-react": "^0.9.0-next.0", - "@backstage/plugin-circleci": "^0.3.2-next.0", - "@backstage/plugin-cloudbuild": "^0.3.2-next.0", - "@backstage/plugin-code-coverage": "^0.1.29-next.0", - "@backstage/plugin-cost-insights": "^0.11.24-next.0", - "@backstage/plugin-explore": "^0.3.33-next.0", - "@backstage/plugin-gcp-projects": "^0.3.21-next.0", - "@backstage/plugin-github-actions": "^0.5.2-next.0", - "@backstage/plugin-gocd": "^0.1.8-next.0", - "@backstage/plugin-graphiql": "^0.2.34-next.0", - "@backstage/plugin-home": "^0.4.18-next.0", - "@backstage/plugin-jenkins": "^0.7.1-next.0", - "@backstage/plugin-kafka": "^0.3.2-next.0", - "@backstage/plugin-kubernetes": "^0.6.2-next.0", - "@backstage/plugin-lighthouse": "^0.3.2-next.0", - "@backstage/plugin-newrelic": "^0.3.20-next.0", - "@backstage/plugin-newrelic-dashboard": "^0.1.10-next.0", - "@backstage/plugin-org": "^0.5.2-next.0", - "@backstage/plugin-pagerduty": "0.3.29-next.0", + "@backstage/integration-react": "^0.1.25", + "@backstage/plugin-airbrake": "^0.3.2", + "@backstage/plugin-api-docs": "^0.8.2", + "@backstage/plugin-azure-devops": "^0.1.18", + "@backstage/plugin-apache-airflow": "^0.1.10", + "@backstage/plugin-badges": "^0.2.26", + "@backstage/plugin-catalog": "^0.10.0", + "@backstage/plugin-catalog-common": "^0.2.2", + "@backstage/plugin-catalog-graph": "^0.2.14", + "@backstage/plugin-catalog-import": "^0.8.5", + "@backstage/plugin-catalog-react": "^0.9.0", + "@backstage/plugin-circleci": "^0.3.2", + "@backstage/plugin-cloudbuild": "^0.3.2", + "@backstage/plugin-code-coverage": "^0.1.29", + "@backstage/plugin-cost-insights": "^0.11.24", + "@backstage/plugin-explore": "^0.3.33", + "@backstage/plugin-gcp-projects": "^0.3.21", + "@backstage/plugin-github-actions": "^0.5.2", + "@backstage/plugin-gocd": "^0.1.8", + "@backstage/plugin-graphiql": "^0.2.34", + "@backstage/plugin-home": "^0.4.18", + "@backstage/plugin-jenkins": "^0.7.1", + "@backstage/plugin-kafka": "^0.3.2", + "@backstage/plugin-kubernetes": "^0.6.2", + "@backstage/plugin-lighthouse": "^0.3.2", + "@backstage/plugin-newrelic": "^0.3.20", + "@backstage/plugin-newrelic-dashboard": "^0.1.10", + "@backstage/plugin-org": "^0.5.2", + "@backstage/plugin-pagerduty": "0.3.29", "@backstage/plugin-permission-react": "^0.3.3", - "@backstage/plugin-rollbar": "^0.4.2-next.0", - "@backstage/plugin-scaffolder": "^0.15.0-next.0", - "@backstage/plugin-search": "^0.7.3-next.0", - "@backstage/plugin-search-common": "^0.3.1-next.0", - "@backstage/plugin-sentry": "^0.3.40-next.0", - "@backstage/plugin-shortcuts": "^0.2.3-next.0", - "@backstage/plugin-tech-radar": "^0.5.9-next.0", - "@backstage/plugin-techdocs": "^0.15.1-next.0", - "@backstage/plugin-todo": "^0.2.4-next.0", - "@backstage/plugin-user-settings": "^0.4.1-next.0", - "@backstage/plugin-tech-insights": "^0.1.12-next.0", + "@backstage/plugin-rollbar": "^0.4.2", + "@backstage/plugin-scaffolder": "^0.15.0", + "@backstage/plugin-search": "^0.7.3", + "@backstage/plugin-search-common": "^0.3.1", + "@backstage/plugin-sentry": "^0.3.40", + "@backstage/plugin-shortcuts": "^0.2.3", + "@backstage/plugin-tech-radar": "^0.5.9", + "@backstage/plugin-techdocs": "^0.15.1", + "@backstage/plugin-todo": "^0.2.4", + "@backstage/plugin-user-settings": "^0.4.1", + "@backstage/plugin-tech-insights": "^0.1.12", "@backstage/theme": "^0.2.15", "@material-ui/core": "^4.12.2", "@material-ui/icons": "^4.9.1", diff --git a/packages/backend-common/CHANGELOG.md b/packages/backend-common/CHANGELOG.md index 64c8034fa4..a8d461eabb 100644 --- a/packages/backend-common/CHANGELOG.md +++ b/packages/backend-common/CHANGELOG.md @@ -1,5 +1,24 @@ # @backstage/backend-common +## 0.13.0 + +### Minor Changes + +- ae9d6fb3df: **BREAKING**: + + - Removed the (since way back) deprecated `createDatabase` export, please use `createDatabaseClient` instead. + - Removed the (since way back) deprecated `SingleConnectionDatabaseManager` export, please use `DatabaseManager` instead. + +### Patch Changes + +- ab7cd7d70e: Do some groundwork for supporting the `better-sqlite3` driver, to maybe eventually replace `@vscode/sqlite3` (#9912) +- e0a69ba49f: build(deps): bump `fs-extra` from 9.1.0 to 10.0.1 +- aefca2a7e9: add support for ETag at `BitbucketUrlReader.readUrl` +- 3c2bc73901: Use `setupRequestMockHandlers` from `@backstage/backend-test-utils` +- b1aacbf96a: Applied the fix for the `/alpha` entry point resolution that was part of the `v0.70.1` release of Backstage. +- Updated dependencies + - @backstage/config-loader@0.9.7 + ## 0.13.0-next.0 ### Minor Changes diff --git a/packages/backend-common/package.json b/packages/backend-common/package.json index cc14851d94..5d6cf2e8df 100644 --- a/packages/backend-common/package.json +++ b/packages/backend-common/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/backend-common", "description": "Common functionality library for Backstage backends", - "version": "0.13.0-next.0", + "version": "0.13.0", "main": "src/index.ts", "types": "src/index.ts", "private": false, @@ -36,7 +36,7 @@ "dependencies": { "@backstage/cli-common": "^0.1.8", "@backstage/config": "^0.1.15", - "@backstage/config-loader": "^0.9.7-next.0", + "@backstage/config-loader": "^0.9.7", "@backstage/errors": "^0.2.2", "@backstage/integration": "^0.8.0", "@backstage/types": "^0.1.3", @@ -89,8 +89,8 @@ } }, "devDependencies": { - "@backstage/backend-test-utils": "^0.1.21-next.0", - "@backstage/cli": "^0.15.2-next.0", + "@backstage/backend-test-utils": "^0.1.21", + "@backstage/cli": "^0.15.2", "@types/archiver": "^5.1.0", "@types/compression": "^1.7.0", "@types/concat-stream": "^2.0.0", diff --git a/packages/backend-tasks/CHANGELOG.md b/packages/backend-tasks/CHANGELOG.md index 2f41b37562..206e5633a8 100644 --- a/packages/backend-tasks/CHANGELOG.md +++ b/packages/backend-tasks/CHANGELOG.md @@ -1,5 +1,21 @@ # @backstage/backend-tasks +## 0.2.0 + +### Minor Changes + +- 9461f73643: **BREAKING**: The `TaskDefinition` type has been removed, and replaced by the equal pair `TaskScheduleDefinition` and `TaskInvocationDefinition`. The interface for `PluginTaskScheduler.scheduleTask` stays effectively unchanged, so this only affects you if you use the actual types directly. + + Added the method `PluginTaskScheduler.createTaskSchedule`, which returns a `TaskSchedule` wrapper that is convenient to pass down into classes that want to control their task invocations while the caller wants to retain control of the actual schedule chosen. + +### Patch Changes + +- ab7cd7d70e: Do some groundwork for supporting the `better-sqlite3` driver, to maybe eventually replace `@vscode/sqlite3` (#9912) +- 7290dda9d4: Relaxed the task ID requirement to now support any non-empty string +- ae2ed04076: Add support for cron syntax to configure task frequency - `TaskScheduleDefinition.frequency` can now be both a `Duration` and an object on the form `{ cron: string }`, where the latter is expected to be on standard crontab format (e.g. `'0 */2 * * *'`). +- Updated dependencies + - @backstage/backend-common@0.13.0 + ## 0.2.0-next.0 ### Minor Changes diff --git a/packages/backend-tasks/package.json b/packages/backend-tasks/package.json index 39aa3067a1..e4cecc5d85 100644 --- a/packages/backend-tasks/package.json +++ b/packages/backend-tasks/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/backend-tasks", "description": "Common distributed task management library for Backstage backends", - "version": "0.2.0-next.0", + "version": "0.2.0", "main": "src/index.ts", "types": "src/index.ts", "private": false, @@ -33,7 +33,7 @@ "start": "backstage-cli package start" }, "dependencies": { - "@backstage/backend-common": "^0.13.0-next.0", + "@backstage/backend-common": "^0.13.0", "@backstage/config": "^0.1.15", "@backstage/errors": "^0.2.2", "@backstage/types": "^0.1.3", @@ -48,8 +48,8 @@ "zod": "^3.9.5" }, "devDependencies": { - "@backstage/backend-test-utils": "^0.1.21-next.0", - "@backstage/cli": "^0.15.2-next.0", + "@backstage/backend-test-utils": "^0.1.21", + "@backstage/cli": "^0.15.2", "@types/cron": "^1.7.3", "jest": "^26.0.1", "wait-for-expect": "^3.0.2" diff --git a/packages/backend-test-utils/CHANGELOG.md b/packages/backend-test-utils/CHANGELOG.md index a7dbcbd51f..bcf6d4a3f4 100644 --- a/packages/backend-test-utils/CHANGELOG.md +++ b/packages/backend-test-utils/CHANGELOG.md @@ -1,5 +1,15 @@ # @backstage/backend-test-utils +## 0.1.21 + +### Patch Changes + +- ab7cd7d70e: Do some groundwork for supporting the `better-sqlite3` driver, to maybe eventually replace `@vscode/sqlite3` (#9912) +- 3c2bc73901: Add `setupRequestMockHandlers` which sets up a good `msw` server foundation, copied from `@backstage/test-utils` which is a frontend-only package and should not be used from backends. +- Updated dependencies + - @backstage/backend-common@0.13.0 + - @backstage/cli@0.15.2 + ## 0.1.21-next.0 ### Patch Changes diff --git a/packages/backend-test-utils/package.json b/packages/backend-test-utils/package.json index d5e0feac35..fc29c9bc26 100644 --- a/packages/backend-test-utils/package.json +++ b/packages/backend-test-utils/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/backend-test-utils", "description": "Test helpers library for Backstage backends", - "version": "0.1.21-next.0", + "version": "0.1.21", "main": "src/index.ts", "types": "src/index.ts", "private": false, @@ -34,8 +34,8 @@ "start": "backstage-cli package start" }, "dependencies": { - "@backstage/backend-common": "^0.13.0-next.0", - "@backstage/cli": "^0.15.2-next.0", + "@backstage/backend-common": "^0.13.0", + "@backstage/cli": "^0.15.2", "@backstage/config": "^0.1.15", "@vscode/sqlite3": "^5.0.7", "knex": "^1.0.2", @@ -46,7 +46,7 @@ "uuid": "^8.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "jest": "^26.0.1" }, "files": [ diff --git a/packages/backend/CHANGELOG.md b/packages/backend/CHANGELOG.md index d6500304c0..f62b14b00d 100644 --- a/packages/backend/CHANGELOG.md +++ b/packages/backend/CHANGELOG.md @@ -1,5 +1,42 @@ # example-backend +## 0.2.68 + +### Patch Changes + +- Updated dependencies + - @backstage/backend-common@0.13.0 + - @backstage/backend-tasks@0.2.0 + - @backstage/plugin-app-backend@0.3.29 + - @backstage/plugin-auth-backend@0.12.1 + - @backstage/plugin-catalog-backend@0.24.0 + - @backstage/plugin-scaffolder-backend@0.18.0 + - @backstage/plugin-scaffolder-backend-module-rails@0.3.4 + - @backstage/plugin-kubernetes-backend@0.4.12 + - @backstage/plugin-rollbar-backend@0.1.26 + - @backstage/plugin-techdocs-backend@0.14.2 + - @backstage/catalog-model@0.13.0 + - @backstage/plugin-badges-backend@0.1.23 + - @backstage/plugin-search-backend-module-elasticsearch@0.1.1 + - @backstage/plugin-search-backend-module-pg@0.3.1 + - @backstage/plugin-search-backend-node@0.5.1 + - @backstage/plugin-search-backend@0.4.7 + - @backstage/catalog-client@0.9.0 + - example-app@0.2.68 + - @backstage/plugin-auth-node@0.1.5 + - @backstage/plugin-azure-devops-backend@0.3.8 + - @backstage/plugin-code-coverage-backend@0.1.27 + - @backstage/plugin-graphql-backend@0.1.19 + - @backstage/plugin-jenkins-backend@0.1.18 + - @backstage/plugin-kafka-backend@0.2.22 + - @backstage/plugin-permission-backend@0.5.4 + - @backstage/plugin-permission-node@0.5.4 + - @backstage/plugin-proxy-backend@0.2.23 + - @backstage/plugin-tech-insights-backend@0.2.9 + - @backstage/plugin-tech-insights-backend-module-jsonfc@0.1.13 + - @backstage/plugin-tech-insights-node@0.2.7 + - @backstage/plugin-todo-backend@0.1.26 + ## 0.2.68-next.0 ### Patch Changes diff --git a/packages/backend/package.json b/packages/backend/package.json index 50e7a9c3fb..c65dc54b31 100644 --- a/packages/backend/package.json +++ b/packages/backend/package.json @@ -1,6 +1,6 @@ { "name": "example-backend", - "version": "0.2.68-next.0", + "version": "0.2.68", "main": "dist/index.cjs.js", "types": "src/index.ts", "license": "Apache-2.0", @@ -27,39 +27,39 @@ "migrate:create": "knex migrate:make -x ts" }, "dependencies": { - "@backstage/backend-common": "^0.13.0-next.0", - "@backstage/backend-tasks": "^0.2.0-next.0", - "@backstage/catalog-client": "^0.9.0-next.0", - "@backstage/catalog-model": "^0.13.0-next.0", + "@backstage/backend-common": "^0.13.0", + "@backstage/backend-tasks": "^0.2.0", + "@backstage/catalog-client": "^0.9.0", + "@backstage/catalog-model": "^0.13.0", "@backstage/config": "^0.1.15", "@backstage/integration": "^0.8.0", - "@backstage/plugin-app-backend": "^0.3.29-next.0", - "@backstage/plugin-auth-backend": "^0.12.1-next.0", - "@backstage/plugin-auth-node": "^0.1.5-next.0", - "@backstage/plugin-azure-devops-backend": "^0.3.8-next.0", - "@backstage/plugin-badges-backend": "^0.1.23-next.0", - "@backstage/plugin-catalog-backend": "^0.24.0-next.0", - "@backstage/plugin-code-coverage-backend": "^0.1.27-next.0", - "@backstage/plugin-graphql-backend": "^0.1.19-next.0", - "@backstage/plugin-jenkins-backend": "^0.1.18-next.0", - "@backstage/plugin-kubernetes-backend": "^0.4.12-next.0", - "@backstage/plugin-kafka-backend": "^0.2.22-next.0", - "@backstage/plugin-permission-backend": "^0.5.4-next.0", + "@backstage/plugin-app-backend": "^0.3.29", + "@backstage/plugin-auth-backend": "^0.12.1", + "@backstage/plugin-auth-node": "^0.1.5", + "@backstage/plugin-azure-devops-backend": "^0.3.8", + "@backstage/plugin-badges-backend": "^0.1.23", + "@backstage/plugin-catalog-backend": "^0.24.0", + "@backstage/plugin-code-coverage-backend": "^0.1.27", + "@backstage/plugin-graphql-backend": "^0.1.19", + "@backstage/plugin-jenkins-backend": "^0.1.18", + "@backstage/plugin-kubernetes-backend": "^0.4.12", + "@backstage/plugin-kafka-backend": "^0.2.22", + "@backstage/plugin-permission-backend": "^0.5.4", "@backstage/plugin-permission-common": "^0.5.2", - "@backstage/plugin-permission-node": "^0.5.4-next.0", - "@backstage/plugin-proxy-backend": "^0.2.23-next.0", - "@backstage/plugin-rollbar-backend": "^0.1.26-next.0", - "@backstage/plugin-scaffolder-backend": "^0.18.0-next.0", - "@backstage/plugin-scaffolder-backend-module-rails": "^0.3.4-next.0", - "@backstage/plugin-search-backend": "^0.4.7-next.0", - "@backstage/plugin-search-backend-node": "^0.5.1-next.0", - "@backstage/plugin-search-backend-module-elasticsearch": "^0.1.1-next.0", - "@backstage/plugin-search-backend-module-pg": "^0.3.1-next.0", - "@backstage/plugin-techdocs-backend": "^0.14.2-next.0", - "@backstage/plugin-tech-insights-backend": "^0.2.9-next.0", - "@backstage/plugin-tech-insights-node": "^0.2.7-next.0", - "@backstage/plugin-tech-insights-backend-module-jsonfc": "^0.1.13-next.0", - "@backstage/plugin-todo-backend": "^0.1.26-next.0", + "@backstage/plugin-permission-node": "^0.5.4", + "@backstage/plugin-proxy-backend": "^0.2.23", + "@backstage/plugin-rollbar-backend": "^0.1.26", + "@backstage/plugin-scaffolder-backend": "^0.18.0", + "@backstage/plugin-scaffolder-backend-module-rails": "^0.3.4", + "@backstage/plugin-search-backend": "^0.4.7", + "@backstage/plugin-search-backend-node": "^0.5.1", + "@backstage/plugin-search-backend-module-elasticsearch": "^0.1.1", + "@backstage/plugin-search-backend-module-pg": "^0.3.1", + "@backstage/plugin-techdocs-backend": "^0.14.2", + "@backstage/plugin-tech-insights-backend": "^0.2.9", + "@backstage/plugin-tech-insights-node": "^0.2.7", + "@backstage/plugin-tech-insights-backend-module-jsonfc": "^0.1.13", + "@backstage/plugin-todo-backend": "^0.1.26", "@gitbeaker/node": "^35.1.0", "@octokit/rest": "^18.5.3", "@vscode/sqlite3": "^5.0.7", @@ -76,7 +76,7 @@ "winston": "^3.2.1" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@types/dockerode": "^3.3.0", "@types/express": "^4.17.6", "@types/express-serve-static-core": "^4.17.5" diff --git a/packages/catalog-client/CHANGELOG.md b/packages/catalog-client/CHANGELOG.md index f3b74c4d4d..d9683f0fe2 100644 --- a/packages/catalog-client/CHANGELOG.md +++ b/packages/catalog-client/CHANGELOG.md @@ -1,5 +1,17 @@ # @backstage/catalog-client +## 0.9.0 + +### Minor Changes + +- bf95bb806c: **BREAKING**: Removed previously deprecated `CatalogApi.getEntityByName`, please use `getEntityByRef` instead. +- a3eb3d2afa: **BREAKING**: Removed `CatalogClient.getLocationByEntity` and `CatalogClient.getOriginLocationByEntity` which had previously been deprecated. Please use `CatalogApi.getLocationByRef` instead. Note that this only affects you if you were using `CatalogClient` (the class) directly, rather than `CatalogApi` (the interface), since it has been removed from the interface in an earlier release. + +### Patch Changes + +- Updated dependencies + - @backstage/catalog-model@0.13.0 + ## 0.9.0-next.0 ### Minor Changes diff --git a/packages/catalog-client/package.json b/packages/catalog-client/package.json index cf9246d5a2..b05b0d45c1 100644 --- a/packages/catalog-client/package.json +++ b/packages/catalog-client/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/catalog-client", "description": "An isomorphic client for the catalog backend", - "version": "0.9.0-next.0", + "version": "0.9.0", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -33,12 +33,12 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/catalog-model": "^0.13.0-next.0", + "@backstage/catalog-model": "^0.13.0", "@backstage/errors": "^0.2.2", "cross-fetch": "^3.1.5" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@types/jest": "^26.0.7", "msw": "^0.35.0" }, diff --git a/packages/catalog-model/CHANGELOG.md b/packages/catalog-model/CHANGELOG.md index 8a35937c07..9bb530efac 100644 --- a/packages/catalog-model/CHANGELOG.md +++ b/packages/catalog-model/CHANGELOG.md @@ -1,5 +1,29 @@ # @backstage/catalog-model +## 0.13.0 + +### Minor Changes + +- 51a9f8f122: **BREAKING**: + + - Removed the previously deprecated type `EntityRef`. Please use `string` for stringified entity refs, `CompoundEntityRef` for compound kind-namespace-name triplet objects, or custom objects like `{ kind?: string; namespace?: string; name: string }` and similar if you have need for partial types. + - Removed the previously deprecated type `LocationSpec` type, which has been moved to `@backstage/plugin-catalog-backend`. + - Removed the previously deprecated function `parseEntityName`. Please use `parseEntityRef` instead. + +- d1d488e371: **BREAKING**: The default validator for `metadata.tags` now permits the colon (`:`) character as well. + +### Patch Changes + +- 2952566587: Updated `parseEntityRef` to allow `:` and `/` in the entity name. For example, parsing `'component:default/foo:bar'` will result in the name `'foo:bar'`. + + Note that only parsing `'foo:bar'` itself will result in the name `'bar'` and the entity kind `'foo'`, meaning this is a particularly nasty trap for user defined entity references. For this reason it is strongly discouraged to use names that contain these characters, and the catalog model does not allow it by default. However, this change now makes is possible to use these names if the default catalog validation is replaced, and in particular a high level of automation of the catalog population can limit issues that it might otherwise cause. + +- b1aacbf96a: Applied the fix for the `/alpha` entry point resolution that was part of the `v0.70.1` release of Backstage. +- d1d488e371: **DEPRECATION**: + + - Deprecated `CommonValidatorFunctions.isValidString`, please use `isNonEmptyString` instead which is equivalent but better named. + - Deprecated `CommonValidatorFunctions.isValidTag`, with no replacement. Its purpose was too specific and not reusable, so it will be removed. + ## 0.13.0-next.0 ### Minor Changes diff --git a/packages/catalog-model/package.json b/packages/catalog-model/package.json index bd0e88acbf..d07a5a6861 100644 --- a/packages/catalog-model/package.json +++ b/packages/catalog-model/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/catalog-model", "description": "Types and validators that help describe the model of a Backstage Catalog", - "version": "0.13.0-next.0", + "version": "0.13.0", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -43,7 +43,7 @@ "uuid": "^8.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@types/jest": "^26.0.7", "@types/json-schema": "^7.0.5", "@types/lodash": "^4.14.151", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index b3ab3fc0e7..4e0d088adb 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,32 @@ # @backstage/cli +## 0.15.2 + +### Patch Changes + +- 2c528506aa: Added `--since ` flag for `repo build` command.` +- 60799cc5be: build(deps-dev): bump `@types/npm-packlist` from 1.1.2 to 3.0.0 +- d3d1b82198: chore(deps): bump `minimatch` from 5.0.0 to 5.0.1 +- e0a69ba49f: build(deps): bump `fs-extra` from 9.1.0 to 10.0.1 +- 44cc7c3b95: Added a new ESLint configuration setup for packages, which utilizes package roles to generate the correct configuration. The new configuration is available at `@backstage/cli/config/eslint-factory`. + + Introduced a new `backstage-cli migrate package-lint-configs` command, which migrates old lint configurations to use `@backstage/cli/config/eslint-factory`. + +- b1aacbf96a: Applied the fix from version `0.15.1` of this package, which was part of the `v0.70.1` release of Backstage. +- d2ecde959b: Package roles are now marked as stable and migration is encouraged. Please check out the [migration guide](https://backstage.io/docs/tutorials/package-role-migration). + + The new `package`, `repo`, and `migrate` command categories are now marked as stable. + + Marked all commands that are being replaced by the new `package` and `repo` commands as deprecated. + + The package templates used by the `create` command have all been updated to use package roles. + +- f06da37290: The backend development setup now ignores the `"browser"` and `"module"` entry points in `package.json`, and instead always uses `"main"`. +- 6a1fe077ad: Changed the logic for how modules are marked as external in the Rollup build of packages. Rather than only marking dependencies and build-in Node.js modules as external, all non-relative imports are now considered external. +- dc6002a7b9: The `--since` flag of repo commands now silently falls back to using the provided `ref` directly if no merge base is available. +- Updated dependencies + - @backstage/config-loader@0.9.7 + ## 0.15.2-next.0 ### Patch Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index 39fd0c56fc..43e8ea04eb 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/cli", "description": "CLI for developing Backstage plugins and apps", - "version": "0.15.2-next.0", + "version": "0.15.2", "private": false, "publishConfig": { "access": "public" @@ -33,7 +33,7 @@ "dependencies": { "@backstage/cli-common": "^0.1.8", "@backstage/config": "^0.1.15", - "@backstage/config-loader": "^0.9.7-next.0", + "@backstage/config-loader": "^0.9.7", "@backstage/errors": "^0.2.2", "@backstage/release-manifests": "^0.0.2", "@backstage/types": "^0.1.3", @@ -121,12 +121,12 @@ "zod": "^3.11.6" }, "devDependencies": { - "@backstage/backend-common": "^0.13.0-next.0", + "@backstage/backend-common": "^0.13.0", "@backstage/config": "^0.1.15", - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@backstage/theme": "^0.2.15", "@types/diff": "^5.0.0", diff --git a/packages/codemods/CHANGELOG.md b/packages/codemods/CHANGELOG.md index 5bf6535a62..73b9e54575 100644 --- a/packages/codemods/CHANGELOG.md +++ b/packages/codemods/CHANGELOG.md @@ -1,5 +1,12 @@ # @backstage/codemods +## 0.1.35 + +### Patch Changes + +- Updated dependencies + - @backstage/core-components@0.9.1 + ## 0.1.35-next.0 ### Patch Changes diff --git a/packages/codemods/package.json b/packages/codemods/package.json index 1c863db6cf..cc5f3fd987 100644 --- a/packages/codemods/package.json +++ b/packages/codemods/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/codemods", "description": "A collection of codemods for Backstage projects", - "version": "0.1.35-next.0", + "version": "0.1.35", "private": false, "publishConfig": { "access": "public", @@ -36,7 +36,7 @@ "dependencies": { "@backstage/cli-common": "^0.1.8", "@backstage/core-app-api": "*", - "@backstage/core-components": "0.9.1-next.0", + "@backstage/core-components": "0.9.1", "@backstage/core-plugin-api": "*", "chalk": "^4.0.0", "jscodeshift": "^0.13.0", diff --git a/packages/config-loader/CHANGELOG.md b/packages/config-loader/CHANGELOG.md index 362edc78cf..50ec2afac1 100644 --- a/packages/config-loader/CHANGELOG.md +++ b/packages/config-loader/CHANGELOG.md @@ -1,5 +1,11 @@ # @backstage/config-loader +## 0.9.7 + +### Patch Changes + +- e0a69ba49f: build(deps): bump `fs-extra` from 9.1.0 to 10.0.1 + ## 0.9.7-next.0 ### Patch Changes diff --git a/packages/config-loader/package.json b/packages/config-loader/package.json index 71a0e4e650..216b965a60 100644 --- a/packages/config-loader/package.json +++ b/packages/config-loader/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/config-loader", "description": "Config loading functionality used by Backstage backend, and CLI", - "version": "0.9.7-next.0", + "version": "0.9.7", "private": false, "publishConfig": { "access": "public", diff --git a/packages/core-components/CHANGELOG.md b/packages/core-components/CHANGELOG.md index 64a3d0614d..6bb05b9b6a 100644 --- a/packages/core-components/CHANGELOG.md +++ b/packages/core-components/CHANGELOG.md @@ -1,5 +1,12 @@ # @backstage/core-components +## 0.9.1 + +### Patch Changes + +- 23568dd328: chore(deps): bump `@react-hookz/web` from 12.3.0 to 13.0.0 +- 95667624c1: Add names to sidebar sub menu styles for customization + ## 0.9.1-next.0 ### Patch Changes diff --git a/packages/core-components/package.json b/packages/core-components/package.json index d71bcff3cf..45b5f34018 100644 --- a/packages/core-components/package.json +++ b/packages/core-components/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/core-components", "description": "Core components used by Backstage plugins and apps", - "version": "0.9.1-next.0", + "version": "0.9.1", "private": false, "publishConfig": { "access": "public", @@ -79,7 +79,7 @@ }, "devDependencies": { "@backstage/core-app-api": "^0.6.0", - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/packages/create-app/CHANGELOG.md b/packages/create-app/CHANGELOG.md index c9b83a1157..7c13b4ff0b 100644 --- a/packages/create-app/CHANGELOG.md +++ b/packages/create-app/CHANGELOG.md @@ -1,5 +1,73 @@ # @backstage/create-app +## 0.4.23 + +### Patch Changes + +- f9c7bdd899: Builtin support for cookiecutter based templates has been removed from `@backstage/plugin-scaffolder-backend`. Due to this, the `containerRunner` argument to its `createRouter` has also been removed. + + If you do not use cookiecutter templates and are fine with removing support from it in your own installation, update your `packages/backend/src/plugins/scaffolder.ts` file as follows: + + ```diff + -import { DockerContainerRunner } from '@backstage/backend-common'; + import { CatalogClient } from '@backstage/catalog-client'; + import { createRouter } from '@backstage/plugin-scaffolder-backend'; + -import Docker from 'dockerode'; + import { Router } from 'express'; + import type { PluginEnvironment } from '../types'; + + export default async function createPlugin({ + reader, + discovery, + }: PluginEnvironment): Promise { + - const dockerClient = new Docker(); + - const containerRunner = new DockerContainerRunner({ dockerClient }); + - + const catalogClient = new CatalogClient({ discoveryApi: discovery }); + - + return await createRouter({ + - containerRunner, + logger, + config, + // ... + ``` + + If you want to retain cookiecutter support, please use the `@backstage/plugin-scaffolder-backend-module-cookiecutter` package explicitly (see [its README](https://github.com/backstage/backstage/tree/master/plugins/scaffolder-backend-module-cookiecutter) for installation instructions). + +- 8a57b6595b: Removed the `cookiecutter-golang` template from the default `create-app` install as we no longer provide `cookiecutter` action out of the box. + + You can remove the template by removing the following lines from your `app-config.yaml` under `catalog.locations`: + + ```diff + - - type: url + - target: https://github.com/spotify/cookiecutter-golang/blob/master/template.yaml + - rules: + - - allow: [Template] + ``` + +- e0a69ba49f: build(deps): bump `fs-extra` from 9.1.0 to 10.0.1 +- 1201383b60: Updated the template to write the Backstage release version to `backstage.json`, rather than the version of `@backstage/create-app`. This change is applied automatically when running `backstage-cli versions:bump` in the latest version of the Backstage CLI. +- c543fe3ff2: Postgres-based search is now installed when PG is chosen as the desired database for Backstage. + + There is no need to make this change in an existing Backstage backend. See [supported search engines](https://backstage.io/docs/features/search/search-engines) for details about production-ready search engines. + +- 55150919ed: - **BREAKING**: Support for `backstage.io/v1beta2` Software Templates has been removed. Please migrate your legacy templates to the new `scaffolder.backstage.io/v1beta3` `apiVersion` by following the [migration guide](https://backstage.io/docs/features/software-templates/migrating-from-v1beta2-to-v1beta3) +- bde30664c4: Updated template to use package roles. To apply this change to an existing app, check out the [migration guide](https://backstage.io/docs/tutorials/package-role-migration). + + Specifically the following scripts in the root `package.json` have also been updated: + + ```diff + - "build": "lerna run build", + + "build": "backstage-cli repo build --all", + + ... + + - "lint": "lerna run lint --since origin/master --", + - "lint:all": "lerna run lint --", + + "lint": "backstage-cli repo lint --since origin/master", + + "lint:all": "backstage-cli repo lint", + ``` + ## 0.4.23-next.0 ### Patch Changes diff --git a/packages/create-app/package.json b/packages/create-app/package.json index 838d54b0f4..cadd64b5ce 100644 --- a/packages/create-app/package.json +++ b/packages/create-app/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/create-app", "description": "A CLI that helps you create your own Backstage app", - "version": "0.4.23-next.0", + "version": "0.4.23", "private": false, "publishConfig": { "access": "public" diff --git a/packages/dev-utils/CHANGELOG.md b/packages/dev-utils/CHANGELOG.md index 32fbf7e9cb..3e4a028e5f 100644 --- a/packages/dev-utils/CHANGELOG.md +++ b/packages/dev-utils/CHANGELOG.md @@ -1,5 +1,16 @@ # @backstage/dev-utils +## 0.2.25 + +### Patch Changes + +- Updated dependencies + - @backstage/plugin-catalog-react@0.9.0 + - @backstage/core-components@0.9.1 + - @backstage/catalog-model@0.13.0 + - @backstage/app-defaults@0.2.1 + - @backstage/integration-react@0.1.25 + ## 0.2.25-next.0 ### Patch Changes diff --git a/packages/dev-utils/package.json b/packages/dev-utils/package.json index f9c3bbc166..8a38556547 100644 --- a/packages/dev-utils/package.json +++ b/packages/dev-utils/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/dev-utils", "description": "Utilities for developing Backstage plugins.", - "version": "0.2.25-next.0", + "version": "0.2.25", "private": false, "publishConfig": { "access": "public", @@ -33,13 +33,13 @@ "start": "backstage-cli package start" }, "dependencies": { - "@backstage/app-defaults": "^0.2.1-next.0", + "@backstage/app-defaults": "^0.2.1", "@backstage/core-app-api": "^0.6.0", - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", - "@backstage/catalog-model": "^0.13.0-next.0", - "@backstage/integration-react": "^0.1.25-next.0", - "@backstage/plugin-catalog-react": "^0.9.0-next.0", + "@backstage/catalog-model": "^0.13.0", + "@backstage/integration-react": "^0.1.25", + "@backstage/plugin-catalog-react": "^0.9.0", "@backstage/test-utils": "^0.3.0", "@backstage/theme": "^0.2.15", "@material-ui/core": "^4.12.2", @@ -59,7 +59,7 @@ "react-dom": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@types/jest": "^26.0.7", "@types/node": "^14.14.32" }, diff --git a/packages/integration-react/CHANGELOG.md b/packages/integration-react/CHANGELOG.md index 082b8ba701..9ded26d06b 100644 --- a/packages/integration-react/CHANGELOG.md +++ b/packages/integration-react/CHANGELOG.md @@ -1,5 +1,12 @@ # @backstage/integration-react +## 0.1.25 + +### Patch Changes + +- Updated dependencies + - @backstage/core-components@0.9.1 + ## 0.1.25-next.0 ### Patch Changes diff --git a/packages/integration-react/package.json b/packages/integration-react/package.json index 16863b2ef2..36334f2cfd 100644 --- a/packages/integration-react/package.json +++ b/packages/integration-react/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/integration-react", "description": "Frontend package for managing integrations towards external systems", - "version": "0.1.25-next.0", + "version": "0.1.25", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -25,7 +25,7 @@ }, "dependencies": { "@backstage/config": "^0.1.15", - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", "@backstage/integration": "^0.8.0", "@backstage/theme": "^0.2.15", @@ -38,8 +38,8 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/cli": "^0.15.2", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/packages/search-common/CHANGELOG.md b/packages/search-common/CHANGELOG.md index 3b1b082083..66262033e2 100644 --- a/packages/search-common/CHANGELOG.md +++ b/packages/search-common/CHANGELOG.md @@ -1,5 +1,16 @@ # @backstage/search-common +## 0.3.1 + +### Patch Changes + +- d52155466a: **DEPRECATION** + + The `@backstage/search-common` package is being renamed `@backstage/plugin-search-common`. We may continue to publish changes to `@backstage/search-common` for a time, but will stop doing so in the near future. If you depend on this package, you should update your dependencies to point at the renamed package. + +- Updated dependencies + - @backstage/plugin-search-common@0.3.1 + ## 0.3.1-next.0 ### Patch Changes diff --git a/packages/search-common/package.json b/packages/search-common/package.json index d84bda9edc..04c129d508 100644 --- a/packages/search-common/package.json +++ b/packages/search-common/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/search-common", "description": "Common functionalities for Search, to be shared between various search-enabled plugins", - "version": "0.3.1-next.0", + "version": "0.3.1", "main": "src/index.ts", "types": "src/index.ts", "private": false, @@ -39,7 +39,7 @@ "url": "https://github.com/backstage/backstage/issues" }, "dependencies": { - "@backstage/plugin-search-common": "^0.3.1-next.0" + "@backstage/plugin-search-common": "^0.3.1" }, "devDependencies": {}, "jest": { diff --git a/packages/techdocs-cli-embedded-app/CHANGELOG.md b/packages/techdocs-cli-embedded-app/CHANGELOG.md index 51f0bc8b00..7f9482c7b3 100644 --- a/packages/techdocs-cli-embedded-app/CHANGELOG.md +++ b/packages/techdocs-cli-embedded-app/CHANGELOG.md @@ -1,5 +1,18 @@ # techdocs-cli-embedded-app +## 0.2.67 + +### Patch Changes + +- Updated dependencies + - @backstage/cli@0.15.2 + - @backstage/plugin-catalog@0.10.0 + - @backstage/core-components@0.9.1 + - @backstage/catalog-model@0.13.0 + - @backstage/plugin-techdocs@0.15.1 + - @backstage/app-defaults@0.2.1 + - @backstage/integration-react@0.1.25 + ## 0.2.67-next.0 ### Patch Changes diff --git a/packages/techdocs-cli-embedded-app/package.json b/packages/techdocs-cli-embedded-app/package.json index 700036dd3c..c9d9fcd252 100644 --- a/packages/techdocs-cli-embedded-app/package.json +++ b/packages/techdocs-cli-embedded-app/package.json @@ -1,22 +1,22 @@ { "name": "techdocs-cli-embedded-app", - "version": "0.2.67-next.0", + "version": "0.2.67", "private": true, "backstage": { "role": "frontend" }, "bundled": true, "dependencies": { - "@backstage/app-defaults": "^0.2.1-next.0", - "@backstage/catalog-model": "^0.13.0-next.0", - "@backstage/cli": "^0.15.2-next.0", + "@backstage/app-defaults": "^0.2.1", + "@backstage/catalog-model": "^0.13.0", + "@backstage/cli": "^0.15.2", "@backstage/config": "^0.1.15", "@backstage/core-app-api": "^0.6.0", - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", - "@backstage/integration-react": "^0.1.25-next.0", - "@backstage/plugin-catalog": "^0.10.0-next.0", - "@backstage/plugin-techdocs": "^0.15.1-next.0", + "@backstage/integration-react": "^0.1.25", + "@backstage/plugin-catalog": "^0.10.0", + "@backstage/plugin-techdocs": "^0.15.1", "@backstage/test-utils": "^0.3.0", "@backstage/theme": "^0.2.15", "@material-ui/core": "^4.11.0", @@ -29,7 +29,7 @@ "react-use": "^17.2.4" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", "@testing-library/user-event": "^13.1.8", diff --git a/packages/techdocs-cli/CHANGELOG.md b/packages/techdocs-cli/CHANGELOG.md index e668940718..6716a03e01 100644 --- a/packages/techdocs-cli/CHANGELOG.md +++ b/packages/techdocs-cli/CHANGELOG.md @@ -1,5 +1,16 @@ # @techdocs/cli +## 0.8.17 + +### Patch Changes + +- e0a69ba49f: build(deps): bump `fs-extra` from 9.1.0 to 10.0.1 +- 91bf1e6c1a: Use `@backstage/plugin-techdocs-node` package instead of `@backstage/techdocs-common`. +- Updated dependencies + - @backstage/backend-common@0.13.0 + - @backstage/plugin-techdocs-node@0.11.12 + - @backstage/catalog-model@0.13.0 + ## 0.8.17-next.0 ### Patch Changes diff --git a/packages/techdocs-cli/package.json b/packages/techdocs-cli/package.json index 758cab9856..42069bb8e2 100644 --- a/packages/techdocs-cli/package.json +++ b/packages/techdocs-cli/package.json @@ -1,7 +1,7 @@ { "name": "@techdocs/cli", "description": "Utility CLI for managing TechDocs sites in Backstage.", - "version": "0.8.17-next.0", + "version": "0.8.17", "private": false, "publishConfig": { "access": "public" @@ -37,7 +37,7 @@ "techdocs-cli": "bin/techdocs-cli" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@types/commander": "^2.12.2", "@types/fs-extra": "^9.0.6", "@types/http-proxy": "^1.17.4", @@ -62,11 +62,11 @@ "ext": "ts" }, "dependencies": { - "@backstage/backend-common": "^0.13.0-next.0", - "@backstage/catalog-model": "^0.13.0-next.0", + "@backstage/backend-common": "^0.13.0", + "@backstage/catalog-model": "^0.13.0", "@backstage/cli-common": "^0.1.8", "@backstage/config": "^0.1.15", - "@backstage/plugin-techdocs-node": "^0.11.12-next.0", + "@backstage/plugin-techdocs-node": "^0.11.12", "@types/dockerode": "^3.3.0", "commander": "^6.1.0", "dockerode": "^3.3.1", diff --git a/packages/techdocs-common/CHANGELOG.md b/packages/techdocs-common/CHANGELOG.md index 87c6ea0da9..55c2743088 100644 --- a/packages/techdocs-common/CHANGELOG.md +++ b/packages/techdocs-common/CHANGELOG.md @@ -1,5 +1,16 @@ # @backstage/techdocs-common +## 0.11.12 + +### Patch Changes + +- cea6f10b97: **DEPRECATION** + + The `@backstage/techdocs-common` package is being renamed `@backstage/plugin-techdocs-node`. We may continue to publish changes to `@backstage/techdocs-common` for a time, but will stop doing so in the near future. If you depend on this package, you should update your dependencies to point at the renamed package. + +- Updated dependencies + - @backstage/plugin-techdocs-node@0.11.12 + ## 0.11.12-next.0 ### Patch Changes diff --git a/packages/techdocs-common/package.json b/packages/techdocs-common/package.json index 6d897a2f08..d89829a55f 100644 --- a/packages/techdocs-common/package.json +++ b/packages/techdocs-common/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/techdocs-common", "description": "Common node.js functionalities for TechDocs, to be shared between techdocs-backend plugin and techdocs-cli", - "version": "0.11.12-next.0", + "version": "0.11.12", "main": "src/index.ts", "types": "src/index.ts", "private": false, @@ -40,7 +40,7 @@ "url": "https://github.com/backstage/backstage/issues" }, "dependencies": { - "@backstage/plugin-techdocs-node": "^0.11.12-next.0" + "@backstage/plugin-techdocs-node": "^0.11.12" }, "devDependencies": {}, "jest": { diff --git a/plugins/airbrake-backend/CHANGELOG.md b/plugins/airbrake-backend/CHANGELOG.md index 9826c90e72..1267c8bb7d 100644 --- a/plugins/airbrake-backend/CHANGELOG.md +++ b/plugins/airbrake-backend/CHANGELOG.md @@ -1,5 +1,13 @@ # @backstage/plugin-airbrake-backend +## 0.2.2 + +### Patch Changes + +- 4f79204c47: Added `backstage.role` to `package.json` +- Updated dependencies + - @backstage/backend-common@0.13.0 + ## 0.2.2-next.0 ### Patch Changes diff --git a/plugins/airbrake-backend/package.json b/plugins/airbrake-backend/package.json index c8c87dd117..046d7dbd31 100644 --- a/plugins/airbrake-backend/package.json +++ b/plugins/airbrake-backend/package.json @@ -1,6 +1,6 @@ { "name": "@backstage/plugin-airbrake-backend", - "version": "0.2.2-next.0", + "version": "0.2.2", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -22,7 +22,7 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/backend-common": "^0.13.0-next.0", + "@backstage/backend-common": "^0.13.0", "@backstage/config": "^0.1.15", "@types/express": "*", "express": "^4.17.1", @@ -33,7 +33,7 @@ "yn": "^4.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@types/http-proxy-middleware": "^0.19.3", "@types/supertest": "^2.0.8", "supertest": "^6.1.6", diff --git a/plugins/airbrake/CHANGELOG.md b/plugins/airbrake/CHANGELOG.md index 374cdc7c7c..b4c8dc5228 100644 --- a/plugins/airbrake/CHANGELOG.md +++ b/plugins/airbrake/CHANGELOG.md @@ -1,5 +1,16 @@ # @backstage/plugin-airbrake +## 0.3.2 + +### Patch Changes + +- c5a462bff1: Fix a bug where API calls were being made and errors were being added to the snack bar when no project ID was present. This is a common use case for components that haven't added the Airbrake plugin annotation to their `catalog-info.yaml`. +- Updated dependencies + - @backstage/plugin-catalog-react@0.9.0 + - @backstage/core-components@0.9.1 + - @backstage/catalog-model@0.13.0 + - @backstage/dev-utils@0.2.25 + ## 0.3.2-next.0 ### Patch Changes diff --git a/plugins/airbrake/package.json b/plugins/airbrake/package.json index 52e1244230..c63906f78c 100644 --- a/plugins/airbrake/package.json +++ b/plugins/airbrake/package.json @@ -1,6 +1,6 @@ { "name": "@backstage/plugin-airbrake", - "version": "0.3.2-next.0", + "version": "0.3.2", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -23,11 +23,11 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/catalog-model": "^0.13.0-next.0", - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/catalog-model": "^0.13.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", - "@backstage/dev-utils": "^0.2.25-next.0", - "@backstage/plugin-catalog-react": "^0.9.0-next.0", + "@backstage/dev-utils": "^0.2.25", + "@backstage/plugin-catalog-react": "^0.9.0", "@backstage/test-utils": "^0.3.0", "@backstage/theme": "^0.2.15", "@material-ui/core": "^4.12.2", @@ -40,9 +40,9 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/app-defaults": "^0.2.1-next.0", - "@backstage/cli": "^0.15.2-next.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/app-defaults": "^0.2.1", + "@backstage/cli": "^0.15.2", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/allure/CHANGELOG.md b/plugins/allure/CHANGELOG.md index 6520fef7f4..40de2ce66f 100644 --- a/plugins/allure/CHANGELOG.md +++ b/plugins/allure/CHANGELOG.md @@ -1,5 +1,14 @@ # @backstage/plugin-allure +## 0.1.18 + +### Patch Changes + +- Updated dependencies + - @backstage/plugin-catalog-react@0.9.0 + - @backstage/core-components@0.9.1 + - @backstage/catalog-model@0.13.0 + ## 0.1.18-next.0 ### Patch Changes diff --git a/plugins/allure/package.json b/plugins/allure/package.json index ade58d7180..3f48bac1ea 100644 --- a/plugins/allure/package.json +++ b/plugins/allure/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-allure", "description": "A Backstage plugin that integrates with Allure", - "version": "0.1.18-next.0", + "version": "0.1.18", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -25,10 +25,10 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/catalog-model": "^0.13.0-next.0", - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/catalog-model": "^0.13.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", - "@backstage/plugin-catalog-react": "^0.9.0-next.0", + "@backstage/plugin-catalog-react": "^0.9.0", "@backstage/theme": "^0.2.15", "@material-ui/core": "^4.12.2", "@material-ui/icons": "^4.9.1", @@ -40,9 +40,9 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/analytics-module-ga/CHANGELOG.md b/plugins/analytics-module-ga/CHANGELOG.md index fdf4f1704a..a25a25e940 100644 --- a/plugins/analytics-module-ga/CHANGELOG.md +++ b/plugins/analytics-module-ga/CHANGELOG.md @@ -1,5 +1,12 @@ # @backstage/plugin-analytics-module-ga +## 0.1.13 + +### Patch Changes + +- Updated dependencies + - @backstage/core-components@0.9.1 + ## 0.1.13-next.0 ### Patch Changes diff --git a/plugins/analytics-module-ga/package.json b/plugins/analytics-module-ga/package.json index f3d684dce3..8b297ec512 100644 --- a/plugins/analytics-module-ga/package.json +++ b/plugins/analytics-module-ga/package.json @@ -1,6 +1,6 @@ { "name": "@backstage/plugin-analytics-module-ga", - "version": "0.1.13-next.0", + "version": "0.1.13", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -25,7 +25,7 @@ }, "dependencies": { "@backstage/config": "^0.1.15", - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", "@backstage/theme": "^0.2.15", "@material-ui/core": "^4.12.2", @@ -38,9 +38,9 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/apache-airflow/CHANGELOG.md b/plugins/apache-airflow/CHANGELOG.md index f1e24ae6d5..40af918ebf 100644 --- a/plugins/apache-airflow/CHANGELOG.md +++ b/plugins/apache-airflow/CHANGELOG.md @@ -1,5 +1,12 @@ # @backstage/plugin-apache-airflow +## 0.1.10 + +### Patch Changes + +- Updated dependencies + - @backstage/core-components@0.9.1 + ## 0.1.10-next.0 ### Patch Changes diff --git a/plugins/apache-airflow/package.json b/plugins/apache-airflow/package.json index 5e36dcca52..a48061c42d 100644 --- a/plugins/apache-airflow/package.json +++ b/plugins/apache-airflow/package.json @@ -1,6 +1,6 @@ { "name": "@backstage/plugin-apache-airflow", - "version": "0.1.10-next.0", + "version": "0.1.10", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -23,7 +23,7 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", "@material-ui/core": "^4.12.2", "@material-ui/icons": "^4.9.1", @@ -36,9 +36,9 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/api-docs/CHANGELOG.md b/plugins/api-docs/CHANGELOG.md index f145c80222..b2fc5f0110 100644 --- a/plugins/api-docs/CHANGELOG.md +++ b/plugins/api-docs/CHANGELOG.md @@ -1,5 +1,15 @@ # @backstage/plugin-api-docs +## 0.8.2 + +### Patch Changes + +- Updated dependencies + - @backstage/plugin-catalog@0.10.0 + - @backstage/plugin-catalog-react@0.9.0 + - @backstage/core-components@0.9.1 + - @backstage/catalog-model@0.13.0 + ## 0.8.2-next.0 ### Patch Changes diff --git a/plugins/api-docs/package.json b/plugins/api-docs/package.json index 0edaa58731..478409d0f0 100644 --- a/plugins/api-docs/package.json +++ b/plugins/api-docs/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-api-docs", "description": "A Backstage plugin that helps represent API entities in the frontend", - "version": "0.8.2-next.0", + "version": "0.8.2", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -34,11 +34,11 @@ }, "dependencies": { "@asyncapi/react-component": "1.0.0-next.33", - "@backstage/catalog-model": "^0.13.0-next.0", - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/catalog-model": "^0.13.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", - "@backstage/plugin-catalog": "^0.10.0-next.0", - "@backstage/plugin-catalog-react": "^0.9.0-next.0", + "@backstage/plugin-catalog": "^0.10.0", + "@backstage/plugin-catalog-react": "^0.9.0", "@backstage/theme": "^0.2.15", "@material-ui/core": "^4.12.2", "@material-ui/icons": "^4.9.1", @@ -56,9 +56,9 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/app-backend/CHANGELOG.md b/plugins/app-backend/CHANGELOG.md index c93408d321..082605d859 100644 --- a/plugins/app-backend/CHANGELOG.md +++ b/plugins/app-backend/CHANGELOG.md @@ -1,5 +1,15 @@ # @backstage/plugin-app-backend +## 0.3.29 + +### Patch Changes + +- ab7cd7d70e: Do some groundwork for supporting the `better-sqlite3` driver, to maybe eventually replace `@vscode/sqlite3` (#9912) +- e0a69ba49f: build(deps): bump `fs-extra` from 9.1.0 to 10.0.1 +- Updated dependencies + - @backstage/backend-common@0.13.0 + - @backstage/config-loader@0.9.7 + ## 0.3.29-next.0 ### Patch Changes diff --git a/plugins/app-backend/package.json b/plugins/app-backend/package.json index 3ff2b14a19..7a57385afe 100644 --- a/plugins/app-backend/package.json +++ b/plugins/app-backend/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-app-backend", "description": "A Backstage backend plugin that serves the Backstage frontend app", - "version": "0.3.29-next.0", + "version": "0.3.29", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -33,8 +33,8 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/backend-common": "^0.13.0-next.0", - "@backstage/config-loader": "^0.9.7-next.0", + "@backstage/backend-common": "^0.13.0", + "@backstage/config-loader": "^0.9.7", "@backstage/config": "^0.1.15", "@backstage/types": "^0.1.3", "@types/express": "^4.17.6", @@ -50,8 +50,8 @@ "yn": "^4.0.0" }, "devDependencies": { - "@backstage/backend-test-utils": "^0.1.21-next.0", - "@backstage/cli": "^0.15.2-next.0", + "@backstage/backend-test-utils": "^0.1.21", + "@backstage/cli": "^0.15.2", "@backstage/types": "^0.1.3", "@types/supertest": "^2.0.8", "mock-fs": "^5.1.0", diff --git a/plugins/auth-backend/CHANGELOG.md b/plugins/auth-backend/CHANGELOG.md index 6ee4b7d146..13761f4e6c 100644 --- a/plugins/auth-backend/CHANGELOG.md +++ b/plugins/auth-backend/CHANGELOG.md @@ -1,5 +1,19 @@ # @backstage/plugin-auth-backend +## 0.12.1 + +### Patch Changes + +- ab7cd7d70e: Do some groundwork for supporting the `better-sqlite3` driver, to maybe eventually replace `@vscode/sqlite3` (#9912) +- e0a69ba49f: build(deps): bump `fs-extra` from 9.1.0 to 10.0.1 +- bf95bb806c: Remove usages of now-removed `CatalogApi.getEntityByName` +- 3c2bc73901: Use `setupRequestMockHandlers` from `@backstage/backend-test-utils` +- Updated dependencies + - @backstage/backend-common@0.13.0 + - @backstage/catalog-model@0.13.0 + - @backstage/catalog-client@0.9.0 + - @backstage/plugin-auth-node@0.1.5 + ## 0.12.1-next.0 ### Patch Changes diff --git a/plugins/auth-backend/package.json b/plugins/auth-backend/package.json index 5a1df93c93..acf5a1eac6 100644 --- a/plugins/auth-backend/package.json +++ b/plugins/auth-backend/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-auth-backend", "description": "A Backstage backend plugin that handles authentication", - "version": "0.12.1-next.0", + "version": "0.12.1", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -33,10 +33,10 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/plugin-auth-node": "^0.1.5-next.0", - "@backstage/backend-common": "^0.13.0-next.0", - "@backstage/catalog-client": "^0.9.0-next.0", - "@backstage/catalog-model": "^0.13.0-next.0", + "@backstage/plugin-auth-node": "^0.1.5", + "@backstage/backend-common": "^0.13.0", + "@backstage/catalog-client": "^0.9.0", + "@backstage/catalog-model": "^0.13.0", "@backstage/config": "^0.1.15", "@backstage/errors": "^0.2.2", "@backstage/types": "^0.1.3", @@ -76,8 +76,8 @@ "yn": "^4.0.0" }, "devDependencies": { - "@backstage/backend-test-utils": "^0.1.21-next.0", - "@backstage/cli": "^0.15.2-next.0", + "@backstage/backend-test-utils": "^0.1.21", + "@backstage/cli": "^0.15.2", "@types/body-parser": "^1.19.0", "@types/cookie-parser": "^1.4.2", "@types/express-session": "^1.17.2", diff --git a/plugins/auth-node/CHANGELOG.md b/plugins/auth-node/CHANGELOG.md index dbb8316cf2..1e0dc95f19 100644 --- a/plugins/auth-node/CHANGELOG.md +++ b/plugins/auth-node/CHANGELOG.md @@ -1,5 +1,13 @@ # @backstage/plugin-auth-node +## 0.1.5 + +### Patch Changes + +- Updated dependencies + - @backstage/backend-common@0.13.0 + - @backstage/catalog-model@0.13.0 + ## 0.1.5-next.0 ### Patch Changes diff --git a/plugins/auth-node/package.json b/plugins/auth-node/package.json index a302feca9e..ce4fda9cf0 100644 --- a/plugins/auth-node/package.json +++ b/plugins/auth-node/package.json @@ -1,6 +1,6 @@ { "name": "@backstage/plugin-auth-node", - "version": "0.1.5-next.0", + "version": "0.1.5", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -23,8 +23,8 @@ "start": "backstage-cli package start" }, "dependencies": { - "@backstage/backend-common": "^0.13.0-next.0", - "@backstage/catalog-model": "^0.13.0-next.0", + "@backstage/backend-common": "^0.13.0", + "@backstage/catalog-model": "^0.13.0", "@backstage/config": "^0.1.15", "@backstage/errors": "^0.2.2", "jose": "^1.27.1", @@ -32,7 +32,7 @@ "winston": "^3.2.1" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "msw": "^0.35.0", "uuid": "^8.0.0" }, diff --git a/plugins/azure-devops-backend/CHANGELOG.md b/plugins/azure-devops-backend/CHANGELOG.md index c841ec0e4d..43ab9e2d02 100644 --- a/plugins/azure-devops-backend/CHANGELOG.md +++ b/plugins/azure-devops-backend/CHANGELOG.md @@ -1,5 +1,12 @@ # @backstage/plugin-azure-devops-backend +## 0.3.8 + +### Patch Changes + +- Updated dependencies + - @backstage/backend-common@0.13.0 + ## 0.3.8-next.0 ### Patch Changes diff --git a/plugins/azure-devops-backend/package.json b/plugins/azure-devops-backend/package.json index 6a94a2b4d3..6ee5e71688 100644 --- a/plugins/azure-devops-backend/package.json +++ b/plugins/azure-devops-backend/package.json @@ -1,6 +1,6 @@ { "name": "@backstage/plugin-azure-devops-backend", - "version": "0.3.8-next.0", + "version": "0.3.8", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -23,7 +23,7 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/backend-common": "^0.13.0-next.0", + "@backstage/backend-common": "^0.13.0", "@backstage/config": "^0.1.15", "@backstage/plugin-azure-devops-common": "^0.2.2", "@types/express": "^4.17.6", @@ -35,7 +35,7 @@ "yn": "^4.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@types/supertest": "^2.0.8", "supertest": "^6.1.6", "msw": "^0.35.0" diff --git a/plugins/azure-devops/CHANGELOG.md b/plugins/azure-devops/CHANGELOG.md index 339539a7ea..1154f40058 100644 --- a/plugins/azure-devops/CHANGELOG.md +++ b/plugins/azure-devops/CHANGELOG.md @@ -1,5 +1,14 @@ # @backstage/plugin-azure-devops +## 0.1.18 + +### Patch Changes + +- Updated dependencies + - @backstage/plugin-catalog-react@0.9.0 + - @backstage/core-components@0.9.1 + - @backstage/catalog-model@0.13.0 + ## 0.1.18-next.0 ### Patch Changes diff --git a/plugins/azure-devops/package.json b/plugins/azure-devops/package.json index fcfc97ce9d..acf86e5962 100644 --- a/plugins/azure-devops/package.json +++ b/plugins/azure-devops/package.json @@ -1,6 +1,6 @@ { "name": "@backstage/plugin-azure-devops", - "version": "0.1.18-next.0", + "version": "0.1.18", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -30,12 +30,12 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/catalog-model": "^0.13.0-next.0", - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/catalog-model": "^0.13.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", "@backstage/errors": "^0.2.2", "@backstage/plugin-azure-devops-common": "^0.2.2", - "@backstage/plugin-catalog-react": "^0.9.0-next.0", + "@backstage/plugin-catalog-react": "^0.9.0", "@backstage/theme": "^0.2.15", "@material-ui/core": "^4.12.2", "@material-ui/icons": "^4.9.1", @@ -49,9 +49,9 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/badges-backend/CHANGELOG.md b/plugins/badges-backend/CHANGELOG.md index a26b98d2e6..e55338dd68 100644 --- a/plugins/badges-backend/CHANGELOG.md +++ b/plugins/badges-backend/CHANGELOG.md @@ -1,5 +1,15 @@ # @backstage/plugin-badges-backend +## 0.1.23 + +### Patch Changes + +- bf95bb806c: Remove usages of now-removed `CatalogApi.getEntityByName` +- Updated dependencies + - @backstage/backend-common@0.13.0 + - @backstage/catalog-model@0.13.0 + - @backstage/catalog-client@0.9.0 + ## 0.1.23-next.0 ### Patch Changes diff --git a/plugins/badges-backend/package.json b/plugins/badges-backend/package.json index d5e3fe3dcf..9eaa3f084f 100644 --- a/plugins/badges-backend/package.json +++ b/plugins/badges-backend/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-badges-backend", "description": "A Backstage backend plugin that generates README badges for your entities", - "version": "0.1.23-next.0", + "version": "0.1.23", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -34,9 +34,9 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/backend-common": "^0.13.0-next.0", - "@backstage/catalog-client": "^0.9.0-next.0", - "@backstage/catalog-model": "^0.13.0-next.0", + "@backstage/backend-common": "^0.13.0", + "@backstage/catalog-client": "^0.9.0", + "@backstage/catalog-model": "^0.13.0", "@backstage/config": "^0.1.15", "@backstage/errors": "^0.2.2", "@types/express": "^4.17.6", @@ -48,7 +48,7 @@ "yn": "^4.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@types/supertest": "^2.0.8", "supertest": "^6.1.3" }, diff --git a/plugins/badges/CHANGELOG.md b/plugins/badges/CHANGELOG.md index df3b511cb7..dd2ffd1747 100644 --- a/plugins/badges/CHANGELOG.md +++ b/plugins/badges/CHANGELOG.md @@ -1,5 +1,14 @@ # @backstage/plugin-badges +## 0.2.26 + +### Patch Changes + +- Updated dependencies + - @backstage/plugin-catalog-react@0.9.0 + - @backstage/core-components@0.9.1 + - @backstage/catalog-model@0.13.0 + ## 0.2.26-next.0 ### Patch Changes diff --git a/plugins/badges/package.json b/plugins/badges/package.json index c058989e94..e4ade61df1 100644 --- a/plugins/badges/package.json +++ b/plugins/badges/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-badges", "description": "A Backstage plugin that generates README badges for your entities", - "version": "0.2.26-next.0", + "version": "0.2.26", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -30,11 +30,11 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/catalog-model": "^0.13.0-next.0", - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/catalog-model": "^0.13.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", "@backstage/errors": "^0.2.2", - "@backstage/plugin-catalog-react": "^0.9.0-next.0", + "@backstage/plugin-catalog-react": "^0.9.0", "@backstage/theme": "^0.2.15", "@material-ui/core": "^4.12.2", "@material-ui/icons": "^4.9.1", @@ -46,9 +46,9 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/bazaar-backend/CHANGELOG.md b/plugins/bazaar-backend/CHANGELOG.md index e161516d5f..4f4480ab62 100644 --- a/plugins/bazaar-backend/CHANGELOG.md +++ b/plugins/bazaar-backend/CHANGELOG.md @@ -1,5 +1,14 @@ # @backstage/plugin-bazaar-backend +## 0.1.13 + +### Patch Changes + +- ab7cd7d70e: Do some groundwork for supporting the `better-sqlite3` driver, to maybe eventually replace `@vscode/sqlite3` (#9912) +- Updated dependencies + - @backstage/backend-common@0.13.0 + - @backstage/backend-test-utils@0.1.21 + ## 0.1.13-next.0 ### Patch Changes diff --git a/plugins/bazaar-backend/package.json b/plugins/bazaar-backend/package.json index 6224e6d869..2052d52d59 100644 --- a/plugins/bazaar-backend/package.json +++ b/plugins/bazaar-backend/package.json @@ -1,6 +1,6 @@ { "name": "@backstage/plugin-bazaar-backend", - "version": "0.1.13-next.0", + "version": "0.1.13", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -23,8 +23,8 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/backend-common": "^0.13.0-next.0", - "@backstage/backend-test-utils": "^0.1.21-next.0", + "@backstage/backend-common": "^0.13.0", + "@backstage/backend-test-utils": "^0.1.21", "@backstage/config": "^0.1.15", "@types/express": "^4.17.6", "express": "^4.17.1", @@ -34,7 +34,7 @@ "yn": "^4.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0" + "@backstage/cli": "^0.15.2" }, "files": [ "dist", diff --git a/plugins/bazaar/CHANGELOG.md b/plugins/bazaar/CHANGELOG.md index 1ad604fd9d..4c139005bf 100644 --- a/plugins/bazaar/CHANGELOG.md +++ b/plugins/bazaar/CHANGELOG.md @@ -1,5 +1,17 @@ # @backstage/plugin-bazaar +## 0.1.17 + +### Patch Changes + +- Updated dependencies + - @backstage/cli@0.15.2 + - @backstage/plugin-catalog@0.10.0 + - @backstage/plugin-catalog-react@0.9.0 + - @backstage/core-components@0.9.1 + - @backstage/catalog-model@0.13.0 + - @backstage/catalog-client@0.9.0 + ## 0.1.17-next.0 ### Patch Changes diff --git a/plugins/bazaar/package.json b/plugins/bazaar/package.json index 6e44067bd7..9bca7c1c6c 100644 --- a/plugins/bazaar/package.json +++ b/plugins/bazaar/package.json @@ -1,6 +1,6 @@ { "name": "@backstage/plugin-bazaar", - "version": "0.1.17-next.0", + "version": "0.1.17", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -24,13 +24,13 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/catalog-client": "^0.9.0-next.0", - "@backstage/catalog-model": "^0.13.0-next.0", - "@backstage/cli": "^0.15.2-next.0", - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/catalog-client": "^0.9.0", + "@backstage/catalog-model": "^0.13.0", + "@backstage/cli": "^0.15.2", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", - "@backstage/plugin-catalog": "^0.10.0-next.0", - "@backstage/plugin-catalog-react": "^0.9.0-next.0", + "@backstage/plugin-catalog": "^0.10.0", + "@backstage/plugin-catalog-react": "^0.9.0", "@date-io/luxon": "1.x", "@material-ui/core": "^4.12.2", "@material-ui/icons": "^4.9.1", @@ -47,8 +47,8 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/cli": "^0.15.2", + "@backstage/dev-utils": "^0.2.25", "@testing-library/jest-dom": "^5.10.1", "cross-fetch": "^3.1.5" }, diff --git a/plugins/bitrise/CHANGELOG.md b/plugins/bitrise/CHANGELOG.md index 26ce2d20b1..2442a96f5f 100644 --- a/plugins/bitrise/CHANGELOG.md +++ b/plugins/bitrise/CHANGELOG.md @@ -1,5 +1,14 @@ # @backstage/plugin-bitrise +## 0.1.29 + +### Patch Changes + +- Updated dependencies + - @backstage/plugin-catalog-react@0.9.0 + - @backstage/core-components@0.9.1 + - @backstage/catalog-model@0.13.0 + ## 0.1.29-next.0 ### Patch Changes diff --git a/plugins/bitrise/package.json b/plugins/bitrise/package.json index 16b58ba129..7802dde86d 100644 --- a/plugins/bitrise/package.json +++ b/plugins/bitrise/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-bitrise", "description": "A Backstage plugin that integrates towards Bitrise", - "version": "0.1.29-next.0", + "version": "0.1.29", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -24,10 +24,10 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/catalog-model": "^0.13.0-next.0", - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/catalog-model": "^0.13.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", - "@backstage/plugin-catalog-react": "^0.9.0-next.0", + "@backstage/plugin-catalog-react": "^0.9.0", "@backstage/theme": "^0.2.15", "@material-ui/core": "^4.12.2", "@material-ui/icons": "^4.9.1", @@ -43,9 +43,9 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/catalog-backend-module-aws/CHANGELOG.md b/plugins/catalog-backend-module-aws/CHANGELOG.md index 8e15c16546..f20bd9fce2 100644 --- a/plugins/catalog-backend-module-aws/CHANGELOG.md +++ b/plugins/catalog-backend-module-aws/CHANGELOG.md @@ -1,5 +1,15 @@ # @backstage/plugin-catalog-backend-module-aws +## 0.1.2 + +### Patch Changes + +- f115a7f8fd: Added `AwsS3DiscoveryProcessor`, which was moved here from `@backstage/plugin-catalog-backend` where it previously resided. +- Updated dependencies + - @backstage/backend-common@0.13.0 + - @backstage/plugin-catalog-backend@0.24.0 + - @backstage/catalog-model@0.13.0 + ## 0.1.2-next.0 ### Patch Changes diff --git a/plugins/catalog-backend-module-aws/package.json b/plugins/catalog-backend-module-aws/package.json index 72324483d9..d49e229b47 100644 --- a/plugins/catalog-backend-module-aws/package.json +++ b/plugins/catalog-backend-module-aws/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-catalog-backend-module-aws", "description": "A Backstage catalog backend module that helps integrate towards AWS", - "version": "0.1.2-next.0", + "version": "0.1.2", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -33,11 +33,11 @@ "start": "backstage-cli package start" }, "dependencies": { - "@backstage/backend-common": "^0.13.0-next.0", - "@backstage/catalog-model": "^0.13.0-next.0", + "@backstage/backend-common": "^0.13.0", + "@backstage/catalog-model": "^0.13.0", "@backstage/config": "^0.1.15", "@backstage/errors": "^0.2.2", - "@backstage/plugin-catalog-backend": "^0.24.0-next.0", + "@backstage/plugin-catalog-backend": "^0.24.0", "@backstage/types": "^0.1.3", "aws-sdk": "^2.840.0", "lodash": "^4.17.21", @@ -45,7 +45,7 @@ "winston": "^3.2.1" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@types/lodash": "^4.14.151", "aws-sdk-mock": "^5.2.1", "yaml": "^1.9.2" diff --git a/plugins/catalog-backend-module-azure/CHANGELOG.md b/plugins/catalog-backend-module-azure/CHANGELOG.md index f6f876ca9f..e5cce00527 100644 --- a/plugins/catalog-backend-module-azure/CHANGELOG.md +++ b/plugins/catalog-backend-module-azure/CHANGELOG.md @@ -1,5 +1,18 @@ # @backstage/plugin-catalog-backend-module-azure +## 0.1.0 + +### Minor Changes + +- 66ba5d9023: Added package, moving out azure specific functionality from the catalog-backend + +### Patch Changes + +- Updated dependencies + - @backstage/backend-common@0.13.0 + - @backstage/plugin-catalog-backend@0.24.0 + - @backstage/catalog-model@0.13.0 + ## 0.1.0-next.0 ### Minor Changes diff --git a/plugins/catalog-backend-module-azure/package.json b/plugins/catalog-backend-module-azure/package.json index 91e421633d..1a6a70ad5e 100644 --- a/plugins/catalog-backend-module-azure/package.json +++ b/plugins/catalog-backend-module-azure/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-catalog-backend-module-azure", "description": "A Backstage catalog backend module that helps integrate towards Azure", - "version": "0.1.0-next.0", + "version": "0.1.0", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -33,12 +33,12 @@ "start": "backstage-cli package start" }, "dependencies": { - "@backstage/backend-common": "^0.13.0-next.0", - "@backstage/catalog-model": "^0.13.0-next.0", + "@backstage/backend-common": "^0.13.0", + "@backstage/catalog-model": "^0.13.0", "@backstage/config": "^0.1.15", "@backstage/errors": "^0.2.2", "@backstage/integration": "^0.8.0", - "@backstage/plugin-catalog-backend": "^0.24.0-next.0", + "@backstage/plugin-catalog-backend": "^0.24.0", "@backstage/types": "^0.1.3", "lodash": "^4.17.21", "msw": "^0.35.0", @@ -46,8 +46,8 @@ "winston": "^3.2.1" }, "devDependencies": { - "@backstage/backend-test-utils": "^0.1.21-next.0", - "@backstage/cli": "^0.15.2-next.0", + "@backstage/backend-test-utils": "^0.1.21", + "@backstage/cli": "^0.15.2", "@types/lodash": "^4.14.151" }, "files": [ diff --git a/plugins/catalog-backend-module-bitbucket/CHANGELOG.md b/plugins/catalog-backend-module-bitbucket/CHANGELOG.md new file mode 100644 index 0000000000..3852f83063 --- /dev/null +++ b/plugins/catalog-backend-module-bitbucket/CHANGELOG.md @@ -0,0 +1,14 @@ +# @backstage/plugin-catalog-backend-module-bitbucket + +## 0.1.0 + +### Minor Changes + +- 47a5ae5dd2: Added package, moving out Bitbucket specific functionality from the catalog-backend + +### Patch Changes + +- Updated dependencies + - @backstage/backend-common@0.13.0 + - @backstage/plugin-catalog-backend@0.24.0 + - @backstage/catalog-model@0.13.0 diff --git a/plugins/catalog-backend-module-bitbucket/package.json b/plugins/catalog-backend-module-bitbucket/package.json index 56a7cd2894..4980eed0fd 100644 --- a/plugins/catalog-backend-module-bitbucket/package.json +++ b/plugins/catalog-backend-module-bitbucket/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-catalog-backend-module-bitbucket", "description": "A Backstage catalog backend module that helps integrate towards Bitbucket", - "version": "0.0.0", + "version": "0.1.0", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -33,12 +33,12 @@ "start": "backstage-cli package start" }, "dependencies": { - "@backstage/backend-common": "^0.13.0-next.0", - "@backstage/catalog-model": "^0.13.0-next.0", + "@backstage/backend-common": "^0.13.0", + "@backstage/catalog-model": "^0.13.0", "@backstage/config": "^0.1.15", "@backstage/errors": "^0.2.2", "@backstage/integration": "^0.8.0", - "@backstage/plugin-catalog-backend": "^0.24.0-next.0", + "@backstage/plugin-catalog-backend": "^0.24.0", "@backstage/types": "^0.1.3", "lodash": "^4.17.21", "msw": "^0.35.0", @@ -46,8 +46,8 @@ "winston": "^3.2.1" }, "devDependencies": { - "@backstage/backend-test-utils": "^0.1.21-next.0", - "@backstage/cli": "^0.15.2-next.0", + "@backstage/backend-test-utils": "^0.1.21", + "@backstage/cli": "^0.15.2", "@types/lodash": "^4.14.151" }, "files": [ diff --git a/plugins/catalog-backend-module-github/CHANGELOG.md b/plugins/catalog-backend-module-github/CHANGELOG.md new file mode 100644 index 0000000000..ff15890f73 --- /dev/null +++ b/plugins/catalog-backend-module-github/CHANGELOG.md @@ -0,0 +1,14 @@ +# @backstage/plugin-catalog-backend-module-github + +## 0.1.0 + +### Minor Changes + +- d4934e19b1: Added package, moving out GitHub specific functionality from the catalog-backend + +### Patch Changes + +- Updated dependencies + - @backstage/backend-common@0.13.0 + - @backstage/plugin-catalog-backend@0.24.0 + - @backstage/catalog-model@0.13.0 diff --git a/plugins/catalog-backend-module-github/package.json b/plugins/catalog-backend-module-github/package.json index fe4607ac16..0e63cf9da2 100644 --- a/plugins/catalog-backend-module-github/package.json +++ b/plugins/catalog-backend-module-github/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-catalog-backend-module-github", "description": "A Backstage catalog backend module that helps integrate towards GitHub", - "version": "0.0.0", + "version": "0.1.0", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -33,12 +33,12 @@ "start": "backstage-cli package start" }, "dependencies": { - "@backstage/backend-common": "^0.13.0-next.0", - "@backstage/catalog-model": "^0.13.0-next.0", + "@backstage/backend-common": "^0.13.0", + "@backstage/catalog-model": "^0.13.0", "@backstage/config": "^0.1.15", "@backstage/errors": "^0.2.2", "@backstage/integration": "^0.8.0", - "@backstage/plugin-catalog-backend": "^0.24.0-next.0", + "@backstage/plugin-catalog-backend": "^0.24.0", "@backstage/types": "^0.1.3", "@octokit/graphql": "^4.5.8", "lodash": "^4.17.21", @@ -47,8 +47,8 @@ "winston": "^3.2.1" }, "devDependencies": { - "@backstage/backend-test-utils": "^0.1.21-next.0", - "@backstage/cli": "^0.15.2-next.0", + "@backstage/backend-test-utils": "^0.1.21", + "@backstage/cli": "^0.15.2", "@types/lodash": "^4.14.151" }, "files": [ diff --git a/plugins/catalog-backend-module-gitlab/CHANGELOG.md b/plugins/catalog-backend-module-gitlab/CHANGELOG.md index 09f6df6fe4..75ddcba68b 100644 --- a/plugins/catalog-backend-module-gitlab/CHANGELOG.md +++ b/plugins/catalog-backend-module-gitlab/CHANGELOG.md @@ -1,5 +1,18 @@ # @backstage/plugin-catalog-backend-module-gitlab +## 0.1.0 + +### Minor Changes + +- 66ba5d9023: Added package, moving out GitLab specific functionality from the catalog-backend + +### Patch Changes + +- Updated dependencies + - @backstage/backend-common@0.13.0 + - @backstage/plugin-catalog-backend@0.24.0 + - @backstage/catalog-model@0.13.0 + ## 0.1.0-next.0 ### Minor Changes diff --git a/plugins/catalog-backend-module-gitlab/package.json b/plugins/catalog-backend-module-gitlab/package.json index 7073291d2b..976cee1e69 100644 --- a/plugins/catalog-backend-module-gitlab/package.json +++ b/plugins/catalog-backend-module-gitlab/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-catalog-backend-module-gitlab", "description": "A Backstage catalog backend module that helps integrate towards GitLab", - "version": "0.1.0-next.0", + "version": "0.1.0", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -33,12 +33,12 @@ "start": "backstage-cli package start" }, "dependencies": { - "@backstage/backend-common": "^0.13.0-next.0", - "@backstage/catalog-model": "^0.13.0-next.0", + "@backstage/backend-common": "^0.13.0", + "@backstage/catalog-model": "^0.13.0", "@backstage/config": "^0.1.15", "@backstage/errors": "^0.2.2", "@backstage/integration": "^0.8.0", - "@backstage/plugin-catalog-backend": "^0.24.0-next.0", + "@backstage/plugin-catalog-backend": "^0.24.0", "@backstage/types": "^0.1.3", "lodash": "^4.17.21", "msw": "^0.35.0", @@ -46,8 +46,8 @@ "winston": "^3.2.1" }, "devDependencies": { - "@backstage/backend-test-utils": "^0.1.21-next.0", - "@backstage/cli": "^0.15.2-next.0", + "@backstage/backend-test-utils": "^0.1.21", + "@backstage/cli": "^0.15.2", "@types/lodash": "^4.14.151" }, "files": [ diff --git a/plugins/catalog-backend-module-ldap/CHANGELOG.md b/plugins/catalog-backend-module-ldap/CHANGELOG.md index 6933b4e6c5..e0cf628845 100644 --- a/plugins/catalog-backend-module-ldap/CHANGELOG.md +++ b/plugins/catalog-backend-module-ldap/CHANGELOG.md @@ -1,5 +1,44 @@ # @backstage/plugin-catalog-backend-module-ldap +## 0.4.0 + +### Minor Changes + +- 9461f73643: **BREAKING**: Added a `schedule` field to `LdapOrgEntityProvider.fromConfig`, which is required. If you want to retain the old behavior of scheduling the provider manually, you can set it to the string value `'manual'`. But you may want to leverage the ability to instead pass in the recurring task schedule information directly. This will allow you to simplify your backend setup code to not need an intermediate variable and separate scheduling code at the bottom. + + All things said, a typical setup might now look as follows: + + ```diff + // packages/backend/src/plugins/catalog.ts + +import { Duration } from 'luxon'; + +import { LdapOrgEntityProvider } from '@backstage/plugin-catalog-backend-module-ldap'; + export default async function createPlugin( + env: PluginEnvironment, + ): Promise { + const builder = await CatalogBuilder.create(env); + + // The target parameter below needs to match the ldap.providers.target + + // value specified in your app-config. + + builder.addEntityProvider( + + LdapOrgEntityProvider.fromConfig(env.config, { + + id: 'our-ldap-master', + + target: 'ldaps://ds.example.net', + + logger: env.logger, + + schedule: env.scheduler.createScheduledTaskRunner({ + + frequency: Duration.fromObject({ minutes: 60 }), + + timeout: Duration.fromObject({ minutes: 15 }), + + }), + + }), + + ); + ``` + +### Patch Changes + +- f751e84572: Ignore search referrals instead of throwing an error. +- Updated dependencies + - @backstage/backend-tasks@0.2.0 + - @backstage/plugin-catalog-backend@0.24.0 + - @backstage/catalog-model@0.13.0 + ## 0.4.0-next.0 ### Minor Changes diff --git a/plugins/catalog-backend-module-ldap/package.json b/plugins/catalog-backend-module-ldap/package.json index a09f93536f..514f8f9e10 100644 --- a/plugins/catalog-backend-module-ldap/package.json +++ b/plugins/catalog-backend-module-ldap/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-catalog-backend-module-ldap", "description": "A Backstage catalog backend module that helps integrate towards LDAP", - "version": "0.4.0-next.0", + "version": "0.4.0", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -33,11 +33,11 @@ "start": "backstage-cli package start" }, "dependencies": { - "@backstage/backend-tasks": "^0.2.0-next.0", - "@backstage/catalog-model": "^0.13.0-next.0", + "@backstage/backend-tasks": "^0.2.0", + "@backstage/catalog-model": "^0.13.0", "@backstage/config": "^0.1.15", "@backstage/errors": "^0.2.2", - "@backstage/plugin-catalog-backend": "^0.24.0-next.0", + "@backstage/plugin-catalog-backend": "^0.24.0", "@backstage/types": "^0.1.3", "@types/ldapjs": "^2.2.0", "ldapjs": "^2.2.0", @@ -46,7 +46,7 @@ "winston": "^3.2.1" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@types/lodash": "^4.14.151" }, "files": [ diff --git a/plugins/catalog-backend-module-msgraph/CHANGELOG.md b/plugins/catalog-backend-module-msgraph/CHANGELOG.md index 7b8a358517..859b43813d 100644 --- a/plugins/catalog-backend-module-msgraph/CHANGELOG.md +++ b/plugins/catalog-backend-module-msgraph/CHANGELOG.md @@ -1,5 +1,14 @@ # @backstage/plugin-catalog-backend-module-msgraph +## 0.2.19 + +### Patch Changes + +- 3c2bc73901: Use `setupRequestMockHandlers` from `@backstage/backend-test-utils` +- Updated dependencies + - @backstage/plugin-catalog-backend@0.24.0 + - @backstage/catalog-model@0.13.0 + ## 0.2.19-next.0 ### Patch Changes diff --git a/plugins/catalog-backend-module-msgraph/package.json b/plugins/catalog-backend-module-msgraph/package.json index 5de78b3ec4..58ff3b2b3d 100644 --- a/plugins/catalog-backend-module-msgraph/package.json +++ b/plugins/catalog-backend-module-msgraph/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-catalog-backend-module-msgraph", "description": "A Backstage catalog backend module that helps integrate towards Microsoft Graph", - "version": "0.2.19-next.0", + "version": "0.2.19", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -34,9 +34,9 @@ }, "dependencies": { "@azure/msal-node": "^1.1.0", - "@backstage/catalog-model": "^0.13.0-next.0", + "@backstage/catalog-model": "^0.13.0", "@backstage/config": "^0.1.15", - "@backstage/plugin-catalog-backend": "^0.24.0-next.0", + "@backstage/plugin-catalog-backend": "^0.24.0", "@microsoft/microsoft-graph-types": "^2.6.0", "@types/node-fetch": "^2.5.12", "lodash": "^4.17.21", @@ -46,9 +46,9 @@ "qs": "^6.9.4" }, "devDependencies": { - "@backstage/backend-common": "^0.13.0-next.0", - "@backstage/backend-test-utils": "^0.1.21-next.0", - "@backstage/cli": "^0.15.2-next.0", + "@backstage/backend-common": "^0.13.0", + "@backstage/backend-test-utils": "^0.1.21", + "@backstage/cli": "^0.15.2", "@types/lodash": "^4.14.151", "msw": "^0.35.0" }, diff --git a/plugins/catalog-backend/CHANGELOG.md b/plugins/catalog-backend/CHANGELOG.md index 664f58ffe5..b0b7403311 100644 --- a/plugins/catalog-backend/CHANGELOG.md +++ b/plugins/catalog-backend/CHANGELOG.md @@ -1,5 +1,103 @@ # @backstage/plugin-catalog-backend +## 0.24.0 + +### Minor Changes + +- 66ba5d9023: **BREAKING**: Removed `GithubDiscoveryProcessor`, `GithubMultiOrgReaderProcessor`, `GitHubOrgEntityProvider`, `GithubOrgReaderProcessor`, and `GithubMultiOrgConfig` which now instead should be imported from `@backstage/plugin-catalog-backend-module-github`. NOTE THAT the `GithubDiscoveryProcessor` and `GithubOrgReaderProcessor` were part of the default set of processors in the catalog backend, and if you are a user of discovery or location based org ingestion on GitLab, you MUST now add them manually in the catalog initialization code of your backend. + + ```diff + // In packages/backend/src/plugins/catalog.ts + +import { + + GithubDiscoveryProcessor, + + GithubOrgReaderProcessor, + +} from '@backstage/plugin-catalog-backend-module-github'; + +import { + + ScmIntegrations, + + DefaultGithubCredentialsProvider + +} from '@backstage/integration'; + + export default async function createPlugin( + env: PluginEnvironment, + ): Promise { + const builder = await CatalogBuilder.create(env); + + const integrations = ScmIntegrations.fromConfig(config); + + const githubCredentialsProvider = + + DefaultGithubCredentialsProvider.fromIntegrations(integrations); + + builder.addProcessor( + + GithubDiscoveryProcessor.fromConfig(config, { + + logger, + + githubCredentialsProvider, + + }), + + GithubOrgReaderProcessor.fromConfig(config, { + + logger, + + githubCredentialsProvider, + + }), + + ); + ``` + + **BREAKING**: Removed `GitLabDiscoveryProcessor`, which now instead should be imported from `@backstage/plugin-catalog-backend-module-gitlab`. NOTE THAT this processor was part of the default set of processors in the catalog backend, and if you are a user of discovery on GitLab, you MUST now add it manually in the catalog initialization code of your backend. + + ```diff + // In packages/backend/src/plugins/catalog.ts + +import { GitLabDiscoveryProcessor } from '@backstage/plugin-catalog-backend-module-gitlab'; + + export default async function createPlugin( + env: PluginEnvironment, + ): Promise { + const builder = await CatalogBuilder.create(env); + + builder.addProcessor( + + GitLabDiscoveryProcessor.fromConfig(env.config, { logger: env.logger }) + + ); + ``` + + **BREAKING**: Removed `BitbucketDiscoveryProcessor`, which now instead should be imported from `@backstage/plugin-catalog-backend-module-bitbucket`. NOTE THAT this processor was part of the default set of processors in the catalog backend, and if you are a user of discovery on Bitbucket, you MUST now add it manually in the catalog initialization code of your backend. + + ```diff + // In packages/backend/src/plugins/catalog.ts + +import { BitbucketDiscoveryProcessor } from '@backstage/plugin-catalog-backend-module-bitbucket'; + + export default async function createPlugin( + env: PluginEnvironment, + ): Promise { + const builder = await CatalogBuilder.create(env); + + builder.addProcessor( + + BitbucketDiscoveryProcessor.fromConfig(env.config, { logger: env.logger }) + + ); + ``` + + **BREAKING**: Removed `AzureDevOpsDiscoveryProcessor`, which now instead should be imported from `@backstage/plugin-catalog-backend-module-azure`. This processor was not part of the set of default processors. If you were using it, you should already have a reference to it in your backend code and only need to update the import. + + **BREAKING**: Removed the formerly deprecated type `BitbucketRepositoryParser`, which is instead reintroduced in `@backstage/plugin-catalog-backend-module-bitbucket`. + +- f115a7f8fd: **BREAKING**: Removed `AwsS3DiscoveryProcessor`, which now instead should be imported from `@backstage/plugin-catalog-backend-module-aws`. +- 55150919ed: - **BREAKING**: Support for `backstage.io/v1beta2` Software Templates has been removed. Please migrate your legacy templates to the new `scaffolder.backstage.io/v1beta3` `apiVersion` by following the [migration guide](https://backstage.io/docs/features/software-templates/migrating-from-v1beta2-to-v1beta3) + +### Patch Changes + +- ab7cd7d70e: Do some groundwork for supporting the `better-sqlite3` driver, to maybe eventually replace `@vscode/sqlite3` (#9912) +- e0a69ba49f: build(deps): bump `fs-extra` from 9.1.0 to 10.0.1 +- 616f02ade2: support Bitbucket Cloud's code search to discover catalog files (multiple per repo, Location entities for existing files only) +- e421d77536: **BREAKING**: + + - Removed the previously deprecated `runPeriodically` export. Please use the `@backstage/backend-tasks` package instead, or copy [the actual implementation](https://github.com/backstage/backstage/blob/02875d4d56708c60f86f6b0a5b3da82e24988354/plugins/catalog-backend/src/util/runPeriodically.ts#L29) into your own code if you explicitly do not want coordination of task runs across your worker nodes. + - Removed the previously deprecated `CatalogProcessorLocationResult.optional` field. Please set the corresponding `LocationSpec.presence` field to `'optional'` instead. + - Related to the previous point, the `processingResult.location` function no longer has a second boolean `optional` argument. Please set the corresponding `LocationSpec.presence` field to `'optional'` instead. + - Removed the previously deprecated `StaticLocationProcessor`. It has not been in use for some time; its functionality is covered by `ConfigLocationEntityProvider` instead. + +- 3c2bc73901: Use `setupRequestMockHandlers` from `@backstage/backend-test-utils` +- c1168bb440: Fixed display of the location in the log message that is printed when entity envelope validation fails. +- b1aacbf96a: Applied the fix for the `/alpha` entry point resolution that was part of the `v0.70.1` release of Backstage. +- 3e54f6c436: Use `@backstage/plugin-search-common` package instead of `@backstage/search-common`. +- Updated dependencies + - @backstage/backend-common@0.13.0 + - @backstage/plugin-scaffolder-common@0.3.0 + - @backstage/catalog-model@0.13.0 + - @backstage/plugin-catalog-common@0.2.2 + - @backstage/plugin-search-common@0.3.1 + - @backstage/catalog-client@0.9.0 + - @backstage/plugin-permission-node@0.5.4 + ## 0.24.0-next.0 ### Minor Changes diff --git a/plugins/catalog-backend/package.json b/plugins/catalog-backend/package.json index e9aee074f3..578bc09d8f 100644 --- a/plugins/catalog-backend/package.json +++ b/plugins/catalog-backend/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-catalog-backend", "description": "The Backstage backend plugin that provides the Backstage catalog", - "version": "0.24.0-next.0", + "version": "0.24.0", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -34,17 +34,17 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/backend-common": "^0.13.0-next.0", - "@backstage/catalog-client": "^0.9.0-next.0", - "@backstage/catalog-model": "^0.13.0-next.0", + "@backstage/backend-common": "^0.13.0", + "@backstage/catalog-client": "^0.9.0", + "@backstage/catalog-model": "^0.13.0", "@backstage/config": "^0.1.15", "@backstage/errors": "^0.2.2", "@backstage/integration": "^0.8.0", - "@backstage/plugin-catalog-common": "^0.2.2-next.0", + "@backstage/plugin-catalog-common": "^0.2.2", "@backstage/plugin-permission-common": "^0.5.2", - "@backstage/plugin-permission-node": "^0.5.4-next.0", - "@backstage/plugin-scaffolder-common": "^0.3.0-next.0", - "@backstage/plugin-search-common": "^0.3.1-next.0", + "@backstage/plugin-permission-node": "^0.5.4", + "@backstage/plugin-scaffolder-common": "^0.3.0", + "@backstage/plugin-search-common": "^0.3.1", "@backstage/types": "^0.1.3", "@types/express": "^4.17.6", "codeowners-utils": "^1.0.2", @@ -68,10 +68,10 @@ "zod": "^3.11.6" }, "devDependencies": { - "@backstage/backend-test-utils": "^0.1.21-next.0", - "@backstage/cli": "^0.15.2-next.0", + "@backstage/backend-test-utils": "^0.1.21", + "@backstage/cli": "^0.15.2", "@backstage/plugin-permission-common": "^0.5.2", - "@backstage/plugin-search-backend-node": "0.5.1-next.0", + "@backstage/plugin-search-backend-node": "0.5.1", "@types/core-js": "^2.5.4", "@types/git-url-parse": "^9.0.0", "@types/lodash": "^4.14.151", diff --git a/plugins/catalog-common/CHANGELOG.md b/plugins/catalog-common/CHANGELOG.md index be795cc898..4e5bb6571a 100644 --- a/plugins/catalog-common/CHANGELOG.md +++ b/plugins/catalog-common/CHANGELOG.md @@ -1,5 +1,13 @@ # @backstage/plugin-catalog-common +## 0.2.2 + +### Patch Changes + +- b1aacbf96a: Applied the fix for the `/alpha` entry point resolution that was part of the `v0.70.1` release of Backstage. +- Updated dependencies + - @backstage/search-common@0.3.1 + ## 0.2.2-next.0 ### Patch Changes diff --git a/plugins/catalog-common/package.json b/plugins/catalog-common/package.json index 9a6b11e517..fe131bd22f 100644 --- a/plugins/catalog-common/package.json +++ b/plugins/catalog-common/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-catalog-common", "description": "Common functionalities for the catalog plugin", - "version": "0.2.2-next.0", + "version": "0.2.2", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -35,10 +35,10 @@ }, "dependencies": { "@backstage/plugin-permission-common": "^0.5.2", - "@backstage/search-common": "^0.3.1-next.0" + "@backstage/search-common": "^0.3.1" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0" + "@backstage/cli": "^0.15.2" }, "files": [ "dist", diff --git a/plugins/catalog-graph/CHANGELOG.md b/plugins/catalog-graph/CHANGELOG.md index 84006ba4de..5a22ee83b8 100644 --- a/plugins/catalog-graph/CHANGELOG.md +++ b/plugins/catalog-graph/CHANGELOG.md @@ -1,5 +1,16 @@ # @backstage/plugin-catalog-graph +## 0.2.14 + +### Patch Changes + +- bf95bb806c: Remove usages of now-removed `CatalogApi.getEntityByName` +- Updated dependencies + - @backstage/plugin-catalog-react@0.9.0 + - @backstage/core-components@0.9.1 + - @backstage/catalog-model@0.13.0 + - @backstage/catalog-client@0.9.0 + ## 0.2.14-next.0 ### Patch Changes diff --git a/plugins/catalog-graph/package.json b/plugins/catalog-graph/package.json index d3b65d1151..f4958267e1 100644 --- a/plugins/catalog-graph/package.json +++ b/plugins/catalog-graph/package.json @@ -1,6 +1,6 @@ { "name": "@backstage/plugin-catalog-graph", - "version": "0.2.14-next.0", + "version": "0.2.14", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -24,11 +24,11 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/catalog-client": "^0.9.0-next.0", - "@backstage/catalog-model": "^0.13.0-next.0", - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/catalog-client": "^0.9.0", + "@backstage/catalog-model": "^0.13.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", - "@backstage/plugin-catalog-react": "^0.9.0-next.0", + "@backstage/plugin-catalog-react": "^0.9.0", "@backstage/theme": "^0.2.15", "@material-ui/core": "^4.12.2", "@material-ui/icons": "^4.9.1", @@ -45,10 +45,10 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", - "@backstage/plugin-catalog": "^0.10.0-next.0", + "@backstage/cli": "^0.15.2", + "@backstage/plugin-catalog": "^0.10.0", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/catalog-graphql/CHANGELOG.md b/plugins/catalog-graphql/CHANGELOG.md index 542b272a02..b74a422512 100644 --- a/plugins/catalog-graphql/CHANGELOG.md +++ b/plugins/catalog-graphql/CHANGELOG.md @@ -1,5 +1,12 @@ # @backstage/plugin-catalog-graphql +## 0.3.6 + +### Patch Changes + +- Updated dependencies + - @backstage/catalog-model@0.13.0 + ## 0.3.6-next.0 ### Patch Changes diff --git a/plugins/catalog-graphql/package.json b/plugins/catalog-graphql/package.json index 7afbab0698..564d3ed9a6 100644 --- a/plugins/catalog-graphql/package.json +++ b/plugins/catalog-graphql/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-catalog-graphql", "description": "An experimental Backstage catalog GraphQL module", - "version": "0.3.6-next.0", + "version": "0.3.6", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -34,7 +34,7 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/catalog-model": "^0.13.0-next.0", + "@backstage/catalog-model": "^0.13.0", "@backstage/config": "^0.1.15", "@backstage/types": "^0.1.3", "graphql-modules": "^2.0.0", @@ -46,7 +46,7 @@ "winston": "^3.2.1" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/test-utils": "^0.3.0", "@graphql-codegen/cli": "^2.3.1", "@graphql-codegen/typescript": "^2.4.2", diff --git a/plugins/catalog-import/CHANGELOG.md b/plugins/catalog-import/CHANGELOG.md index db8d59eb51..6b512ef5d1 100644 --- a/plugins/catalog-import/CHANGELOG.md +++ b/plugins/catalog-import/CHANGELOG.md @@ -1,5 +1,17 @@ # @backstage/plugin-catalog-import +## 0.8.5 + +### Patch Changes + +- bf95bb806c: Remove usages of now-removed `CatalogApi.getEntityByName` +- Updated dependencies + - @backstage/plugin-catalog-react@0.9.0 + - @backstage/core-components@0.9.1 + - @backstage/catalog-model@0.13.0 + - @backstage/catalog-client@0.9.0 + - @backstage/integration-react@0.1.25 + ## 0.8.5-next.0 ### Patch Changes diff --git a/plugins/catalog-import/package.json b/plugins/catalog-import/package.json index 566602f5ba..4ef0fa7eff 100644 --- a/plugins/catalog-import/package.json +++ b/plugins/catalog-import/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-catalog-import", "description": "A Backstage plugin the helps you import entities into your catalog", - "version": "0.8.5-next.0", + "version": "0.8.5", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -34,15 +34,15 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/catalog-client": "^0.9.0-next.0", - "@backstage/catalog-model": "^0.13.0-next.0", - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/catalog-client": "^0.9.0", + "@backstage/catalog-model": "^0.13.0", + "@backstage/core-components": "^0.9.1", "@backstage/config": "^0.1.15", "@backstage/core-plugin-api": "^0.8.0", "@backstage/errors": "^0.2.2", "@backstage/integration": "^0.8.0", - "@backstage/integration-react": "^0.1.25-next.0", - "@backstage/plugin-catalog-react": "^0.9.0-next.0", + "@backstage/integration-react": "^0.1.25", + "@backstage/plugin-catalog-react": "^0.9.0", "@material-ui/core": "^4.12.2", "@material-ui/icons": "^4.9.1", "@material-ui/lab": "4.0.0-alpha.57", @@ -60,9 +60,9 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/catalog-react/CHANGELOG.md b/plugins/catalog-react/CHANGELOG.md index 3bffeeef99..7b181efc93 100644 --- a/plugins/catalog-react/CHANGELOG.md +++ b/plugins/catalog-react/CHANGELOG.md @@ -1,5 +1,34 @@ # @backstage/plugin-catalog-react +## 0.9.0 + +### Minor Changes + +- b0af81726d: **BREAKING**: Removed `reduceCatalogFilters` and `reduceEntityFilters` due to low external utility value. +- 7ffb2c73c9: **BREAKING**: Removed the deprecated `loadCatalogOwnerRefs` function. Usages of this function can be directly replaced with `ownershipEntityRefs` from `identityApi.getBackstageIdentity()`. + + This also affects the `useEntityOwnership` hook in that it no longer uses `loadCatalogOwnerRefs`, meaning it will no longer load in additional relations and instead only rely on the `ownershipEntityRefs` from the `IdentityApi`. + +- dd88d1e3ac: **BREAKING**: Removed `useEntityFromUrl`. +- 9844d4d2bd: **BREAKING**: Removed `useEntityCompoundName`, use `useRouteRefParams(entityRouteRef)` instead. +- 2b8c986ce0: **BREAKING**: Removed `useEntityListProvider` use `useEntityList` instead. +- f3a7a9de6d: **BREAKING**: Removed `useOwnedEntities` and moved its usage internally to the scaffolder-backend where it's used. + + **BREAKING**: Removed `EntityTypeReturn` type which is now inlined. + +- cf1ff5b438: **BREAKING**: Removed the `useEntityKinds` hook, use `catalogApi.getEntityFacets({ facets: ['kind'] })` instead. +- fc6290a76d: **BREAKING**: Removed the deprecated `useOwnUser` hook. Existing usage can be replaced with `identityApi.getBackstageIdentity()`, followed by a call to `catalogClient.getEntityByRef(identity.userEntityRef)`. + +### Patch Changes + +- b1aacbf96a: Applied the fix for the `/alpha` entry point resolution that was part of the `v0.70.1` release of Backstage. +- 2986f8e09d: Fixed EntityOwnerPicker and OwnershipCard url filter issue with more than 21 owners +- f3a7a9de6d: Internalized usage of `useOwnedEntities` hook. +- Updated dependencies + - @backstage/core-components@0.9.1 + - @backstage/catalog-model@0.13.0 + - @backstage/catalog-client@0.9.0 + ## 0.9.0-next.0 ### Minor Changes diff --git a/plugins/catalog-react/package.json b/plugins/catalog-react/package.json index f7c17d74ac..99d84d083b 100644 --- a/plugins/catalog-react/package.json +++ b/plugins/catalog-react/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-catalog-react", "description": "A frontend library that helps other Backstage plugins interact with the catalog", - "version": "0.9.0-next.0", + "version": "0.9.0", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -34,9 +34,9 @@ "start": "backstage-cli package start" }, "dependencies": { - "@backstage/catalog-client": "^0.9.0-next.0", - "@backstage/catalog-model": "^0.13.0-next.0", - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/catalog-client": "^0.9.0", + "@backstage/catalog-model": "^0.13.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", "@backstage/errors": "^0.2.2", "@backstage/integration": "^0.8.0", @@ -61,10 +61,10 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/plugin-catalog-common": "^0.2.2-next.0", - "@backstage/plugin-scaffolder-common": "^0.3.0-next.0", + "@backstage/plugin-catalog-common": "^0.2.2", + "@backstage/plugin-scaffolder-common": "^0.3.0", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/catalog/CHANGELOG.md b/plugins/catalog/CHANGELOG.md index ed10e6723b..4c9c292518 100644 --- a/plugins/catalog/CHANGELOG.md +++ b/plugins/catalog/CHANGELOG.md @@ -1,5 +1,27 @@ # @backstage/plugin-catalog +## 0.10.0 + +### Minor Changes + +- 51856359bf: **BREAKING**: Removed the `AboutCard` component which has been replaced by `EntityAboutCard`. +- 5ea9509e6a: **BREAKING**: Removed `CatalogResultListItemProps` and `CatalogResultListItem`, replaced by `CatalogSearchResultListItemProps` and `CatalogSearchResultListItem`. + +### Patch Changes + +- 9a06d18385: Added an `allowedKinds` option to `CatalogKindHeader` to limit entity kinds available in the dropdown. +- 251688a75e: Updated `CatalogKindHeader` to respond to external changes to query parameters in the URL, such as two sidebar links that apply different catalog filters. +- 9844d4d2bd: Removed usage of removed hook. +- 3e54f6c436: Use `@backstage/plugin-search-common` package instead of `@backstage/search-common`. +- Updated dependencies + - @backstage/plugin-catalog-react@0.9.0 + - @backstage/core-components@0.9.1 + - @backstage/catalog-model@0.13.0 + - @backstage/plugin-catalog-common@0.2.2 + - @backstage/plugin-search-common@0.3.1 + - @backstage/catalog-client@0.9.0 + - @backstage/integration-react@0.1.25 + ## 0.10.0-next.0 ### Minor Changes diff --git a/plugins/catalog/package.json b/plugins/catalog/package.json index 971152a08d..32ee98b4b3 100644 --- a/plugins/catalog/package.json +++ b/plugins/catalog/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-catalog", "description": "The Backstage plugin for browsing the Backstage catalog", - "version": "0.10.0-next.0", + "version": "0.10.0", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -34,15 +34,15 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/catalog-client": "^0.9.0-next.0", - "@backstage/catalog-model": "^0.13.0-next.0", - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/catalog-client": "^0.9.0", + "@backstage/catalog-model": "^0.13.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", "@backstage/errors": "^0.2.2", - "@backstage/integration-react": "^0.1.25-next.0", - "@backstage/plugin-catalog-common": "^0.2.2-next.0", - "@backstage/plugin-catalog-react": "^0.9.0-next.0", - "@backstage/plugin-search-common": "^0.3.1-next.0", + "@backstage/integration-react": "^0.1.25", + "@backstage/plugin-catalog-common": "^0.2.2", + "@backstage/plugin-catalog-react": "^0.9.0", + "@backstage/plugin-search-common": "^0.3.1", "@backstage/theme": "^0.2.15", "@backstage/types": "^0.1.2", "@material-ui/core": "^4.12.2", @@ -60,9 +60,9 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/dev-utils": "^0.2.25", "@backstage/plugin-permission-react": "^0.3.3", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", diff --git a/plugins/cicd-statistics/CHANGELOG.md b/plugins/cicd-statistics/CHANGELOG.md index fac9b6413e..253e3d60bf 100644 --- a/plugins/cicd-statistics/CHANGELOG.md +++ b/plugins/cicd-statistics/CHANGELOG.md @@ -1,5 +1,13 @@ # @backstage/plugin-cicd-statistics +## 0.1.4 + +### Patch Changes + +- Updated dependencies + - @backstage/plugin-catalog-react@0.9.0 + - @backstage/catalog-model@0.13.0 + ## 0.1.4-next.0 ### Patch Changes diff --git a/plugins/cicd-statistics/package.json b/plugins/cicd-statistics/package.json index 05ddd95544..08cffaeba6 100644 --- a/plugins/cicd-statistics/package.json +++ b/plugins/cicd-statistics/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-cicd-statistics", "description": "A frontend plugin visualizing CI/CD pipeline statistics (build time)", - "version": "0.1.4-next.0", + "version": "0.1.4", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -37,9 +37,9 @@ "@types/luxon": "^2.0.5" }, "dependencies": { - "@backstage/catalog-model": "^0.13.0-next.0", + "@backstage/catalog-model": "^0.13.0", "@backstage/core-plugin-api": "^0.8.0", - "@backstage/plugin-catalog-react": "^0.9.0-next.0", + "@backstage/plugin-catalog-react": "^0.9.0", "@date-io/luxon": "^1.3.13", "@material-ui/core": "^4.9.13", "@material-ui/icons": "^4.11.2", diff --git a/plugins/circleci/CHANGELOG.md b/plugins/circleci/CHANGELOG.md index 13a0211758..e44eb0c8cb 100644 --- a/plugins/circleci/CHANGELOG.md +++ b/plugins/circleci/CHANGELOG.md @@ -1,5 +1,14 @@ # @backstage/plugin-circleci +## 0.3.2 + +### Patch Changes + +- Updated dependencies + - @backstage/plugin-catalog-react@0.9.0 + - @backstage/core-components@0.9.1 + - @backstage/catalog-model@0.13.0 + ## 0.3.2-next.0 ### Patch Changes diff --git a/plugins/circleci/package.json b/plugins/circleci/package.json index 44d6378082..3a60a1848d 100644 --- a/plugins/circleci/package.json +++ b/plugins/circleci/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-circleci", "description": "A Backstage plugin that integrates towards Circle CI", - "version": "0.3.2-next.0", + "version": "0.3.2", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -35,10 +35,10 @@ "postpack": "backstage-cli package postpack" }, "dependencies": { - "@backstage/catalog-model": "^0.13.0-next.0", - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/catalog-model": "^0.13.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", - "@backstage/plugin-catalog-react": "^0.9.0-next.0", + "@backstage/plugin-catalog-react": "^0.9.0", "@backstage/theme": "^0.2.15", "@material-ui/core": "^4.12.2", "@material-ui/icons": "^4.9.1", @@ -55,9 +55,9 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/cloudbuild/CHANGELOG.md b/plugins/cloudbuild/CHANGELOG.md index 3d6170a1c9..6c2378d472 100644 --- a/plugins/cloudbuild/CHANGELOG.md +++ b/plugins/cloudbuild/CHANGELOG.md @@ -1,5 +1,14 @@ # @backstage/plugin-cloudbuild +## 0.3.2 + +### Patch Changes + +- Updated dependencies + - @backstage/plugin-catalog-react@0.9.0 + - @backstage/core-components@0.9.1 + - @backstage/catalog-model@0.13.0 + ## 0.3.2-next.0 ### Patch Changes diff --git a/plugins/cloudbuild/package.json b/plugins/cloudbuild/package.json index 9febaf010f..1293985bf3 100644 --- a/plugins/cloudbuild/package.json +++ b/plugins/cloudbuild/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-cloudbuild", "description": "A Backstage plugin that integrates towards Google Cloud Build", - "version": "0.3.2-next.0", + "version": "0.3.2", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -34,10 +34,10 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/catalog-model": "^0.13.0-next.0", - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/catalog-model": "^0.13.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", - "@backstage/plugin-catalog-react": "^0.9.0-next.0", + "@backstage/plugin-catalog-react": "^0.9.0", "@backstage/theme": "^0.2.15", "@material-ui/core": "^4.12.2", "@material-ui/icons": "^4.9.1", @@ -52,9 +52,9 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/code-climate/CHANGELOG.md b/plugins/code-climate/CHANGELOG.md index c74d695448..33a4c4e4d5 100644 --- a/plugins/code-climate/CHANGELOG.md +++ b/plugins/code-climate/CHANGELOG.md @@ -1,5 +1,15 @@ # @backstage/plugin-code-climate +## 0.1.2 + +### Patch Changes + +- 4f79204c47: Added `backstage.role` to `package.json` +- Updated dependencies + - @backstage/plugin-catalog-react@0.9.0 + - @backstage/core-components@0.9.1 + - @backstage/catalog-model@0.13.0 + ## 0.1.2-next.0 ### Patch Changes diff --git a/plugins/code-climate/package.json b/plugins/code-climate/package.json index 5da58648f3..94ff923df9 100644 --- a/plugins/code-climate/package.json +++ b/plugins/code-climate/package.json @@ -1,6 +1,6 @@ { "name": "@backstage/plugin-code-climate", - "version": "0.1.2-next.0", + "version": "0.1.2", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -23,10 +23,10 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/catalog-model": "^0.13.0-next.0", - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/catalog-model": "^0.13.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", - "@backstage/plugin-catalog-react": "^0.9.0-next.0", + "@backstage/plugin-catalog-react": "^0.9.0", "@backstage/theme": "^0.2.15", "@material-ui/core": "^4.12.2", "@material-ui/icons": "^4.9.1", @@ -40,8 +40,8 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/cli": "^0.15.2", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/code-coverage-backend/CHANGELOG.md b/plugins/code-coverage-backend/CHANGELOG.md index 382cf61863..7bb82bf483 100644 --- a/plugins/code-coverage-backend/CHANGELOG.md +++ b/plugins/code-coverage-backend/CHANGELOG.md @@ -1,5 +1,14 @@ # @backstage/plugin-code-coverage-backend +## 0.1.27 + +### Patch Changes + +- Updated dependencies + - @backstage/backend-common@0.13.0 + - @backstage/catalog-model@0.13.0 + - @backstage/catalog-client@0.9.0 + ## 0.1.27-next.0 ### Patch Changes diff --git a/plugins/code-coverage-backend/package.json b/plugins/code-coverage-backend/package.json index 3070b190b9..e4b9032f78 100644 --- a/plugins/code-coverage-backend/package.json +++ b/plugins/code-coverage-backend/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-code-coverage-backend", "description": "A Backstage backend plugin that helps you keep track of your code coverage", - "version": "0.1.27-next.0", + "version": "0.1.27", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -23,9 +23,9 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/backend-common": "^0.13.0-next.0", - "@backstage/catalog-client": "^0.9.0-next.0", - "@backstage/catalog-model": "^0.13.0-next.0", + "@backstage/backend-common": "^0.13.0", + "@backstage/catalog-client": "^0.9.0", + "@backstage/catalog-model": "^0.13.0", "@backstage/config": "^0.1.15", "@backstage/errors": "^0.2.2", "@backstage/integration": "^0.8.0", @@ -39,7 +39,7 @@ "yn": "^4.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@types/express-xml-bodyparser": "^0.3.2", "@types/supertest": "^2.0.8", "msw": "^0.35.0", diff --git a/plugins/code-coverage/CHANGELOG.md b/plugins/code-coverage/CHANGELOG.md index 2689d3ba08..8dd1a067a8 100644 --- a/plugins/code-coverage/CHANGELOG.md +++ b/plugins/code-coverage/CHANGELOG.md @@ -1,5 +1,14 @@ # @backstage/plugin-code-coverage +## 0.1.29 + +### Patch Changes + +- Updated dependencies + - @backstage/plugin-catalog-react@0.9.0 + - @backstage/core-components@0.9.1 + - @backstage/catalog-model@0.13.0 + ## 0.1.29-next.0 ### Patch Changes diff --git a/plugins/code-coverage/package.json b/plugins/code-coverage/package.json index d387429d58..f71ea8be94 100644 --- a/plugins/code-coverage/package.json +++ b/plugins/code-coverage/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-code-coverage", "description": "A Backstage plugin that helps you keep track of your code coverage", - "version": "0.1.29-next.0", + "version": "0.1.29", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -24,12 +24,12 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/catalog-model": "^0.13.0-next.0", + "@backstage/catalog-model": "^0.13.0", "@backstage/config": "^0.1.15", - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", "@backstage/errors": "^0.2.2", - "@backstage/plugin-catalog-react": "^0.9.0-next.0", + "@backstage/plugin-catalog-react": "^0.9.0", "@backstage/theme": "^0.2.15", "@material-ui/core": "^4.12.2", "@material-ui/icons": "^4.9.1", @@ -46,9 +46,9 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/config-schema/CHANGELOG.md b/plugins/config-schema/CHANGELOG.md index 56fc017920..98d3099c0e 100644 --- a/plugins/config-schema/CHANGELOG.md +++ b/plugins/config-schema/CHANGELOG.md @@ -1,5 +1,12 @@ # @backstage/plugin-config-schema +## 0.1.25 + +### Patch Changes + +- Updated dependencies + - @backstage/core-components@0.9.1 + ## 0.1.25-next.0 ### Patch Changes diff --git a/plugins/config-schema/package.json b/plugins/config-schema/package.json index 9a16050142..7c10fdd4ac 100644 --- a/plugins/config-schema/package.json +++ b/plugins/config-schema/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-config-schema", "description": "A Backstage plugin that lets you browse the configuration schema of your app", - "version": "0.1.25-next.0", + "version": "0.1.25", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -25,7 +25,7 @@ }, "dependencies": { "@backstage/config": "^0.1.15", - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", "@backstage/errors": "^0.2.2", "@backstage/theme": "^0.2.15", @@ -41,9 +41,9 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/cost-insights/CHANGELOG.md b/plugins/cost-insights/CHANGELOG.md index 6ceff3112f..4f8139df31 100644 --- a/plugins/cost-insights/CHANGELOG.md +++ b/plugins/cost-insights/CHANGELOG.md @@ -1,5 +1,13 @@ # @backstage/plugin-cost-insights +## 0.11.24 + +### Patch Changes + +- Updated dependencies + - @backstage/core-components@0.9.1 + - @backstage/catalog-model@0.13.0 + ## 0.11.24-next.0 ### Patch Changes diff --git a/plugins/cost-insights/package.json b/plugins/cost-insights/package.json index 44cbfb84b3..2828b9c1a1 100644 --- a/plugins/cost-insights/package.json +++ b/plugins/cost-insights/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-cost-insights", "description": "A Backstage plugin that helps you keep track of your cloud spend", - "version": "0.11.24-next.0", + "version": "0.11.24", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -34,9 +34,9 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/catalog-model": "^0.13.0-next.0", + "@backstage/catalog-model": "^0.13.0", "@backstage/config": "^0.1.15", - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", "@backstage/theme": "^0.2.15", "@material-ui/core": "^4.12.2", @@ -60,9 +60,9 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/explore/CHANGELOG.md b/plugins/explore/CHANGELOG.md index 829946a3ce..2f7da4efa6 100644 --- a/plugins/explore/CHANGELOG.md +++ b/plugins/explore/CHANGELOG.md @@ -1,5 +1,15 @@ # @backstage/plugin-explore +## 0.3.33 + +### Patch Changes + +- bf95bb806c: Remove usages of now-removed `CatalogApi.getEntityByName` +- Updated dependencies + - @backstage/plugin-catalog-react@0.9.0 + - @backstage/core-components@0.9.1 + - @backstage/catalog-model@0.13.0 + ## 0.3.33-next.0 ### Patch Changes diff --git a/plugins/explore/package.json b/plugins/explore/package.json index 5491c8c379..071312d2ff 100644 --- a/plugins/explore/package.json +++ b/plugins/explore/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-explore", "description": "A Backstage plugin for building an exploration page of your software ecosystem", - "version": "0.3.33-next.0", + "version": "0.3.33", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -34,10 +34,10 @@ "start": "backstage-cli package start" }, "dependencies": { - "@backstage/catalog-model": "^0.13.0-next.0", - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/catalog-model": "^0.13.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", - "@backstage/plugin-catalog-react": "^0.9.0-next.0", + "@backstage/plugin-catalog-react": "^0.9.0", "@backstage/plugin-explore-react": "^0.0.14", "@backstage/theme": "^0.2.15", "@material-ui/core": "^4.12.2", @@ -53,9 +53,9 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/firehydrant/CHANGELOG.md b/plugins/firehydrant/CHANGELOG.md index cc0f46d7ff..17f5fcca21 100644 --- a/plugins/firehydrant/CHANGELOG.md +++ b/plugins/firehydrant/CHANGELOG.md @@ -1,5 +1,13 @@ # @backstage/plugin-firehydrant +## 0.1.19 + +### Patch Changes + +- Updated dependencies + - @backstage/plugin-catalog-react@0.9.0 + - @backstage/core-components@0.9.1 + ## 0.1.19-next.0 ### Patch Changes diff --git a/plugins/firehydrant/package.json b/plugins/firehydrant/package.json index bd869de57f..9c9f243144 100644 --- a/plugins/firehydrant/package.json +++ b/plugins/firehydrant/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-firehydrant", "description": "A Backstage plugin that integrates towards FireHydrant", - "version": "0.1.19-next.0", + "version": "0.1.19", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -25,9 +25,9 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", - "@backstage/plugin-catalog-react": "^0.9.0-next.0", + "@backstage/plugin-catalog-react": "^0.9.0", "@backstage/theme": "^0.2.15", "@material-ui/core": "^4.12.2", "@material-ui/icons": "^4.9.1", @@ -39,9 +39,9 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/fossa/CHANGELOG.md b/plugins/fossa/CHANGELOG.md index cfa1046581..f8e0bbf1cf 100644 --- a/plugins/fossa/CHANGELOG.md +++ b/plugins/fossa/CHANGELOG.md @@ -1,5 +1,15 @@ # @backstage/plugin-fossa +## 0.2.34 + +### Patch Changes + +- bf95bb806c: Remove usages of now-removed `CatalogApi.getEntityByName` +- Updated dependencies + - @backstage/plugin-catalog-react@0.9.0 + - @backstage/core-components@0.9.1 + - @backstage/catalog-model@0.13.0 + ## 0.2.34-next.0 ### Patch Changes diff --git a/plugins/fossa/package.json b/plugins/fossa/package.json index 5cd8aa4eff..d726a3f5d8 100644 --- a/plugins/fossa/package.json +++ b/plugins/fossa/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-fossa", "description": "A Backstage plugin that integrates towards FOSSA", - "version": "0.2.34-next.0", + "version": "0.2.34", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -35,11 +35,11 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/catalog-model": "^0.13.0-next.0", - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/catalog-model": "^0.13.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", "@backstage/errors": "^0.2.2", - "@backstage/plugin-catalog-react": "^0.9.0-next.0", + "@backstage/plugin-catalog-react": "^0.9.0", "@backstage/theme": "^0.2.15", "@material-ui/core": "^4.12.2", "@material-ui/icons": "^4.9.1", @@ -53,9 +53,9 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/gcp-projects/CHANGELOG.md b/plugins/gcp-projects/CHANGELOG.md index c256b5ec41..40932b3138 100644 --- a/plugins/gcp-projects/CHANGELOG.md +++ b/plugins/gcp-projects/CHANGELOG.md @@ -1,5 +1,13 @@ # @backstage/plugin-gcp-projects +## 0.3.21 + +### Patch Changes + +- 23568dd328: chore(deps): bump `@react-hookz/web` from 12.3.0 to 13.0.0 +- Updated dependencies + - @backstage/core-components@0.9.1 + ## 0.3.21-next.0 ### Patch Changes diff --git a/plugins/gcp-projects/package.json b/plugins/gcp-projects/package.json index bc85da102f..88cd8200d7 100644 --- a/plugins/gcp-projects/package.json +++ b/plugins/gcp-projects/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-gcp-projects", "description": "A Backstage plugin that helps you manage projects in GCP", - "version": "0.3.21-next.0", + "version": "0.3.21", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -34,7 +34,7 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", "@backstage/theme": "^0.2.15", "@material-ui/core": "^4.12.2", @@ -47,9 +47,9 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/git-release-manager/CHANGELOG.md b/plugins/git-release-manager/CHANGELOG.md index 2f07eeb107..dccca428cf 100644 --- a/plugins/git-release-manager/CHANGELOG.md +++ b/plugins/git-release-manager/CHANGELOG.md @@ -1,5 +1,12 @@ # @backstage/plugin-git-release-manager +## 0.3.15 + +### Patch Changes + +- Updated dependencies + - @backstage/core-components@0.9.1 + ## 0.3.15-next.0 ### Patch Changes diff --git a/plugins/git-release-manager/package.json b/plugins/git-release-manager/package.json index e703ca37d6..8160058184 100644 --- a/plugins/git-release-manager/package.json +++ b/plugins/git-release-manager/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-git-release-manager", "description": "A Backstage plugin that helps you manage releases in git", - "version": "0.3.15-next.0", + "version": "0.3.15", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -24,7 +24,7 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", "@backstage/integration": "^0.8.0", "@backstage/theme": "^0.2.15", @@ -43,9 +43,9 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/github-actions/CHANGELOG.md b/plugins/github-actions/CHANGELOG.md index 320c86f8cc..30fc5ffa56 100644 --- a/plugins/github-actions/CHANGELOG.md +++ b/plugins/github-actions/CHANGELOG.md @@ -1,5 +1,14 @@ # @backstage/plugin-github-actions +## 0.5.2 + +### Patch Changes + +- Updated dependencies + - @backstage/plugin-catalog-react@0.9.0 + - @backstage/core-components@0.9.1 + - @backstage/catalog-model@0.13.0 + ## 0.5.2-next.0 ### Patch Changes diff --git a/plugins/github-actions/package.json b/plugins/github-actions/package.json index 475aeb29ae..617a7301e9 100644 --- a/plugins/github-actions/package.json +++ b/plugins/github-actions/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-github-actions", "description": "A Backstage plugin that integrates towards GitHub Actions", - "version": "0.5.2-next.0", + "version": "0.5.2", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -36,11 +36,11 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/catalog-model": "^0.13.0-next.0", - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/catalog-model": "^0.13.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", "@backstage/integration": "^0.8.0", - "@backstage/plugin-catalog-react": "^0.9.0-next.0", + "@backstage/plugin-catalog-react": "^0.9.0", "@backstage/theme": "^0.2.15", "@material-ui/core": "^4.12.2", "@material-ui/icons": "^4.9.1", @@ -55,9 +55,9 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/github-deployments/CHANGELOG.md b/plugins/github-deployments/CHANGELOG.md index b4adf9340a..28c5ce330e 100644 --- a/plugins/github-deployments/CHANGELOG.md +++ b/plugins/github-deployments/CHANGELOG.md @@ -1,5 +1,15 @@ # @backstage/plugin-github-deployments +## 0.1.33 + +### Patch Changes + +- Updated dependencies + - @backstage/plugin-catalog-react@0.9.0 + - @backstage/core-components@0.9.1 + - @backstage/catalog-model@0.13.0 + - @backstage/integration-react@0.1.25 + ## 0.1.33-next.0 ### Patch Changes diff --git a/plugins/github-deployments/package.json b/plugins/github-deployments/package.json index afb0604ae9..3a1833b432 100644 --- a/plugins/github-deployments/package.json +++ b/plugins/github-deployments/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-github-deployments", "description": "A Backstage plugin that integrates towards GitHub Deployments", - "version": "0.1.33-next.0", + "version": "0.1.33", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -24,13 +24,13 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/catalog-model": "^0.13.0-next.0", - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/catalog-model": "^0.13.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", "@backstage/errors": "^0.2.2", "@backstage/integration": "^0.8.0", - "@backstage/integration-react": "^0.1.25-next.0", - "@backstage/plugin-catalog-react": "^0.9.0-next.0", + "@backstage/integration-react": "^0.1.25", + "@backstage/plugin-catalog-react": "^0.9.0", "@backstage/theme": "^0.2.15", "@material-ui/core": "^4.12.2", "@material-ui/icons": "^4.9.1", @@ -43,9 +43,9 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/gitops-profiles/CHANGELOG.md b/plugins/gitops-profiles/CHANGELOG.md index fda4713e61..7b23841a80 100644 --- a/plugins/gitops-profiles/CHANGELOG.md +++ b/plugins/gitops-profiles/CHANGELOG.md @@ -1,5 +1,12 @@ # @backstage/plugin-gitops-profiles +## 0.3.20 + +### Patch Changes + +- Updated dependencies + - @backstage/core-components@0.9.1 + ## 0.3.20-next.0 ### Patch Changes diff --git a/plugins/gitops-profiles/package.json b/plugins/gitops-profiles/package.json index 0de7354501..41c634cc0a 100644 --- a/plugins/gitops-profiles/package.json +++ b/plugins/gitops-profiles/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-gitops-profiles", "description": "A Backstage plugin that helps you manage GitOps profiles", - "version": "0.3.20-next.0", + "version": "0.3.20", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -35,7 +35,7 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", "@backstage/theme": "^0.2.15", "@material-ui/core": "^4.12.2", @@ -48,9 +48,9 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/gocd/CHANGELOG.md b/plugins/gocd/CHANGELOG.md index 5f44d0656d..c2cf3065a5 100644 --- a/plugins/gocd/CHANGELOG.md +++ b/plugins/gocd/CHANGELOG.md @@ -1,5 +1,14 @@ # @backstage/plugin-gocd +## 0.1.8 + +### Patch Changes + +- Updated dependencies + - @backstage/plugin-catalog-react@0.9.0 + - @backstage/core-components@0.9.1 + - @backstage/catalog-model@0.13.0 + ## 0.1.8-next.0 ### Patch Changes diff --git a/plugins/gocd/package.json b/plugins/gocd/package.json index 196fa52f0b..d3e6344d02 100644 --- a/plugins/gocd/package.json +++ b/plugins/gocd/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-gocd", "description": "A Backstage plugin that integrates towards GoCD", - "version": "0.1.8-next.0", + "version": "0.1.8", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -31,11 +31,11 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/catalog-model": "^0.13.0-next.0", - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/catalog-model": "^0.13.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", "@backstage/errors": "^0.2.2", - "@backstage/plugin-catalog-react": "^0.9.0-next.0", + "@backstage/plugin-catalog-react": "^0.9.0", "@backstage/theme": "^0.2.15", "@material-ui/core": "^4.12.2", "@material-ui/icons": "^4.9.1", @@ -49,9 +49,9 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/graphiql/CHANGELOG.md b/plugins/graphiql/CHANGELOG.md index 3dd9a07c0b..faa5207325 100644 --- a/plugins/graphiql/CHANGELOG.md +++ b/plugins/graphiql/CHANGELOG.md @@ -1,5 +1,12 @@ # @backstage/plugin-graphiql +## 0.2.34 + +### Patch Changes + +- Updated dependencies + - @backstage/core-components@0.9.1 + ## 0.2.34-next.0 ### Patch Changes diff --git a/plugins/graphiql/package.json b/plugins/graphiql/package.json index 5dd6ba6783..cd9a7e94e6 100644 --- a/plugins/graphiql/package.json +++ b/plugins/graphiql/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-graphiql", "description": "Backstage plugin for browsing GraphQL APIs", - "version": "0.2.34-next.0", + "version": "0.2.34", "private": false, "publishConfig": { "access": "public", @@ -34,7 +34,7 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", "@backstage/theme": "^0.2.15", "@material-ui/core": "^4.12.2", @@ -48,9 +48,9 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/graphql-backend/CHANGELOG.md b/plugins/graphql-backend/CHANGELOG.md index a027931d88..95c254431e 100644 --- a/plugins/graphql-backend/CHANGELOG.md +++ b/plugins/graphql-backend/CHANGELOG.md @@ -1,5 +1,13 @@ # @backstage/plugin-graphql-backend +## 0.1.19 + +### Patch Changes + +- Updated dependencies + - @backstage/backend-common@0.13.0 + - @backstage/plugin-catalog-graphql@0.3.6 + ## 0.1.19-next.0 ### Patch Changes diff --git a/plugins/graphql-backend/package.json b/plugins/graphql-backend/package.json index 012e33ca86..d30272b9dc 100644 --- a/plugins/graphql-backend/package.json +++ b/plugins/graphql-backend/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-graphql-backend", "description": "An experimental Backstage backend plugin for GraphQL", - "version": "0.1.19-next.0", + "version": "0.1.19", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -34,9 +34,9 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/backend-common": "^0.13.0-next.0", + "@backstage/backend-common": "^0.13.0", "@backstage/config": "^0.1.15", - "@backstage/plugin-catalog-graphql": "^0.3.6-next.0", + "@backstage/plugin-catalog-graphql": "^0.3.6", "@graphql-tools/schema": "^8.3.1", "graphql-modules": "^2.0.0", "@types/express": "^4.17.6", @@ -51,7 +51,7 @@ "yn": "^4.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@types/supertest": "^2.0.8", "eslint-plugin-graphql": "^4.0.0", "msw": "^0.35.0", diff --git a/plugins/home/CHANGELOG.md b/plugins/home/CHANGELOG.md index 0f17a5e8d9..36fc7239d1 100644 --- a/plugins/home/CHANGELOG.md +++ b/plugins/home/CHANGELOG.md @@ -1,5 +1,15 @@ # @backstage/plugin-home +## 0.4.18 + +### Patch Changes + +- Updated dependencies + - @backstage/plugin-catalog-react@0.9.0 + - @backstage/core-components@0.9.1 + - @backstage/catalog-model@0.13.0 + - @backstage/plugin-search@0.7.3 + ## 0.4.18-next.0 ### Patch Changes diff --git a/plugins/home/package.json b/plugins/home/package.json index f05cebf2ba..d2b2ffca36 100644 --- a/plugins/home/package.json +++ b/plugins/home/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-home", "description": "A Backstage plugin that helps you build a home page", - "version": "0.4.18-next.0", + "version": "0.4.18", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -34,11 +34,11 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/catalog-model": "^0.13.0-next.0", - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/catalog-model": "^0.13.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", - "@backstage/plugin-catalog-react": "^0.9.0-next.0", - "@backstage/plugin-search": "^0.7.3-next.0", + "@backstage/plugin-catalog-react": "^0.9.0", + "@backstage/plugin-search": "^0.7.3", "@backstage/theme": "^0.2.15", "@material-ui/core": "^4.12.2", "@material-ui/icons": "^4.9.1", @@ -52,9 +52,9 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/ilert/CHANGELOG.md b/plugins/ilert/CHANGELOG.md index 73c2e1b41e..49908779da 100644 --- a/plugins/ilert/CHANGELOG.md +++ b/plugins/ilert/CHANGELOG.md @@ -1,5 +1,14 @@ # @backstage/plugin-ilert +## 0.1.28 + +### Patch Changes + +- Updated dependencies + - @backstage/plugin-catalog-react@0.9.0 + - @backstage/core-components@0.9.1 + - @backstage/catalog-model@0.13.0 + ## 0.1.28-next.0 ### Patch Changes diff --git a/plugins/ilert/package.json b/plugins/ilert/package.json index b63ba612dd..90c9c767e4 100644 --- a/plugins/ilert/package.json +++ b/plugins/ilert/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-ilert", "description": "A Backstage plugin that integrates towards iLert", - "version": "0.1.28-next.0", + "version": "0.1.28", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -24,11 +24,11 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/catalog-model": "^0.13.0-next.0", - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/catalog-model": "^0.13.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", "@backstage/errors": "^0.2.2", - "@backstage/plugin-catalog-react": "^0.9.0-next.0", + "@backstage/plugin-catalog-react": "^0.9.0", "@backstage/theme": "^0.2.15", "@date-io/luxon": "1.x", "@material-ui/core": "^4.12.2", @@ -43,9 +43,9 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/jenkins-backend/CHANGELOG.md b/plugins/jenkins-backend/CHANGELOG.md index 86c13e7cd3..6a7e524a27 100644 --- a/plugins/jenkins-backend/CHANGELOG.md +++ b/plugins/jenkins-backend/CHANGELOG.md @@ -1,5 +1,16 @@ # @backstage/plugin-jenkins-backend +## 0.1.18 + +### Patch Changes + +- Updated dependencies + - @backstage/backend-common@0.13.0 + - @backstage/catalog-model@0.13.0 + - @backstage/catalog-client@0.9.0 + - @backstage/plugin-auth-node@0.1.5 + - @backstage/plugin-jenkins-common@0.1.1 + ## 0.1.18-next.0 ### Patch Changes diff --git a/plugins/jenkins-backend/package.json b/plugins/jenkins-backend/package.json index 8e0ed8d9d5..b5cc4f3749 100644 --- a/plugins/jenkins-backend/package.json +++ b/plugins/jenkins-backend/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-jenkins-backend", "description": "A Backstage backend plugin that integrates towards Jenkins", - "version": "0.1.18-next.0", + "version": "0.1.18", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -25,13 +25,13 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/backend-common": "^0.13.0-next.0", - "@backstage/catalog-client": "^0.9.0-next.0", - "@backstage/catalog-model": "^0.13.0-next.0", + "@backstage/backend-common": "^0.13.0", + "@backstage/catalog-client": "^0.9.0", + "@backstage/catalog-model": "^0.13.0", "@backstage/config": "^0.1.15", "@backstage/errors": "^0.2.2", - "@backstage/plugin-auth-node": "^0.1.5-next.0", - "@backstage/plugin-jenkins-common": "^0.1.1-next.0", + "@backstage/plugin-auth-node": "^0.1.5", + "@backstage/plugin-jenkins-common": "^0.1.1", "@backstage/plugin-permission-common": "^0.5.2", "@types/express": "^4.17.6", "express": "^4.17.1", @@ -41,7 +41,7 @@ "yn": "^4.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@types/jenkins": "^0.23.1", "@types/supertest": "^2.0.8", "msw": "^0.35.0", diff --git a/plugins/jenkins-common/CHANGELOG.md b/plugins/jenkins-common/CHANGELOG.md index 991e94ddb5..a5e6f41749 100644 --- a/plugins/jenkins-common/CHANGELOG.md +++ b/plugins/jenkins-common/CHANGELOG.md @@ -1,5 +1,12 @@ # @backstage/plugin-jenkins-common +## 0.1.1 + +### Patch Changes + +- Updated dependencies + - @backstage/plugin-catalog-common@0.2.2 + ## 0.1.1-next.0 ### Patch Changes diff --git a/plugins/jenkins-common/package.json b/plugins/jenkins-common/package.json index a9c2c966df..43a77b3541 100644 --- a/plugins/jenkins-common/package.json +++ b/plugins/jenkins-common/package.json @@ -1,6 +1,6 @@ { "name": "@backstage/plugin-jenkins-common", - "version": "0.1.1-next.0", + "version": "0.1.1", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -22,11 +22,11 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/plugin-catalog-common": "^0.2.2-next.0", + "@backstage/plugin-catalog-common": "^0.2.2", "@backstage/plugin-permission-common": "^0.5.2" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0" + "@backstage/cli": "^0.15.2" }, "files": [ "dist" diff --git a/plugins/jenkins/CHANGELOG.md b/plugins/jenkins/CHANGELOG.md index b4c8065534..ec0da83839 100644 --- a/plugins/jenkins/CHANGELOG.md +++ b/plugins/jenkins/CHANGELOG.md @@ -1,5 +1,15 @@ # @backstage/plugin-jenkins +## 0.7.1 + +### Patch Changes + +- Updated dependencies + - @backstage/plugin-catalog-react@0.9.0 + - @backstage/core-components@0.9.1 + - @backstage/catalog-model@0.13.0 + - @backstage/plugin-jenkins-common@0.1.1 + ## 0.7.1-next.0 ### Patch Changes diff --git a/plugins/jenkins/package.json b/plugins/jenkins/package.json index 04577e14f3..4f458cfdd7 100644 --- a/plugins/jenkins/package.json +++ b/plugins/jenkins/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-jenkins", "description": "A Backstage plugin that integrates towards Jenkins", - "version": "0.7.1-next.0", + "version": "0.7.1", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -35,12 +35,12 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/catalog-model": "^0.13.0-next.0", - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/catalog-model": "^0.13.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", "@backstage/errors": "^0.2.2", - "@backstage/plugin-catalog-react": "^0.9.0-next.0", - "@backstage/plugin-jenkins-common": "^0.1.1-next.0", + "@backstage/plugin-catalog-react": "^0.9.0", + "@backstage/plugin-jenkins-common": "^0.1.1", "@backstage/theme": "^0.2.15", "@material-ui/core": "^4.12.2", "@material-ui/icons": "^4.9.1", @@ -54,9 +54,9 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/kafka-backend/CHANGELOG.md b/plugins/kafka-backend/CHANGELOG.md index 9b185ca216..caf43d94a7 100644 --- a/plugins/kafka-backend/CHANGELOG.md +++ b/plugins/kafka-backend/CHANGELOG.md @@ -1,5 +1,13 @@ # @backstage/plugin-kafka-backend +## 0.2.22 + +### Patch Changes + +- Updated dependencies + - @backstage/backend-common@0.13.0 + - @backstage/catalog-model@0.13.0 + ## 0.2.22-next.0 ### Patch Changes diff --git a/plugins/kafka-backend/package.json b/plugins/kafka-backend/package.json index 245cbf301d..3ae224adb2 100644 --- a/plugins/kafka-backend/package.json +++ b/plugins/kafka-backend/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-kafka-backend", "description": "A Backstage backend plugin that integrates towards Kafka", - "version": "0.2.22-next.0", + "version": "0.2.22", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -35,8 +35,8 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/backend-common": "^0.13.0-next.0", - "@backstage/catalog-model": "^0.13.0-next.0", + "@backstage/backend-common": "^0.13.0", + "@backstage/catalog-model": "^0.13.0", "@backstage/config": "^0.1.15", "@backstage/errors": "^0.2.2", "@types/express": "^4.17.6", @@ -47,7 +47,7 @@ "winston": "^3.2.1" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@types/jest-when": "^2.7.2", "@types/lodash": "^4.14.151", "jest-when": "^3.1.0", diff --git a/plugins/kafka/CHANGELOG.md b/plugins/kafka/CHANGELOG.md index 87d6073d11..8d48855d5d 100644 --- a/plugins/kafka/CHANGELOG.md +++ b/plugins/kafka/CHANGELOG.md @@ -1,5 +1,14 @@ # @backstage/plugin-kafka +## 0.3.2 + +### Patch Changes + +- Updated dependencies + - @backstage/plugin-catalog-react@0.9.0 + - @backstage/core-components@0.9.1 + - @backstage/catalog-model@0.13.0 + ## 0.3.2-next.0 ### Patch Changes diff --git a/plugins/kafka/package.json b/plugins/kafka/package.json index 76c7e6df35..163cf2578a 100644 --- a/plugins/kafka/package.json +++ b/plugins/kafka/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-kafka", "description": "A Backstage plugin that integrates towards Kafka", - "version": "0.3.2-next.0", + "version": "0.3.2", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -24,10 +24,10 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/catalog-model": "^0.13.0-next.0", - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/catalog-model": "^0.13.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", - "@backstage/plugin-catalog-react": "^0.9.0-next.0", + "@backstage/plugin-catalog-react": "^0.9.0", "@backstage/theme": "^0.2.15", "@material-ui/core": "^4.12.2", "@material-ui/icons": "^4.9.1", @@ -39,9 +39,9 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/kubernetes-backend/CHANGELOG.md b/plugins/kubernetes-backend/CHANGELOG.md index 3c3a6b1255..24827f736d 100644 --- a/plugins/kubernetes-backend/CHANGELOG.md +++ b/plugins/kubernetes-backend/CHANGELOG.md @@ -1,5 +1,16 @@ # @backstage/plugin-kubernetes-backend +## 0.4.12 + +### Patch Changes + +- e0a69ba49f: build(deps): bump `fs-extra` from 9.1.0 to 10.0.1 +- 35e58d57aa: refactor kubernetes fetcher +- Updated dependencies + - @backstage/backend-common@0.13.0 + - @backstage/catalog-model@0.13.0 + - @backstage/plugin-kubernetes-common@0.2.7 + ## 0.4.12-next.0 ### Patch Changes diff --git a/plugins/kubernetes-backend/package.json b/plugins/kubernetes-backend/package.json index 988be46b8a..8aebdfcf59 100644 --- a/plugins/kubernetes-backend/package.json +++ b/plugins/kubernetes-backend/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-kubernetes-backend", "description": "A Backstage backend plugin that integrates towards Kubernetes", - "version": "0.4.12-next.0", + "version": "0.4.12", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -35,11 +35,11 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/backend-common": "^0.13.0-next.0", - "@backstage/catalog-model": "^0.13.0-next.0", + "@backstage/backend-common": "^0.13.0", + "@backstage/catalog-model": "^0.13.0", "@backstage/config": "^0.1.15", "@backstage/errors": "^0.2.2", - "@backstage/plugin-kubernetes-common": "^0.2.7-next.0", + "@backstage/plugin-kubernetes-common": "^0.2.7", "@google-cloud/container": "^2.2.0", "@kubernetes/client-node": "^0.16.0", "@types/express": "^4.17.6", @@ -58,7 +58,7 @@ "yn": "^4.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@types/aws4": "^1.5.1", "supertest": "^6.1.3", "aws-sdk-mock": "^5.2.1", diff --git a/plugins/kubernetes-common/CHANGELOG.md b/plugins/kubernetes-common/CHANGELOG.md index 5cfd0733ef..3f045f242b 100644 --- a/plugins/kubernetes-common/CHANGELOG.md +++ b/plugins/kubernetes-common/CHANGELOG.md @@ -1,5 +1,12 @@ # @backstage/plugin-kubernetes-common +## 0.2.7 + +### Patch Changes + +- Updated dependencies + - @backstage/catalog-model@0.13.0 + ## 0.2.7-next.0 ### Patch Changes diff --git a/plugins/kubernetes-common/package.json b/plugins/kubernetes-common/package.json index 035e76f96e..ea5d4c3e85 100644 --- a/plugins/kubernetes-common/package.json +++ b/plugins/kubernetes-common/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-kubernetes-common", "description": "Common functionalities for kubernetes, to be shared between kubernetes and kubernetes-backend plugin", - "version": "0.2.7-next.0", + "version": "0.2.7", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -38,11 +38,11 @@ "url": "https://github.com/backstage/backstage/issues" }, "dependencies": { - "@backstage/catalog-model": "^0.13.0-next.0", + "@backstage/catalog-model": "^0.13.0", "@kubernetes/client-node": "^0.16.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0" + "@backstage/cli": "^0.15.2" }, "jest": { "roots": [ diff --git a/plugins/kubernetes/CHANGELOG.md b/plugins/kubernetes/CHANGELOG.md index fed4c0cefc..61446156ac 100644 --- a/plugins/kubernetes/CHANGELOG.md +++ b/plugins/kubernetes/CHANGELOG.md @@ -1,5 +1,15 @@ # @backstage/plugin-kubernetes +## 0.6.2 + +### Patch Changes + +- Updated dependencies + - @backstage/plugin-catalog-react@0.9.0 + - @backstage/core-components@0.9.1 + - @backstage/catalog-model@0.13.0 + - @backstage/plugin-kubernetes-common@0.2.7 + ## 0.6.2-next.0 ### Patch Changes diff --git a/plugins/kubernetes/package.json b/plugins/kubernetes/package.json index 6f6fb403b3..d0bc8c7f17 100644 --- a/plugins/kubernetes/package.json +++ b/plugins/kubernetes/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-kubernetes", "description": "A Backstage plugin that integrates towards Kubernetes", - "version": "0.6.2-next.0", + "version": "0.6.2", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -34,12 +34,12 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/catalog-model": "^0.13.0-next.0", + "@backstage/catalog-model": "^0.13.0", "@backstage/config": "^0.1.15", - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", - "@backstage/plugin-catalog-react": "^0.9.0-next.0", - "@backstage/plugin-kubernetes-common": "^0.2.7-next.0", + "@backstage/plugin-catalog-react": "^0.9.0", + "@backstage/plugin-kubernetes-common": "^0.2.7", "@kubernetes/client-node": "^0.16.0", "@backstage/theme": "^0.2.15", "@material-ui/core": "^4.12.2", @@ -56,9 +56,9 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/lighthouse/CHANGELOG.md b/plugins/lighthouse/CHANGELOG.md index 910fefe24a..9e81f0b73f 100644 --- a/plugins/lighthouse/CHANGELOG.md +++ b/plugins/lighthouse/CHANGELOG.md @@ -1,5 +1,14 @@ # @backstage/plugin-lighthouse +## 0.3.2 + +### Patch Changes + +- Updated dependencies + - @backstage/plugin-catalog-react@0.9.0 + - @backstage/core-components@0.9.1 + - @backstage/catalog-model@0.13.0 + ## 0.3.2-next.0 ### Patch Changes diff --git a/plugins/lighthouse/package.json b/plugins/lighthouse/package.json index 797799bf5e..e0052c7ead 100644 --- a/plugins/lighthouse/package.json +++ b/plugins/lighthouse/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-lighthouse", "description": "A Backstage plugin that integrates towards Lighthouse", - "version": "0.3.2-next.0", + "version": "0.3.2", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -35,11 +35,11 @@ "start": "backstage-cli package start" }, "dependencies": { - "@backstage/catalog-model": "^0.13.0-next.0", + "@backstage/catalog-model": "^0.13.0", "@backstage/config": "^0.1.15", - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", - "@backstage/plugin-catalog-react": "^0.9.0-next.0", + "@backstage/plugin-catalog-react": "^0.9.0", "@backstage/theme": "^0.2.15", "@material-ui/core": "^4.12.2", "@material-ui/icons": "^4.9.1", @@ -51,9 +51,9 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/newrelic-dashboard/CHANGELOG.md b/plugins/newrelic-dashboard/CHANGELOG.md index caf8dc34cb..62e6db2635 100644 --- a/plugins/newrelic-dashboard/CHANGELOG.md +++ b/plugins/newrelic-dashboard/CHANGELOG.md @@ -1,5 +1,14 @@ # @backstage/plugin-newrelic-dashboard +## 0.1.10 + +### Patch Changes + +- Updated dependencies + - @backstage/plugin-catalog-react@0.9.0 + - @backstage/core-components@0.9.1 + - @backstage/catalog-model@0.13.0 + ## 0.1.10-next.0 ### Patch Changes diff --git a/plugins/newrelic-dashboard/package.json b/plugins/newrelic-dashboard/package.json index e6b97ec729..0b17fd6c51 100644 --- a/plugins/newrelic-dashboard/package.json +++ b/plugins/newrelic-dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@backstage/plugin-newrelic-dashboard", - "version": "0.1.10-next.0", + "version": "0.1.10", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -23,19 +23,19 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/catalog-model": "^0.13.0-next.0", - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/catalog-model": "^0.13.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", "@backstage/errors": "^0.2.2", - "@backstage/plugin-catalog-react": "^0.9.0-next.0", + "@backstage/plugin-catalog-react": "^0.9.0", "@material-ui/core": "^4.12.2", "@material-ui/icons": "^4.9.1", "@material-ui/lab": "4.0.0-alpha.57", "react-use": "^17.2.4" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/cli": "^0.15.2", + "@backstage/dev-utils": "^0.2.25", "@testing-library/jest-dom": "^5.10.1", "@types/react": "^16.13.1 || ^17.0.0", "cross-fetch": "^3.1.5" diff --git a/plugins/newrelic/CHANGELOG.md b/plugins/newrelic/CHANGELOG.md index f6a0b25c50..dc37652092 100644 --- a/plugins/newrelic/CHANGELOG.md +++ b/plugins/newrelic/CHANGELOG.md @@ -1,5 +1,12 @@ # @backstage/plugin-newrelic +## 0.3.20 + +### Patch Changes + +- Updated dependencies + - @backstage/core-components@0.9.1 + ## 0.3.20-next.0 ### Patch Changes diff --git a/plugins/newrelic/package.json b/plugins/newrelic/package.json index 1de462440b..843170d477 100644 --- a/plugins/newrelic/package.json +++ b/plugins/newrelic/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-newrelic", "description": "A Backstage plugin that integrates towards New Relic", - "version": "0.3.20-next.0", + "version": "0.3.20", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -35,7 +35,7 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", "@backstage/theme": "^0.2.15", "@material-ui/core": "^4.12.2", @@ -47,9 +47,9 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/org/CHANGELOG.md b/plugins/org/CHANGELOG.md index 76f4d50a90..39e507bb25 100644 --- a/plugins/org/CHANGELOG.md +++ b/plugins/org/CHANGELOG.md @@ -1,5 +1,15 @@ # @backstage/plugin-org +## 0.5.2 + +### Patch Changes + +- 2986f8e09d: Fixed EntityOwnerPicker and OwnershipCard url filter issue with more than 21 owners +- Updated dependencies + - @backstage/plugin-catalog-react@0.9.0 + - @backstage/core-components@0.9.1 + - @backstage/catalog-model@0.13.0 + ## 0.5.2-next.0 ### Patch Changes diff --git a/plugins/org/package.json b/plugins/org/package.json index c1b178debb..c19d0e9b6a 100644 --- a/plugins/org/package.json +++ b/plugins/org/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-org", "description": "A Backstage plugin that helps you create entity pages for your organization", - "version": "0.5.2-next.0", + "version": "0.5.2", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -24,10 +24,10 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/catalog-model": "^0.13.0-next.0", - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/catalog-model": "^0.13.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", - "@backstage/plugin-catalog-react": "^0.9.0-next.0", + "@backstage/plugin-catalog-react": "^0.9.0", "@backstage/theme": "^0.2.15", "@material-ui/core": "^4.12.2", "@material-ui/icons": "^4.9.1", @@ -42,10 +42,10 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/catalog-client": "^0.9.0-next.0", - "@backstage/cli": "^0.15.2-next.0", + "@backstage/catalog-client": "^0.9.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/pagerduty/CHANGELOG.md b/plugins/pagerduty/CHANGELOG.md index 6571d43941..677023e20f 100644 --- a/plugins/pagerduty/CHANGELOG.md +++ b/plugins/pagerduty/CHANGELOG.md @@ -1,5 +1,14 @@ # @backstage/plugin-pagerduty +## 0.3.29 + +### Patch Changes + +- Updated dependencies + - @backstage/plugin-catalog-react@0.9.0 + - @backstage/core-components@0.9.1 + - @backstage/catalog-model@0.13.0 + ## 0.3.29-next.0 ### Patch Changes diff --git a/plugins/pagerduty/package.json b/plugins/pagerduty/package.json index cef653cacd..06001e8ff0 100644 --- a/plugins/pagerduty/package.json +++ b/plugins/pagerduty/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-pagerduty", "description": "A Backstage plugin that integrates towards PagerDuty", - "version": "0.3.29-next.0", + "version": "0.3.29", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -34,10 +34,10 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/catalog-model": "^0.13.0-next.0", - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/catalog-model": "^0.13.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", - "@backstage/plugin-catalog-react": "^0.9.0-next.0", + "@backstage/plugin-catalog-react": "^0.9.0", "@backstage/theme": "^0.2.15", "@material-ui/core": "^4.12.2", "@material-ui/icons": "^4.9.1", @@ -52,9 +52,9 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/periskop-backend/CHANGELOG.md b/plugins/periskop-backend/CHANGELOG.md index 77f3b251d1..10b0f2900d 100644 --- a/plugins/periskop-backend/CHANGELOG.md +++ b/plugins/periskop-backend/CHANGELOG.md @@ -1,5 +1,16 @@ # @backstage/plugin-periskop-backend +## 0.1.0 + +### Minor Changes + +- 7ef026339d: Add periskop and periskop-backend plugin, for usage with exception aggregation tool https://periskop.io/ + +### Patch Changes + +- Updated dependencies + - @backstage/backend-common@0.13.0 + ## 0.1.0-next.0 ### Minor Changes diff --git a/plugins/periskop-backend/package.json b/plugins/periskop-backend/package.json index 0fed5d8e78..744bf00d71 100644 --- a/plugins/periskop-backend/package.json +++ b/plugins/periskop-backend/package.json @@ -1,6 +1,6 @@ { "name": "@backstage/plugin-periskop-backend", - "version": "0.1.0-next.0", + "version": "0.1.0", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -24,7 +24,7 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/backend-common": "^0.13.0-next.0", + "@backstage/backend-common": "^0.13.0", "@backstage/config": "^0.1.15", "@types/express": "*", "cross-fetch": "^3.0.6", @@ -35,7 +35,7 @@ "yn": "^4.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@types/supertest": "^2.0.8", "msw": "^0.35.0", "supertest": "^6.1.6" diff --git a/plugins/periskop/CHANGELOG.md b/plugins/periskop/CHANGELOG.md index 7cd1b2aa81..f9914713ce 100644 --- a/plugins/periskop/CHANGELOG.md +++ b/plugins/periskop/CHANGELOG.md @@ -1,5 +1,18 @@ # @backstage/plugin-periskop +## 0.1.0 + +### Minor Changes + +- 7ef026339d: Add periskop and periskop-backend plugin, for usage with exception aggregation tool https://periskop.io/ + +### Patch Changes + +- Updated dependencies + - @backstage/plugin-catalog-react@0.9.0 + - @backstage/core-components@0.9.1 + - @backstage/catalog-model@0.13.0 + ## 0.1.0-next.0 ### Minor Changes diff --git a/plugins/periskop/package.json b/plugins/periskop/package.json index bdae9b3e06..6a7c0d975f 100644 --- a/plugins/periskop/package.json +++ b/plugins/periskop/package.json @@ -1,6 +1,6 @@ { "name": "@backstage/plugin-periskop", - "version": "0.1.0-next.0", + "version": "0.1.0", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -25,11 +25,11 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/catalog-model": "^0.13.0-next.0", - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/catalog-model": "^0.13.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", "@backstage/errors": "^0.2.2", - "@backstage/plugin-catalog-react": "^0.9.0-next.0", + "@backstage/plugin-catalog-react": "^0.9.0", "@backstage/theme": "^0.2.15", "@material-ui/core": "^4.12.2", "@material-ui/icons": "^4.9.1", @@ -42,9 +42,9 @@ "react-dom": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/permission-backend/CHANGELOG.md b/plugins/permission-backend/CHANGELOG.md index 6964692c75..1193a0f16f 100644 --- a/plugins/permission-backend/CHANGELOG.md +++ b/plugins/permission-backend/CHANGELOG.md @@ -1,5 +1,14 @@ # @backstage/plugin-permission-backend +## 0.5.4 + +### Patch Changes + +- Updated dependencies + - @backstage/backend-common@0.13.0 + - @backstage/plugin-auth-node@0.1.5 + - @backstage/plugin-permission-node@0.5.4 + ## 0.5.4-next.0 ### Patch Changes diff --git a/plugins/permission-backend/package.json b/plugins/permission-backend/package.json index 8b4c63ab3b..70971ed136 100644 --- a/plugins/permission-backend/package.json +++ b/plugins/permission-backend/package.json @@ -1,6 +1,6 @@ { "name": "@backstage/plugin-permission-backend", - "version": "0.5.4-next.0", + "version": "0.5.4", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -22,12 +22,12 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/backend-common": "^0.13.0-next.0", + "@backstage/backend-common": "^0.13.0", "@backstage/config": "^0.1.15", "@backstage/errors": "^0.2.2", - "@backstage/plugin-auth-node": "^0.1.5-next.0", + "@backstage/plugin-auth-node": "^0.1.5", "@backstage/plugin-permission-common": "^0.5.2", - "@backstage/plugin-permission-node": "^0.5.4-next.0", + "@backstage/plugin-permission-node": "^0.5.4", "@types/express": "*", "dataloader": "^2.0.0", "express": "^4.17.1", @@ -39,7 +39,7 @@ "zod": "^3.11.6" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@types/lodash": "^4.14.151", "@types/supertest": "^2.0.8", "supertest": "^6.1.6", diff --git a/plugins/permission-node/CHANGELOG.md b/plugins/permission-node/CHANGELOG.md index 72c192988c..87f0e47c31 100644 --- a/plugins/permission-node/CHANGELOG.md +++ b/plugins/permission-node/CHANGELOG.md @@ -1,5 +1,13 @@ # @backstage/plugin-permission-node +## 0.5.4 + +### Patch Changes + +- Updated dependencies + - @backstage/backend-common@0.13.0 + - @backstage/plugin-auth-node@0.1.5 + ## 0.5.4-next.0 ### Patch Changes diff --git a/plugins/permission-node/package.json b/plugins/permission-node/package.json index e514a7b8d4..3fdcbd9820 100644 --- a/plugins/permission-node/package.json +++ b/plugins/permission-node/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-permission-node", "description": "Common permission and authorization utilities for backend plugins", - "version": "0.5.4-next.0", + "version": "0.5.4", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -33,10 +33,10 @@ "start": "backstage-cli package start" }, "dependencies": { - "@backstage/backend-common": "^0.13.0-next.0", + "@backstage/backend-common": "^0.13.0", "@backstage/config": "^0.1.15", "@backstage/errors": "^0.2.2", - "@backstage/plugin-auth-node": "^0.1.5-next.0", + "@backstage/plugin-auth-node": "^0.1.5", "@backstage/plugin-permission-common": "^0.5.2", "@types/express": "^4.17.6", "express": "^4.17.1", @@ -44,7 +44,7 @@ "zod": "^3.11.6" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@types/supertest": "^2.0.8", "msw": "^0.35.0", "supertest": "^6.1.3" diff --git a/plugins/proxy-backend/CHANGELOG.md b/plugins/proxy-backend/CHANGELOG.md index 5ee0c417e4..21383f46b4 100644 --- a/plugins/proxy-backend/CHANGELOG.md +++ b/plugins/proxy-backend/CHANGELOG.md @@ -1,5 +1,12 @@ # @backstage/plugin-proxy-backend +## 0.2.23 + +### Patch Changes + +- Updated dependencies + - @backstage/backend-common@0.13.0 + ## 0.2.23-next.0 ### Patch Changes diff --git a/plugins/proxy-backend/package.json b/plugins/proxy-backend/package.json index b28b95f664..da81235a4e 100644 --- a/plugins/proxy-backend/package.json +++ b/plugins/proxy-backend/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-proxy-backend", "description": "A Backstage backend plugin that helps you set up proxy endpoints in the backend", - "version": "0.2.23-next.0", + "version": "0.2.23", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -32,7 +32,7 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/backend-common": "^0.13.0-next.0", + "@backstage/backend-common": "^0.13.0", "@backstage/config": "^0.1.15", "@types/express": "^4.17.6", "express": "^4.17.1", @@ -46,7 +46,7 @@ "yup": "^0.32.9" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@types/http-proxy-middleware": "^0.19.3", "@types/supertest": "^2.0.8", "@types/uuid": "^8.0.0", diff --git a/plugins/rollbar-backend/CHANGELOG.md b/plugins/rollbar-backend/CHANGELOG.md index f8f91463b5..35e0630b3c 100644 --- a/plugins/rollbar-backend/CHANGELOG.md +++ b/plugins/rollbar-backend/CHANGELOG.md @@ -1,5 +1,14 @@ # @backstage/plugin-rollbar-backend +## 0.1.26 + +### Patch Changes + +- e0a69ba49f: build(deps): bump `fs-extra` from 9.1.0 to 10.0.1 +- 3c2bc73901: Use `setupRequestMockHandlers` from `@backstage/backend-test-utils` +- Updated dependencies + - @backstage/backend-common@0.13.0 + ## 0.1.26-next.0 ### Patch Changes diff --git a/plugins/rollbar-backend/package.json b/plugins/rollbar-backend/package.json index 492f376b6c..c2292b5def 100644 --- a/plugins/rollbar-backend/package.json +++ b/plugins/rollbar-backend/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-rollbar-backend", "description": "A Backstage backend plugin that integrates towards Rollbar", - "version": "0.1.26-next.0", + "version": "0.1.26", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -34,7 +34,7 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/backend-common": "^0.13.0-next.0", + "@backstage/backend-common": "^0.13.0", "@backstage/config": "^0.1.15", "@types/express": "^4.17.6", "camelcase-keys": "^7.0.1", @@ -50,8 +50,8 @@ "yn": "^4.0.0" }, "devDependencies": { - "@backstage/backend-test-utils": "^0.1.21-next.0", - "@backstage/cli": "^0.15.2-next.0", + "@backstage/backend-test-utils": "^0.1.21", + "@backstage/cli": "^0.15.2", "@types/supertest": "^2.0.8", "msw": "^0.36.3", "supertest": "^6.1.3" diff --git a/plugins/rollbar/CHANGELOG.md b/plugins/rollbar/CHANGELOG.md index 25d30be4f1..9d897bf066 100644 --- a/plugins/rollbar/CHANGELOG.md +++ b/plugins/rollbar/CHANGELOG.md @@ -1,5 +1,15 @@ # @backstage/plugin-rollbar +## 0.4.2 + +### Patch Changes + +- 9844d4d2bd: Removed usage of removed hook. +- Updated dependencies + - @backstage/plugin-catalog-react@0.9.0 + - @backstage/core-components@0.9.1 + - @backstage/catalog-model@0.13.0 + ## 0.4.2-next.0 ### Patch Changes diff --git a/plugins/rollbar/package.json b/plugins/rollbar/package.json index c2f81c8a89..21118a594b 100644 --- a/plugins/rollbar/package.json +++ b/plugins/rollbar/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-rollbar", "description": "A Backstage plugin that integrates towards Rollbar", - "version": "0.4.2-next.0", + "version": "0.4.2", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -35,10 +35,10 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/catalog-model": "^0.13.0-next.0", - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/catalog-model": "^0.13.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", - "@backstage/plugin-catalog-react": "^0.9.0-next.0", + "@backstage/plugin-catalog-react": "^0.9.0", "@backstage/theme": "^0.2.15", "@material-ui/core": "^4.12.2", "@material-ui/icons": "^4.9.1", @@ -53,9 +53,9 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/scaffolder-backend-module-cookiecutter/CHANGELOG.md b/plugins/scaffolder-backend-module-cookiecutter/CHANGELOG.md index 890e6065cc..72527fba26 100644 --- a/plugins/scaffolder-backend-module-cookiecutter/CHANGELOG.md +++ b/plugins/scaffolder-backend-module-cookiecutter/CHANGELOG.md @@ -1,5 +1,15 @@ # @backstage/plugin-scaffolder-backend-module-cookiecutter +## 0.2.4 + +### Patch Changes + +- 8122e27717: Updating documentation for supporting `apiVersion: scaffolder.backstage.io/v1beta3` +- e0a69ba49f: build(deps): bump `fs-extra` from 9.1.0 to 10.0.1 +- Updated dependencies + - @backstage/backend-common@0.13.0 + - @backstage/plugin-scaffolder-backend@0.18.0 + ## 0.2.4-next.0 ### Patch Changes diff --git a/plugins/scaffolder-backend-module-cookiecutter/package.json b/plugins/scaffolder-backend-module-cookiecutter/package.json index 6f04ab08a3..d6a8b7dfd9 100644 --- a/plugins/scaffolder-backend-module-cookiecutter/package.json +++ b/plugins/scaffolder-backend-module-cookiecutter/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-scaffolder-backend-module-cookiecutter", "description": "A module for the scaffolder backend that lets you template projects using cookiecutter", - "version": "0.2.4-next.0", + "version": "0.2.4", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -23,10 +23,10 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/backend-common": "^0.13.0-next.0", + "@backstage/backend-common": "^0.13.0", "@backstage/errors": "^0.2.2", "@backstage/integration": "^0.8.0", - "@backstage/plugin-scaffolder-backend": "^0.18.0-next.0", + "@backstage/plugin-scaffolder-backend": "^0.18.0", "@backstage/config": "^0.1.15", "@backstage/types": "^0.1.3", "command-exists": "^1.2.9", @@ -35,7 +35,7 @@ "yn": "^4.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@types/fs-extra": "^9.0.1", "@types/mock-fs": "^4.13.0", "@types/jest": "^26.0.7", diff --git a/plugins/scaffolder-backend-module-rails/CHANGELOG.md b/plugins/scaffolder-backend-module-rails/CHANGELOG.md index 7afc04c01a..d21805b9b5 100644 --- a/plugins/scaffolder-backend-module-rails/CHANGELOG.md +++ b/plugins/scaffolder-backend-module-rails/CHANGELOG.md @@ -1,5 +1,15 @@ # @backstage/plugin-scaffolder-backend-module-rails +## 0.3.4 + +### Patch Changes + +- 8122e27717: Updating documentation for supporting `apiVersion: scaffolder.backstage.io/v1beta3` +- e0a69ba49f: build(deps): bump `fs-extra` from 9.1.0 to 10.0.1 +- Updated dependencies + - @backstage/backend-common@0.13.0 + - @backstage/plugin-scaffolder-backend@0.18.0 + ## 0.3.4-next.0 ### Patch Changes diff --git a/plugins/scaffolder-backend-module-rails/package.json b/plugins/scaffolder-backend-module-rails/package.json index 053f48d1ce..5fd07439e6 100644 --- a/plugins/scaffolder-backend-module-rails/package.json +++ b/plugins/scaffolder-backend-module-rails/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-scaffolder-backend-module-rails", "description": "A module for the scaffolder backend that lets you template projects using Rails", - "version": "0.3.4-next.0", + "version": "0.3.4", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -24,8 +24,8 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/backend-common": "^0.13.0-next.0", - "@backstage/plugin-scaffolder-backend": "^0.18.0-next.0", + "@backstage/backend-common": "^0.13.0", + "@backstage/plugin-scaffolder-backend": "^0.18.0", "@backstage/config": "^0.1.15", "@backstage/errors": "^0.2.2", "@backstage/integration": "^0.8.0", @@ -34,7 +34,7 @@ "fs-extra": "^10.0.1" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@types/jest": "^26.0.7", "@types/node": "^14.14.32", "@types/command-exists": "^1.2.0", diff --git a/plugins/scaffolder-backend-module-yeoman/CHANGELOG.md b/plugins/scaffolder-backend-module-yeoman/CHANGELOG.md index 0a7d6f06d5..01bf358b9d 100644 --- a/plugins/scaffolder-backend-module-yeoman/CHANGELOG.md +++ b/plugins/scaffolder-backend-module-yeoman/CHANGELOG.md @@ -1,5 +1,13 @@ # @backstage/plugin-scaffolder-backend-module-yeoman +## 0.2.2 + +### Patch Changes + +- 8122e27717: Updating documentation for supporting `apiVersion: scaffolder.backstage.io/v1beta3` +- Updated dependencies + - @backstage/plugin-scaffolder-backend@0.18.0 + ## 0.2.2-next.0 ### Patch Changes diff --git a/plugins/scaffolder-backend-module-yeoman/package.json b/plugins/scaffolder-backend-module-yeoman/package.json index bc67774c59..02395e62f6 100644 --- a/plugins/scaffolder-backend-module-yeoman/package.json +++ b/plugins/scaffolder-backend-module-yeoman/package.json @@ -1,6 +1,6 @@ { "name": "@backstage/plugin-scaffolder-backend-module-yeoman", - "version": "0.2.2-next.0", + "version": "0.2.2", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -24,13 +24,13 @@ }, "dependencies": { "@backstage/config": "^0.1.15", - "@backstage/plugin-scaffolder-backend": "^0.18.0-next.0", + "@backstage/plugin-scaffolder-backend": "^0.18.0", "@backstage/types": "^0.1.3", "winston": "^3.2.1", "yeoman-environment": "^3.9.1" }, "devDependencies": { - "@backstage/backend-common": "^0.13.0-next.0", + "@backstage/backend-common": "^0.13.0", "@types/jest": "^26.0.7" }, "files": [ diff --git a/plugins/scaffolder-backend/CHANGELOG.md b/plugins/scaffolder-backend/CHANGELOG.md index 5e2ad656a4..b39d57b897 100644 --- a/plugins/scaffolder-backend/CHANGELOG.md +++ b/plugins/scaffolder-backend/CHANGELOG.md @@ -1,5 +1,46 @@ # @backstage/plugin-scaffolder-backend +## 0.18.0 + +### Minor Changes + +- 310e905998: The following deprecations are now breaking and have been removed: + + - **BREAKING**: Support for `backstage.io/v1beta2` Software Templates has been removed. Please migrate your legacy templates to the new `scaffolder.backstage.io/v1beta3` `apiVersion` by following the [migration guide](https://backstage.io/docs/features/software-templates/migrating-from-v1beta2-to-v1beta3) + + - **BREAKING**: Removed the deprecated `TemplateMetadata`. Please use `TemplateInfo` instead. + + - **BREAKING**: Removed the deprecated `context.baseUrl`. It's now available on `context.templateInfo.baseUrl`. + + - **BREAKING**: Removed the deprecated `DispatchResult`, use `TaskBrokerDispatchResult` instead. + + - **BREAKING**: Removed the deprecated `runCommand`, use `executeShellCommond` instead. + + - **BREAKING**: Removed the deprecated `Status` in favour of `TaskStatus` instead. + + - **BREAKING**: Removed the deprecated `TaskState` in favour of `CurrentClaimedTask` instead. + +- f9c7bdd899: **BREAKING**: + + - Removed the `createFetchCookiecutterAction` export, please use the `@backstage/plugin-scaffolder-backend-module-cookiecutter` package explicitly (see [its README](https://github.com/backstage/backstage/tree/master/plugins/scaffolder-backend-module-cookiecutter) for installation instructions). + - Removed the `containerRunner` argument from the types `RouterOptions` (as used by `createRouter`) and `CreateBuiltInActionsOptions` (as used by `createBuiltinActions`). + +- 5afbd16d43: **BREAKING**: Removed the previously deprecated `OctokitProvider` class. + +### Patch Changes + +- ab7cd7d70e: Do some groundwork for supporting the `better-sqlite3` driver, to maybe eventually replace `@vscode/sqlite3` (#9912) +- 8122e27717: Updating documentation for supporting `apiVersion: scaffolder.backstage.io/v1beta3` +- e0a69ba49f: build(deps): bump `fs-extra` from 9.1.0 to 10.0.1 +- 3c2bc73901: Use `setupRequestMockHandlers` from `@backstage/backend-test-utils` +- 458d16869c: Allow passing more repo configuration for `publish:github` action +- Updated dependencies + - @backstage/backend-common@0.13.0 + - @backstage/plugin-catalog-backend@0.24.0 + - @backstage/plugin-scaffolder-common@0.3.0 + - @backstage/catalog-model@0.13.0 + - @backstage/catalog-client@0.9.0 + ## 0.18.0-next.0 ### Minor Changes diff --git a/plugins/scaffolder-backend/package.json b/plugins/scaffolder-backend/package.json index 6ef03935e3..1de4961b59 100644 --- a/plugins/scaffolder-backend/package.json +++ b/plugins/scaffolder-backend/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-scaffolder-backend", "description": "The Backstage backend plugin that helps you create new things", - "version": "0.18.0-next.0", + "version": "0.18.0", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -34,14 +34,14 @@ "build:assets": "node scripts/build-nunjucks.js" }, "dependencies": { - "@backstage/backend-common": "^0.13.0-next.0", - "@backstage/catalog-client": "^0.9.0-next.0", - "@backstage/catalog-model": "^0.13.0-next.0", + "@backstage/backend-common": "^0.13.0", + "@backstage/catalog-client": "^0.9.0", + "@backstage/catalog-model": "^0.13.0", "@backstage/config": "^0.1.15", "@backstage/errors": "^0.2.2", "@backstage/integration": "^0.8.0", - "@backstage/plugin-catalog-backend": "^0.24.0-next.0", - "@backstage/plugin-scaffolder-common": "^0.3.0-next.0", + "@backstage/plugin-catalog-backend": "^0.24.0", + "@backstage/plugin-scaffolder-common": "^0.3.0", "@backstage/types": "^0.1.3", "@gitbeaker/core": "^34.6.0", "@gitbeaker/node": "^35.1.0", @@ -74,8 +74,8 @@ "zen-observable": "^0.8.15" }, "devDependencies": { - "@backstage/backend-test-utils": "^0.1.21-next.0", - "@backstage/cli": "^0.15.2-next.0", + "@backstage/backend-test-utils": "^0.1.21", + "@backstage/cli": "^0.15.2", "@types/command-exists": "^1.2.0", "@types/fs-extra": "^9.0.1", "@types/git-url-parse": "^9.0.0", diff --git a/plugins/scaffolder-common/CHANGELOG.md b/plugins/scaffolder-common/CHANGELOG.md index 3c0ffabdb4..5c3f4c60f2 100644 --- a/plugins/scaffolder-common/CHANGELOG.md +++ b/plugins/scaffolder-common/CHANGELOG.md @@ -1,5 +1,30 @@ # @backstage/plugin-scaffolder-common +## 0.3.0 + +### Minor Changes + +- 310e905998: The following deprecations are now breaking and have been removed: + + - **BREAKING**: Support for `backstage.io/v1beta2` Software Templates has been removed. Please migrate your legacy templates to the new `scaffolder.backstage.io/v1beta3` `apiVersion` by following the [migration guide](https://backstage.io/docs/features/software-templates/migrating-from-v1beta2-to-v1beta3) + + - **BREAKING**: Removed the deprecated `TemplateMetadata`. Please use `TemplateInfo` instead. + + - **BREAKING**: Removed the deprecated `context.baseUrl`. It's now available on `context.templateInfo.baseUrl`. + + - **BREAKING**: Removed the deprecated `DispatchResult`, use `TaskBrokerDispatchResult` instead. + + - **BREAKING**: Removed the deprecated `runCommand`, use `executeShellCommond` instead. + + - **BREAKING**: Removed the deprecated `Status` in favour of `TaskStatus` instead. + + - **BREAKING**: Removed the deprecated `TaskState` in favour of `CurrentClaimedTask` instead. + +### Patch Changes + +- Updated dependencies + - @backstage/catalog-model@0.13.0 + ## 0.3.0-next.0 ### Minor Changes diff --git a/plugins/scaffolder-common/package.json b/plugins/scaffolder-common/package.json index 596825cfe4..acfe0c4da9 100644 --- a/plugins/scaffolder-common/package.json +++ b/plugins/scaffolder-common/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-scaffolder-common", "description": "Common functionalities for the scaffolder, to be shared between scaffolder and scaffolder-backend plugin", - "version": "0.3.0-next.0", + "version": "0.3.0", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -39,10 +39,10 @@ "url": "https://github.com/backstage/backstage/issues" }, "dependencies": { - "@backstage/catalog-model": "^0.13.0-next.0", + "@backstage/catalog-model": "^0.13.0", "@backstage/types": "^0.1.3" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0" + "@backstage/cli": "^0.15.2" } } diff --git a/plugins/scaffolder/CHANGELOG.md b/plugins/scaffolder/CHANGELOG.md index 0549fba214..fc8a82927a 100644 --- a/plugins/scaffolder/CHANGELOG.md +++ b/plugins/scaffolder/CHANGELOG.md @@ -1,5 +1,49 @@ # @backstage/plugin-scaffolder +## 0.15.0 + +### Minor Changes + +- 310e905998: The following deprecations are now breaking and have been removed: + + - **BREAKING**: Support for `backstage.io/v1beta2` Software Templates has been removed. Please migrate your legacy templates to the new `scaffolder.backstage.io/v1beta3` `apiVersion` by following the [migration guide](https://backstage.io/docs/features/software-templates/migrating-from-v1beta2-to-v1beta3) + + - **BREAKING**: Removed the deprecated `TemplateMetadata`. Please use `TemplateInfo` instead. + + - **BREAKING**: Removed the deprecated `context.baseUrl`. It's now available on `context.templateInfo.baseUrl`. + + - **BREAKING**: Removed the deprecated `DispatchResult`, use `TaskBrokerDispatchResult` instead. + + - **BREAKING**: Removed the deprecated `runCommand`, use `executeShellCommond` instead. + + - **BREAKING**: Removed the deprecated `Status` in favour of `TaskStatus` instead. + + - **BREAKING**: Removed the deprecated `TaskState` in favour of `CurrentClaimedTask` instead. + +- 1360f7d73a: **BREAKING**: Removed `ScaffolderTaskOutput.entityRef` and `ScaffolderTaskOutput.remoteUrl`, which both have been deprecated for over a year. Please use the `links` output instead. +- e63e5a9452: Removed the following previously deprecated exports: + + - **BREAKING**: Removed the deprecated `TemplateList` component and the `TemplateListProps` type. Please use the `TemplateCard` to create your own list component instead to render these lists. + + - **BREAKING**: Removed the deprecated `setSecret` method, please use `setSecrets` instead. + + - **BREAKING**: Removed the deprecated `TemplateCardComponent` and `TaskPageComponent` props from the `ScaffolderPage` component. These are now provided using the `components` prop with the shape `{{ TemplateCardComponent: () => JSX.Element, TaskPageComponent: () => JSX.Element }}` + + - **BREAKING**: Removed `JobStatus` as this type was actually a legacy type used in `v1alpha` templates and the workflow engine and should no longer be used or depended on. + +### Patch Changes + +- d741c97b98: Render markdown for description in software templates +- 33e58456b5: Fixing the border color for the `FavoriteEntity` star button on the `TemplateCard` +- Updated dependencies + - @backstage/plugin-catalog-react@0.9.0 + - @backstage/core-components@0.9.1 + - @backstage/plugin-scaffolder-common@0.3.0 + - @backstage/catalog-model@0.13.0 + - @backstage/plugin-catalog-common@0.2.2 + - @backstage/catalog-client@0.9.0 + - @backstage/integration-react@0.1.25 + ## 0.15.0-next.0 ### Minor Changes diff --git a/plugins/scaffolder/package.json b/plugins/scaffolder/package.json index fc206a00d8..32c04ddfc5 100644 --- a/plugins/scaffolder/package.json +++ b/plugins/scaffolder/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-scaffolder", "description": "The Backstage plugin that helps you create new things", - "version": "0.15.0-next.0", + "version": "0.15.0", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -35,18 +35,18 @@ }, "dependencies": { "@types/json-schema": "^7.0.9", - "@backstage/catalog-client": "^0.9.0-next.0", - "@backstage/catalog-model": "^0.13.0-next.0", + "@backstage/catalog-client": "^0.9.0", + "@backstage/catalog-model": "^0.13.0", "@backstage/config": "^0.1.15", - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", "@backstage/errors": "^0.2.2", "@backstage/integration": "^0.8.0", - "@backstage/integration-react": "^0.1.25-next.0", - "@backstage/plugin-catalog-common": "^0.2.2-next.0", - "@backstage/plugin-catalog-react": "^0.9.0-next.0", + "@backstage/integration-react": "^0.1.25", + "@backstage/plugin-catalog-common": "^0.2.2", + "@backstage/plugin-catalog-react": "^0.9.0", "@backstage/plugin-permission-react": "^0.3.3", - "@backstage/plugin-scaffolder-common": "^0.3.0-next.0", + "@backstage/plugin-scaffolder-common": "^0.3.0", "@backstage/theme": "^0.2.15", "@backstage/types": "^0.1.3", "@material-ui/core": "^4.12.2", @@ -73,10 +73,10 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", - "@backstage/plugin-catalog": "^0.10.0-next.0", + "@backstage/dev-utils": "^0.2.25", + "@backstage/plugin-catalog": "^0.10.0", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/search-backend-module-elasticsearch/CHANGELOG.md b/plugins/search-backend-module-elasticsearch/CHANGELOG.md index e207ccd73e..4bc49bbec7 100644 --- a/plugins/search-backend-module-elasticsearch/CHANGELOG.md +++ b/plugins/search-backend-module-elasticsearch/CHANGELOG.md @@ -1,5 +1,14 @@ # @backstage/plugin-search-backend-module-elasticsearch +## 0.1.1 + +### Patch Changes + +- 3e54f6c436: Use `@backstage/plugin-search-common` package instead of `@backstage/search-common`. +- Updated dependencies + - @backstage/plugin-search-common@0.3.1 + - @backstage/plugin-search-backend-node@0.5.1 + ## 0.1.1-next.0 ### Patch Changes diff --git a/plugins/search-backend-module-elasticsearch/package.json b/plugins/search-backend-module-elasticsearch/package.json index b3205f56c3..1700cb09ae 100644 --- a/plugins/search-backend-module-elasticsearch/package.json +++ b/plugins/search-backend-module-elasticsearch/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-search-backend-module-elasticsearch", "description": "A module for the search backend that implements search using ElasticSearch", - "version": "0.1.1-next.0", + "version": "0.1.1", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -24,8 +24,8 @@ }, "dependencies": { "@backstage/config": "^0.1.15", - "@backstage/plugin-search-backend-node": "^0.5.1-next.0", - "@backstage/plugin-search-common": "^0.3.1-next.0", + "@backstage/plugin-search-backend-node": "^0.5.1", + "@backstage/plugin-search-common": "^0.3.1", "@elastic/elasticsearch": "7.13.0", "@acuris/aws-es-connection": "^2.2.0", "aws-sdk": "^2.948.0", @@ -34,8 +34,8 @@ "winston": "^3.2.1" }, "devDependencies": { - "@backstage/backend-common": "^0.13.0-next.0", - "@backstage/cli": "^0.15.2-next.0", + "@backstage/backend-common": "^0.13.0", + "@backstage/cli": "^0.15.2", "@elastic/elasticsearch-mock": "^1.0.0" }, "files": [ diff --git a/plugins/search-backend-module-pg/CHANGELOG.md b/plugins/search-backend-module-pg/CHANGELOG.md index 8a710dccd9..73277da361 100644 --- a/plugins/search-backend-module-pg/CHANGELOG.md +++ b/plugins/search-backend-module-pg/CHANGELOG.md @@ -1,5 +1,15 @@ # @backstage/plugin-search-backend-module-pg +## 0.3.1 + +### Patch Changes + +- 3e54f6c436: Use `@backstage/plugin-search-common` package instead of `@backstage/search-common`. +- Updated dependencies + - @backstage/backend-common@0.13.0 + - @backstage/plugin-search-common@0.3.1 + - @backstage/plugin-search-backend-node@0.5.1 + ## 0.3.1-next.0 ### Patch Changes diff --git a/plugins/search-backend-module-pg/package.json b/plugins/search-backend-module-pg/package.json index 60ada88666..64ad8ae6c2 100644 --- a/plugins/search-backend-module-pg/package.json +++ b/plugins/search-backend-module-pg/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-search-backend-module-pg", "description": "A module for the search backend that implements search using PostgreSQL", - "version": "0.3.1-next.0", + "version": "0.3.1", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -23,15 +23,15 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/backend-common": "^0.13.0-next.0", - "@backstage/plugin-search-backend-node": "^0.5.1-next.0", - "@backstage/plugin-search-common": "^0.3.1-next.0", + "@backstage/backend-common": "^0.13.0", + "@backstage/plugin-search-backend-node": "^0.5.1", + "@backstage/plugin-search-common": "^0.3.1", "lodash": "^4.17.21", "knex": "^1.0.2" }, "devDependencies": { - "@backstage/backend-test-utils": "^0.1.21-next.0", - "@backstage/cli": "^0.15.2-next.0" + "@backstage/backend-test-utils": "^0.1.21", + "@backstage/cli": "^0.15.2" }, "files": [ "dist", diff --git a/plugins/search-backend-node/CHANGELOG.md b/plugins/search-backend-node/CHANGELOG.md index e13ed7dc4d..a4baecfe88 100644 --- a/plugins/search-backend-node/CHANGELOG.md +++ b/plugins/search-backend-node/CHANGELOG.md @@ -1,5 +1,13 @@ # @backstage/plugin-search-backend-node +## 0.5.1 + +### Patch Changes + +- 3e54f6c436: Use `@backstage/plugin-search-common` package instead of `@backstage/search-common`. +- Updated dependencies + - @backstage/plugin-search-common@0.3.1 + ## 0.5.1-next.0 ### Patch Changes diff --git a/plugins/search-backend-node/package.json b/plugins/search-backend-node/package.json index bff24ad52d..63d0167e8f 100644 --- a/plugins/search-backend-node/package.json +++ b/plugins/search-backend-node/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-search-backend-node", "description": "A library for Backstage backend plugins that want to interact with the search backend plugin", - "version": "0.5.1-next.0", + "version": "0.5.1", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -24,15 +24,15 @@ }, "dependencies": { "@backstage/errors": "^0.2.2", - "@backstage/plugin-search-common": "^0.3.1-next.0", + "@backstage/plugin-search-common": "^0.3.1", "@types/lunr": "^2.3.3", "lodash": "^4.17.21", "lunr": "^2.3.9", "winston": "^3.2.1" }, "devDependencies": { - "@backstage/backend-common": "^0.13.0-next.0", - "@backstage/cli": "^0.15.2-next.0" + "@backstage/backend-common": "^0.13.0", + "@backstage/cli": "^0.15.2" }, "files": [ "dist" diff --git a/plugins/search-backend/CHANGELOG.md b/plugins/search-backend/CHANGELOG.md index e3383f5b02..93e636223a 100644 --- a/plugins/search-backend/CHANGELOG.md +++ b/plugins/search-backend/CHANGELOG.md @@ -1,5 +1,17 @@ # @backstage/plugin-search-backend +## 0.4.7 + +### Patch Changes + +- 3e54f6c436: Use `@backstage/plugin-search-common` package instead of `@backstage/search-common`. +- Updated dependencies + - @backstage/backend-common@0.13.0 + - @backstage/plugin-search-common@0.3.1 + - @backstage/plugin-search-backend-node@0.5.1 + - @backstage/plugin-auth-node@0.1.5 + - @backstage/plugin-permission-node@0.5.4 + ## 0.4.7-next.0 ### Patch Changes diff --git a/plugins/search-backend/package.json b/plugins/search-backend/package.json index 1af459a5a4..384c5c9296 100644 --- a/plugins/search-backend/package.json +++ b/plugins/search-backend/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-search-backend", "description": "The Backstage backend plugin that provides your backstage app with search", - "version": "0.4.7-next.0", + "version": "0.4.7", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -23,14 +23,14 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/backend-common": "^0.13.0-next.0", + "@backstage/backend-common": "^0.13.0", "@backstage/config": "^0.1.15", "@backstage/errors": "^0.2.2", - "@backstage/plugin-auth-node": "^0.1.5-next.0", + "@backstage/plugin-auth-node": "^0.1.5", "@backstage/plugin-permission-common": "^0.5.2", - "@backstage/plugin-permission-node": "^0.5.4-next.0", - "@backstage/plugin-search-backend-node": "^0.5.1-next.0", - "@backstage/plugin-search-common": "^0.3.1-next.0", + "@backstage/plugin-permission-node": "^0.5.4", + "@backstage/plugin-search-backend-node": "^0.5.1", + "@backstage/plugin-search-common": "^0.3.1", "@backstage/types": "^0.1.3", "@types/express": "^4.17.6", "dataloader": "^2.0.0", @@ -43,7 +43,7 @@ "zod": "^3.11.6" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@types/supertest": "^2.0.8", "supertest": "^6.1.3" }, diff --git a/plugins/search-common/CHANGELOG.md b/plugins/search-common/CHANGELOG.md index 5d292b3712..3b8a46644e 100644 --- a/plugins/search-common/CHANGELOG.md +++ b/plugins/search-common/CHANGELOG.md @@ -1,5 +1,11 @@ # @backstage/plugin-search-common +## 0.3.1 + +### Patch Changes + +- d52155466a: Renamed `@backstage/search-common` to `@backstage/plugin-search-common`. + ## 0.3.1-next.0 ### Patch Changes diff --git a/plugins/search-common/package.json b/plugins/search-common/package.json index bb2564d713..af7c14cfae 100644 --- a/plugins/search-common/package.json +++ b/plugins/search-common/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-search-common", "description": "Common functionalities for Search, to be shared between various search-enabled plugins", - "version": "0.3.1-next.0", + "version": "0.3.1", "main": "src/index.ts", "types": "src/index.ts", "private": false, @@ -43,7 +43,7 @@ "@backstage/plugin-permission-common": "^0.5.2" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0" + "@backstage/cli": "^0.15.2" }, "jest": { "roots": [ diff --git a/plugins/search/CHANGELOG.md b/plugins/search/CHANGELOG.md index c6020e7feb..93e853d59a 100644 --- a/plugins/search/CHANGELOG.md +++ b/plugins/search/CHANGELOG.md @@ -1,5 +1,16 @@ # @backstage/plugin-search +## 0.7.3 + +### Patch Changes + +- 3e54f6c436: Use `@backstage/plugin-search-common` package instead of `@backstage/search-common`. +- Updated dependencies + - @backstage/plugin-catalog-react@0.9.0 + - @backstage/core-components@0.9.1 + - @backstage/catalog-model@0.13.0 + - @backstage/plugin-search-common@0.3.1 + ## 0.7.3-next.0 ### Patch Changes diff --git a/plugins/search/package.json b/plugins/search/package.json index 4808ce7aa8..876eef447f 100644 --- a/plugins/search/package.json +++ b/plugins/search/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-search", "description": "The Backstage plugin that provides your backstage app with search", - "version": "0.7.3-next.0", + "version": "0.7.3", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -33,13 +33,13 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/catalog-model": "^0.13.0-next.0", + "@backstage/catalog-model": "^0.13.0", "@backstage/config": "^0.1.15", - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", "@backstage/errors": "^0.2.2", - "@backstage/plugin-catalog-react": "^0.9.0-next.0", - "@backstage/plugin-search-common": "^0.3.1-next.0", + "@backstage/plugin-catalog-react": "^0.9.0", + "@backstage/plugin-search-common": "^0.3.1", "@backstage/theme": "^0.2.15", "@backstage/types": "^0.1.3", "@material-ui/core": "^4.12.2", @@ -56,9 +56,9 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/sentry/CHANGELOG.md b/plugins/sentry/CHANGELOG.md index 5a0d031a61..6722e39091 100644 --- a/plugins/sentry/CHANGELOG.md +++ b/plugins/sentry/CHANGELOG.md @@ -1,5 +1,14 @@ # @backstage/plugin-sentry +## 0.3.40 + +### Patch Changes + +- Updated dependencies + - @backstage/plugin-catalog-react@0.9.0 + - @backstage/core-components@0.9.1 + - @backstage/catalog-model@0.13.0 + ## 0.3.40-next.0 ### Patch Changes diff --git a/plugins/sentry/package.json b/plugins/sentry/package.json index 50c3f2d55a..22da7033fd 100644 --- a/plugins/sentry/package.json +++ b/plugins/sentry/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-sentry", "description": "A Backstage plugin that integrates towards Sentry", - "version": "0.3.40-next.0", + "version": "0.3.40", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -35,10 +35,10 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/catalog-model": "^0.13.0-next.0", - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/catalog-model": "^0.13.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", - "@backstage/plugin-catalog-react": "^0.9.0-next.0", + "@backstage/plugin-catalog-react": "^0.9.0", "@backstage/theme": "^0.2.15", "@material-ui/core": "^4.12.2", "@material-ui/icons": "^4.9.1", @@ -52,9 +52,9 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/shortcuts/CHANGELOG.md b/plugins/shortcuts/CHANGELOG.md index ca9b9e33b2..de938695c2 100644 --- a/plugins/shortcuts/CHANGELOG.md +++ b/plugins/shortcuts/CHANGELOG.md @@ -1,5 +1,12 @@ # @backstage/plugin-shortcuts +## 0.2.3 + +### Patch Changes + +- Updated dependencies + - @backstage/core-components@0.9.1 + ## 0.2.3-next.0 ### Patch Changes diff --git a/plugins/shortcuts/package.json b/plugins/shortcuts/package.json index fa3bd918dd..056cd04a86 100644 --- a/plugins/shortcuts/package.json +++ b/plugins/shortcuts/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-shortcuts", "description": "A Backstage plugin that provides a shortcuts feature to the sidebar", - "version": "0.2.3-next.0", + "version": "0.2.3", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -24,7 +24,7 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", "@backstage/theme": "^0.2.15", "@backstage/types": "^0.1.3", @@ -42,9 +42,9 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/sonarqube/CHANGELOG.md b/plugins/sonarqube/CHANGELOG.md index 0ecc3b4a57..89c8ba8b2e 100644 --- a/plugins/sonarqube/CHANGELOG.md +++ b/plugins/sonarqube/CHANGELOG.md @@ -1,5 +1,14 @@ # @backstage/plugin-sonarqube +## 0.3.2 + +### Patch Changes + +- Updated dependencies + - @backstage/plugin-catalog-react@0.9.0 + - @backstage/core-components@0.9.1 + - @backstage/catalog-model@0.13.0 + ## 0.3.2-next.0 ### Patch Changes diff --git a/plugins/sonarqube/package.json b/plugins/sonarqube/package.json index 04dc5a1580..79d56368a2 100644 --- a/plugins/sonarqube/package.json +++ b/plugins/sonarqube/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-sonarqube", "description": "", - "version": "0.3.2-next.0", + "version": "0.3.2", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -36,10 +36,10 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/catalog-model": "^0.13.0-next.0", - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/catalog-model": "^0.13.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", - "@backstage/plugin-catalog-react": "^0.9.0-next.0", + "@backstage/plugin-catalog-react": "^0.9.0", "@backstage/theme": "^0.2.15", "@material-ui/core": "^4.12.2", "@material-ui/icons": "^4.9.1", @@ -53,9 +53,9 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/splunk-on-call/CHANGELOG.md b/plugins/splunk-on-call/CHANGELOG.md index eeb4b613f9..e3d497bfc0 100644 --- a/plugins/splunk-on-call/CHANGELOG.md +++ b/plugins/splunk-on-call/CHANGELOG.md @@ -1,5 +1,14 @@ # @backstage/plugin-splunk-on-call +## 0.3.26 + +### Patch Changes + +- Updated dependencies + - @backstage/plugin-catalog-react@0.9.0 + - @backstage/core-components@0.9.1 + - @backstage/catalog-model@0.13.0 + ## 0.3.26-next.0 ### Patch Changes diff --git a/plugins/splunk-on-call/package.json b/plugins/splunk-on-call/package.json index 15ef124c65..be97fff0f4 100644 --- a/plugins/splunk-on-call/package.json +++ b/plugins/splunk-on-call/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-splunk-on-call", "description": "A Backstage plugin that integrates towards Splunk On-Call", - "version": "0.3.26-next.0", + "version": "0.3.26", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -34,10 +34,10 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/catalog-model": "^0.13.0-next.0", - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/catalog-model": "^0.13.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", - "@backstage/plugin-catalog-react": "^0.9.0-next.0", + "@backstage/plugin-catalog-react": "^0.9.0", "@backstage/theme": "^0.2.15", "@material-ui/core": "^4.12.2", "@material-ui/icons": "^4.9.1", @@ -51,9 +51,9 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/tech-insights-backend-module-jsonfc/CHANGELOG.md b/plugins/tech-insights-backend-module-jsonfc/CHANGELOG.md index 1541a31e59..2b6eb28a27 100644 --- a/plugins/tech-insights-backend-module-jsonfc/CHANGELOG.md +++ b/plugins/tech-insights-backend-module-jsonfc/CHANGELOG.md @@ -1,5 +1,13 @@ # @backstage/plugin-tech-insights-backend-module-jsonfc +## 0.1.13 + +### Patch Changes + +- Updated dependencies + - @backstage/backend-common@0.13.0 + - @backstage/plugin-tech-insights-node@0.2.7 + ## 0.1.13-next.0 ### Patch Changes diff --git a/plugins/tech-insights-backend-module-jsonfc/package.json b/plugins/tech-insights-backend-module-jsonfc/package.json index 36e39ea3a3..344cec8d45 100644 --- a/plugins/tech-insights-backend-module-jsonfc/package.json +++ b/plugins/tech-insights-backend-module-jsonfc/package.json @@ -1,6 +1,6 @@ { "name": "@backstage/plugin-tech-insights-backend-module-jsonfc", - "version": "0.1.13-next.0", + "version": "0.1.13", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -34,11 +34,11 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/backend-common": "^0.13.0-next.0", + "@backstage/backend-common": "^0.13.0", "@backstage/config": "^0.1.15", "@backstage/errors": "^0.2.2", "@backstage/plugin-tech-insights-common": "^0.2.3", - "@backstage/plugin-tech-insights-node": "^0.2.7-next.0", + "@backstage/plugin-tech-insights-node": "^0.2.7", "ajv": "^7.0.3", "json-rules-engine": "^6.1.2", "lodash": "^4.17.21", @@ -46,7 +46,7 @@ "winston": "^3.2.1" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@types/node-cron": "^3.0.1" }, "files": [ diff --git a/plugins/tech-insights-backend/CHANGELOG.md b/plugins/tech-insights-backend/CHANGELOG.md index faf179a82e..714557dfe0 100644 --- a/plugins/tech-insights-backend/CHANGELOG.md +++ b/plugins/tech-insights-backend/CHANGELOG.md @@ -1,5 +1,15 @@ # @backstage/plugin-tech-insights-backend +## 0.2.9 + +### Patch Changes + +- Updated dependencies + - @backstage/backend-common@0.13.0 + - @backstage/catalog-model@0.13.0 + - @backstage/catalog-client@0.9.0 + - @backstage/plugin-tech-insights-node@0.2.7 + ## 0.2.9-next.0 ### Patch Changes diff --git a/plugins/tech-insights-backend/package.json b/plugins/tech-insights-backend/package.json index daf102855c..8eed1fb1ed 100644 --- a/plugins/tech-insights-backend/package.json +++ b/plugins/tech-insights-backend/package.json @@ -1,6 +1,6 @@ { "name": "@backstage/plugin-tech-insights-backend", - "version": "0.2.9-next.0", + "version": "0.2.9", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -34,13 +34,13 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/backend-common": "^0.13.0-next.0", - "@backstage/catalog-client": "^0.9.0-next.0", - "@backstage/catalog-model": "^0.13.0-next.0", + "@backstage/backend-common": "^0.13.0", + "@backstage/catalog-client": "^0.9.0", + "@backstage/catalog-model": "^0.13.0", "@backstage/config": "^0.1.15", "@backstage/errors": "^0.2.2", "@backstage/plugin-tech-insights-common": "^0.2.3", - "@backstage/plugin-tech-insights-node": "^0.2.7-next.0", + "@backstage/plugin-tech-insights-node": "^0.2.7", "@types/express": "^4.17.6", "express": "^4.17.1", "express-promise-router": "^4.1.0", @@ -54,8 +54,8 @@ "yn": "^4.0.0" }, "devDependencies": { - "@backstage/backend-test-utils": "^0.1.21-next.0", - "@backstage/cli": "^0.15.2-next.0", + "@backstage/backend-test-utils": "^0.1.21", + "@backstage/cli": "^0.15.2", "@types/supertest": "^2.0.8", "@types/node-cron": "^3.0.0", "@types/semver": "^7.3.8", diff --git a/plugins/tech-insights-node/CHANGELOG.md b/plugins/tech-insights-node/CHANGELOG.md index 02ed541b56..3ae704f321 100644 --- a/plugins/tech-insights-node/CHANGELOG.md +++ b/plugins/tech-insights-node/CHANGELOG.md @@ -1,5 +1,12 @@ # @backstage/plugin-tech-insights-node +## 0.2.7 + +### Patch Changes + +- Updated dependencies + - @backstage/backend-common@0.13.0 + ## 0.2.7-next.0 ### Patch Changes diff --git a/plugins/tech-insights-node/package.json b/plugins/tech-insights-node/package.json index 8babb26bb6..b523d63669 100644 --- a/plugins/tech-insights-node/package.json +++ b/plugins/tech-insights-node/package.json @@ -1,6 +1,6 @@ { "name": "@backstage/plugin-tech-insights-node", - "version": "0.2.7-next.0", + "version": "0.2.7", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -33,7 +33,7 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/backend-common": "^0.13.0-next.0", + "@backstage/backend-common": "^0.13.0", "@backstage/config": "^0.1.15", "@backstage/plugin-tech-insights-common": "^0.2.3", "@types/luxon": "^2.0.5", @@ -41,7 +41,7 @@ "winston": "^3.2.1" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0" + "@backstage/cli": "^0.15.2" }, "files": [ "dist" diff --git a/plugins/tech-insights/CHANGELOG.md b/plugins/tech-insights/CHANGELOG.md index f7785fcc71..c29e76c294 100644 --- a/plugins/tech-insights/CHANGELOG.md +++ b/plugins/tech-insights/CHANGELOG.md @@ -1,5 +1,14 @@ # @backstage/plugin-tech-insights +## 0.1.12 + +### Patch Changes + +- Updated dependencies + - @backstage/plugin-catalog-react@0.9.0 + - @backstage/core-components@0.9.1 + - @backstage/catalog-model@0.13.0 + ## 0.1.12-next.0 ### Patch Changes diff --git a/plugins/tech-insights/package.json b/plugins/tech-insights/package.json index acb97ed1ad..a98d64e2c7 100644 --- a/plugins/tech-insights/package.json +++ b/plugins/tech-insights/package.json @@ -1,6 +1,6 @@ { "name": "@backstage/plugin-tech-insights", - "version": "0.1.12-next.0", + "version": "0.1.12", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -23,11 +23,11 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/catalog-model": "^0.13.0-next.0", - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/catalog-model": "^0.13.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", "@backstage/errors": "^0.2.2", - "@backstage/plugin-catalog-react": "^0.9.0-next.0", + "@backstage/plugin-catalog-react": "^0.9.0", "@backstage/plugin-tech-insights-common": "^0.2.3", "@backstage/theme": "^0.2.15", "@backstage/types": "^0.1.3", @@ -42,9 +42,9 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/tech-radar/CHANGELOG.md b/plugins/tech-radar/CHANGELOG.md index b9ebabdf50..9e6f3758e1 100644 --- a/plugins/tech-radar/CHANGELOG.md +++ b/plugins/tech-radar/CHANGELOG.md @@ -1,5 +1,13 @@ # @backstage/plugin-tech-radar +## 0.5.9 + +### Patch Changes + +- bae72d6f4d: Tech Radar Ring names are now coloured from theme via theme.palette.text.primary (instead of a hard coded colour) +- Updated dependencies + - @backstage/core-components@0.9.1 + ## 0.5.9-next.0 ### Patch Changes diff --git a/plugins/tech-radar/package.json b/plugins/tech-radar/package.json index 7ed251a405..21fd1d3d25 100644 --- a/plugins/tech-radar/package.json +++ b/plugins/tech-radar/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-tech-radar", "description": "A Backstage plugin that lets you display a Tech Radar for your organization", - "version": "0.5.9-next.0", + "version": "0.5.9", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -34,7 +34,7 @@ "start": "backstage-cli package start" }, "dependencies": { - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", "@backstage/theme": "^0.2.15", "@material-ui/core": "^4.12.2", @@ -49,9 +49,9 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/techdocs-backend/CHANGELOG.md b/plugins/techdocs-backend/CHANGELOG.md index 0558dd098b..63bb881971 100644 --- a/plugins/techdocs-backend/CHANGELOG.md +++ b/plugins/techdocs-backend/CHANGELOG.md @@ -1,5 +1,21 @@ # @backstage/plugin-techdocs-backend +## 0.14.2 + +### Patch Changes + +- e0a69ba49f: build(deps): bump `fs-extra` from 9.1.0 to 10.0.1 +- 3c2bc73901: Use `setupRequestMockHandlers` from `@backstage/backend-test-utils` +- 3e54f6c436: Use `@backstage/plugin-search-common` package instead of `@backstage/search-common`. +- 91bf1e6c1a: Use `@backstage/plugin-techdocs-node` package instead of `@backstage/techdocs-common`. +- Updated dependencies + - @backstage/backend-common@0.13.0 + - @backstage/plugin-techdocs-node@0.11.12 + - @backstage/catalog-model@0.13.0 + - @backstage/plugin-catalog-common@0.2.2 + - @backstage/plugin-search-common@0.3.1 + - @backstage/catalog-client@0.9.0 + ## 0.14.2-next.0 ### Patch Changes diff --git a/plugins/techdocs-backend/package.json b/plugins/techdocs-backend/package.json index a233e71965..782a63355f 100644 --- a/plugins/techdocs-backend/package.json +++ b/plugins/techdocs-backend/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-techdocs-backend", "description": "The Backstage backend plugin that renders technical documentation for your components", - "version": "0.14.2-next.0", + "version": "0.14.2", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -34,15 +34,15 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/backend-common": "^0.13.0-next.0", - "@backstage/catalog-client": "^0.9.0-next.0", - "@backstage/catalog-model": "^0.13.0-next.0", + "@backstage/backend-common": "^0.13.0", + "@backstage/catalog-client": "^0.9.0", + "@backstage/catalog-model": "^0.13.0", "@backstage/config": "^0.1.15", "@backstage/errors": "^0.2.2", "@backstage/integration": "^0.8.0", - "@backstage/plugin-catalog-common": "^0.2.2-next.0", - "@backstage/plugin-search-common": "^0.3.1-next.0", - "@backstage/plugin-techdocs-node": "^0.11.12-next.0", + "@backstage/plugin-catalog-common": "^0.2.2", + "@backstage/plugin-search-common": "^0.3.1", + "@backstage/plugin-techdocs-node": "^0.11.12", "@types/express": "^4.17.6", "dockerode": "^3.3.1", "express": "^4.17.1", @@ -55,9 +55,9 @@ "winston": "^3.2.1" }, "devDependencies": { - "@backstage/backend-test-utils": "^0.1.21-next.0", - "@backstage/cli": "^0.15.2-next.0", - "@backstage/plugin-search-backend-node": "0.5.1-next.0", + "@backstage/backend-test-utils": "^0.1.21", + "@backstage/cli": "^0.15.2", + "@backstage/plugin-search-backend-node": "0.5.1", "@types/dockerode": "^3.3.0", "msw": "^0.35.0", "supertest": "^6.1.3" diff --git a/plugins/techdocs-node/CHANGELOG.md b/plugins/techdocs-node/CHANGELOG.md index dd6cd85afd..4f98aa3ea2 100644 --- a/plugins/techdocs-node/CHANGELOG.md +++ b/plugins/techdocs-node/CHANGELOG.md @@ -1,5 +1,17 @@ # @backstage/plugin-techdocs-node +## 0.11.12 + +### Patch Changes + +- e0a69ba49f: build(deps): bump `fs-extra` from 9.1.0 to 10.0.1 +- 3e54f6c436: Use `@backstage/plugin-search-common` package instead of `@backstage/search-common`. +- cea6f10b97: Renamed `@backstage/techdocs-common` to `@backstage/plugin-techdocs-node`. +- Updated dependencies + - @backstage/backend-common@0.13.0 + - @backstage/catalog-model@0.13.0 + - @backstage/plugin-search-common@0.3.1 + ## 0.11.12-next.0 ### Patch Changes diff --git a/plugins/techdocs-node/package.json b/plugins/techdocs-node/package.json index 745e9145fe..6db2637180 100644 --- a/plugins/techdocs-node/package.json +++ b/plugins/techdocs-node/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-techdocs-node", "description": "Common node.js functionalities for TechDocs, to be shared between techdocs-backend plugin and techdocs-cli", - "version": "0.11.12-next.0", + "version": "0.11.12", "main": "src/index.ts", "types": "src/index.ts", "private": false, @@ -42,12 +42,12 @@ "dependencies": { "@azure/identity": "^2.0.1", "@azure/storage-blob": "^12.5.0", - "@backstage/backend-common": "^0.13.0-next.0", - "@backstage/catalog-model": "^0.13.0-next.0", + "@backstage/backend-common": "^0.13.0", + "@backstage/catalog-model": "^0.13.0", "@backstage/config": "^0.1.15", "@backstage/errors": "^0.2.2", "@backstage/integration": "^0.8.0", - "@backstage/plugin-search-common": "^0.3.1-next.0", + "@backstage/plugin-search-common": "^0.3.1", "@google-cloud/storage": "^5.6.0", "@trendyol-js/openstack-swift-sdk": "^0.0.5", "@types/express": "^4.17.6", @@ -64,7 +64,7 @@ "winston": "^3.2.1" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@types/fs-extra": "^9.0.5", "@types/js-yaml": "^4.0.0", "@types/mime-types": "^2.1.0", diff --git a/plugins/techdocs/CHANGELOG.md b/plugins/techdocs/CHANGELOG.md index 1f4525f3b6..882638caeb 100644 --- a/plugins/techdocs/CHANGELOG.md +++ b/plugins/techdocs/CHANGELOG.md @@ -1,5 +1,18 @@ # @backstage/plugin-techdocs +## 0.15.1 + +### Patch Changes + +- 7a1dbe6ce9: The panels of `TechDocsCustomHome` now use the `useEntityOwnership` hook to resolve ownership when the `'ownedByUser'` filter predicate is used. +- Updated dependencies + - @backstage/plugin-catalog@0.10.0 + - @backstage/plugin-catalog-react@0.9.0 + - @backstage/core-components@0.9.1 + - @backstage/catalog-model@0.13.0 + - @backstage/plugin-search@0.7.3 + - @backstage/integration-react@0.1.25 + ## 0.15.1-next.0 ### Patch Changes diff --git a/plugins/techdocs/package.json b/plugins/techdocs/package.json index 7da631c6e6..e67b78816b 100644 --- a/plugins/techdocs/package.json +++ b/plugins/techdocs/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-techdocs", "description": "The Backstage plugin that renders technical documentation for your components", - "version": "0.15.1-next.0", + "version": "0.15.1", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -35,16 +35,16 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/catalog-model": "^0.13.0-next.0", + "@backstage/catalog-model": "^0.13.0", "@backstage/config": "^0.1.15", - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", "@backstage/errors": "^0.2.2", "@backstage/integration": "^0.8.0", - "@backstage/integration-react": "^0.1.25-next.0", - "@backstage/plugin-catalog": "^0.10.0-next.0", - "@backstage/plugin-catalog-react": "^0.9.0-next.0", - "@backstage/plugin-search": "^0.7.3-next.0", + "@backstage/integration-react": "^0.1.25", + "@backstage/plugin-catalog": "^0.10.0", + "@backstage/plugin-catalog-react": "^0.9.0", + "@backstage/plugin-search": "^0.7.3", "@backstage/theme": "^0.2.15", "@material-ui/core": "^4.12.2", "@material-ui/icons": "^4.9.1", @@ -65,9 +65,9 @@ "react-dom": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/todo-backend/CHANGELOG.md b/plugins/todo-backend/CHANGELOG.md index c4b2904df6..a805551a0e 100644 --- a/plugins/todo-backend/CHANGELOG.md +++ b/plugins/todo-backend/CHANGELOG.md @@ -1,5 +1,14 @@ # @backstage/plugin-todo-backend +## 0.1.26 + +### Patch Changes + +- Updated dependencies + - @backstage/backend-common@0.13.0 + - @backstage/catalog-model@0.13.0 + - @backstage/catalog-client@0.9.0 + ## 0.1.26-next.0 ### Patch Changes diff --git a/plugins/todo-backend/package.json b/plugins/todo-backend/package.json index 3f69a8ca7e..c1840bffba 100644 --- a/plugins/todo-backend/package.json +++ b/plugins/todo-backend/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-todo-backend", "description": "A Backstage backend plugin that lets you browse TODO comments in your source code", - "version": "0.1.26-next.0", + "version": "0.1.26", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -29,9 +29,9 @@ "start": "backstage-cli package start" }, "dependencies": { - "@backstage/backend-common": "^0.13.0-next.0", - "@backstage/catalog-client": "^0.9.0-next.0", - "@backstage/catalog-model": "^0.13.0-next.0", + "@backstage/backend-common": "^0.13.0", + "@backstage/catalog-client": "^0.9.0", + "@backstage/catalog-model": "^0.13.0", "@backstage/config": "^0.1.15", "@backstage/errors": "^0.2.2", "@backstage/integration": "^0.8.0", @@ -43,7 +43,7 @@ "yn": "^4.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@types/supertest": "^2.0.8", "msw": "^0.35.0", "supertest": "^6.1.3" diff --git a/plugins/todo/CHANGELOG.md b/plugins/todo/CHANGELOG.md index 07f88b928b..2012e58694 100644 --- a/plugins/todo/CHANGELOG.md +++ b/plugins/todo/CHANGELOG.md @@ -1,5 +1,14 @@ # @backstage/plugin-todo +## 0.2.4 + +### Patch Changes + +- Updated dependencies + - @backstage/plugin-catalog-react@0.9.0 + - @backstage/core-components@0.9.1 + - @backstage/catalog-model@0.13.0 + ## 0.2.4-next.0 ### Patch Changes diff --git a/plugins/todo/package.json b/plugins/todo/package.json index e1dfd3334a..9cc74b3029 100644 --- a/plugins/todo/package.json +++ b/plugins/todo/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-todo", "description": "A Backstage plugin that lets you browse TODO comments in your source code", - "version": "0.2.4-next.0", + "version": "0.2.4", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -30,11 +30,11 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/catalog-model": "^0.13.0-next.0", - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/catalog-model": "^0.13.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", "@backstage/errors": "^0.2.2", - "@backstage/plugin-catalog-react": "^0.9.0-next.0", + "@backstage/plugin-catalog-react": "^0.9.0", "@backstage/theme": "^0.2.15", "@material-ui/core": "^4.12.2", "@material-ui/icons": "^4.9.1", @@ -45,9 +45,9 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/user-settings/CHANGELOG.md b/plugins/user-settings/CHANGELOG.md index f5f58798f6..35213632c1 100644 --- a/plugins/user-settings/CHANGELOG.md +++ b/plugins/user-settings/CHANGELOG.md @@ -1,5 +1,12 @@ # @backstage/plugin-user-settings +## 0.4.1 + +### Patch Changes + +- Updated dependencies + - @backstage/core-components@0.9.1 + ## 0.4.1-next.0 ### Patch Changes diff --git a/plugins/user-settings/package.json b/plugins/user-settings/package.json index ce499e4d58..d126bd8b4e 100644 --- a/plugins/user-settings/package.json +++ b/plugins/user-settings/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-user-settings", "description": "A Backstage plugin that provides a settings page", - "version": "0.4.1-next.0", + "version": "0.4.1", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -34,7 +34,7 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", "@backstage/theme": "^0.2.15", "@material-ui/core": "^4.12.2", @@ -47,9 +47,9 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/plugins/xcmetrics/CHANGELOG.md b/plugins/xcmetrics/CHANGELOG.md index 82e4f409fb..a35add532b 100644 --- a/plugins/xcmetrics/CHANGELOG.md +++ b/plugins/xcmetrics/CHANGELOG.md @@ -1,5 +1,12 @@ # @backstage/plugin-xcmetrics +## 0.2.22 + +### Patch Changes + +- Updated dependencies + - @backstage/core-components@0.9.1 + ## 0.2.22-next.0 ### Patch Changes diff --git a/plugins/xcmetrics/package.json b/plugins/xcmetrics/package.json index 599f2e0ea7..ab0a51d7d5 100644 --- a/plugins/xcmetrics/package.json +++ b/plugins/xcmetrics/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-xcmetrics", "description": "A Backstage plugin that shows XCode build metrics for your components", - "version": "0.2.22-next.0", + "version": "0.2.22", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -24,7 +24,7 @@ "clean": "backstage-cli package clean" }, "dependencies": { - "@backstage/core-components": "^0.9.1-next.0", + "@backstage/core-components": "^0.9.1", "@backstage/core-plugin-api": "^0.8.0", "@backstage/errors": "^0.2.2", "@backstage/theme": "^0.2.15", @@ -40,9 +40,9 @@ "react": "^16.13.1 || ^17.0.0" }, "devDependencies": { - "@backstage/cli": "^0.15.2-next.0", + "@backstage/cli": "^0.15.2", "@backstage/core-app-api": "^0.6.0", - "@backstage/dev-utils": "^0.2.25-next.0", + "@backstage/dev-utils": "^0.2.25", "@backstage/test-utils": "^0.3.0", "@testing-library/jest-dom": "^5.10.1", "@testing-library/react": "^11.2.5", diff --git a/yarn.lock b/yarn.lock index 7be89347ba..cf9ac21d74 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1455,50 +1455,6 @@ zen-observable "^0.8.15" zod "^3.11.6" -"@backstage/core-components@^0.9.0": - version "0.9.0" - resolved "https://registry.npmjs.org/@backstage/core-components/-/core-components-0.9.0.tgz#ff98c755853c25a2622713bd9a2f60f2c2c5e658" - integrity sha512-fT2CGvc+GeyElT48J/TpeISXbLLVp1FZIZGiI/kK1i4m5wA0JlOOXDO7rPyc3QykNjmacThZXJIk/wZxhuIrAA== - dependencies: - "@backstage/config" "^0.1.15" - "@backstage/core-plugin-api" "^0.8.0" - "@backstage/errors" "^0.2.2" - "@backstage/theme" "^0.2.15" - "@material-table/core" "^3.1.0" - "@material-ui/core" "^4.12.2" - "@material-ui/icons" "^4.9.1" - "@material-ui/lab" "4.0.0-alpha.57" - "@react-hookz/web" "^12.3.0" - "@types/react-sparklines" "^1.7.0" - "@types/react-text-truncate" "^0.14.0" - ansi-regex "^6.0.1" - classnames "^2.2.6" - d3-selection "^3.0.0" - d3-shape "^3.0.0" - d3-zoom "^3.0.0" - dagre "^0.8.5" - history "^5.0.0" - immer "^9.0.1" - lodash "^4.17.21" - pluralize "^8.0.0" - prop-types "^15.7.2" - qs "^6.9.4" - rc-progress "3.2.4" - react-helmet "6.1.0" - react-hook-form "^7.12.2" - react-markdown "^8.0.0" - react-router "6.0.0-beta.0" - react-router-dom "6.0.0-beta.0" - react-sparklines "^1.7.0" - react-syntax-highlighter "^15.4.5" - react-text-truncate "^0.18.0" - react-use "^17.3.2" - react-virtualized-auto-sizer "^1.0.6" - react-window "^1.8.6" - remark-gfm "^3.0.1" - zen-observable "^0.8.15" - zod "^3.11.6" - "@backstage/core-plugin-api@^0.6.0", "@backstage/core-plugin-api@^0.6.1": version "0.6.1" resolved "https://registry.npmjs.org/@backstage/core-plugin-api/-/core-plugin-api-0.6.1.tgz#a6fb8110f384ab9405990450956b2c81b88e90b2" @@ -1525,21 +1481,6 @@ react-router-dom "6.0.0-beta.0" zen-observable "^0.8.15" -"@backstage/integration-react@^0.1.10": - version "0.1.24" - resolved "https://registry.npmjs.org/@backstage/integration-react/-/integration-react-0.1.24.tgz#fc9cb557a6af37086759724f7be46af3cf36f454" - integrity sha512-3F3bo+gi6LFqs7nqIznGwjzt1ExAJyWvYJ+eU71Qtd56YqyKr+QHlLsdhJV5LfuQd7F4NkQk3UndTYBhLCHKkA== - dependencies: - "@backstage/config" "^0.1.15" - "@backstage/core-components" "^0.9.0" - "@backstage/core-plugin-api" "^0.8.0" - "@backstage/integration" "^0.8.0" - "@backstage/theme" "^0.2.15" - "@material-ui/core" "^4.12.2" - "@material-ui/icons" "^4.9.1" - "@material-ui/lab" "4.0.0-alpha.57" - react-use "^17.2.4" - "@backstage/integration@^0.7.3": version "0.7.5" resolved "https://registry.npmjs.org/@backstage/integration/-/integration-0.7.5.tgz#c68848f35db51705b3287b6fa6a259ae4b17bfbc" @@ -12000,55 +11941,55 @@ evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: safe-buffer "^5.1.1" "example-app@link:packages/app": - version "0.2.68-next.0" + version "0.2.68" dependencies: - "@backstage/app-defaults" "^0.2.1-next.0" - "@backstage/catalog-model" "^0.13.0-next.0" - "@backstage/cli" "^0.15.2-next.0" + "@backstage/app-defaults" "^0.2.1" + "@backstage/catalog-model" "^0.13.0" + "@backstage/cli" "^0.15.2" "@backstage/core-app-api" "^0.6.0" - "@backstage/core-components" "^0.9.1-next.0" + "@backstage/core-components" "^0.9.1" "@backstage/core-plugin-api" "^0.8.0" - "@backstage/integration-react" "^0.1.25-next.0" - "@backstage/plugin-airbrake" "^0.3.2-next.0" - "@backstage/plugin-apache-airflow" "^0.1.10-next.0" - "@backstage/plugin-api-docs" "^0.8.2-next.0" - "@backstage/plugin-azure-devops" "^0.1.18-next.0" - "@backstage/plugin-badges" "^0.2.26-next.0" - "@backstage/plugin-catalog" "^0.10.0-next.0" - "@backstage/plugin-catalog-common" "^0.2.2-next.0" - "@backstage/plugin-catalog-graph" "^0.2.14-next.0" - "@backstage/plugin-catalog-import" "^0.8.5-next.0" - "@backstage/plugin-catalog-react" "^0.9.0-next.0" - "@backstage/plugin-circleci" "^0.3.2-next.0" - "@backstage/plugin-cloudbuild" "^0.3.2-next.0" - "@backstage/plugin-code-coverage" "^0.1.29-next.0" - "@backstage/plugin-cost-insights" "^0.11.24-next.0" - "@backstage/plugin-explore" "^0.3.33-next.0" - "@backstage/plugin-gcp-projects" "^0.3.21-next.0" - "@backstage/plugin-github-actions" "^0.5.2-next.0" - "@backstage/plugin-gocd" "^0.1.8-next.0" - "@backstage/plugin-graphiql" "^0.2.34-next.0" - "@backstage/plugin-home" "^0.4.18-next.0" - "@backstage/plugin-jenkins" "^0.7.1-next.0" - "@backstage/plugin-kafka" "^0.3.2-next.0" - "@backstage/plugin-kubernetes" "^0.6.2-next.0" - "@backstage/plugin-lighthouse" "^0.3.2-next.0" - "@backstage/plugin-newrelic" "^0.3.20-next.0" - "@backstage/plugin-newrelic-dashboard" "^0.1.10-next.0" - "@backstage/plugin-org" "^0.5.2-next.0" - "@backstage/plugin-pagerduty" "0.3.29-next.0" + "@backstage/integration-react" "^0.1.25" + "@backstage/plugin-airbrake" "^0.3.2" + "@backstage/plugin-apache-airflow" "^0.1.10" + "@backstage/plugin-api-docs" "^0.8.2" + "@backstage/plugin-azure-devops" "^0.1.18" + "@backstage/plugin-badges" "^0.2.26" + "@backstage/plugin-catalog" "^0.10.0" + "@backstage/plugin-catalog-common" "^0.2.2" + "@backstage/plugin-catalog-graph" "^0.2.14" + "@backstage/plugin-catalog-import" "^0.8.5" + "@backstage/plugin-catalog-react" "^0.9.0" + "@backstage/plugin-circleci" "^0.3.2" + "@backstage/plugin-cloudbuild" "^0.3.2" + "@backstage/plugin-code-coverage" "^0.1.29" + "@backstage/plugin-cost-insights" "^0.11.24" + "@backstage/plugin-explore" "^0.3.33" + "@backstage/plugin-gcp-projects" "^0.3.21" + "@backstage/plugin-github-actions" "^0.5.2" + "@backstage/plugin-gocd" "^0.1.8" + "@backstage/plugin-graphiql" "^0.2.34" + "@backstage/plugin-home" "^0.4.18" + "@backstage/plugin-jenkins" "^0.7.1" + "@backstage/plugin-kafka" "^0.3.2" + "@backstage/plugin-kubernetes" "^0.6.2" + "@backstage/plugin-lighthouse" "^0.3.2" + "@backstage/plugin-newrelic" "^0.3.20" + "@backstage/plugin-newrelic-dashboard" "^0.1.10" + "@backstage/plugin-org" "^0.5.2" + "@backstage/plugin-pagerduty" "0.3.29" "@backstage/plugin-permission-react" "^0.3.3" - "@backstage/plugin-rollbar" "^0.4.2-next.0" - "@backstage/plugin-scaffolder" "^0.15.0-next.0" - "@backstage/plugin-search" "^0.7.3-next.0" - "@backstage/plugin-search-common" "^0.3.1-next.0" - "@backstage/plugin-sentry" "^0.3.40-next.0" - "@backstage/plugin-shortcuts" "^0.2.3-next.0" - "@backstage/plugin-tech-insights" "^0.1.12-next.0" - "@backstage/plugin-tech-radar" "^0.5.9-next.0" - "@backstage/plugin-techdocs" "^0.15.1-next.0" - "@backstage/plugin-todo" "^0.2.4-next.0" - "@backstage/plugin-user-settings" "^0.4.1-next.0" + "@backstage/plugin-rollbar" "^0.4.2" + "@backstage/plugin-scaffolder" "^0.15.0" + "@backstage/plugin-search" "^0.7.3" + "@backstage/plugin-search-common" "^0.3.1" + "@backstage/plugin-sentry" "^0.3.40" + "@backstage/plugin-shortcuts" "^0.2.3" + "@backstage/plugin-tech-insights" "^0.1.12" + "@backstage/plugin-tech-radar" "^0.5.9" + "@backstage/plugin-techdocs" "^0.15.1" + "@backstage/plugin-todo" "^0.2.4" + "@backstage/plugin-user-settings" "^0.4.1" "@backstage/theme" "^0.2.15" "@material-ui/core" "^4.12.2" "@material-ui/icons" "^4.9.1" @@ -23774,18 +23715,18 @@ tdigest@^0.1.1: bintrees "1.0.1" "techdocs-cli-embedded-app@link:packages/techdocs-cli-embedded-app": - version "0.2.67-next.0" + version "0.2.67" dependencies: - "@backstage/app-defaults" "^0.2.1-next.0" - "@backstage/catalog-model" "^0.13.0-next.0" - "@backstage/cli" "^0.15.2-next.0" + "@backstage/app-defaults" "^0.2.1" + "@backstage/catalog-model" "^0.13.0" + "@backstage/cli" "^0.15.2" "@backstage/config" "^0.1.15" "@backstage/core-app-api" "^0.6.0" - "@backstage/core-components" "^0.9.1-next.0" + "@backstage/core-components" "^0.9.1" "@backstage/core-plugin-api" "^0.8.0" - "@backstage/integration-react" "^0.1.25-next.0" - "@backstage/plugin-catalog" "^0.10.0-next.0" - "@backstage/plugin-techdocs" "^0.15.1-next.0" + "@backstage/integration-react" "^0.1.25" + "@backstage/plugin-catalog" "^0.10.0" + "@backstage/plugin-techdocs" "^0.15.1" "@backstage/test-utils" "^0.3.0" "@backstage/theme" "^0.2.15" "@material-ui/core" "^4.11.0"