diff --git a/.changeset/analytics-get-along-together.md b/.changeset/analytics-get-along-together.md
deleted file mode 100644
index b6ad9e3019..0000000000
--- a/.changeset/analytics-get-along-together.md
+++ /dev/null
@@ -1,6 +0,0 @@
----
-'@backstage/test-utils': patch
----
-
-Added a mock implementation of the `AnalyticsApi`, which can be used to make
-assertions about captured analytics events.
diff --git a/.changeset/analytics-glimmering-radio-station.md b/.changeset/analytics-glimmering-radio-station.md
deleted file mode 100644
index 3460474a9d..0000000000
--- a/.changeset/analytics-glimmering-radio-station.md
+++ /dev/null
@@ -1,6 +0,0 @@
----
-'@backstage/cli': patch
----
-
-The `create-plugin` command now passes the extension name via the `name` key
-in `createRoutableExtension()` calls in newly created plugins.
diff --git a/.changeset/analytics-haunts-dismembered-constellations.md b/.changeset/analytics-haunts-dismembered-constellations.md
deleted file mode 100644
index e7cfc52ce1..0000000000
--- a/.changeset/analytics-haunts-dismembered-constellations.md
+++ /dev/null
@@ -1,25 +0,0 @@
----
-'@backstage/core-components': patch
----
-
-The `` component now automatically instruments all link clicks using
-the new Analytics API. Each click triggers a `click` event, containing the
-text of the link the user clicked on, as well as the location to which the user
-clicked. In addition, these events inherit plugin/extension-level metadata,
-allowing clicks to be attributed to the plugin/extension/route containing the
-link:
-
-```json
-{
- "action": "click",
- "subject": "Text content of the link that was clicked",
- "attributes": {
- "to": "/value/of-the/to-prop/passed-to-the-link"
- },
- "context": {
- "extension": "ExtensionInWhichTheLinkWasClicked",
- "pluginId": "plugin-in-which-link-was-clicked",
- "routeRef": "route-ref-in-which-the-link-was-clicked"
- }
-}
-```
diff --git a/.changeset/analytics-old-skipping-record.md b/.changeset/analytics-old-skipping-record.md
deleted file mode 100644
index a0cacdf693..0000000000
--- a/.changeset/analytics-old-skipping-record.md
+++ /dev/null
@@ -1,23 +0,0 @@
----
-'@backstage/core-plugin-api': patch
----
-
-Introducing the Analytics API: a lightweight way for plugins to instrument key
-events that could help inform a Backstage Integrator how their instance of
-Backstage is being used. The API consists of the following:
-
-- `useAnalytics()`, a hook to be used inside plugin components which retrieves
- an Analytics Tracker.
-- `tracker.captureEvent()`, a method on the tracker used to instrument key
- events. The method expects an action (the event name) and a subject (a unique
- identifier of the object the action is being taken on).
-- ``, a way to declaratively attach additional information
- to any/all events captured in the underlying React tree. There is also a
- `withAnalyticsContext()` HOC utility.
-- The `tracker.captureEvent()` method also accepts an `attributes` option for
- providing additional run-time information about an event, as well as a
- `value` option for capturing a numeric/metric value.
-
-By default, captured events are not sent anywhere. In order to collect and
-redirect events to an analytics system, the `analyticsApi` will need to be
-implemented and instantiated by an App Integrator.
diff --git a/.changeset/analytics-sings-stormy-weather.md b/.changeset/analytics-sings-stormy-weather.md
deleted file mode 100644
index f3e6becdf5..0000000000
--- a/.changeset/analytics-sings-stormy-weather.md
+++ /dev/null
@@ -1,24 +0,0 @@
----
-'@backstage/core-app-api': patch
----
-
-The Core App API now automatically instruments all route location changes using
-the new Analytics API. Each location change triggers a `navigate` event, which
-is an analogue of a "pageview" event in traditional web analytics systems. In
-addition to the path, these events provide plugin-level metadata via the
-analytics context, which can be useful for analyzing plugin usage:
-
-```json
-{
- "action": "navigate",
- "subject": "/the-path/navigated/to?with=params#and-hashes",
- "context": {
- "extension": "App",
- "pluginId": "id-of-plugin-that-exported-the-route",
- "routeRef": "associated-route-ref-id"
- }
-}
-```
-
-These events can be identified and handled by checking for the action
-`navigate` and the extension `App`.
diff --git a/.changeset/blue-buttons-sit.md b/.changeset/blue-buttons-sit.md
deleted file mode 100644
index 4839d0dd45..0000000000
--- a/.changeset/blue-buttons-sit.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@backstage/cli': patch
----
-
-Adding `--inspect-brk` as an option when debugging backend for development
diff --git a/.changeset/chilly-pumpkins-invent.md b/.changeset/chilly-pumpkins-invent.md
deleted file mode 100644
index 19e98d7efb..0000000000
--- a/.changeset/chilly-pumpkins-invent.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@backstage/plugin-catalog-backend-module-msgraph': patch
----
-
-Allow loading users using group membership
diff --git a/.changeset/cool-bags-appear.md b/.changeset/cool-bags-appear.md
deleted file mode 100644
index f3c2e7fcc3..0000000000
--- a/.changeset/cool-bags-appear.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@backstage/core-components': patch
----
-
-Provide a clearer error message when a authentication provider used by the `SignInPage` has not been configured to support sign-in.
diff --git a/.changeset/eight-elephants-agree.md b/.changeset/eight-elephants-agree.md
deleted file mode 100644
index abe8250fa5..0000000000
--- a/.changeset/eight-elephants-agree.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@backstage/plugin-org': patch
----
-
-Change the OwnershipCard link on an user profile, including the user's groups on the filters.
diff --git a/.changeset/eight-rockets-chew.md b/.changeset/eight-rockets-chew.md
deleted file mode 100644
index bb3a252484..0000000000
--- a/.changeset/eight-rockets-chew.md
+++ /dev/null
@@ -1,7 +0,0 @@
----
-'@backstage/plugin-catalog-backend': minor
----
-
-Errors emitted from processors are now considered a failure during entity processing and will prevent entities from being updated. The impact of this change is that when errors are emitted while for example reading a location, then ingestion effectively stops there. If you emit a number of entities along with just one error, then the error will be persisted on the current entity but the emitted entities will _not_ be stored. This fixes [a bug](https://github.com/backstage/backstage/issues/6973) where entities would get marked as orphaned rather than put in an error state when the catalog failed to read a location.
-
-In previous versions of the catalog, an emitted error was treated as a less severe problem than an exception thrown by the processor. We are now ensuring that the behavior is consistent for these two cases. Even though both thrown and emitted errors are treated the same, emitted errors stay around as they allow you to highlight multiple errors related to an entity at once. An emitted error will also only prevent the writing of the processing result, while a thrown error will skip the rest of the processing steps.
diff --git a/.changeset/eleven-socks-hear.md b/.changeset/eleven-socks-hear.md
deleted file mode 100644
index cd989ab9b8..0000000000
--- a/.changeset/eleven-socks-hear.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@backstage/cli': patch
----
-
-When creating a backend plugin with `--backend` flag, don't add `-backend` if it's already suffixed
diff --git a/.changeset/empty-oranges-roll.md b/.changeset/empty-oranges-roll.md
deleted file mode 100644
index 4534573497..0000000000
--- a/.changeset/empty-oranges-roll.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@backstage/cli': patch
----
-
-The default jest configuration used by the `test` command now supports yarn workspaces. By running `backstage-cli test` in the root of a monorepo, all packages will now automatically be included in the test suite and it will run just like it does within a package. Each package in the monorepo will still use its own local jest configuration, and only packages that have `backstage-cli test` in the `test` script within `package.json` will be included.
diff --git a/.changeset/few-sloths-raise.md b/.changeset/few-sloths-raise.md
deleted file mode 100644
index ab0eac93d5..0000000000
--- a/.changeset/few-sloths-raise.md
+++ /dev/null
@@ -1,6 +0,0 @@
----
-'@backstage/plugin-catalog': patch
-'@backstage/plugin-catalog-react': patch
----
-
-Name column will now render entity `metadata.title` if its present
diff --git a/.changeset/giant-jokes-smoke.md b/.changeset/giant-jokes-smoke.md
deleted file mode 100644
index 208bcbf07c..0000000000
--- a/.changeset/giant-jokes-smoke.md
+++ /dev/null
@@ -1,9 +0,0 @@
----
-'@backstage/catalog-model': patch
-'@backstage/config-loader': patch
-'@backstage/plugin-catalog-backend': patch
-'@backstage/plugin-cost-insights': patch
-'@backstage/plugin-proxy-backend': patch
----
-
-Updated dependencies
diff --git a/.changeset/gold-wombats-shop.md b/.changeset/gold-wombats-shop.md
deleted file mode 100644
index f29ed9cce1..0000000000
--- a/.changeset/gold-wombats-shop.md
+++ /dev/null
@@ -1,12 +0,0 @@
----
-'@backstage/core-app-api': patch
-'@backstage/core-plugin-api': patch
-'@backstage/plugin-auth-backend': patch
-'@backstage/plugin-user-settings': patch
----
-
-Bitbucket Cloud authentication - based on the existing GitHub authentication + changes around BB apis and updated scope.
-
-- BitbucketAuth added to core-app-api.
-- Bitbucket provider added to plugin-auth-backend.
-- Cosmetic entry for Bitbucket connection in user-settings Authentication Providers tab.
diff --git a/.changeset/good-ghosts-kiss.md b/.changeset/good-ghosts-kiss.md
deleted file mode 100644
index 0e6122fbc9..0000000000
--- a/.changeset/good-ghosts-kiss.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@backstage/plugin-catalog-backend-module-msgraph': patch
----
-
-Adding some documentation for the `msgraph` client
diff --git a/.changeset/good-scissors-doubt.md b/.changeset/good-scissors-doubt.md
deleted file mode 100644
index ee085be51e..0000000000
--- a/.changeset/good-scissors-doubt.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@backstage/backend-common': patch
----
-
-Correct error message typo
diff --git a/.changeset/orange-jokes-drum.md b/.changeset/orange-jokes-drum.md
deleted file mode 100644
index ebc22ccd93..0000000000
--- a/.changeset/orange-jokes-drum.md
+++ /dev/null
@@ -1,12 +0,0 @@
----
-'@backstage/catalog-client': minor
-'@backstage/plugin-catalog': minor
----
-
-Updates the `` to accept asynchronous `if` functions.
-
-Adds the new `getEntityAncestors` method to `CatalogClient`.
-
-Updates the `` to make use of the ancestry endpoint to display errors for entities further up the ancestry tree. This makes it easier to discover issues where for example the origin location has been removed or malformed.
-
-`hasCatalogProcessingErrors()` is now changed to be asynchronous so any calls outside the already established entitySwitch need to be awaited.
diff --git a/.changeset/proud-coins-laugh.md b/.changeset/proud-coins-laugh.md
deleted file mode 100644
index 0f23ca2ed9..0000000000
--- a/.changeset/proud-coins-laugh.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@backstage/plugin-kubernetes': patch
----
-
-Support Rancher URL's with an existing path component
diff --git a/.changeset/purple-dodos-glow.md b/.changeset/purple-dodos-glow.md
deleted file mode 100644
index a8d61c3042..0000000000
--- a/.changeset/purple-dodos-glow.md
+++ /dev/null
@@ -1,9 +0,0 @@
----
-'@backstage/integration': patch
-'@backstage/backend-common': patch
-'@backstage/plugin-catalog-backend-module-ldap': patch
-'@backstage/plugin-catalog-backend-module-msgraph': patch
-'@backstage/plugin-catalog-import': patch
----
-
-Replace slash stripping regexp with trimEnd to remove CodeQL warning
diff --git a/.changeset/quick-sheep-decide.md b/.changeset/quick-sheep-decide.md
deleted file mode 100644
index 5240255348..0000000000
--- a/.changeset/quick-sheep-decide.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@backstage/plugin-catalog': patch
----
-
-Replace deprecated material UI components used by LinksCard to remove errors from console log
diff --git a/.changeset/real-countries-sparkle.md b/.changeset/real-countries-sparkle.md
deleted file mode 100644
index 945c803631..0000000000
--- a/.changeset/real-countries-sparkle.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@backstage/plugin-kubernetes-common': patch
----
-
-Fixed incorrect keyword, repository directory path and entrypoints in `package.json`.
diff --git a/.changeset/rich-deers-run.md b/.changeset/rich-deers-run.md
deleted file mode 100644
index e8a15c4464..0000000000
--- a/.changeset/rich-deers-run.md
+++ /dev/null
@@ -1,14 +0,0 @@
----
-'@backstage/backend-common': patch
----
-
-Add glob patterns support to config CORS options. It's possible to send patterns like:
-
-```yaml
-backend:
- cors:
- origin:
- - https://*.my-domain.com
- - http://localhost:700[0-9]
- - https://sub-domain-+([0-9]).my-domain.com
-```
diff --git a/.changeset/seven-oranges-hunt.md b/.changeset/seven-oranges-hunt.md
deleted file mode 100644
index ceea04ad72..0000000000
--- a/.changeset/seven-oranges-hunt.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@backstage/core-components': patch
----
-
-Wrap up the `Link` component in a component to reset the color so that we can actually see the button text
diff --git a/.changeset/seven-tigers-serve.md b/.changeset/seven-tigers-serve.md
deleted file mode 100644
index de874b5f4c..0000000000
--- a/.changeset/seven-tigers-serve.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@backstage/codemods': patch
----
-
-build(deps): bump `jscodeshift` from 0.12.0 to 0.13.0
diff --git a/.changeset/sixty-shrimps-kneel.md b/.changeset/sixty-shrimps-kneel.md
deleted file mode 100644
index 7804e8de11..0000000000
--- a/.changeset/sixty-shrimps-kneel.md
+++ /dev/null
@@ -1,6 +0,0 @@
----
-'@backstage/core-app-api': patch
----
-
-Stop calling connector.removeSession in StaticAuthSessionManager, instead just discarding the
-session locally.
diff --git a/.changeset/sour-terms-end.md b/.changeset/sour-terms-end.md
deleted file mode 100644
index fd20fa13c8..0000000000
--- a/.changeset/sour-terms-end.md
+++ /dev/null
@@ -1,7 +0,0 @@
----
-'@backstage/plugin-git-release-manager': minor
----
-
-Errors caused while patching can leave the release branch in a broken state. Most commonly caused due to merge errors.
-
-This has been solved by introducing a dry run prior to patching the release branch. The dry run will attempt to cherry pick the selected patch commit onto a temporary branch created off of the release branch. If it succeeds, the temporary branch is deleted and the patch is applied on the release branch
diff --git a/.changeset/spotty-carpets-help.md b/.changeset/spotty-carpets-help.md
deleted file mode 100644
index 082249e999..0000000000
--- a/.changeset/spotty-carpets-help.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@backstage/plugin-catalog-backend': patch
----
-
-Avoid duplicate logging of entity processing errors.
diff --git a/.changeset/techdocs-chilled-pans-fix.md b/.changeset/techdocs-chilled-pans-fix.md
deleted file mode 100644
index dbb1a8279a..0000000000
--- a/.changeset/techdocs-chilled-pans-fix.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@backstage/techdocs-common': patch
----
-
-Sets the default techdocs docker image to the [latest released version - v0.3.3](https://github.com/backstage/techdocs-container/releases/tag/v0.3.3).
diff --git a/.changeset/tricky-geckos-protect.md b/.changeset/tricky-geckos-protect.md
deleted file mode 100644
index c4e1abc58c..0000000000
--- a/.changeset/tricky-geckos-protect.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@backstage/plugin-scaffolder-backend': patch
----
-
-Fixed a bug where the `catalog:register` action would not return any entity when running towards recent versions of the catalog.
diff --git a/.changeset/tricky-poems-decide.md b/.changeset/tricky-poems-decide.md
deleted file mode 100644
index d36c3e2ca6..0000000000
--- a/.changeset/tricky-poems-decide.md
+++ /dev/null
@@ -1,11 +0,0 @@
----
-'@backstage/plugin-catalog-backend': patch
----
-
-A number of classes and types, that were part of the old catalog engine implementation, are now formally marked as deprecated. They will be removed entirely from the code base in a future release.
-
-After upgrading to this version, it is recommended that you take a look inside your `packages/backend/src/plugins/catalog.ts` file (using a code editor), to see if you are using any functionality that it marks as deprecated. If you do, please migrate away from it at your earliest convenience.
-
-Migrating to using the new engine implementation is typically a matter of calling `CatalogBuilder.create({ ... })` instead of `new CatalogBuilder({ ... })`.
-
-If you are seeing deprecation warnings for `createRouter`, you can either use the `router` field from the return value from updated catalog builder, or temporarily call `createNextRouter`. The latter will however also be deprecated at a later time.
diff --git a/.changeset/unlucky-guests-relax.md b/.changeset/unlucky-guests-relax.md
deleted file mode 100644
index 5574346cee..0000000000
--- a/.changeset/unlucky-guests-relax.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@backstage/plugin-catalog-backend': patch
----
-
-Replace slash stripping regexp with trimEnd to remove CodeQL warning
diff --git a/.changeset/warm-balloons-peel.md b/.changeset/warm-balloons-peel.md
deleted file mode 100644
index fe1c390697..0000000000
--- a/.changeset/warm-balloons-peel.md
+++ /dev/null
@@ -1,21 +0,0 @@
----
-'@backstage/catalog-model': patch
-'@backstage/cli-common': patch
-'@backstage/core-components': patch
-'@backstage/integration': patch
-'@backstage/test-utils-core': patch
-'@backstage/plugin-badges': patch
-'@backstage/plugin-catalog': patch
-'@backstage/plugin-catalog-react': patch
-'@backstage/plugin-cost-insights': patch
-'@backstage/plugin-home': patch
-'@backstage/plugin-ilert': patch
-'@backstage/plugin-kubernetes': patch
-'@backstage/plugin-search': patch
-'@backstage/plugin-shortcuts': patch
-'@backstage/plugin-sonarqube': patch
-'@backstage/plugin-user-settings': patch
-'@backstage/plugin-xcmetrics': patch
----
-
-Avoid usage of `.to*Case()`, preferring `.toLocale*Case('en-US')` instead.
diff --git a/.changeset/we-call-a-rose.md b/.changeset/we-call-a-rose.md
deleted file mode 100644
index ed61067958..0000000000
--- a/.changeset/we-call-a-rose.md
+++ /dev/null
@@ -1,47 +0,0 @@
----
-'@backstage/plugin-allure': patch
-'@backstage/plugin-api-docs': patch
-'@backstage/plugin-badges': patch
-'@backstage/plugin-bitrise': patch
-'@backstage/plugin-catalog': patch
-'@backstage/plugin-catalog-graph': patch
-'@backstage/plugin-catalog-import': patch
-'@backstage/plugin-circleci': patch
-'@backstage/plugin-cloudbuild': patch
-'@backstage/plugin-code-coverage': patch
-'@backstage/plugin-config-schema': patch
-'@backstage/plugin-cost-insights': patch
-'@backstage/plugin-explore': patch
-'@backstage/plugin-firehydrant': patch
-'@backstage/plugin-fossa': patch
-'@backstage/plugin-gcp-projects': patch
-'@backstage/plugin-git-release-manager': patch
-'@backstage/plugin-github-actions': patch
-'@backstage/plugin-github-deployments': patch
-'@backstage/plugin-gitops-profiles': patch
-'@backstage/plugin-graphiql': patch
-'@backstage/plugin-home': patch
-'@backstage/plugin-ilert': patch
-'@backstage/plugin-jenkins': patch
-'@backstage/plugin-kafka': patch
-'@backstage/plugin-kubernetes': patch
-'@backstage/plugin-lighthouse': patch
-'@backstage/plugin-newrelic': patch
-'@backstage/plugin-org': patch
-'@backstage/plugin-pagerduty': patch
-'@backstage/plugin-rollbar': patch
-'@backstage/plugin-scaffolder': patch
-'@backstage/plugin-search': patch
-'@backstage/plugin-sentry': patch
-'@backstage/plugin-shortcuts': patch
-'@backstage/plugin-sonarqube': patch
-'@backstage/plugin-splunk-on-call': patch
-'@backstage/plugin-tech-radar': patch
-'@backstage/plugin-techdocs': patch
-'@backstage/plugin-todo': patch
-'@backstage/plugin-user-settings': patch
-'@backstage/plugin-welcome': patch
-'@backstage/plugin-xcmetrics': patch
----
-
-Added a `name` key to all extensions in order to improve Analytics API metadata.
diff --git a/.changeset/whats-in-a-name.md b/.changeset/whats-in-a-name.md
deleted file mode 100644
index 4a8c6c26dc..0000000000
--- a/.changeset/whats-in-a-name.md
+++ /dev/null
@@ -1,11 +0,0 @@
----
-'@backstage/codemods': patch
----
-
-Added an `extension-names` codemod, which adds a `name` key to all extensions
-provided by plugins. Extension names are used to provide richer context to
-events captured by the new Analytics API, and may also appear in debug output
-and other situations.
-
-To apply this codemod, run `npx @backstage/codemods apply extension-names` in
-the root of your Backstage monorepo.
diff --git a/.changeset/wicked-dryers-grow.md b/.changeset/wicked-dryers-grow.md
deleted file mode 100644
index 6c18ab559d..0000000000
--- a/.changeset/wicked-dryers-grow.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@backstage/core-components': patch
----
-
-SignInPage: move the initial invocation of `login` away from the render method
diff --git a/.changeset/young-ways-trade.md b/.changeset/young-ways-trade.md
deleted file mode 100644
index 0ebe68eed6..0000000000
--- a/.changeset/young-ways-trade.md
+++ /dev/null
@@ -1,12 +0,0 @@
----
-'@backstage/create-app': patch
----
-
-Switched the default `test` script in the package root to use `backstage-cli test` rather than `lerna run test`. This is thanks to the `@backstage/cli` now supporting running the test command from the project root.
-
-To apply this change to an existing project, apply the following change to your root `package.json`:
-
-```diff
-- "test": "lerna run test --since origin/master -- --coverage",
-+ "test": "backstage-cli test",
-```
diff --git a/packages/app/CHANGELOG.md b/packages/app/CHANGELOG.md
index 4ffe6b4299..3cc1f0aea7 100644
--- a/packages/app/CHANGELOG.md
+++ b/packages/app/CHANGELOG.md
@@ -1,5 +1,47 @@
# example-app
+## 0.2.49
+
+### Patch Changes
+
+- Updated dependencies
+ - @backstage/cli@0.7.15
+ - @backstage/core-components@0.6.1
+ - @backstage/core-plugin-api@0.1.10
+ - @backstage/core-app-api@0.1.16
+ - @backstage/plugin-org@0.3.26
+ - @backstage/plugin-catalog@0.7.0
+ - @backstage/plugin-catalog-react@0.5.2
+ - @backstage/catalog-model@0.9.4
+ - @backstage/plugin-cost-insights@0.11.9
+ - @backstage/plugin-user-settings@0.3.8
+ - @backstage/plugin-kubernetes@0.4.16
+ - @backstage/plugin-catalog-import@0.7.1
+ - @backstage/plugin-badges@0.2.12
+ - @backstage/plugin-home@0.4.3
+ - @backstage/plugin-search@0.4.14
+ - @backstage/plugin-shortcuts@0.1.11
+ - @backstage/plugin-api-docs@0.6.11
+ - @backstage/plugin-catalog-graph@0.1.3
+ - @backstage/plugin-circleci@0.2.26
+ - @backstage/plugin-cloudbuild@0.2.26
+ - @backstage/plugin-code-coverage@0.1.14
+ - @backstage/plugin-explore@0.3.19
+ - @backstage/plugin-gcp-projects@0.3.7
+ - @backstage/plugin-github-actions@0.4.21
+ - @backstage/plugin-graphiql@0.2.19
+ - @backstage/plugin-jenkins@0.5.9
+ - @backstage/plugin-kafka@0.2.18
+ - @backstage/plugin-lighthouse@0.2.28
+ - @backstage/plugin-newrelic@0.3.7
+ - @backstage/plugin-pagerduty@0.3.16
+ - @backstage/plugin-rollbar@0.3.17
+ - @backstage/plugin-scaffolder@0.11.7
+ - @backstage/plugin-sentry@0.3.24
+ - @backstage/plugin-tech-radar@0.4.10
+ - @backstage/plugin-techdocs@0.12.1
+ - @backstage/plugin-todo@0.1.13
+
## 0.2.48
### Patch Changes
diff --git a/packages/app/package.json b/packages/app/package.json
index 1e57900279..d1892438d8 100644
--- a/packages/app/package.json
+++ b/packages/app/package.json
@@ -1,46 +1,46 @@
{
"name": "example-app",
- "version": "0.2.48",
+ "version": "0.2.49",
"private": true,
"bundled": true,
"dependencies": {
- "@backstage/catalog-model": "^0.9.3",
- "@backstage/cli": "^0.7.14",
- "@backstage/core-app-api": "^0.1.15",
- "@backstage/core-components": "^0.6.0",
- "@backstage/core-plugin-api": "^0.1.9",
+ "@backstage/catalog-model": "^0.9.4",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/core-app-api": "^0.1.16",
+ "@backstage/core-components": "^0.6.1",
+ "@backstage/core-plugin-api": "^0.1.10",
"@backstage/integration-react": "^0.1.11",
- "@backstage/plugin-api-docs": "^0.6.10",
- "@backstage/plugin-badges": "^0.2.11",
- "@backstage/plugin-catalog": "^0.6.17",
- "@backstage/plugin-catalog-graph": "^0.1.2",
- "@backstage/plugin-catalog-import": "^0.7.0",
- "@backstage/plugin-catalog-react": "^0.5.1",
- "@backstage/plugin-circleci": "^0.2.25",
- "@backstage/plugin-cloudbuild": "^0.2.25",
- "@backstage/plugin-code-coverage": "^0.1.13",
- "@backstage/plugin-cost-insights": "^0.11.8",
- "@backstage/plugin-explore": "^0.3.18",
- "@backstage/plugin-gcp-projects": "^0.3.6",
- "@backstage/plugin-github-actions": "^0.4.20",
- "@backstage/plugin-graphiql": "^0.2.18",
- "@backstage/plugin-home": "^0.4.2",
- "@backstage/plugin-jenkins": "^0.5.8",
- "@backstage/plugin-kafka": "^0.2.17",
- "@backstage/plugin-kubernetes": "^0.4.15",
- "@backstage/plugin-lighthouse": "^0.2.27",
- "@backstage/plugin-newrelic": "^0.3.6",
- "@backstage/plugin-org": "^0.3.25",
- "@backstage/plugin-pagerduty": "0.3.15",
- "@backstage/plugin-rollbar": "^0.3.16",
- "@backstage/plugin-scaffolder": "^0.11.6",
- "@backstage/plugin-search": "^0.4.13",
- "@backstage/plugin-sentry": "^0.3.23",
- "@backstage/plugin-shortcuts": "^0.1.10",
- "@backstage/plugin-tech-radar": "^0.4.9",
- "@backstage/plugin-techdocs": "^0.12.0",
- "@backstage/plugin-todo": "^0.1.12",
- "@backstage/plugin-user-settings": "^0.3.7",
+ "@backstage/plugin-api-docs": "^0.6.11",
+ "@backstage/plugin-badges": "^0.2.12",
+ "@backstage/plugin-catalog": "^0.7.0",
+ "@backstage/plugin-catalog-graph": "^0.1.3",
+ "@backstage/plugin-catalog-import": "^0.7.1",
+ "@backstage/plugin-catalog-react": "^0.5.2",
+ "@backstage/plugin-circleci": "^0.2.26",
+ "@backstage/plugin-cloudbuild": "^0.2.26",
+ "@backstage/plugin-code-coverage": "^0.1.14",
+ "@backstage/plugin-cost-insights": "^0.11.9",
+ "@backstage/plugin-explore": "^0.3.19",
+ "@backstage/plugin-gcp-projects": "^0.3.7",
+ "@backstage/plugin-github-actions": "^0.4.21",
+ "@backstage/plugin-graphiql": "^0.2.19",
+ "@backstage/plugin-home": "^0.4.3",
+ "@backstage/plugin-jenkins": "^0.5.9",
+ "@backstage/plugin-kafka": "^0.2.18",
+ "@backstage/plugin-kubernetes": "^0.4.16",
+ "@backstage/plugin-lighthouse": "^0.2.28",
+ "@backstage/plugin-newrelic": "^0.3.7",
+ "@backstage/plugin-org": "^0.3.26",
+ "@backstage/plugin-pagerduty": "0.3.16",
+ "@backstage/plugin-rollbar": "^0.3.17",
+ "@backstage/plugin-scaffolder": "^0.11.7",
+ "@backstage/plugin-search": "^0.4.14",
+ "@backstage/plugin-sentry": "^0.3.24",
+ "@backstage/plugin-shortcuts": "^0.1.11",
+ "@backstage/plugin-tech-radar": "^0.4.10",
+ "@backstage/plugin-techdocs": "^0.12.1",
+ "@backstage/plugin-todo": "^0.1.13",
+ "@backstage/plugin-user-settings": "^0.3.8",
"@backstage/search-common": "^0.2.0",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
@@ -62,7 +62,7 @@
"zen-observable": "^0.8.15"
},
"devDependencies": {
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/test-utils": "^0.1.18",
"@rjsf/core": "^3.0.0",
"@testing-library/cypress": "^7.0.1",
"@testing-library/jest-dom": "^5.10.1",
diff --git a/packages/backend-common/CHANGELOG.md b/packages/backend-common/CHANGELOG.md
index 554a3514db..e7b897692e 100644
--- a/packages/backend-common/CHANGELOG.md
+++ b/packages/backend-common/CHANGELOG.md
@@ -1,5 +1,27 @@
# @backstage/backend-common
+## 0.9.6
+
+### Patch Changes
+
+- 8f969d5a56: Correct error message typo
+- a31afc5b62: Replace slash stripping regexp with trimEnd to remove CodeQL warning
+- d7055285de: Add glob patterns support to config CORS options. It's possible to send patterns like:
+
+ ```yaml
+ backend:
+ cors:
+ origin:
+ - https://*.my-domain.com
+ - http://localhost:700[0-9]
+ - https://sub-domain-+([0-9]).my-domain.com
+ ```
+
+- Updated dependencies
+ - @backstage/config-loader@0.6.10
+ - @backstage/integration@0.6.7
+ - @backstage/cli-common@0.1.4
+
## 0.9.5
### Patch Changes
diff --git a/packages/backend-common/package.json b/packages/backend-common/package.json
index 29018ef8c8..16167f7803 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.9.5",
+ "version": "0.9.6",
"main": "src/index.ts",
"types": "src/index.ts",
"private": false,
@@ -29,11 +29,11 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/cli-common": "^0.1.3",
+ "@backstage/cli-common": "^0.1.4",
"@backstage/config": "^0.1.10",
- "@backstage/config-loader": "^0.6.9",
+ "@backstage/config-loader": "^0.6.10",
"@backstage/errors": "^0.1.2",
- "@backstage/integration": "^0.6.6",
+ "@backstage/integration": "^0.6.7",
"@google-cloud/storage": "^5.8.0",
"@octokit/rest": "^18.5.3",
"@types/cors": "^2.8.6",
@@ -77,8 +77,8 @@
}
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/test-utils": "^0.1.18",
"@types/archiver": "^5.1.0",
"@types/compression": "^1.7.0",
"@types/concat-stream": "^1.6.0",
diff --git a/packages/backend/CHANGELOG.md b/packages/backend/CHANGELOG.md
index 19015e02c5..b527a875e7 100644
--- a/packages/backend/CHANGELOG.md
+++ b/packages/backend/CHANGELOG.md
@@ -1,5 +1,25 @@
# example-backend
+## 0.2.49
+
+### Patch Changes
+
+- Updated dependencies
+ - @backstage/plugin-catalog-backend@0.16.0
+ - @backstage/catalog-model@0.9.4
+ - @backstage/plugin-proxy-backend@0.2.13
+ - @backstage/plugin-auth-backend@0.4.3
+ - @backstage/backend-common@0.9.6
+ - @backstage/catalog-client@0.5.0
+ - @backstage/integration@0.6.7
+ - @backstage/plugin-scaffolder-backend@0.15.7
+ - example-app@0.2.49
+ - @backstage/plugin-badges-backend@0.1.11
+ - @backstage/plugin-code-coverage-backend@0.1.12
+ - @backstage/plugin-jenkins-backend@0.1.6
+ - @backstage/plugin-techdocs-backend@0.10.4
+ - @backstage/plugin-todo-backend@0.1.13
+
## 0.2.48
### Patch Changes
diff --git a/packages/backend/package.json b/packages/backend/package.json
index e440877eee..0752f0da2e 100644
--- a/packages/backend/package.json
+++ b/packages/backend/package.json
@@ -1,6 +1,6 @@
{
"name": "example-backend",
- "version": "0.2.48",
+ "version": "0.2.49",
"main": "dist/index.cjs.js",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -24,36 +24,36 @@
"migrate:create": "knex migrate:make -x ts"
},
"dependencies": {
- "@backstage/backend-common": "^0.9.5",
- "@backstage/catalog-client": "^0.4.0",
- "@backstage/catalog-model": "^0.9.3",
+ "@backstage/backend-common": "^0.9.6",
+ "@backstage/catalog-client": "^0.5.0",
+ "@backstage/catalog-model": "^0.9.4",
"@backstage/config": "^0.1.10",
- "@backstage/integration": "^0.6.6",
+ "@backstage/integration": "^0.6.7",
"@backstage/plugin-app-backend": "^0.3.16",
- "@backstage/plugin-auth-backend": "^0.4.2",
+ "@backstage/plugin-auth-backend": "^0.4.3",
"@backstage/plugin-azure-devops-backend": "^0.1.1",
- "@backstage/plugin-badges-backend": "^0.1.10",
- "@backstage/plugin-catalog-backend": "^0.15.0",
- "@backstage/plugin-code-coverage-backend": "^0.1.11",
+ "@backstage/plugin-badges-backend": "^0.1.11",
+ "@backstage/plugin-catalog-backend": "^0.16.0",
+ "@backstage/plugin-code-coverage-backend": "^0.1.12",
"@backstage/plugin-graphql-backend": "^0.1.9",
- "@backstage/plugin-jenkins-backend": "^0.1.5",
+ "@backstage/plugin-jenkins-backend": "^0.1.6",
"@backstage/plugin-kubernetes-backend": "^0.3.16",
"@backstage/plugin-kafka-backend": "^0.2.10",
- "@backstage/plugin-proxy-backend": "^0.2.12",
+ "@backstage/plugin-proxy-backend": "^0.2.13",
"@backstage/plugin-rollbar-backend": "^0.1.15",
- "@backstage/plugin-scaffolder-backend": "^0.15.6",
+ "@backstage/plugin-scaffolder-backend": "^0.15.7",
"@backstage/plugin-scaffolder-backend-module-rails": "^0.1.5",
"@backstage/plugin-search-backend": "^0.2.6",
"@backstage/plugin-search-backend-node": "^0.4.2",
"@backstage/plugin-search-backend-module-elasticsearch": "^0.0.4",
"@backstage/plugin-search-backend-module-pg": "^0.2.1",
- "@backstage/plugin-techdocs-backend": "^0.10.3",
- "@backstage/plugin-todo-backend": "^0.1.12",
+ "@backstage/plugin-techdocs-backend": "^0.10.4",
+ "@backstage/plugin-todo-backend": "^0.1.13",
"@gitbeaker/node": "^30.2.0",
"@octokit/rest": "^18.5.3",
"azure-devops-node-api": "^11.0.1",
"dockerode": "^3.2.1",
- "example-app": "^0.2.48",
+ "example-app": "^0.2.49",
"express": "^4.17.1",
"express-promise-router": "^4.1.0",
"express-prom-bundle": "^6.3.6",
@@ -65,7 +65,7 @@
"winston": "^3.2.1"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
+ "@backstage/cli": "^0.7.15",
"@types/dockerode": "^3.2.1",
"@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 ffb629b5bc..8243d09486 100644
--- a/packages/catalog-client/CHANGELOG.md
+++ b/packages/catalog-client/CHANGELOG.md
@@ -1,5 +1,22 @@
# @backstage/catalog-client
+## 0.5.0
+
+### Minor Changes
+
+- bb0f6b8a0f: Updates the `` to accept asynchronous `if` functions.
+
+ Adds the new `getEntityAncestors` method to `CatalogClient`.
+
+ Updates the `` to make use of the ancestry endpoint to display errors for entities further up the ancestry tree. This makes it easier to discover issues where for example the origin location has been removed or malformed.
+
+ `hasCatalogProcessingErrors()` is now changed to be asynchronous so any calls outside the already established entitySwitch need to be awaited.
+
+### Patch Changes
+
+- Updated dependencies
+ - @backstage/catalog-model@0.9.4
+
## 0.4.0
### Minor Changes
diff --git a/packages/catalog-client/package.json b/packages/catalog-client/package.json
index 70e65cb221..8da62f6115 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.4.0",
+ "version": "0.5.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -30,12 +30,12 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/catalog-model": "^0.9.3",
+ "@backstage/catalog-model": "^0.9.4",
"@backstage/errors": "^0.1.2",
"cross-fetch": "^3.0.6"
},
"devDependencies": {
- "@backstage/cli": "^0.7.13",
+ "@backstage/cli": "^0.7.15",
"@types/jest": "^26.0.7",
"msw": "^0.29.0"
},
diff --git a/packages/catalog-model/CHANGELOG.md b/packages/catalog-model/CHANGELOG.md
index cce24390b1..e7c36953db 100644
--- a/packages/catalog-model/CHANGELOG.md
+++ b/packages/catalog-model/CHANGELOG.md
@@ -1,5 +1,12 @@
# @backstage/catalog-model
+## 0.9.4
+
+### Patch Changes
+
+- 957e4b3351: Updated dependencies
+- ca0559444c: Avoid usage of `.to*Case()`, preferring `.toLocale*Case('en-US')` instead.
+
## 0.9.3
### Patch Changes
diff --git a/packages/catalog-model/package.json b/packages/catalog-model/package.json
index 2de59c660a..45b947c890 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.9.3",
+ "version": "0.9.4",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -41,7 +41,7 @@
"yup": "^0.32.9"
},
"devDependencies": {
- "@backstage/cli": "^0.7.13",
+ "@backstage/cli": "^0.7.15",
"@types/jest": "^26.0.7",
"@types/lodash": "^4.14.151",
"yaml": "^1.9.2"
diff --git a/packages/cli-common/CHANGELOG.md b/packages/cli-common/CHANGELOG.md
index 8a2a903efd..b4b87fa103 100644
--- a/packages/cli-common/CHANGELOG.md
+++ b/packages/cli-common/CHANGELOG.md
@@ -1,5 +1,11 @@
# @backstage/cli-common
+## 0.1.4
+
+### Patch Changes
+
+- ca0559444c: Avoid usage of `.to*Case()`, preferring `.toLocale*Case('en-US')` instead.
+
## 0.1.3
### Patch Changes
diff --git a/packages/cli-common/package.json b/packages/cli-common/package.json
index c643192df3..0693b555a6 100644
--- a/packages/cli-common/package.json
+++ b/packages/cli-common/package.json
@@ -1,7 +1,7 @@
{
"name": "@backstage/cli-common",
"description": "Common functionality used by cli, backend, and create-app",
- "version": "0.1.3",
+ "version": "0.1.4",
"private": false,
"main": "src/index.ts",
"types": "src/index.ts",
diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md
index 173e1ba971..b88175ee24 100644
--- a/packages/cli/CHANGELOG.md
+++ b/packages/cli/CHANGELOG.md
@@ -1,5 +1,18 @@
# @backstage/cli
+## 0.7.15
+
+### Patch Changes
+
+- ae4680b88d: The `create-plugin` command now passes the extension name via the `name` key
+ in `createRoutableExtension()` calls in newly created plugins.
+- df1242ffe4: Adding `--inspect-brk` as an option when debugging backend for development
+- c7f2a2307d: When creating a backend plugin with `--backend` flag, don't add `-backend` if it's already suffixed
+- 185fec5c0c: The default jest configuration used by the `test` command now supports yarn workspaces. By running `backstage-cli test` in the root of a monorepo, all packages will now automatically be included in the test suite and it will run just like it does within a package. Each package in the monorepo will still use its own local jest configuration, and only packages that have `backstage-cli test` in the `test` script within `package.json` will be included.
+- Updated dependencies
+ - @backstage/config-loader@0.6.10
+ - @backstage/cli-common@0.1.4
+
## 0.7.14
### Patch Changes
diff --git a/packages/cli/package.json b/packages/cli/package.json
index 4056cebd86..5b0a4b34d2 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.7.14",
+ "version": "0.7.15",
"private": false,
"publishConfig": {
"access": "public"
@@ -30,9 +30,9 @@
"dependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-transform-modules-commonjs": "^7.4.4",
- "@backstage/cli-common": "^0.1.3",
+ "@backstage/cli-common": "^0.1.4",
"@backstage/config": "^0.1.10",
- "@backstage/config-loader": "^0.6.9",
+ "@backstage/config-loader": "^0.6.10",
"@hot-loader/react-dom": "^16.13.0",
"@lerna/package-graph": "^4.0.0",
"@lerna/project": "^4.0.0",
@@ -118,13 +118,13 @@
"yn": "^4.0.0"
},
"devDependencies": {
- "@backstage/backend-common": "^0.9.5",
+ "@backstage/backend-common": "^0.9.6",
"@backstage/config": "^0.1.10",
- "@backstage/core-components": "^0.6.0",
- "@backstage/core-plugin-api": "^0.1.9",
- "@backstage/core-app-api": "^0.1.15",
+ "@backstage/core-components": "^0.6.1",
+ "@backstage/core-plugin-api": "^0.1.10",
+ "@backstage/core-app-api": "^0.1.16",
"@backstage/dev-utils": "^0.2.11",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/test-utils": "^0.1.18",
"@backstage/theme": "^0.2.10",
"@types/diff": "^5.0.0",
"@types/express": "^4.17.6",
diff --git a/packages/codemods/CHANGELOG.md b/packages/codemods/CHANGELOG.md
index 7678fb0607..d038e16ccc 100644
--- a/packages/codemods/CHANGELOG.md
+++ b/packages/codemods/CHANGELOG.md
@@ -1,5 +1,24 @@
# @backstage/codemods
+## 0.1.17
+
+### Patch Changes
+
+- 7dee4db0b0: build(deps): bump `jscodeshift` from 0.12.0 to 0.13.0
+- 903dbdeb7d: Added an `extension-names` codemod, which adds a `name` key to all extensions
+ provided by plugins. Extension names are used to provide richer context to
+ events captured by the new Analytics API, and may also appear in debug output
+ and other situations.
+
+ To apply this codemod, run `npx @backstage/codemods apply extension-names` in
+ the root of your Backstage monorepo.
+
+- Updated dependencies
+ - @backstage/core-components@0.6.1
+ - @backstage/core-plugin-api@0.1.10
+ - @backstage/core-app-api@0.1.16
+ - @backstage/cli-common@0.1.4
+
## 0.1.16
### Patch Changes
diff --git a/packages/codemods/package.json b/packages/codemods/package.json
index 44e3878fb1..a745498613 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.16",
+ "version": "0.1.17",
"private": false,
"publishConfig": {
"access": "public",
@@ -31,7 +31,7 @@
"backstage-codemods": "bin/backstage-codemods"
},
"dependencies": {
- "@backstage/cli-common": "0.1.3",
+ "@backstage/cli-common": "0.1.4",
"@backstage/core-app-api": "*",
"@backstage/core-components": "*",
"@backstage/core-plugin-api": "*",
diff --git a/packages/config-loader/CHANGELOG.md b/packages/config-loader/CHANGELOG.md
index bfa6a6556e..34fc34b441 100644
--- a/packages/config-loader/CHANGELOG.md
+++ b/packages/config-loader/CHANGELOG.md
@@ -1,5 +1,13 @@
# @backstage/config-loader
+## 0.6.10
+
+### Patch Changes
+
+- 957e4b3351: Updated dependencies
+- Updated dependencies
+ - @backstage/cli-common@0.1.4
+
## 0.6.9
### Patch Changes
diff --git a/packages/config-loader/package.json b/packages/config-loader/package.json
index abd0eb55d6..d423c915d0 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.6.9",
+ "version": "0.6.10",
"private": false,
"publishConfig": {
"access": "public",
@@ -30,7 +30,7 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/cli-common": "^0.1.3",
+ "@backstage/cli-common": "^0.1.4",
"@backstage/config": "^0.1.9",
"@types/json-schema": "^7.0.6",
"ajv": "^7.0.3",
diff --git a/packages/core-app-api/CHANGELOG.md b/packages/core-app-api/CHANGELOG.md
index 8b7d50a2dc..75490a0548 100644
--- a/packages/core-app-api/CHANGELOG.md
+++ b/packages/core-app-api/CHANGELOG.md
@@ -1,5 +1,42 @@
# @backstage/core-app-api
+## 0.1.16
+
+### Patch Changes
+
+- d9fd798cc8: The Core App API now automatically instruments all route location changes using
+ the new Analytics API. Each location change triggers a `navigate` event, which
+ is an analogue of a "pageview" event in traditional web analytics systems. In
+ addition to the path, these events provide plugin-level metadata via the
+ analytics context, which can be useful for analyzing plugin usage:
+
+ ```json
+ {
+ "action": "navigate",
+ "subject": "/the-path/navigated/to?with=params#and-hashes",
+ "context": {
+ "extension": "App",
+ "pluginId": "id-of-plugin-that-exported-the-route",
+ "routeRef": "associated-route-ref-id"
+ }
+ }
+ ```
+
+ These events can be identified and handled by checking for the action
+ `navigate` and the extension `App`.
+
+- 4c3eea7788: Bitbucket Cloud authentication - based on the existing GitHub authentication + changes around BB apis and updated scope.
+
+ - BitbucketAuth added to core-app-api.
+ - Bitbucket provider added to plugin-auth-backend.
+ - Cosmetic entry for Bitbucket connection in user-settings Authentication Providers tab.
+
+- d6ad46eb22: Stop calling connector.removeSession in StaticAuthSessionManager, instead just discarding the
+ session locally.
+- Updated dependencies
+ - @backstage/core-components@0.6.1
+ - @backstage/core-plugin-api@0.1.10
+
## 0.1.15
### Patch Changes
diff --git a/packages/core-app-api/package.json b/packages/core-app-api/package.json
index e2787893cf..1381125b23 100644
--- a/packages/core-app-api/package.json
+++ b/packages/core-app-api/package.json
@@ -1,7 +1,7 @@
{
"name": "@backstage/core-app-api",
"description": "Core app API used by Backstage apps",
- "version": "0.1.15",
+ "version": "0.1.16",
"private": false,
"publishConfig": {
"access": "public",
@@ -29,9 +29,9 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/core-components": "^0.6.0",
+ "@backstage/core-components": "^0.6.1",
"@backstage/config": "^0.1.10",
- "@backstage/core-plugin-api": "^0.1.9",
+ "@backstage/core-plugin-api": "^0.1.10",
"@backstage/theme": "^0.2.10",
"@backstage/version-bridge": "^0.1.0",
"@material-ui/core": "^4.12.2",
@@ -45,9 +45,9 @@
"zen-observable": "^0.8.15"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
- "@backstage/test-utils": "^0.1.17",
- "@backstage/test-utils-core": "^0.1.2",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/test-utils": "^0.1.18",
+ "@backstage/test-utils-core": "^0.1.3",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/react-hooks": "^7.0.2",
diff --git a/packages/core-components/CHANGELOG.md b/packages/core-components/CHANGELOG.md
index a8e351172e..bf3c84c4fd 100644
--- a/packages/core-components/CHANGELOG.md
+++ b/packages/core-components/CHANGELOG.md
@@ -1,5 +1,38 @@
# @backstage/core-components
+## 0.6.1
+
+### Patch Changes
+
+- f139fed1ac: The `` component now automatically instruments all link clicks using
+ the new Analytics API. Each click triggers a `click` event, containing the
+ text of the link the user clicked on, as well as the location to which the user
+ clicked. In addition, these events inherit plugin/extension-level metadata,
+ allowing clicks to be attributed to the plugin/extension/route containing the
+ link:
+
+ ```json
+ {
+ "action": "click",
+ "subject": "Text content of the link that was clicked",
+ "attributes": {
+ "to": "/value/of-the/to-prop/passed-to-the-link"
+ },
+ "context": {
+ "extension": "ExtensionInWhichTheLinkWasClicked",
+ "pluginId": "plugin-in-which-link-was-clicked",
+ "routeRef": "route-ref-in-which-the-link-was-clicked"
+ }
+ }
+ ```
+
+- 666e1f478e: Provide a clearer error message when a authentication provider used by the `SignInPage` has not been configured to support sign-in.
+- 63d426bfeb: Wrap up the `Link` component in a component to reset the color so that we can actually see the button text
+- ca0559444c: Avoid usage of `.to*Case()`, preferring `.toLocale*Case('en-US')` instead.
+- 162e1eee65: SignInPage: move the initial invocation of `login` away from the render method
+- Updated dependencies
+ - @backstage/core-plugin-api@0.1.10
+
## 0.6.0
### Minor Changes
diff --git a/packages/core-components/package.json b/packages/core-components/package.json
index 67e359da78..fb3d564061 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.6.0",
+ "version": "0.6.1",
"private": false,
"publishConfig": {
"access": "public",
@@ -30,7 +30,7 @@
},
"dependencies": {
"@backstage/config": "^0.1.10",
- "@backstage/core-plugin-api": "^0.1.9",
+ "@backstage/core-plugin-api": "^0.1.10",
"@backstage/errors": "^0.1.2",
"@backstage/theme": "^0.2.10",
"@material-table/core": "^3.1.0",
@@ -68,9 +68,9 @@
"zen-observable": "^0.8.15"
},
"devDependencies": {
- "@backstage/core-app-api": "^0.1.15",
- "@backstage/cli": "^0.7.14",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/core-app-api": "^0.1.16",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/test-utils": "^0.1.18",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/react-hooks": "^7.0.2",
diff --git a/packages/core-plugin-api/CHANGELOG.md b/packages/core-plugin-api/CHANGELOG.md
index c94eb2b748..8982002abc 100644
--- a/packages/core-plugin-api/CHANGELOG.md
+++ b/packages/core-plugin-api/CHANGELOG.md
@@ -1,5 +1,35 @@
# @backstage/core-plugin-api
+## 0.1.10
+
+### Patch Changes
+
+- 829bc698f4: Introducing the Analytics API: a lightweight way for plugins to instrument key
+ events that could help inform a Backstage Integrator how their instance of
+ Backstage is being used. The API consists of the following:
+
+ - `useAnalytics()`, a hook to be used inside plugin components which retrieves
+ an Analytics Tracker.
+ - `tracker.captureEvent()`, a method on the tracker used to instrument key
+ events. The method expects an action (the event name) and a subject (a unique
+ identifier of the object the action is being taken on).
+ - ``, a way to declaratively attach additional information
+ to any/all events captured in the underlying React tree. There is also a
+ `withAnalyticsContext()` HOC utility.
+ - The `tracker.captureEvent()` method also accepts an `attributes` option for
+ providing additional run-time information about an event, as well as a
+ `value` option for capturing a numeric/metric value.
+
+ By default, captured events are not sent anywhere. In order to collect and
+ redirect events to an analytics system, the `analyticsApi` will need to be
+ implemented and instantiated by an App Integrator.
+
+- 4c3eea7788: Bitbucket Cloud authentication - based on the existing GitHub authentication + changes around BB apis and updated scope.
+
+ - BitbucketAuth added to core-app-api.
+ - Bitbucket provider added to plugin-auth-backend.
+ - Cosmetic entry for Bitbucket connection in user-settings Authentication Providers tab.
+
## 0.1.9
### Patch Changes
diff --git a/packages/core-plugin-api/package.json b/packages/core-plugin-api/package.json
index f3b3135592..5c8daec606 100644
--- a/packages/core-plugin-api/package.json
+++ b/packages/core-plugin-api/package.json
@@ -1,7 +1,7 @@
{
"name": "@backstage/core-plugin-api",
"description": "Core API used by Backstage plugins",
- "version": "0.1.9",
+ "version": "0.1.10",
"private": false,
"publishConfig": {
"access": "public",
@@ -42,10 +42,10 @@
"zen-observable": "^0.8.15"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
- "@backstage/core-app-api": "^0.1.15",
- "@backstage/test-utils": "^0.1.17",
- "@backstage/test-utils-core": "^0.1.2",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/core-app-api": "^0.1.16",
+ "@backstage/test-utils": "^0.1.18",
+ "@backstage/test-utils-core": "^0.1.3",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/react-hooks": "^7.0.2",
diff --git a/packages/create-app/CHANGELOG.md b/packages/create-app/CHANGELOG.md
index afd34a86f9..d9b91a2053 100644
--- a/packages/create-app/CHANGELOG.md
+++ b/packages/create-app/CHANGELOG.md
@@ -1,5 +1,21 @@
# @backstage/create-app
+## 0.3.44
+
+### Patch Changes
+
+- e254368371: Switched the default `test` script in the package root to use `backstage-cli test` rather than `lerna run test`. This is thanks to the `@backstage/cli` now supporting running the test command from the project root.
+
+ To apply this change to an existing project, apply the following change to your root `package.json`:
+
+ ```diff
+ - "test": "lerna run test --since origin/master -- --coverage",
+ + "test": "backstage-cli test",
+ ```
+
+- Updated dependencies
+ - @backstage/cli-common@0.1.4
+
## 0.3.43
### Patch Changes
diff --git a/packages/create-app/package.json b/packages/create-app/package.json
index 0eed737ceb..22e1924d32 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.3.43",
+ "version": "0.3.44",
"private": false,
"publishConfig": {
"access": "public"
@@ -27,7 +27,7 @@
"start": "nodemon --"
},
"dependencies": {
- "@backstage/cli-common": "^0.1.3",
+ "@backstage/cli-common": "^0.1.4",
"chalk": "^4.0.0",
"commander": "^6.1.0",
"fs-extra": "9.1.0",
diff --git a/packages/integration/CHANGELOG.md b/packages/integration/CHANGELOG.md
index f93802f863..ced93c38ee 100644
--- a/packages/integration/CHANGELOG.md
+++ b/packages/integration/CHANGELOG.md
@@ -1,5 +1,12 @@
# @backstage/integration
+## 0.6.7
+
+### Patch Changes
+
+- a31afc5b62: Replace slash stripping regexp with trimEnd to remove CodeQL warning
+- ca0559444c: Avoid usage of `.to*Case()`, preferring `.toLocale*Case('en-US')` instead.
+
## 0.6.6
### Patch Changes
diff --git a/packages/integration/package.json b/packages/integration/package.json
index dcb2091a2c..4ed05269eb 100644
--- a/packages/integration/package.json
+++ b/packages/integration/package.json
@@ -1,7 +1,7 @@
{
"name": "@backstage/integration",
"description": "Helpers for managing integrations towards external systems",
- "version": "0.6.6",
+ "version": "0.6.7",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -39,9 +39,9 @@
"lodash": "^4.17.21"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
- "@backstage/config-loader": "^0.6.9",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/config-loader": "^0.6.10",
+ "@backstage/test-utils": "^0.1.18",
"@types/jest": "^26.0.7",
"@types/luxon": "^2.0.4",
"msw": "^0.29.0"
diff --git a/packages/techdocs-common/CHANGELOG.md b/packages/techdocs-common/CHANGELOG.md
index 1181b432c2..7f46d8d8b8 100644
--- a/packages/techdocs-common/CHANGELOG.md
+++ b/packages/techdocs-common/CHANGELOG.md
@@ -1,5 +1,15 @@
# @backstage/techdocs-common
+## 0.10.3
+
+### Patch Changes
+
+- 156421c59a: Sets the default techdocs docker image to the [latest released version - v0.3.3](https://github.com/backstage/techdocs-container/releases/tag/v0.3.3).
+- Updated dependencies
+ - @backstage/catalog-model@0.9.4
+ - @backstage/backend-common@0.9.6
+ - @backstage/integration@0.6.7
+
## 0.10.2
### Patch Changes
diff --git a/packages/techdocs-common/package.json b/packages/techdocs-common/package.json
index d01963366a..cbcdc04569 100644
--- a/packages/techdocs-common/package.json
+++ b/packages/techdocs-common/package.json
@@ -1,7 +1,7 @@
{
"name": "@backstage/techdocs-common",
"description": "Common functionalities for TechDocs, to be shared between techdocs-backend plugin and techdocs-cli",
- "version": "0.10.2",
+ "version": "0.10.3",
"main": "src/index.ts",
"types": "src/index.ts",
"private": false,
@@ -38,12 +38,12 @@
"dependencies": {
"@azure/identity": "^1.5.0",
"@azure/storage-blob": "^12.5.0",
- "@backstage/backend-common": "^0.9.5",
- "@backstage/catalog-model": "^0.9.1",
+ "@backstage/backend-common": "^0.9.6",
+ "@backstage/catalog-model": "^0.9.4",
"@backstage/config": "^0.1.8",
"@backstage/errors": "^0.1.1",
"@backstage/search-common": "^0.2.0",
- "@backstage/integration": "^0.6.6",
+ "@backstage/integration": "^0.6.7",
"@google-cloud/storage": "^5.6.0",
"@trendyol-js/openstack-swift-sdk": "^0.0.4",
"@types/express": "^4.17.6",
@@ -60,7 +60,7 @@
"winston": "^3.2.1"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
+ "@backstage/cli": "^0.7.15",
"@types/fs-extra": "^9.0.5",
"@types/js-yaml": "^4.0.0",
"@types/mime-types": "^2.1.0",
diff --git a/packages/test-utils-core/CHANGELOG.md b/packages/test-utils-core/CHANGELOG.md
index a84ab931f3..24d84eb105 100644
--- a/packages/test-utils-core/CHANGELOG.md
+++ b/packages/test-utils-core/CHANGELOG.md
@@ -1,5 +1,11 @@
# @backstage/test-utils-core
+## 0.1.3
+
+### Patch Changes
+
+- ca0559444c: Avoid usage of `.to*Case()`, preferring `.toLocale*Case('en-US')` instead.
+
## 0.1.2
### Patch Changes
diff --git a/packages/test-utils-core/package.json b/packages/test-utils-core/package.json
index b88184f121..474d62a670 100644
--- a/packages/test-utils-core/package.json
+++ b/packages/test-utils-core/package.json
@@ -1,7 +1,7 @@
{
"name": "@backstage/test-utils-core",
"description": "Utilities to test Backstage core",
- "version": "0.1.2",
+ "version": "0.1.3",
"private": false,
"publishConfig": {
"access": "public",
diff --git a/packages/test-utils/CHANGELOG.md b/packages/test-utils/CHANGELOG.md
index 08594ae824..2521288c05 100644
--- a/packages/test-utils/CHANGELOG.md
+++ b/packages/test-utils/CHANGELOG.md
@@ -1,5 +1,16 @@
# @backstage/test-utils
+## 0.1.18
+
+### Patch Changes
+
+- e749a38e89: Added a mock implementation of the `AnalyticsApi`, which can be used to make
+ assertions about captured analytics events.
+- Updated dependencies
+ - @backstage/core-plugin-api@0.1.10
+ - @backstage/core-app-api@0.1.16
+ - @backstage/test-utils-core@0.1.3
+
## 0.1.17
### Patch Changes
diff --git a/packages/test-utils/package.json b/packages/test-utils/package.json
index 0134382b7f..f63f7ae1e6 100644
--- a/packages/test-utils/package.json
+++ b/packages/test-utils/package.json
@@ -1,7 +1,7 @@
{
"name": "@backstage/test-utils",
"description": "Utilities to test Backstage plugins and apps.",
- "version": "0.1.17",
+ "version": "0.1.18",
"private": false,
"publishConfig": {
"access": "public",
@@ -29,9 +29,9 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/core-app-api": "^0.1.8",
- "@backstage/core-plugin-api": "^0.1.6",
- "@backstage/test-utils-core": "^0.1.2",
+ "@backstage/core-app-api": "^0.1.16",
+ "@backstage/core-plugin-api": "^0.1.10",
+ "@backstage/test-utils-core": "^0.1.3",
"@backstage/theme": "^0.2.9",
"@material-ui/core": "^4.12.2",
"@testing-library/jest-dom": "^5.10.1",
@@ -46,7 +46,7 @@
"zen-observable": "^0.8.15"
},
"devDependencies": {
- "@backstage/cli": "^0.7.8",
+ "@backstage/cli": "^0.7.15",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32"
},
diff --git a/plugins/allure/CHANGELOG.md b/plugins/allure/CHANGELOG.md
index f178636ab1..ac8d1d0cc1 100644
--- a/plugins/allure/CHANGELOG.md
+++ b/plugins/allure/CHANGELOG.md
@@ -1,5 +1,16 @@
# @backstage/plugin-allure
+## 0.1.5
+
+### Patch Changes
+
+- 81a41ec249: Added a `name` key to all extensions in order to improve Analytics API metadata.
+- Updated dependencies
+ - @backstage/core-components@0.6.1
+ - @backstage/core-plugin-api@0.1.10
+ - @backstage/plugin-catalog-react@0.5.2
+ - @backstage/catalog-model@0.9.4
+
## 0.1.4
### Patch Changes
diff --git a/plugins/allure/package.json b/plugins/allure/package.json
index 7d67f610ef..ec0c86b40f 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.4",
+ "version": "0.1.5",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -22,10 +22,10 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/catalog-model": "^0.9.3",
- "@backstage/core-components": "^0.6.0",
- "@backstage/core-plugin-api": "^0.1.9",
- "@backstage/plugin-catalog-react": "^0.5.1",
+ "@backstage/catalog-model": "^0.9.4",
+ "@backstage/core-components": "^0.6.1",
+ "@backstage/core-plugin-api": "^0.1.10",
+ "@backstage/plugin-catalog-react": "^0.5.2",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -36,10 +36,10 @@
"react-use": "^17.2.4"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
- "@backstage/core-app-api": "^0.1.15",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/core-app-api": "^0.1.16",
"@backstage/dev-utils": "^0.2.11",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/test-utils": "^0.1.18",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.1.8",
diff --git a/plugins/analytics-module-ga/package.json b/plugins/analytics-module-ga/package.json
index 787c23c301..3bb9d72948 100644
--- a/plugins/analytics-module-ga/package.json
+++ b/plugins/analytics-module-ga/package.json
@@ -22,8 +22,8 @@
},
"dependencies": {
"@backstage/config": "^0.1.5",
- "@backstage/core-components": "^0.6.0",
- "@backstage/core-plugin-api": "^0.1.9",
+ "@backstage/core-components": "^0.6.1",
+ "@backstage/core-plugin-api": "^0.1.10",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -34,10 +34,10 @@
"react-use": "^17.2.4"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
- "@backstage/core-app-api": "^0.1.15",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/core-app-api": "^0.1.16",
"@backstage/dev-utils": "^0.2.11",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/test-utils": "^0.1.18",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.1.8",
diff --git a/plugins/api-docs/CHANGELOG.md b/plugins/api-docs/CHANGELOG.md
index 058728caee..69b9637b3f 100644
--- a/plugins/api-docs/CHANGELOG.md
+++ b/plugins/api-docs/CHANGELOG.md
@@ -1,5 +1,17 @@
# @backstage/plugin-api-docs
+## 0.6.11
+
+### Patch Changes
+
+- 81a41ec249: Added a `name` key to all extensions in order to improve Analytics API metadata.
+- Updated dependencies
+ - @backstage/core-components@0.6.1
+ - @backstage/core-plugin-api@0.1.10
+ - @backstage/plugin-catalog@0.7.0
+ - @backstage/plugin-catalog-react@0.5.2
+ - @backstage/catalog-model@0.9.4
+
## 0.6.10
### Patch Changes
diff --git a/plugins/api-docs/package.json b/plugins/api-docs/package.json
index 23f80c0e67..4c88a50fa8 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.6.10",
+ "version": "0.6.11",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -31,11 +31,11 @@
},
"dependencies": {
"@asyncapi/react-component": "^0.23.0",
- "@backstage/catalog-model": "^0.9.3",
- "@backstage/core-components": "^0.6.0",
- "@backstage/core-plugin-api": "^0.1.9",
- "@backstage/plugin-catalog": "^0.6.17",
- "@backstage/plugin-catalog-react": "^0.5.1",
+ "@backstage/catalog-model": "^0.9.4",
+ "@backstage/core-components": "^0.6.1",
+ "@backstage/core-plugin-api": "^0.1.10",
+ "@backstage/plugin-catalog": "^0.7.0",
+ "@backstage/plugin-catalog-react": "^0.5.2",
"@backstage/theme": "^0.2.10",
"@material-icons/font": "^1.0.2",
"@material-ui/core": "^4.12.2",
@@ -53,10 +53,10 @@
"swagger-ui-react": "^3.37.2"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
- "@backstage/core-app-api": "^0.1.15",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/core-app-api": "^0.1.16",
"@backstage/dev-utils": "^0.2.11",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/test-utils": "^0.1.18",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.1.8",
diff --git a/plugins/auth-backend/CHANGELOG.md b/plugins/auth-backend/CHANGELOG.md
index 28bf36f1a4..f04362727e 100644
--- a/plugins/auth-backend/CHANGELOG.md
+++ b/plugins/auth-backend/CHANGELOG.md
@@ -1,5 +1,21 @@
# @backstage/plugin-auth-backend
+## 0.4.3
+
+### Patch Changes
+
+- 4c3eea7788: Bitbucket Cloud authentication - based on the existing GitHub authentication + changes around BB apis and updated scope.
+
+ - BitbucketAuth added to core-app-api.
+ - Bitbucket provider added to plugin-auth-backend.
+ - Cosmetic entry for Bitbucket connection in user-settings Authentication Providers tab.
+
+- Updated dependencies
+ - @backstage/test-utils@0.1.18
+ - @backstage/catalog-model@0.9.4
+ - @backstage/backend-common@0.9.6
+ - @backstage/catalog-client@0.5.0
+
## 0.4.2
### Patch Changes
diff --git a/plugins/auth-backend/package.json b/plugins/auth-backend/package.json
index 10275c9095..3ddd75a3a8 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.4.2",
+ "version": "0.4.3",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -30,12 +30,12 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/backend-common": "^0.9.5",
- "@backstage/catalog-client": "^0.4.0",
- "@backstage/catalog-model": "^0.9.3",
+ "@backstage/backend-common": "^0.9.6",
+ "@backstage/catalog-client": "^0.5.0",
+ "@backstage/catalog-model": "^0.9.4",
"@backstage/config": "^0.1.10",
"@backstage/errors": "^0.1.1",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/test-utils": "^0.1.18",
"@types/express": "^4.17.6",
"@types/passport": "^1.0.3",
"compression": "^1.7.4",
@@ -72,7 +72,7 @@
"yn": "^4.0.0"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
+ "@backstage/cli": "^0.7.15",
"@types/body-parser": "^1.19.0",
"@types/cookie-parser": "^1.4.2",
"@types/express-session": "^1.17.2",
diff --git a/plugins/badges-backend/CHANGELOG.md b/plugins/badges-backend/CHANGELOG.md
index bc04826b9c..5cd063d960 100644
--- a/plugins/badges-backend/CHANGELOG.md
+++ b/plugins/badges-backend/CHANGELOG.md
@@ -1,5 +1,14 @@
# @backstage/plugin-badges-backend
+## 0.1.11
+
+### Patch Changes
+
+- Updated dependencies
+ - @backstage/catalog-model@0.9.4
+ - @backstage/backend-common@0.9.6
+ - @backstage/catalog-client@0.5.0
+
## 0.1.10
### Patch Changes
diff --git a/plugins/badges-backend/package.json b/plugins/badges-backend/package.json
index 021038b754..e38b502a49 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.10",
+ "version": "0.1.11",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -31,9 +31,9 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/backend-common": "^0.9.4",
- "@backstage/catalog-client": "^0.4.0",
- "@backstage/catalog-model": "^0.9.3",
+ "@backstage/backend-common": "^0.9.6",
+ "@backstage/catalog-client": "^0.5.0",
+ "@backstage/catalog-model": "^0.9.4",
"@backstage/config": "^0.1.10",
"@backstage/errors": "^0.1.1",
"@types/express": "^4.17.6",
@@ -46,7 +46,7 @@
"yn": "^4.0.0"
},
"devDependencies": {
- "@backstage/cli": "^0.7.13",
+ "@backstage/cli": "^0.7.15",
"@types/supertest": "^2.0.8",
"supertest": "^6.1.3"
},
diff --git a/plugins/badges/CHANGELOG.md b/plugins/badges/CHANGELOG.md
index 492878e9e1..219507a4a9 100644
--- a/plugins/badges/CHANGELOG.md
+++ b/plugins/badges/CHANGELOG.md
@@ -1,5 +1,17 @@
# @backstage/plugin-badges
+## 0.2.12
+
+### Patch Changes
+
+- ca0559444c: Avoid usage of `.to*Case()`, preferring `.toLocale*Case('en-US')` instead.
+- 81a41ec249: Added a `name` key to all extensions in order to improve Analytics API metadata.
+- Updated dependencies
+ - @backstage/core-components@0.6.1
+ - @backstage/core-plugin-api@0.1.10
+ - @backstage/plugin-catalog-react@0.5.2
+ - @backstage/catalog-model@0.9.4
+
## 0.2.11
### Patch Changes
diff --git a/plugins/badges/package.json b/plugins/badges/package.json
index 05f6065e1e..26fc1afe13 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.11",
+ "version": "0.2.12",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -27,11 +27,11 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/catalog-model": "^0.9.3",
- "@backstage/core-components": "^0.6.0",
- "@backstage/core-plugin-api": "^0.1.9",
+ "@backstage/catalog-model": "^0.9.4",
+ "@backstage/core-components": "^0.6.1",
+ "@backstage/core-plugin-api": "^0.1.10",
"@backstage/errors": "^0.1.1",
- "@backstage/plugin-catalog-react": "^0.5.1",
+ "@backstage/plugin-catalog-react": "^0.5.2",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -42,10 +42,10 @@
"react-use": "^17.2.4"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
- "@backstage/core-app-api": "^0.1.15",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/core-app-api": "^0.1.16",
"@backstage/dev-utils": "^0.2.11",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/test-utils": "^0.1.18",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.1.8",
diff --git a/plugins/bitrise/CHANGELOG.md b/plugins/bitrise/CHANGELOG.md
index c86ea5ba9e..802e0a4abc 100644
--- a/plugins/bitrise/CHANGELOG.md
+++ b/plugins/bitrise/CHANGELOG.md
@@ -1,5 +1,16 @@
# @backstage/plugin-bitrise
+## 0.1.15
+
+### Patch Changes
+
+- 81a41ec249: Added a `name` key to all extensions in order to improve Analytics API metadata.
+- Updated dependencies
+ - @backstage/core-components@0.6.1
+ - @backstage/core-plugin-api@0.1.10
+ - @backstage/plugin-catalog-react@0.5.2
+ - @backstage/catalog-model@0.9.4
+
## 0.1.14
### Patch Changes
diff --git a/plugins/bitrise/package.json b/plugins/bitrise/package.json
index 0221b93e69..c581071c1a 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.14",
+ "version": "0.1.15",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -21,10 +21,10 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/catalog-model": "^0.9.3",
- "@backstage/core-components": "^0.6.0",
- "@backstage/core-plugin-api": "^0.1.9",
- "@backstage/plugin-catalog-react": "^0.5.1",
+ "@backstage/catalog-model": "^0.9.4",
+ "@backstage/core-components": "^0.6.1",
+ "@backstage/core-plugin-api": "^0.1.10",
+ "@backstage/plugin-catalog-react": "^0.5.2",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -39,10 +39,10 @@
"recharts": "^1.8.5"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
- "@backstage/core-app-api": "^0.1.15",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/core-app-api": "^0.1.16",
"@backstage/dev-utils": "^0.2.11",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/test-utils": "^0.1.18",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.1.8",
diff --git a/plugins/catalog-backend-module-ldap/CHANGELOG.md b/plugins/catalog-backend-module-ldap/CHANGELOG.md
index 036cfda1dd..6e1a819d78 100644
--- a/plugins/catalog-backend-module-ldap/CHANGELOG.md
+++ b/plugins/catalog-backend-module-ldap/CHANGELOG.md
@@ -1,5 +1,14 @@
# @backstage/plugin-catalog-backend-module-ldap
+## 0.3.3
+
+### Patch Changes
+
+- a31afc5b62: Replace slash stripping regexp with trimEnd to remove CodeQL warning
+- Updated dependencies
+ - @backstage/plugin-catalog-backend@0.16.0
+ - @backstage/catalog-model@0.9.4
+
## 0.3.2
### Patch Changes
diff --git a/plugins/catalog-backend-module-ldap/package.json b/plugins/catalog-backend-module-ldap/package.json
index 484bd611da..bc71ca4688 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 modules that helps integrate towards LDAP",
- "version": "0.3.2",
+ "version": "0.3.3",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -29,16 +29,16 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/catalog-model": "^0.9.3",
+ "@backstage/catalog-model": "^0.9.4",
"@backstage/config": "^0.1.10",
- "@backstage/plugin-catalog-backend": "^0.15.0",
+ "@backstage/plugin-catalog-backend": "^0.16.0",
"@types/ldapjs": "^2.2.0",
"ldapjs": "^2.2.0",
"lodash": "^4.17.21",
"winston": "^3.2.1"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
+ "@backstage/cli": "^0.7.15",
"@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 de644f2c78..0fa13b2018 100644
--- a/plugins/catalog-backend-module-msgraph/CHANGELOG.md
+++ b/plugins/catalog-backend-module-msgraph/CHANGELOG.md
@@ -1,5 +1,16 @@
# @backstage/plugin-catalog-backend-module-msgraph
+## 0.2.6
+
+### Patch Changes
+
+- ff7c6cec1a: Allow loading users using group membership
+- 95869261ed: Adding some documentation for the `msgraph` client
+- a31afc5b62: Replace slash stripping regexp with trimEnd to remove CodeQL warning
+- Updated dependencies
+ - @backstage/plugin-catalog-backend@0.16.0
+ - @backstage/catalog-model@0.9.4
+
## 0.2.5
### Patch Changes
diff --git a/plugins/catalog-backend-module-msgraph/package.json b/plugins/catalog-backend-module-msgraph/package.json
index 6365dd992e..febaabe219 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 modules that helps integrate towards Microsoft Graph",
- "version": "0.2.5",
+ "version": "0.2.6",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -30,9 +30,9 @@
},
"dependencies": {
"@azure/msal-node": "^1.1.0",
- "@backstage/catalog-model": "^0.9.3",
+ "@backstage/catalog-model": "^0.9.4",
"@backstage/config": "^0.1.10",
- "@backstage/plugin-catalog-backend": "^0.15.0",
+ "@backstage/plugin-catalog-backend": "^0.16.0",
"@microsoft/microsoft-graph-types": "^2.6.0",
"cross-fetch": "^3.0.6",
"lodash": "^4.17.21",
@@ -41,9 +41,9 @@
"qs": "^6.9.4"
},
"devDependencies": {
- "@backstage/backend-common": "^0.9.5",
- "@backstage/cli": "^0.7.14",
- "@backstage/test-utils": "^0.1.14",
+ "@backstage/backend-common": "^0.9.6",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/test-utils": "^0.1.18",
"@types/lodash": "^4.14.151",
"msw": "^0.29.0"
},
diff --git a/plugins/catalog-backend/CHANGELOG.md b/plugins/catalog-backend/CHANGELOG.md
index a305df041f..846fba5d01 100644
--- a/plugins/catalog-backend/CHANGELOG.md
+++ b/plugins/catalog-backend/CHANGELOG.md
@@ -1,5 +1,32 @@
# @backstage/plugin-catalog-backend
+## 0.16.0
+
+### Minor Changes
+
+- 2c5bab2f82: Errors emitted from processors are now considered a failure during entity processing and will prevent entities from being updated. The impact of this change is that when errors are emitted while for example reading a location, then ingestion effectively stops there. If you emit a number of entities along with just one error, then the error will be persisted on the current entity but the emitted entities will _not_ be stored. This fixes [a bug](https://github.com/backstage/backstage/issues/6973) where entities would get marked as orphaned rather than put in an error state when the catalog failed to read a location.
+
+ In previous versions of the catalog, an emitted error was treated as a less severe problem than an exception thrown by the processor. We are now ensuring that the behavior is consistent for these two cases. Even though both thrown and emitted errors are treated the same, emitted errors stay around as they allow you to highlight multiple errors related to an entity at once. An emitted error will also only prevent the writing of the processing result, while a thrown error will skip the rest of the processing steps.
+
+### Patch Changes
+
+- 957e4b3351: Updated dependencies
+- f66c38148a: Avoid duplicate logging of entity processing errors.
+- 426d5031a6: A number of classes and types, that were part of the old catalog engine implementation, are now formally marked as deprecated. They will be removed entirely from the code base in a future release.
+
+ After upgrading to this version, it is recommended that you take a look inside your `packages/backend/src/plugins/catalog.ts` file (using a code editor), to see if you are using any functionality that it marks as deprecated. If you do, please migrate away from it at your earliest convenience.
+
+ Migrating to using the new engine implementation is typically a matter of calling `CatalogBuilder.create({ ... })` instead of `new CatalogBuilder({ ... })`.
+
+ If you are seeing deprecation warnings for `createRouter`, you can either use the `router` field from the return value from updated catalog builder, or temporarily call `createNextRouter`. The latter will however also be deprecated at a later time.
+
+- 7b78dd17e6: Replace slash stripping regexp with trimEnd to remove CodeQL warning
+- Updated dependencies
+ - @backstage/catalog-model@0.9.4
+ - @backstage/backend-common@0.9.6
+ - @backstage/catalog-client@0.5.0
+ - @backstage/integration@0.6.7
+
## 0.15.0
### Minor Changes
diff --git a/plugins/catalog-backend/package.json b/plugins/catalog-backend/package.json
index cf08f50c43..8a3e6dc432 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.15.0",
+ "version": "0.16.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -30,12 +30,12 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/backend-common": "^0.9.5",
- "@backstage/catalog-client": "^0.4.0",
- "@backstage/catalog-model": "^0.9.3",
+ "@backstage/backend-common": "^0.9.6",
+ "@backstage/catalog-client": "^0.5.0",
+ "@backstage/catalog-model": "^0.9.4",
"@backstage/config": "^0.1.10",
"@backstage/errors": "^0.1.2",
- "@backstage/integration": "^0.6.6",
+ "@backstage/integration": "^0.6.7",
"@backstage/search-common": "^0.2.0",
"@octokit/graphql": "^4.5.8",
"@types/express": "^4.17.6",
@@ -62,8 +62,8 @@
},
"devDependencies": {
"@backstage/backend-test-utils": "^0.1.7",
- "@backstage/cli": "^0.7.14",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/test-utils": "^0.1.18",
"@types/core-js": "^2.5.4",
"@types/git-url-parse": "^9.0.0",
"@types/lodash": "^4.14.151",
diff --git a/plugins/catalog-graph/CHANGELOG.md b/plugins/catalog-graph/CHANGELOG.md
index 23aeb1ac14..20eb85af21 100644
--- a/plugins/catalog-graph/CHANGELOG.md
+++ b/plugins/catalog-graph/CHANGELOG.md
@@ -1,5 +1,17 @@
# @backstage/plugin-catalog-graph
+## 0.1.3
+
+### Patch Changes
+
+- 81a41ec249: Added a `name` key to all extensions in order to improve Analytics API metadata.
+- Updated dependencies
+ - @backstage/core-components@0.6.1
+ - @backstage/core-plugin-api@0.1.10
+ - @backstage/plugin-catalog-react@0.5.2
+ - @backstage/catalog-model@0.9.4
+ - @backstage/catalog-client@0.5.0
+
## 0.1.2
### Patch Changes
diff --git a/plugins/catalog-graph/package.json b/plugins/catalog-graph/package.json
index 39678edcf8..e2de70e510 100644
--- a/plugins/catalog-graph/package.json
+++ b/plugins/catalog-graph/package.json
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-catalog-graph",
- "version": "0.1.2",
+ "version": "0.1.3",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -21,11 +21,11 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/catalog-client": "^0.4.0",
- "@backstage/catalog-model": "^0.9.3",
- "@backstage/core-components": "^0.6.0",
- "@backstage/core-plugin-api": "^0.1.9",
- "@backstage/plugin-catalog-react": "^0.5.1",
+ "@backstage/catalog-client": "^0.5.0",
+ "@backstage/catalog-model": "^0.9.4",
+ "@backstage/core-components": "^0.6.1",
+ "@backstage/core-plugin-api": "^0.1.10",
+ "@backstage/plugin-catalog-react": "^0.5.2",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -41,10 +41,10 @@
"p-limit": "^3.1.0"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
+ "@backstage/cli": "^0.7.15",
"@backstage/dev-utils": "^0.2.11",
- "@backstage/test-utils": "^0.1.17",
- "@backstage/core-app-api": "^0.1.15",
+ "@backstage/test-utils": "^0.1.18",
+ "@backstage/core-app-api": "^0.1.16",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.1.8",
diff --git a/plugins/catalog-import/CHANGELOG.md b/plugins/catalog-import/CHANGELOG.md
index ab27d639ef..9b13184018 100644
--- a/plugins/catalog-import/CHANGELOG.md
+++ b/plugins/catalog-import/CHANGELOG.md
@@ -1,5 +1,19 @@
# @backstage/plugin-catalog-import
+## 0.7.1
+
+### Patch Changes
+
+- a31afc5b62: Replace slash stripping regexp with trimEnd to remove CodeQL warning
+- 81a41ec249: Added a `name` key to all extensions in order to improve Analytics API metadata.
+- Updated dependencies
+ - @backstage/core-components@0.6.1
+ - @backstage/core-plugin-api@0.1.10
+ - @backstage/plugin-catalog-react@0.5.2
+ - @backstage/catalog-model@0.9.4
+ - @backstage/catalog-client@0.5.0
+ - @backstage/integration@0.6.7
+
## 0.7.0
### Minor Changes
diff --git a/plugins/catalog-import/package.json b/plugins/catalog-import/package.json
index e6ad23fb0a..f571b5df31 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.7.0",
+ "version": "0.7.1",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -31,13 +31,13 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/catalog-client": "^0.4.0",
- "@backstage/catalog-model": "^0.9.3",
- "@backstage/core-components": "^0.6.0",
- "@backstage/core-plugin-api": "^0.1.9",
- "@backstage/integration": "^0.6.6",
+ "@backstage/catalog-client": "^0.5.0",
+ "@backstage/catalog-model": "^0.9.4",
+ "@backstage/core-components": "^0.6.1",
+ "@backstage/core-plugin-api": "^0.1.10",
+ "@backstage/integration": "^0.6.7",
"@backstage/integration-react": "^0.1.11",
- "@backstage/plugin-catalog-react": "^0.5.1",
+ "@backstage/plugin-catalog-react": "^0.5.2",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "4.0.0-alpha.57",
@@ -54,10 +54,10 @@
"lodash": "^4.17.21"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
- "@backstage/core-app-api": "^0.1.15",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/core-app-api": "^0.1.16",
"@backstage/dev-utils": "^0.2.11",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/test-utils": "^0.1.18",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/react-hooks": "^7.0.2",
diff --git a/plugins/catalog-react/CHANGELOG.md b/plugins/catalog-react/CHANGELOG.md
index c802dab730..ef2dd15f93 100644
--- a/plugins/catalog-react/CHANGELOG.md
+++ b/plugins/catalog-react/CHANGELOG.md
@@ -1,5 +1,19 @@
# @backstage/plugin-catalog-react
+## 0.5.2
+
+### Patch Changes
+
+- 5aae9bb61e: Name column will now render entity `metadata.title` if its present
+- ca0559444c: Avoid usage of `.to*Case()`, preferring `.toLocale*Case('en-US')` instead.
+- Updated dependencies
+ - @backstage/core-components@0.6.1
+ - @backstage/core-plugin-api@0.1.10
+ - @backstage/core-app-api@0.1.16
+ - @backstage/catalog-model@0.9.4
+ - @backstage/catalog-client@0.5.0
+ - @backstage/integration@0.6.7
+
## 0.5.1
### Patch Changes
diff --git a/plugins/catalog-react/package.json b/plugins/catalog-react/package.json
index 5a59d11b05..f6b36a7191 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.5.1",
+ "version": "0.5.2",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -29,12 +29,12 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/catalog-client": "^0.4.0",
- "@backstage/catalog-model": "^0.9.3",
- "@backstage/core-app-api": "^0.1.15",
- "@backstage/core-components": "^0.6.0",
- "@backstage/core-plugin-api": "^0.1.9",
- "@backstage/integration": "^0.6.6",
+ "@backstage/catalog-client": "^0.5.0",
+ "@backstage/catalog-model": "^0.9.4",
+ "@backstage/core-app-api": "^0.1.16",
+ "@backstage/core-components": "^0.6.1",
+ "@backstage/core-plugin-api": "^0.1.10",
+ "@backstage/integration": "^0.6.7",
"@backstage/version-bridge": "^0.1.0",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -48,8 +48,8 @@
"react-use": "^17.2.4"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/test-utils": "^0.1.18",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/react-hooks": "^7.0.2",
diff --git a/plugins/catalog/CHANGELOG.md b/plugins/catalog/CHANGELOG.md
index 34b6516754..0e00949dcd 100644
--- a/plugins/catalog/CHANGELOG.md
+++ b/plugins/catalog/CHANGELOG.md
@@ -1,5 +1,30 @@
# @backstage/plugin-catalog
+## 0.7.0
+
+### Minor Changes
+
+- bb0f6b8a0f: Updates the `` to accept asynchronous `if` functions.
+
+ Adds the new `getEntityAncestors` method to `CatalogClient`.
+
+ Updates the `` to make use of the ancestry endpoint to display errors for entities further up the ancestry tree. This makes it easier to discover issues where for example the origin location has been removed or malformed.
+
+ `hasCatalogProcessingErrors()` is now changed to be asynchronous so any calls outside the already established entitySwitch need to be awaited.
+
+### Patch Changes
+
+- 5aae9bb61e: Name column will now render entity `metadata.title` if its present
+- 1c5c5b23fb: Replace deprecated material UI components used by LinksCard to remove errors from console log
+- ca0559444c: Avoid usage of `.to*Case()`, preferring `.toLocale*Case('en-US')` instead.
+- 81a41ec249: Added a `name` key to all extensions in order to improve Analytics API metadata.
+- Updated dependencies
+ - @backstage/core-components@0.6.1
+ - @backstage/core-plugin-api@0.1.10
+ - @backstage/plugin-catalog-react@0.5.2
+ - @backstage/catalog-model@0.9.4
+ - @backstage/catalog-client@0.5.0
+
## 0.6.17
### Patch Changes
diff --git a/plugins/catalog/package.json b/plugins/catalog/package.json
index eab929d13f..3de20d7f95 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.6.17",
+ "version": "0.7.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -31,12 +31,12 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/catalog-client": "^0.4.0",
- "@backstage/catalog-model": "^0.9.3",
- "@backstage/core-components": "^0.6.0",
- "@backstage/core-plugin-api": "^0.1.9",
+ "@backstage/catalog-client": "^0.5.0",
+ "@backstage/catalog-model": "^0.9.4",
+ "@backstage/core-components": "^0.6.1",
+ "@backstage/core-plugin-api": "^0.1.10",
"@backstage/integration-react": "^0.1.11",
- "@backstage/plugin-catalog-react": "^0.5.1",
+ "@backstage/plugin-catalog-react": "^0.5.2",
"@backstage/errors": "^0.1.2",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
@@ -51,10 +51,10 @@
"react-use": "^17.2.4"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
- "@backstage/core-app-api": "^0.1.15",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/core-app-api": "^0.1.16",
"@backstage/dev-utils": "^0.2.11",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/test-utils": "^0.1.18",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.1.8",
diff --git a/plugins/circleci/CHANGELOG.md b/plugins/circleci/CHANGELOG.md
index d475304391..3607e9430d 100644
--- a/plugins/circleci/CHANGELOG.md
+++ b/plugins/circleci/CHANGELOG.md
@@ -1,5 +1,16 @@
# @backstage/plugin-circleci
+## 0.2.26
+
+### Patch Changes
+
+- 81a41ec249: Added a `name` key to all extensions in order to improve Analytics API metadata.
+- Updated dependencies
+ - @backstage/core-components@0.6.1
+ - @backstage/core-plugin-api@0.1.10
+ - @backstage/plugin-catalog-react@0.5.2
+ - @backstage/catalog-model@0.9.4
+
## 0.2.25
### Patch Changes
diff --git a/plugins/circleci/package.json b/plugins/circleci/package.json
index 3213a2d8cd..edd11711ae 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.2.25",
+ "version": "0.2.26",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -32,10 +32,10 @@
"postpack": "backstage-cli postpack"
},
"dependencies": {
- "@backstage/catalog-model": "^0.9.3",
- "@backstage/core-components": "^0.6.0",
- "@backstage/core-plugin-api": "^0.1.9",
- "@backstage/plugin-catalog-react": "^0.5.1",
+ "@backstage/catalog-model": "^0.9.4",
+ "@backstage/core-components": "^0.6.1",
+ "@backstage/core-plugin-api": "^0.1.10",
+ "@backstage/plugin-catalog-react": "^0.5.2",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -52,10 +52,10 @@
"react-use": "^17.2.4"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
- "@backstage/core-app-api": "^0.1.15",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/core-app-api": "^0.1.16",
"@backstage/dev-utils": "^0.2.11",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/test-utils": "^0.1.18",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.1.8",
diff --git a/plugins/cloudbuild/CHANGELOG.md b/plugins/cloudbuild/CHANGELOG.md
index 9a84b04576..ac9bda48e8 100644
--- a/plugins/cloudbuild/CHANGELOG.md
+++ b/plugins/cloudbuild/CHANGELOG.md
@@ -1,5 +1,16 @@
# @backstage/plugin-cloudbuild
+## 0.2.26
+
+### Patch Changes
+
+- 81a41ec249: Added a `name` key to all extensions in order to improve Analytics API metadata.
+- Updated dependencies
+ - @backstage/core-components@0.6.1
+ - @backstage/core-plugin-api@0.1.10
+ - @backstage/plugin-catalog-react@0.5.2
+ - @backstage/catalog-model@0.9.4
+
## 0.2.25
### Patch Changes
diff --git a/plugins/cloudbuild/package.json b/plugins/cloudbuild/package.json
index bed2781ae2..37e36df83b 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.2.25",
+ "version": "0.2.26",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -31,10 +31,10 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/catalog-model": "^0.9.3",
- "@backstage/core-components": "^0.6.0",
- "@backstage/core-plugin-api": "^0.1.9",
- "@backstage/plugin-catalog-react": "^0.5.1",
+ "@backstage/catalog-model": "^0.9.4",
+ "@backstage/core-components": "^0.6.1",
+ "@backstage/core-plugin-api": "^0.1.10",
+ "@backstage/plugin-catalog-react": "^0.5.2",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -49,10 +49,10 @@
"react-use": "^17.2.4"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
- "@backstage/core-app-api": "^0.1.15",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/core-app-api": "^0.1.16",
"@backstage/dev-utils": "^0.2.11",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/test-utils": "^0.1.18",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.1.8",
diff --git a/plugins/code-coverage-backend/CHANGELOG.md b/plugins/code-coverage-backend/CHANGELOG.md
index b66328d22e..33bdd55346 100644
--- a/plugins/code-coverage-backend/CHANGELOG.md
+++ b/plugins/code-coverage-backend/CHANGELOG.md
@@ -1,5 +1,15 @@
# @backstage/plugin-code-coverage-backend
+## 0.1.12
+
+### Patch Changes
+
+- Updated dependencies
+ - @backstage/catalog-model@0.9.4
+ - @backstage/backend-common@0.9.6
+ - @backstage/catalog-client@0.5.0
+ - @backstage/integration@0.6.7
+
## 0.1.11
### Patch Changes
diff --git a/plugins/code-coverage-backend/package.json b/plugins/code-coverage-backend/package.json
index e457034c62..4feb1e037f 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.11",
+ "version": "0.1.12",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -20,12 +20,12 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/backend-common": "^0.9.4",
- "@backstage/catalog-client": "^0.4.0",
- "@backstage/catalog-model": "^0.9.3",
+ "@backstage/backend-common": "^0.9.6",
+ "@backstage/catalog-client": "^0.5.0",
+ "@backstage/catalog-model": "^0.9.4",
"@backstage/config": "^0.1.10",
"@backstage/errors": "^0.1.1",
- "@backstage/integration": "^0.6.5",
+ "@backstage/integration": "^0.6.7",
"@types/express": "^4.17.6",
"cross-fetch": "^3.0.6",
"express": "^4.17.1",
@@ -37,7 +37,7 @@
"yn": "^4.0.0"
},
"devDependencies": {
- "@backstage/cli": "^0.7.13",
+ "@backstage/cli": "^0.7.15",
"@types/express-xml-bodyparser": "^0.3.2",
"@types/supertest": "^2.0.8",
"msw": "^0.29.0",
diff --git a/plugins/code-coverage/CHANGELOG.md b/plugins/code-coverage/CHANGELOG.md
index 348b3824a3..8e3312b169 100644
--- a/plugins/code-coverage/CHANGELOG.md
+++ b/plugins/code-coverage/CHANGELOG.md
@@ -1,5 +1,16 @@
# @backstage/plugin-code-coverage
+## 0.1.14
+
+### Patch Changes
+
+- 81a41ec249: Added a `name` key to all extensions in order to improve Analytics API metadata.
+- Updated dependencies
+ - @backstage/core-components@0.6.1
+ - @backstage/core-plugin-api@0.1.10
+ - @backstage/plugin-catalog-react@0.5.2
+ - @backstage/catalog-model@0.9.4
+
## 0.1.13
### Patch Changes
diff --git a/plugins/code-coverage/package.json b/plugins/code-coverage/package.json
index 8acba08f88..0f1708e912 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.13",
+ "version": "0.1.14",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -21,12 +21,12 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/catalog-model": "^0.9.3",
+ "@backstage/catalog-model": "^0.9.4",
"@backstage/config": "^0.1.10",
- "@backstage/core-components": "^0.6.0",
- "@backstage/core-plugin-api": "^0.1.9",
+ "@backstage/core-components": "^0.6.1",
+ "@backstage/core-plugin-api": "^0.1.10",
"@backstage/errors": "^0.1.1",
- "@backstage/plugin-catalog-react": "^0.5.1",
+ "@backstage/plugin-catalog-react": "^0.5.2",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -41,10 +41,10 @@
"recharts": "^1.8.5"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
- "@backstage/core-app-api": "^0.1.15",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/core-app-api": "^0.1.16",
"@backstage/dev-utils": "^0.2.11",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/test-utils": "^0.1.18",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.1.8",
diff --git a/plugins/config-schema/CHANGELOG.md b/plugins/config-schema/CHANGELOG.md
index 5587c3ae70..c16d6c1230 100644
--- a/plugins/config-schema/CHANGELOG.md
+++ b/plugins/config-schema/CHANGELOG.md
@@ -1,5 +1,14 @@
# @backstage/plugin-config-schema
+## 0.1.10
+
+### Patch Changes
+
+- 81a41ec249: Added a `name` key to all extensions in order to improve Analytics API metadata.
+- Updated dependencies
+ - @backstage/core-components@0.6.1
+ - @backstage/core-plugin-api@0.1.10
+
## 0.1.9
### Patch Changes
diff --git a/plugins/config-schema/package.json b/plugins/config-schema/package.json
index d363afe329..272313d064 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.9",
+ "version": "0.1.10",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -22,8 +22,8 @@
},
"dependencies": {
"@backstage/config": "^0.1.10",
- "@backstage/core-components": "^0.6.0",
- "@backstage/core-plugin-api": "^0.1.9",
+ "@backstage/core-components": "^0.6.1",
+ "@backstage/core-plugin-api": "^0.1.10",
"@backstage/errors": "^0.1.1",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
@@ -36,10 +36,10 @@
"zen-observable": "^0.8.15"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
- "@backstage/core-app-api": "^0.1.15",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/core-app-api": "^0.1.16",
"@backstage/dev-utils": "^0.2.11",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/test-utils": "^0.1.18",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.1.8",
diff --git a/plugins/cost-insights/CHANGELOG.md b/plugins/cost-insights/CHANGELOG.md
index 2cb951af1a..dbd0c578cf 100644
--- a/plugins/cost-insights/CHANGELOG.md
+++ b/plugins/cost-insights/CHANGELOG.md
@@ -1,5 +1,16 @@
# @backstage/plugin-cost-insights
+## 0.11.9
+
+### Patch Changes
+
+- 957e4b3351: Updated dependencies
+- ca0559444c: Avoid usage of `.to*Case()`, preferring `.toLocale*Case('en-US')` instead.
+- 81a41ec249: Added a `name` key to all extensions in order to improve Analytics API metadata.
+- Updated dependencies
+ - @backstage/core-components@0.6.1
+ - @backstage/core-plugin-api@0.1.10
+
## 0.11.8
### Patch Changes
diff --git a/plugins/cost-insights/package.json b/plugins/cost-insights/package.json
index 82bd70c9cc..d1e8fb4c3a 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.8",
+ "version": "0.11.9",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -32,8 +32,8 @@
},
"dependencies": {
"@backstage/config": "^0.1.10",
- "@backstage/core-components": "^0.6.0",
- "@backstage/core-plugin-api": "^0.1.9",
+ "@backstage/core-components": "^0.6.1",
+ "@backstage/core-plugin-api": "^0.1.10",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -55,10 +55,10 @@
"yup": "^0.32.9"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
- "@backstage/core-app-api": "^0.1.15",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/core-app-api": "^0.1.16",
"@backstage/dev-utils": "^0.2.11",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/test-utils": "^0.1.18",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.1.8",
diff --git a/plugins/explore/CHANGELOG.md b/plugins/explore/CHANGELOG.md
index 2e9a7c18be..7d4de81c65 100644
--- a/plugins/explore/CHANGELOG.md
+++ b/plugins/explore/CHANGELOG.md
@@ -1,5 +1,16 @@
# @backstage/plugin-explore
+## 0.3.19
+
+### Patch Changes
+
+- 81a41ec249: Added a `name` key to all extensions in order to improve Analytics API metadata.
+- Updated dependencies
+ - @backstage/core-components@0.6.1
+ - @backstage/core-plugin-api@0.1.10
+ - @backstage/plugin-catalog-react@0.5.2
+ - @backstage/catalog-model@0.9.4
+
## 0.3.18
### Patch Changes
diff --git a/plugins/explore/package.json b/plugins/explore/package.json
index f0f6040efa..400ddc42ac 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.18",
+ "version": "0.3.19",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -31,10 +31,10 @@
"start": "backstage-cli plugin:serve"
},
"dependencies": {
- "@backstage/catalog-model": "^0.9.3",
- "@backstage/core-components": "^0.6.0",
- "@backstage/core-plugin-api": "^0.1.9",
- "@backstage/plugin-catalog-react": "^0.5.1",
+ "@backstage/catalog-model": "^0.9.4",
+ "@backstage/core-components": "^0.6.1",
+ "@backstage/core-plugin-api": "^0.1.10",
+ "@backstage/plugin-catalog-react": "^0.5.2",
"@backstage/plugin-explore-react": "^0.0.6",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
@@ -49,10 +49,10 @@
"react-use": "^17.2.4"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
- "@backstage/core-app-api": "^0.1.15",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/core-app-api": "^0.1.16",
"@backstage/dev-utils": "^0.2.11",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/test-utils": "^0.1.18",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.1.8",
diff --git a/plugins/firehydrant/CHANGELOG.md b/plugins/firehydrant/CHANGELOG.md
index 08b6325526..0fc18c58f9 100644
--- a/plugins/firehydrant/CHANGELOG.md
+++ b/plugins/firehydrant/CHANGELOG.md
@@ -1,5 +1,15 @@
# @backstage/plugin-firehydrant
+## 0.1.6
+
+### Patch Changes
+
+- 81a41ec249: Added a `name` key to all extensions in order to improve Analytics API metadata.
+- Updated dependencies
+ - @backstage/core-components@0.6.1
+ - @backstage/core-plugin-api@0.1.10
+ - @backstage/plugin-catalog-react@0.5.2
+
## 0.1.5
### Patch Changes
diff --git a/plugins/firehydrant/package.json b/plugins/firehydrant/package.json
index f31c622f88..557aa6ea9d 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.5",
+ "version": "0.1.6",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -22,9 +22,9 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/core-components": "^0.6.0",
- "@backstage/core-plugin-api": "^0.1.9",
- "@backstage/plugin-catalog-react": "^0.5.1",
+ "@backstage/core-components": "^0.6.1",
+ "@backstage/core-plugin-api": "^0.1.10",
+ "@backstage/plugin-catalog-react": "^0.5.2",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -35,10 +35,10 @@
"react-use": "^17.2.4"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
- "@backstage/core-app-api": "^0.1.15",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/core-app-api": "^0.1.16",
"@backstage/dev-utils": "^0.2.11",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/test-utils": "^0.1.18",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.1.8",
diff --git a/plugins/fossa/CHANGELOG.md b/plugins/fossa/CHANGELOG.md
index 47f88b0e57..b4ba20ad10 100644
--- a/plugins/fossa/CHANGELOG.md
+++ b/plugins/fossa/CHANGELOG.md
@@ -1,5 +1,16 @@
# @backstage/plugin-fossa
+## 0.2.19
+
+### Patch Changes
+
+- 81a41ec249: Added a `name` key to all extensions in order to improve Analytics API metadata.
+- Updated dependencies
+ - @backstage/core-components@0.6.1
+ - @backstage/core-plugin-api@0.1.10
+ - @backstage/plugin-catalog-react@0.5.2
+ - @backstage/catalog-model@0.9.4
+
## 0.2.18
### Patch Changes
diff --git a/plugins/fossa/package.json b/plugins/fossa/package.json
index 5e2b4de92c..7d6e9bcf19 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.18",
+ "version": "0.2.19",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -32,11 +32,11 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/catalog-model": "^0.9.3",
- "@backstage/core-components": "^0.6.0",
- "@backstage/core-plugin-api": "^0.1.9",
+ "@backstage/catalog-model": "^0.9.4",
+ "@backstage/core-components": "^0.6.1",
+ "@backstage/core-plugin-api": "^0.1.10",
"@backstage/errors": "^0.1.1",
- "@backstage/plugin-catalog-react": "^0.5.1",
+ "@backstage/plugin-catalog-react": "^0.5.2",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -49,10 +49,10 @@
"react-use": "^17.2.4"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
- "@backstage/core-app-api": "^0.1.15",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/core-app-api": "^0.1.16",
"@backstage/dev-utils": "^0.2.11",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/test-utils": "^0.1.18",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.1.8",
diff --git a/plugins/gcp-projects/CHANGELOG.md b/plugins/gcp-projects/CHANGELOG.md
index 3535ee794b..e0b2a84aff 100644
--- a/plugins/gcp-projects/CHANGELOG.md
+++ b/plugins/gcp-projects/CHANGELOG.md
@@ -1,5 +1,14 @@
# @backstage/plugin-gcp-projects
+## 0.3.7
+
+### Patch Changes
+
+- 81a41ec249: Added a `name` key to all extensions in order to improve Analytics API metadata.
+- Updated dependencies
+ - @backstage/core-components@0.6.1
+ - @backstage/core-plugin-api@0.1.10
+
## 0.3.6
### Patch Changes
diff --git a/plugins/gcp-projects/package.json b/plugins/gcp-projects/package.json
index 69a2c6a9e8..5f71ffe4b6 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.6",
+ "version": "0.3.7",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -31,8 +31,8 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/core-components": "^0.6.0",
- "@backstage/core-plugin-api": "^0.1.9",
+ "@backstage/core-components": "^0.6.1",
+ "@backstage/core-plugin-api": "^0.1.10",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -43,10 +43,10 @@
"react-use": "^17.2.4"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
- "@backstage/core-app-api": "^0.1.15",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/core-app-api": "^0.1.16",
"@backstage/dev-utils": "^0.2.11",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/test-utils": "^0.1.18",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.1.8",
diff --git a/plugins/git-release-manager/CHANGELOG.md b/plugins/git-release-manager/CHANGELOG.md
index b0e9691e03..e60f641007 100644
--- a/plugins/git-release-manager/CHANGELOG.md
+++ b/plugins/git-release-manager/CHANGELOG.md
@@ -1,5 +1,21 @@
# @backstage/plugin-git-release-manager
+## 0.3.0
+
+### Minor Changes
+
+- 6c318336b4: Errors caused while patching can leave the release branch in a broken state. Most commonly caused due to merge errors.
+
+ This has been solved by introducing a dry run prior to patching the release branch. The dry run will attempt to cherry pick the selected patch commit onto a temporary branch created off of the release branch. If it succeeds, the temporary branch is deleted and the patch is applied on the release branch
+
+### Patch Changes
+
+- 81a41ec249: Added a `name` key to all extensions in order to improve Analytics API metadata.
+- Updated dependencies
+ - @backstage/core-components@0.6.1
+ - @backstage/core-plugin-api@0.1.10
+ - @backstage/integration@0.6.7
+
## 0.2.8
### Patch Changes
diff --git a/plugins/git-release-manager/package.json b/plugins/git-release-manager/package.json
index f3289fcd06..74487bf0cc 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.2.8",
+ "version": "0.3.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -21,9 +21,9 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/core-components": "^0.6.0",
- "@backstage/core-plugin-api": "^0.1.9",
- "@backstage/integration": "^0.6.6",
+ "@backstage/core-components": "^0.6.1",
+ "@backstage/core-plugin-api": "^0.1.10",
+ "@backstage/integration": "^0.6.7",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -39,10 +39,10 @@
"recharts": "^1.8.5"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
- "@backstage/core-app-api": "^0.1.15",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/core-app-api": "^0.1.16",
"@backstage/dev-utils": "^0.2.11",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/test-utils": "^0.1.18",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/react-hooks": "^7.0.2",
diff --git a/plugins/github-actions/CHANGELOG.md b/plugins/github-actions/CHANGELOG.md
index 6c2bfc1a54..ec59cc10a6 100644
--- a/plugins/github-actions/CHANGELOG.md
+++ b/plugins/github-actions/CHANGELOG.md
@@ -1,5 +1,17 @@
# @backstage/plugin-github-actions
+## 0.4.21
+
+### Patch Changes
+
+- 81a41ec249: Added a `name` key to all extensions in order to improve Analytics API metadata.
+- Updated dependencies
+ - @backstage/core-components@0.6.1
+ - @backstage/core-plugin-api@0.1.10
+ - @backstage/plugin-catalog-react@0.5.2
+ - @backstage/catalog-model@0.9.4
+ - @backstage/integration@0.6.7
+
## 0.4.20
### Patch Changes
diff --git a/plugins/github-actions/package.json b/plugins/github-actions/package.json
index 6e393a67fc..b473f9b675 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.4.20",
+ "version": "0.4.21",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -33,11 +33,11 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/catalog-model": "^0.9.3",
- "@backstage/core-components": "^0.6.0",
- "@backstage/core-plugin-api": "^0.1.9",
- "@backstage/integration": "^0.6.6",
- "@backstage/plugin-catalog-react": "^0.5.1",
+ "@backstage/catalog-model": "^0.9.4",
+ "@backstage/core-components": "^0.6.1",
+ "@backstage/core-plugin-api": "^0.1.10",
+ "@backstage/integration": "^0.6.7",
+ "@backstage/plugin-catalog-react": "^0.5.2",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -52,10 +52,10 @@
"react-use": "^17.2.4"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
- "@backstage/core-app-api": "^0.1.15",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/core-app-api": "^0.1.16",
"@backstage/dev-utils": "^0.2.11",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/test-utils": "^0.1.18",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.1.8",
diff --git a/plugins/github-deployments/CHANGELOG.md b/plugins/github-deployments/CHANGELOG.md
index 116d6d4e90..3cebaad3ce 100644
--- a/plugins/github-deployments/CHANGELOG.md
+++ b/plugins/github-deployments/CHANGELOG.md
@@ -1,5 +1,17 @@
# @backstage/plugin-github-deployments
+## 0.1.19
+
+### Patch Changes
+
+- 81a41ec249: Added a `name` key to all extensions in order to improve Analytics API metadata.
+- Updated dependencies
+ - @backstage/core-components@0.6.1
+ - @backstage/core-plugin-api@0.1.10
+ - @backstage/plugin-catalog-react@0.5.2
+ - @backstage/catalog-model@0.9.4
+ - @backstage/integration@0.6.7
+
## 0.1.18
### Patch Changes
diff --git a/plugins/github-deployments/package.json b/plugins/github-deployments/package.json
index 3a8b90e0b3..7cd079edbd 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.18",
+ "version": "0.1.19",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -21,13 +21,13 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/catalog-model": "^0.9.3",
- "@backstage/core-components": "^0.6.0",
- "@backstage/core-plugin-api": "^0.1.9",
+ "@backstage/catalog-model": "^0.9.4",
+ "@backstage/core-components": "^0.6.1",
+ "@backstage/core-plugin-api": "^0.1.10",
"@backstage/errors": "^0.1.1",
- "@backstage/integration": "^0.6.6",
+ "@backstage/integration": "^0.6.7",
"@backstage/integration-react": "^0.1.11",
- "@backstage/plugin-catalog-react": "^0.5.1",
+ "@backstage/plugin-catalog-react": "^0.5.2",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -39,10 +39,10 @@
"react-use": "^17.2.4"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
- "@backstage/core-app-api": "^0.1.15",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/core-app-api": "^0.1.16",
"@backstage/dev-utils": "^0.2.11",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/test-utils": "^0.1.18",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.1.8",
diff --git a/plugins/gitops-profiles/CHANGELOG.md b/plugins/gitops-profiles/CHANGELOG.md
index d5062c26bd..d9959c7729 100644
--- a/plugins/gitops-profiles/CHANGELOG.md
+++ b/plugins/gitops-profiles/CHANGELOG.md
@@ -1,5 +1,14 @@
# @backstage/plugin-gitops-profiles
+## 0.3.7
+
+### Patch Changes
+
+- 81a41ec249: Added a `name` key to all extensions in order to improve Analytics API metadata.
+- Updated dependencies
+ - @backstage/core-components@0.6.1
+ - @backstage/core-plugin-api@0.1.10
+
## 0.3.6
### Patch Changes
diff --git a/plugins/gitops-profiles/package.json b/plugins/gitops-profiles/package.json
index cff4b6e0c7..d728929b1d 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.6",
+ "version": "0.3.7",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -32,8 +32,8 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/core-components": "^0.6.0",
- "@backstage/core-plugin-api": "^0.1.9",
+ "@backstage/core-components": "^0.6.1",
+ "@backstage/core-plugin-api": "^0.1.10",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -44,10 +44,10 @@
"react-use": "^17.2.4"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
- "@backstage/core-app-api": "^0.1.15",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/core-app-api": "^0.1.16",
"@backstage/dev-utils": "^0.2.11",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/test-utils": "^0.1.18",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.1.8",
diff --git a/plugins/graphiql/CHANGELOG.md b/plugins/graphiql/CHANGELOG.md
index 8d3813d2a4..760c63e5d2 100644
--- a/plugins/graphiql/CHANGELOG.md
+++ b/plugins/graphiql/CHANGELOG.md
@@ -1,5 +1,14 @@
# @backstage/plugin-graphiql
+## 0.2.19
+
+### Patch Changes
+
+- 81a41ec249: Added a `name` key to all extensions in order to improve Analytics API metadata.
+- Updated dependencies
+ - @backstage/core-components@0.6.1
+ - @backstage/core-plugin-api@0.1.10
+
## 0.2.18
### Patch Changes
diff --git a/plugins/graphiql/package.json b/plugins/graphiql/package.json
index 56fd991ec9..d5027fff2c 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.18",
+ "version": "0.2.19",
"private": false,
"publishConfig": {
"access": "public",
@@ -31,8 +31,8 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/core-components": "^0.6.0",
- "@backstage/core-plugin-api": "^0.1.9",
+ "@backstage/core-components": "^0.6.1",
+ "@backstage/core-plugin-api": "^0.1.10",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -44,10 +44,10 @@
"react-use": "^17.2.4"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
- "@backstage/core-app-api": "^0.1.15",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/core-app-api": "^0.1.16",
"@backstage/dev-utils": "^0.2.11",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/test-utils": "^0.1.18",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.1.8",
diff --git a/plugins/home/CHANGELOG.md b/plugins/home/CHANGELOG.md
index f4e6310572..a14e6e01e3 100644
--- a/plugins/home/CHANGELOG.md
+++ b/plugins/home/CHANGELOG.md
@@ -1,5 +1,15 @@
# @backstage/plugin-home
+## 0.4.3
+
+### Patch Changes
+
+- ca0559444c: Avoid usage of `.to*Case()`, preferring `.toLocale*Case('en-US')` instead.
+- 81a41ec249: Added a `name` key to all extensions in order to improve Analytics API metadata.
+- Updated dependencies
+ - @backstage/core-components@0.6.1
+ - @backstage/core-plugin-api@0.1.10
+
## 0.4.2
### Patch Changes
diff --git a/plugins/home/package.json b/plugins/home/package.json
index cd04f67ff5..dc7e130235 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.2",
+ "version": "0.4.3",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -21,8 +21,8 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/core-components": "^0.6.0",
- "@backstage/core-plugin-api": "^0.1.9",
+ "@backstage/core-components": "^0.6.1",
+ "@backstage/core-plugin-api": "^0.1.10",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -35,10 +35,10 @@
"react-use": "^17.2.4"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
- "@backstage/core-app-api": "^0.1.15",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/core-app-api": "^0.1.16",
"@backstage/dev-utils": "^0.2.11",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/test-utils": "^0.1.18",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.1.8",
diff --git a/plugins/ilert/CHANGELOG.md b/plugins/ilert/CHANGELOG.md
index 8fe82cf436..406b846162 100644
--- a/plugins/ilert/CHANGELOG.md
+++ b/plugins/ilert/CHANGELOG.md
@@ -1,5 +1,17 @@
# @backstage/plugin-ilert
+## 0.1.14
+
+### Patch Changes
+
+- ca0559444c: Avoid usage of `.to*Case()`, preferring `.toLocale*Case('en-US')` instead.
+- 81a41ec249: Added a `name` key to all extensions in order to improve Analytics API metadata.
+- Updated dependencies
+ - @backstage/core-components@0.6.1
+ - @backstage/core-plugin-api@0.1.10
+ - @backstage/plugin-catalog-react@0.5.2
+ - @backstage/catalog-model@0.9.4
+
## 0.1.13
### Patch Changes
diff --git a/plugins/ilert/package.json b/plugins/ilert/package.json
index f90daf35d6..697f3ca790 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.13",
+ "version": "0.1.14",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -21,11 +21,11 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/catalog-model": "^0.9.3",
- "@backstage/core-components": "^0.6.0",
- "@backstage/core-plugin-api": "^0.1.9",
+ "@backstage/catalog-model": "^0.9.4",
+ "@backstage/core-components": "^0.6.1",
+ "@backstage/core-plugin-api": "^0.1.10",
"@backstage/errors": "^0.1.1",
- "@backstage/plugin-catalog-react": "^0.5.1",
+ "@backstage/plugin-catalog-react": "^0.5.2",
"@backstage/theme": "^0.2.10",
"@date-io/luxon": "2.x",
"@material-ui/core": "^4.12.2",
@@ -39,10 +39,10 @@
"react-use": "^17.2.4"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
- "@backstage/core-app-api": "^0.1.15",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/core-app-api": "^0.1.16",
"@backstage/dev-utils": "^0.2.11",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/test-utils": "^0.1.18",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.1.8",
diff --git a/plugins/jenkins-backend/CHANGELOG.md b/plugins/jenkins-backend/CHANGELOG.md
index e729a3c2e8..635fa080ce 100644
--- a/plugins/jenkins-backend/CHANGELOG.md
+++ b/plugins/jenkins-backend/CHANGELOG.md
@@ -1,5 +1,14 @@
# @backstage/plugin-jenkins-backend
+## 0.1.6
+
+### Patch Changes
+
+- Updated dependencies
+ - @backstage/catalog-model@0.9.4
+ - @backstage/backend-common@0.9.6
+ - @backstage/catalog-client@0.5.0
+
## 0.1.5
### Patch Changes
diff --git a/plugins/jenkins-backend/package.json b/plugins/jenkins-backend/package.json
index c38ec102bd..b741cc3d11 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.5",
+ "version": "0.1.6",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -22,9 +22,9 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/backend-common": "^0.9.4",
- "@backstage/catalog-client": "^0.4.0",
- "@backstage/catalog-model": "^0.9.3",
+ "@backstage/backend-common": "^0.9.6",
+ "@backstage/catalog-client": "^0.5.0",
+ "@backstage/catalog-model": "^0.9.4",
"@backstage/config": "^0.1.10",
"@types/express": "^4.17.6",
"cross-fetch": "^3.0.6",
@@ -35,7 +35,7 @@
"yn": "^4.0.0"
},
"devDependencies": {
- "@backstage/cli": "^0.7.13",
+ "@backstage/cli": "^0.7.15",
"@types/jenkins": "^0.23.1",
"@types/supertest": "^2.0.8",
"msw": "^0.29.0",
diff --git a/plugins/jenkins/CHANGELOG.md b/plugins/jenkins/CHANGELOG.md
index 08cd43c1b2..04cb19ab9c 100644
--- a/plugins/jenkins/CHANGELOG.md
+++ b/plugins/jenkins/CHANGELOG.md
@@ -1,5 +1,16 @@
# @backstage/plugin-jenkins
+## 0.5.9
+
+### Patch Changes
+
+- 81a41ec249: Added a `name` key to all extensions in order to improve Analytics API metadata.
+- Updated dependencies
+ - @backstage/core-components@0.6.1
+ - @backstage/core-plugin-api@0.1.10
+ - @backstage/plugin-catalog-react@0.5.2
+ - @backstage/catalog-model@0.9.4
+
## 0.5.8
### Patch Changes
diff --git a/plugins/jenkins/package.json b/plugins/jenkins/package.json
index 5391624faf..5048f4c3eb 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.5.8",
+ "version": "0.5.9",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -32,10 +32,10 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/catalog-model": "^0.9.3",
- "@backstage/core-components": "^0.6.0",
- "@backstage/core-plugin-api": "^0.1.9",
- "@backstage/plugin-catalog-react": "^0.5.1",
+ "@backstage/catalog-model": "^0.9.4",
+ "@backstage/core-components": "^0.6.1",
+ "@backstage/core-plugin-api": "^0.1.10",
+ "@backstage/plugin-catalog-react": "^0.5.2",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -48,10 +48,10 @@
"react-use": "^17.2.4"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
- "@backstage/core-app-api": "^0.1.15",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/core-app-api": "^0.1.16",
"@backstage/dev-utils": "^0.2.11",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/test-utils": "^0.1.18",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.1.8",
diff --git a/plugins/kafka/CHANGELOG.md b/plugins/kafka/CHANGELOG.md
index afbe0a8190..5cc277aa7e 100644
--- a/plugins/kafka/CHANGELOG.md
+++ b/plugins/kafka/CHANGELOG.md
@@ -1,5 +1,16 @@
# @backstage/plugin-kafka
+## 0.2.18
+
+### Patch Changes
+
+- 81a41ec249: Added a `name` key to all extensions in order to improve Analytics API metadata.
+- Updated dependencies
+ - @backstage/core-components@0.6.1
+ - @backstage/core-plugin-api@0.1.10
+ - @backstage/plugin-catalog-react@0.5.2
+ - @backstage/catalog-model@0.9.4
+
## 0.2.17
### Patch Changes
diff --git a/plugins/kafka/package.json b/plugins/kafka/package.json
index b08844edd1..d7c18cac65 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.2.17",
+ "version": "0.2.18",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -21,10 +21,10 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/catalog-model": "^0.9.3",
- "@backstage/core-components": "^0.6.0",
- "@backstage/core-plugin-api": "^0.1.9",
- "@backstage/plugin-catalog-react": "^0.5.1",
+ "@backstage/catalog-model": "^0.9.4",
+ "@backstage/core-components": "^0.6.1",
+ "@backstage/core-plugin-api": "^0.1.10",
+ "@backstage/plugin-catalog-react": "^0.5.2",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -35,10 +35,10 @@
"react-use": "^17.2.4"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
- "@backstage/core-app-api": "^0.1.15",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/core-app-api": "^0.1.16",
"@backstage/dev-utils": "^0.2.11",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/test-utils": "^0.1.18",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/react-hooks": "^7.0.2",
diff --git a/plugins/kubernetes-common/CHANGELOG.md b/plugins/kubernetes-common/CHANGELOG.md
index 98c5a6c7e1..0f685bd4d4 100644
--- a/plugins/kubernetes-common/CHANGELOG.md
+++ b/plugins/kubernetes-common/CHANGELOG.md
@@ -1,5 +1,13 @@
# @backstage/plugin-kubernetes-common
+## 0.1.5
+
+### Patch Changes
+
+- 193a999a80: Fixed incorrect keyword, repository directory path and entrypoints in `package.json`.
+- Updated dependencies
+ - @backstage/catalog-model@0.9.4
+
## 0.1.4
### Patch Changes
diff --git a/plugins/kubernetes-common/package.json b/plugins/kubernetes-common/package.json
index 3cecb1d064..ec3fec1c56 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.1.4",
+ "version": "0.1.5",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -35,11 +35,11 @@
"url": "https://github.com/backstage/backstage/issues"
},
"dependencies": {
- "@backstage/catalog-model": "^0.9.3",
+ "@backstage/catalog-model": "^0.9.4",
"@kubernetes/client-node": "^0.15.0"
},
"devDependencies": {
- "@backstage/cli": "^0.7.13"
+ "@backstage/cli": "^0.7.15"
},
"jest": {
"roots": [
diff --git a/plugins/kubernetes/CHANGELOG.md b/plugins/kubernetes/CHANGELOG.md
index ce905e2302..6994729a3b 100644
--- a/plugins/kubernetes/CHANGELOG.md
+++ b/plugins/kubernetes/CHANGELOG.md
@@ -1,5 +1,19 @@
# @backstage/plugin-kubernetes
+## 0.4.16
+
+### Patch Changes
+
+- c148c8854b: Support Rancher URL's with an existing path component
+- ca0559444c: Avoid usage of `.to*Case()`, preferring `.toLocale*Case('en-US')` instead.
+- 81a41ec249: Added a `name` key to all extensions in order to improve Analytics API metadata.
+- Updated dependencies
+ - @backstage/core-components@0.6.1
+ - @backstage/core-plugin-api@0.1.10
+ - @backstage/plugin-catalog-react@0.5.2
+ - @backstage/catalog-model@0.9.4
+ - @backstage/plugin-kubernetes-common@0.1.5
+
## 0.4.15
### Patch Changes
diff --git a/plugins/kubernetes/package.json b/plugins/kubernetes/package.json
index d05cc8f62f..a8e271e85d 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.4.15",
+ "version": "0.4.16",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -31,12 +31,12 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/catalog-model": "^0.9.3",
+ "@backstage/catalog-model": "^0.9.4",
"@backstage/config": "^0.1.10",
- "@backstage/core-components": "^0.6.0",
- "@backstage/core-plugin-api": "^0.1.9",
- "@backstage/plugin-catalog-react": "^0.5.1",
- "@backstage/plugin-kubernetes-common": "^0.1.4",
+ "@backstage/core-components": "^0.6.1",
+ "@backstage/core-plugin-api": "^0.1.10",
+ "@backstage/plugin-catalog-react": "^0.5.2",
+ "@backstage/plugin-kubernetes-common": "^0.1.5",
"@backstage/theme": "^0.2.10",
"@kubernetes/client-node": "^0.15.0",
"@material-ui/core": "^4.12.2",
@@ -51,10 +51,10 @@
"react-use": "^17.2.4"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
- "@backstage/core-app-api": "^0.1.15",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/core-app-api": "^0.1.16",
"@backstage/dev-utils": "^0.2.11",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/test-utils": "^0.1.18",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/react-hooks": "^7.0.2",
diff --git a/plugins/lighthouse/CHANGELOG.md b/plugins/lighthouse/CHANGELOG.md
index 767f5fdf1f..fad1da1e6e 100644
--- a/plugins/lighthouse/CHANGELOG.md
+++ b/plugins/lighthouse/CHANGELOG.md
@@ -1,5 +1,16 @@
# @backstage/plugin-lighthouse
+## 0.2.28
+
+### Patch Changes
+
+- 81a41ec249: Added a `name` key to all extensions in order to improve Analytics API metadata.
+- Updated dependencies
+ - @backstage/core-components@0.6.1
+ - @backstage/core-plugin-api@0.1.10
+ - @backstage/plugin-catalog-react@0.5.2
+ - @backstage/catalog-model@0.9.4
+
## 0.2.27
### Patch Changes
diff --git a/plugins/lighthouse/package.json b/plugins/lighthouse/package.json
index 1395cd2ff7..14facb2439 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.2.27",
+ "version": "0.2.28",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -32,11 +32,11 @@
"start": "backstage-cli plugin:serve"
},
"dependencies": {
- "@backstage/catalog-model": "^0.9.3",
+ "@backstage/catalog-model": "^0.9.4",
"@backstage/config": "^0.1.10",
- "@backstage/core-components": "^0.6.0",
- "@backstage/core-plugin-api": "^0.1.9",
- "@backstage/plugin-catalog-react": "^0.5.1",
+ "@backstage/core-components": "^0.6.1",
+ "@backstage/core-plugin-api": "^0.1.10",
+ "@backstage/plugin-catalog-react": "^0.5.2",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -47,10 +47,10 @@
"react-use": "^17.2.4"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
- "@backstage/core-app-api": "^0.1.15",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/core-app-api": "^0.1.16",
"@backstage/dev-utils": "^0.2.11",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/test-utils": "^0.1.18",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/react-hooks": "^7.0.2",
diff --git a/plugins/newrelic/CHANGELOG.md b/plugins/newrelic/CHANGELOG.md
index eac0227736..3b8b004fc0 100644
--- a/plugins/newrelic/CHANGELOG.md
+++ b/plugins/newrelic/CHANGELOG.md
@@ -1,5 +1,14 @@
# @backstage/plugin-newrelic
+## 0.3.7
+
+### Patch Changes
+
+- 81a41ec249: Added a `name` key to all extensions in order to improve Analytics API metadata.
+- Updated dependencies
+ - @backstage/core-components@0.6.1
+ - @backstage/core-plugin-api@0.1.10
+
## 0.3.6
### Patch Changes
diff --git a/plugins/newrelic/package.json b/plugins/newrelic/package.json
index 32ea1b99be..8b50f26077 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.6",
+ "version": "0.3.7",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -32,8 +32,8 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/core-components": "^0.6.0",
- "@backstage/core-plugin-api": "^0.1.9",
+ "@backstage/core-components": "^0.6.1",
+ "@backstage/core-plugin-api": "^0.1.10",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -43,10 +43,10 @@
"react-use": "^17.2.4"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
- "@backstage/core-app-api": "^0.1.15",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/core-app-api": "^0.1.16",
"@backstage/dev-utils": "^0.2.11",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/test-utils": "^0.1.18",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.1.8",
diff --git a/plugins/org/CHANGELOG.md b/plugins/org/CHANGELOG.md
index b607672b1d..a9dab3d9e2 100644
--- a/plugins/org/CHANGELOG.md
+++ b/plugins/org/CHANGELOG.md
@@ -1,5 +1,17 @@
# @backstage/plugin-org
+## 0.3.26
+
+### Patch Changes
+
+- 614da39174: Change the OwnershipCard link on an user profile, including the user's groups on the filters.
+- 81a41ec249: Added a `name` key to all extensions in order to improve Analytics API metadata.
+- Updated dependencies
+ - @backstage/core-components@0.6.1
+ - @backstage/core-plugin-api@0.1.10
+ - @backstage/plugin-catalog-react@0.5.2
+ - @backstage/catalog-model@0.9.4
+
## 0.3.25
### Patch Changes
diff --git a/plugins/org/package.json b/plugins/org/package.json
index 6dd1e9aed0..d391bf8081 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.3.25",
+ "version": "0.3.26",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -21,10 +21,10 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/catalog-model": "^0.9.3",
- "@backstage/core-components": "^0.6.0",
- "@backstage/core-plugin-api": "^0.1.9",
- "@backstage/plugin-catalog-react": "^0.5.1",
+ "@backstage/catalog-model": "^0.9.4",
+ "@backstage/core-components": "^0.6.1",
+ "@backstage/core-plugin-api": "^0.1.10",
+ "@backstage/plugin-catalog-react": "^0.5.2",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -37,10 +37,10 @@
"qs": "^6.10.1"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
- "@backstage/core-app-api": "^0.1.15",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/core-app-api": "^0.1.16",
"@backstage/dev-utils": "^0.2.11",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/test-utils": "^0.1.18",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.1.8",
diff --git a/plugins/pagerduty/CHANGELOG.md b/plugins/pagerduty/CHANGELOG.md
index 20015bc95d..626b7e9afd 100644
--- a/plugins/pagerduty/CHANGELOG.md
+++ b/plugins/pagerduty/CHANGELOG.md
@@ -1,5 +1,16 @@
# @backstage/plugin-pagerduty
+## 0.3.16
+
+### Patch Changes
+
+- 81a41ec249: Added a `name` key to all extensions in order to improve Analytics API metadata.
+- Updated dependencies
+ - @backstage/core-components@0.6.1
+ - @backstage/core-plugin-api@0.1.10
+ - @backstage/plugin-catalog-react@0.5.2
+ - @backstage/catalog-model@0.9.4
+
## 0.3.15
### Patch Changes
diff --git a/plugins/pagerduty/package.json b/plugins/pagerduty/package.json
index c4b20adec5..fc213e0576 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.15",
+ "version": "0.3.16",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -31,10 +31,10 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/catalog-model": "^0.9.3",
- "@backstage/core-components": "^0.6.0",
- "@backstage/core-plugin-api": "^0.1.9",
- "@backstage/plugin-catalog-react": "^0.5.1",
+ "@backstage/catalog-model": "^0.9.4",
+ "@backstage/core-components": "^0.6.1",
+ "@backstage/core-plugin-api": "^0.1.10",
+ "@backstage/plugin-catalog-react": "^0.5.2",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -48,10 +48,10 @@
"react-use": "^17.2.4"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
- "@backstage/core-app-api": "^0.1.15",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/core-app-api": "^0.1.16",
"@backstage/dev-utils": "^0.2.11",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/test-utils": "^0.1.18",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.1.8",
diff --git a/plugins/proxy-backend/CHANGELOG.md b/plugins/proxy-backend/CHANGELOG.md
index c7ffd55129..a7408c161f 100644
--- a/plugins/proxy-backend/CHANGELOG.md
+++ b/plugins/proxy-backend/CHANGELOG.md
@@ -1,5 +1,13 @@
# @backstage/plugin-proxy-backend
+## 0.2.13
+
+### Patch Changes
+
+- 957e4b3351: Updated dependencies
+- Updated dependencies
+ - @backstage/backend-common@0.9.6
+
## 0.2.12
### Patch Changes
diff --git a/plugins/proxy-backend/package.json b/plugins/proxy-backend/package.json
index 688adc1c93..e7510450b0 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.12",
+ "version": "0.2.13",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -29,7 +29,7 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/backend-common": "^0.9.0",
+ "@backstage/backend-common": "^0.9.6",
"@backstage/config": "^0.1.8",
"@types/express": "^4.17.6",
"express": "^4.17.1",
@@ -43,7 +43,7 @@
"yup": "^0.32.9"
},
"devDependencies": {
- "@backstage/cli": "^0.7.2",
+ "@backstage/cli": "^0.7.15",
"@types/http-proxy-middleware": "^0.19.3",
"@types/supertest": "^2.0.8",
"@types/uuid": "^8.0.0",
diff --git a/plugins/rollbar/CHANGELOG.md b/plugins/rollbar/CHANGELOG.md
index fae7667a4a..76ea278858 100644
--- a/plugins/rollbar/CHANGELOG.md
+++ b/plugins/rollbar/CHANGELOG.md
@@ -1,5 +1,16 @@
# @backstage/plugin-rollbar
+## 0.3.17
+
+### Patch Changes
+
+- 81a41ec249: Added a `name` key to all extensions in order to improve Analytics API metadata.
+- Updated dependencies
+ - @backstage/core-components@0.6.1
+ - @backstage/core-plugin-api@0.1.10
+ - @backstage/plugin-catalog-react@0.5.2
+ - @backstage/catalog-model@0.9.4
+
## 0.3.16
### Patch Changes
diff --git a/plugins/rollbar/package.json b/plugins/rollbar/package.json
index 59817337ff..62486e915d 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.3.16",
+ "version": "0.3.17",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -32,10 +32,10 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/catalog-model": "^0.9.3",
- "@backstage/core-components": "^0.6.0",
- "@backstage/core-plugin-api": "^0.1.9",
- "@backstage/plugin-catalog-react": "^0.5.1",
+ "@backstage/catalog-model": "^0.9.4",
+ "@backstage/core-components": "^0.6.1",
+ "@backstage/core-plugin-api": "^0.1.10",
+ "@backstage/plugin-catalog-react": "^0.5.2",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -49,10 +49,10 @@
"react-use": "^17.2.4"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
- "@backstage/core-app-api": "^0.1.15",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/core-app-api": "^0.1.16",
"@backstage/dev-utils": "^0.2.11",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/test-utils": "^0.1.18",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/react-hooks": "^7.0.2",
diff --git a/plugins/scaffolder-backend/CHANGELOG.md b/plugins/scaffolder-backend/CHANGELOG.md
index 39f129763a..25ae32c5d9 100644
--- a/plugins/scaffolder-backend/CHANGELOG.md
+++ b/plugins/scaffolder-backend/CHANGELOG.md
@@ -1,5 +1,16 @@
# @backstage/plugin-scaffolder-backend
+## 0.15.7
+
+### Patch Changes
+
+- ca3086a7ad: Fixed a bug where the `catalog:register` action would not return any entity when running towards recent versions of the catalog.
+- Updated dependencies
+ - @backstage/catalog-model@0.9.4
+ - @backstage/backend-common@0.9.6
+ - @backstage/catalog-client@0.5.0
+ - @backstage/integration@0.6.7
+
## 0.15.6
### Patch Changes
diff --git a/plugins/scaffolder-backend/package.json b/plugins/scaffolder-backend/package.json
index 30d8690b83..ffe8a1e1b8 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.15.6",
+ "version": "0.15.7",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -30,12 +30,12 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/backend-common": "^0.9.4",
- "@backstage/catalog-client": "^0.4.0",
- "@backstage/catalog-model": "^0.9.3",
+ "@backstage/backend-common": "^0.9.6",
+ "@backstage/catalog-client": "^0.5.0",
+ "@backstage/catalog-model": "^0.9.4",
"@backstage/config": "^0.1.10",
"@backstage/errors": "^0.1.2",
- "@backstage/integration": "^0.6.5",
+ "@backstage/integration": "^0.6.7",
"@backstage/plugin-scaffolder-backend-module-cookiecutter": "^0.1.2",
"@gitbeaker/core": "^30.2.0",
"@gitbeaker/node": "^30.2.0",
@@ -68,8 +68,8 @@
"yaml": "^1.10.0"
},
"devDependencies": {
- "@backstage/cli": "^0.7.13",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/test-utils": "^0.1.18",
"@types/command-exists": "^1.2.0",
"@types/fs-extra": "^9.0.1",
"@types/git-url-parse": "^9.0.0",
diff --git a/plugins/scaffolder/CHANGELOG.md b/plugins/scaffolder/CHANGELOG.md
index 6ee6e95d30..1d5510f704 100644
--- a/plugins/scaffolder/CHANGELOG.md
+++ b/plugins/scaffolder/CHANGELOG.md
@@ -1,5 +1,18 @@
# @backstage/plugin-scaffolder
+## 0.11.7
+
+### Patch Changes
+
+- 81a41ec249: Added a `name` key to all extensions in order to improve Analytics API metadata.
+- Updated dependencies
+ - @backstage/core-components@0.6.1
+ - @backstage/core-plugin-api@0.1.10
+ - @backstage/plugin-catalog-react@0.5.2
+ - @backstage/catalog-model@0.9.4
+ - @backstage/catalog-client@0.5.0
+ - @backstage/integration@0.6.7
+
## 0.11.6
### Patch Changes
diff --git a/plugins/scaffolder/package.json b/plugins/scaffolder/package.json
index 4e1734af28..7acfe55692 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.11.6",
+ "version": "0.11.7",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -31,15 +31,15 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/catalog-client": "^0.4.0",
- "@backstage/catalog-model": "^0.9.3",
+ "@backstage/catalog-client": "^0.5.0",
+ "@backstage/catalog-model": "^0.9.4",
"@backstage/config": "^0.1.10",
- "@backstage/core-components": "^0.6.0",
- "@backstage/core-plugin-api": "^0.1.9",
+ "@backstage/core-components": "^0.6.1",
+ "@backstage/core-plugin-api": "^0.1.10",
"@backstage/errors": "^0.1.2",
- "@backstage/integration": "^0.6.6",
+ "@backstage/integration": "^0.6.7",
"@backstage/integration-react": "^0.1.11",
- "@backstage/plugin-catalog-react": "^0.5.1",
+ "@backstage/plugin-catalog-react": "^0.5.2",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -64,10 +64,10 @@
"zen-observable": "^0.8.15"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
- "@backstage/core-app-api": "^0.1.15",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/core-app-api": "^0.1.16",
"@backstage/dev-utils": "^0.2.11",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/test-utils": "^0.1.18",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/react-hooks": "^7.0.2",
diff --git a/plugins/search/CHANGELOG.md b/plugins/search/CHANGELOG.md
index 32e1ba8039..89e33f9784 100644
--- a/plugins/search/CHANGELOG.md
+++ b/plugins/search/CHANGELOG.md
@@ -1,5 +1,17 @@
# @backstage/plugin-search
+## 0.4.14
+
+### Patch Changes
+
+- ca0559444c: Avoid usage of `.to*Case()`, preferring `.toLocale*Case('en-US')` instead.
+- 81a41ec249: Added a `name` key to all extensions in order to improve Analytics API metadata.
+- Updated dependencies
+ - @backstage/core-components@0.6.1
+ - @backstage/core-plugin-api@0.1.10
+ - @backstage/plugin-catalog-react@0.5.2
+ - @backstage/catalog-model@0.9.4
+
## 0.4.13
### Patch Changes
diff --git a/plugins/search/package.json b/plugins/search/package.json
index 20437727d0..d763d06774 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.4.13",
+ "version": "0.4.14",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -30,12 +30,12 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/catalog-model": "^0.9.3",
+ "@backstage/catalog-model": "^0.9.4",
"@backstage/config": "^0.1.10",
- "@backstage/core-components": "^0.6.0",
- "@backstage/core-plugin-api": "^0.1.9",
+ "@backstage/core-components": "^0.6.1",
+ "@backstage/core-plugin-api": "^0.1.10",
"@backstage/errors": "^0.1.2",
- "@backstage/plugin-catalog-react": "^0.5.1",
+ "@backstage/plugin-catalog-react": "^0.5.2",
"@backstage/search-common": "^0.2.0",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
@@ -50,10 +50,10 @@
"react-use": "^17.2.4"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
- "@backstage/core-app-api": "^0.1.15",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/core-app-api": "^0.1.16",
"@backstage/dev-utils": "^0.2.11",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/test-utils": "^0.1.18",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/react-hooks": "^7.0.2",
diff --git a/plugins/sentry/CHANGELOG.md b/plugins/sentry/CHANGELOG.md
index b7a601f414..1d1a5028f3 100644
--- a/plugins/sentry/CHANGELOG.md
+++ b/plugins/sentry/CHANGELOG.md
@@ -1,5 +1,16 @@
# @backstage/plugin-sentry
+## 0.3.24
+
+### Patch Changes
+
+- 81a41ec249: Added a `name` key to all extensions in order to improve Analytics API metadata.
+- Updated dependencies
+ - @backstage/core-components@0.6.1
+ - @backstage/core-plugin-api@0.1.10
+ - @backstage/plugin-catalog-react@0.5.2
+ - @backstage/catalog-model@0.9.4
+
## 0.3.23
### Patch Changes
diff --git a/plugins/sentry/package.json b/plugins/sentry/package.json
index d01db8475c..366a609b06 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.23",
+ "version": "0.3.24",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -32,10 +32,10 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/catalog-model": "^0.9.3",
- "@backstage/core-components": "^0.6.0",
- "@backstage/core-plugin-api": "^0.1.9",
- "@backstage/plugin-catalog-react": "^0.5.1",
+ "@backstage/catalog-model": "^0.9.4",
+ "@backstage/core-components": "^0.6.1",
+ "@backstage/core-plugin-api": "^0.1.10",
+ "@backstage/plugin-catalog-react": "^0.5.2",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -48,10 +48,10 @@
"react-use": "^17.2.4"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
- "@backstage/core-app-api": "^0.1.15",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/core-app-api": "^0.1.16",
"@backstage/dev-utils": "^0.2.11",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/test-utils": "^0.1.18",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.1.8",
diff --git a/plugins/shortcuts/CHANGELOG.md b/plugins/shortcuts/CHANGELOG.md
index 42bad1f6dc..a5a53a45dc 100644
--- a/plugins/shortcuts/CHANGELOG.md
+++ b/plugins/shortcuts/CHANGELOG.md
@@ -1,5 +1,15 @@
# @backstage/plugin-shortcuts
+## 0.1.11
+
+### Patch Changes
+
+- ca0559444c: Avoid usage of `.to*Case()`, preferring `.toLocale*Case('en-US')` instead.
+- 81a41ec249: Added a `name` key to all extensions in order to improve Analytics API metadata.
+- Updated dependencies
+ - @backstage/core-components@0.6.1
+ - @backstage/core-plugin-api@0.1.10
+
## 0.1.10
### Patch Changes
diff --git a/plugins/shortcuts/package.json b/plugins/shortcuts/package.json
index b530881db5..0ae27eec9e 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.1.10",
+ "version": "0.1.11",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -21,8 +21,8 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/core-components": "^0.6.0",
- "@backstage/core-plugin-api": "^0.1.9",
+ "@backstage/core-components": "^0.6.1",
+ "@backstage/core-plugin-api": "^0.1.10",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -37,10 +37,10 @@
"zen-observable": "^0.8.15"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
- "@backstage/core-app-api": "^0.1.15",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/core-app-api": "^0.1.16",
"@backstage/dev-utils": "^0.2.11",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/test-utils": "^0.1.18",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.1.8",
diff --git a/plugins/sonarqube/CHANGELOG.md b/plugins/sonarqube/CHANGELOG.md
index ab72dbefca..917a2ec0e2 100644
--- a/plugins/sonarqube/CHANGELOG.md
+++ b/plugins/sonarqube/CHANGELOG.md
@@ -1,5 +1,17 @@
# @backstage/plugin-sonarqube
+## 0.2.5
+
+### Patch Changes
+
+- ca0559444c: Avoid usage of `.to*Case()`, preferring `.toLocale*Case('en-US')` instead.
+- 81a41ec249: Added a `name` key to all extensions in order to improve Analytics API metadata.
+- Updated dependencies
+ - @backstage/core-components@0.6.1
+ - @backstage/core-plugin-api@0.1.10
+ - @backstage/plugin-catalog-react@0.5.2
+ - @backstage/catalog-model@0.9.4
+
## 0.2.4
### Patch Changes
diff --git a/plugins/sonarqube/package.json b/plugins/sonarqube/package.json
index 77da1da85d..4d835045fa 100644
--- a/plugins/sonarqube/package.json
+++ b/plugins/sonarqube/package.json
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-sonarqube",
"description": "",
- "version": "0.2.4",
+ "version": "0.2.5",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -33,10 +33,10 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/catalog-model": "^0.9.3",
- "@backstage/core-components": "^0.6.0",
- "@backstage/core-plugin-api": "^0.1.9",
- "@backstage/plugin-catalog-react": "^0.5.1",
+ "@backstage/catalog-model": "^0.9.4",
+ "@backstage/core-components": "^0.6.1",
+ "@backstage/core-plugin-api": "^0.1.10",
+ "@backstage/plugin-catalog-react": "^0.5.2",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -49,10 +49,10 @@
"react-use": "^17.2.4"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
- "@backstage/core-app-api": "^0.1.15",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/core-app-api": "^0.1.16",
"@backstage/dev-utils": "^0.2.11",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/test-utils": "^0.1.18",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.1.8",
diff --git a/plugins/splunk-on-call/CHANGELOG.md b/plugins/splunk-on-call/CHANGELOG.md
index 287e9e6c73..f78686838c 100644
--- a/plugins/splunk-on-call/CHANGELOG.md
+++ b/plugins/splunk-on-call/CHANGELOG.md
@@ -1,5 +1,16 @@
# @backstage/plugin-splunk-on-call
+## 0.3.13
+
+### Patch Changes
+
+- 81a41ec249: Added a `name` key to all extensions in order to improve Analytics API metadata.
+- Updated dependencies
+ - @backstage/core-components@0.6.1
+ - @backstage/core-plugin-api@0.1.10
+ - @backstage/plugin-catalog-react@0.5.2
+ - @backstage/catalog-model@0.9.4
+
## 0.3.12
### Patch Changes
diff --git a/plugins/splunk-on-call/package.json b/plugins/splunk-on-call/package.json
index bc5caf3482..7841d99ee1 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.12",
+ "version": "0.3.13",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -31,10 +31,10 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/catalog-model": "^0.9.3",
- "@backstage/core-components": "^0.6.0",
- "@backstage/core-plugin-api": "^0.1.9",
- "@backstage/plugin-catalog-react": "^0.5.1",
+ "@backstage/catalog-model": "^0.9.4",
+ "@backstage/core-components": "^0.6.1",
+ "@backstage/core-plugin-api": "^0.1.10",
+ "@backstage/plugin-catalog-react": "^0.5.2",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -47,10 +47,10 @@
"react-use": "^17.2.4"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
- "@backstage/core-app-api": "^0.1.15",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/core-app-api": "^0.1.16",
"@backstage/dev-utils": "^0.2.11",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/test-utils": "^0.1.18",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.1.8",
diff --git a/plugins/tech-radar/CHANGELOG.md b/plugins/tech-radar/CHANGELOG.md
index e3eef1e93c..b5ab486b79 100644
--- a/plugins/tech-radar/CHANGELOG.md
+++ b/plugins/tech-radar/CHANGELOG.md
@@ -1,5 +1,14 @@
# @backstage/plugin-tech-radar
+## 0.4.10
+
+### Patch Changes
+
+- 81a41ec249: Added a `name` key to all extensions in order to improve Analytics API metadata.
+- Updated dependencies
+ - @backstage/core-components@0.6.1
+ - @backstage/core-plugin-api@0.1.10
+
## 0.4.9
### Patch Changes
diff --git a/plugins/tech-radar/package.json b/plugins/tech-radar/package.json
index c0ae38a072..7ad89495e6 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.4.9",
+ "version": "0.4.10",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -31,8 +31,8 @@
"start": "backstage-cli plugin:serve"
},
"dependencies": {
- "@backstage/core-components": "^0.6.0",
- "@backstage/core-plugin-api": "^0.1.9",
+ "@backstage/core-components": "^0.6.1",
+ "@backstage/core-plugin-api": "^0.1.10",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -45,10 +45,10 @@
"react-use": "^17.2.4"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
- "@backstage/core-app-api": "^0.1.15",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/core-app-api": "^0.1.16",
"@backstage/dev-utils": "^0.2.11",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/test-utils": "^0.1.18",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.1.8",
diff --git a/plugins/techdocs-backend/CHANGELOG.md b/plugins/techdocs-backend/CHANGELOG.md
index e0de2aa5aa..7b88ae0c41 100644
--- a/plugins/techdocs-backend/CHANGELOG.md
+++ b/plugins/techdocs-backend/CHANGELOG.md
@@ -1,5 +1,16 @@
# @backstage/plugin-techdocs-backend
+## 0.10.4
+
+### Patch Changes
+
+- Updated dependencies
+ - @backstage/catalog-model@0.9.4
+ - @backstage/backend-common@0.9.6
+ - @backstage/catalog-client@0.5.0
+ - @backstage/integration@0.6.7
+ - @backstage/techdocs-common@0.10.3
+
## 0.10.3
### Patch Changes
diff --git a/plugins/techdocs-backend/package.json b/plugins/techdocs-backend/package.json
index 35b80eab9c..cac7dcf422 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.10.3",
+ "version": "0.10.4",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -31,14 +31,14 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/backend-common": "^0.9.4",
- "@backstage/catalog-client": "^0.4.0",
- "@backstage/catalog-model": "^0.9.3",
+ "@backstage/backend-common": "^0.9.6",
+ "@backstage/catalog-client": "^0.5.0",
+ "@backstage/catalog-model": "^0.9.4",
"@backstage/config": "^0.1.10",
"@backstage/errors": "^0.1.1",
- "@backstage/integration": "^0.6.5",
+ "@backstage/integration": "^0.6.7",
"@backstage/search-common": "^0.2.0",
- "@backstage/techdocs-common": "^0.10.1",
+ "@backstage/techdocs-common": "^0.10.3",
"@types/express": "^4.17.6",
"cross-fetch": "^3.0.6",
"dockerode": "^3.2.1",
@@ -51,8 +51,8 @@
"winston": "^3.2.1"
},
"devDependencies": {
- "@backstage/cli": "^0.7.13",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/test-utils": "^0.1.18",
"@types/dockerode": "^3.2.1",
"msw": "^0.29.0",
"supertest": "^6.1.3"
diff --git a/plugins/techdocs/CHANGELOG.md b/plugins/techdocs/CHANGELOG.md
index 0c97825543..4eb78f8c26 100644
--- a/plugins/techdocs/CHANGELOG.md
+++ b/plugins/techdocs/CHANGELOG.md
@@ -1,5 +1,19 @@
# @backstage/plugin-techdocs
+## 0.12.1
+
+### Patch Changes
+
+- 81a41ec249: Added a `name` key to all extensions in order to improve Analytics API metadata.
+- Updated dependencies
+ - @backstage/core-components@0.6.1
+ - @backstage/core-plugin-api@0.1.10
+ - @backstage/plugin-catalog@0.7.0
+ - @backstage/plugin-catalog-react@0.5.2
+ - @backstage/catalog-model@0.9.4
+ - @backstage/integration@0.6.7
+ - @backstage/plugin-search@0.4.14
+
## 0.12.0
### Minor Changes
diff --git a/plugins/techdocs/package.json b/plugins/techdocs/package.json
index 6c21cbfcfb..7a61144192 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.12.0",
+ "version": "0.12.1",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -32,16 +32,16 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/catalog-model": "^0.9.3",
+ "@backstage/catalog-model": "^0.9.4",
"@backstage/config": "^0.1.10",
- "@backstage/core-components": "^0.6.0",
- "@backstage/core-plugin-api": "^0.1.9",
+ "@backstage/core-components": "^0.6.1",
+ "@backstage/core-plugin-api": "^0.1.10",
"@backstage/errors": "^0.1.1",
- "@backstage/integration": "^0.6.6",
+ "@backstage/integration": "^0.6.7",
"@backstage/integration-react": "^0.1.11",
- "@backstage/plugin-catalog": "^0.6.17",
- "@backstage/plugin-catalog-react": "^0.5.1",
- "@backstage/plugin-search": "^0.4.13",
+ "@backstage/plugin-catalog": "^0.7.0",
+ "@backstage/plugin-catalog-react": "^0.5.2",
+ "@backstage/plugin-search": "^0.4.14",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -61,10 +61,10 @@
"react-use": "^17.2.4"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
- "@backstage/core-app-api": "^0.1.15",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/core-app-api": "^0.1.16",
"@backstage/dev-utils": "^0.2.11",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/test-utils": "^0.1.18",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/react-hooks": "^7.0.2",
diff --git a/plugins/todo-backend/CHANGELOG.md b/plugins/todo-backend/CHANGELOG.md
index 74af68a523..60fd7a5490 100644
--- a/plugins/todo-backend/CHANGELOG.md
+++ b/plugins/todo-backend/CHANGELOG.md
@@ -1,5 +1,15 @@
# @backstage/plugin-todo-backend
+## 0.1.13
+
+### Patch Changes
+
+- Updated dependencies
+ - @backstage/catalog-model@0.9.4
+ - @backstage/backend-common@0.9.6
+ - @backstage/catalog-client@0.5.0
+ - @backstage/integration@0.6.7
+
## 0.1.12
### Patch Changes
diff --git a/plugins/todo-backend/package.json b/plugins/todo-backend/package.json
index b09562c894..2e945487a4 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.12",
+ "version": "0.1.13",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -25,12 +25,12 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/backend-common": "^0.9.4",
- "@backstage/catalog-client": "^0.4.0",
- "@backstage/catalog-model": "^0.9.3",
+ "@backstage/backend-common": "^0.9.6",
+ "@backstage/catalog-client": "^0.5.0",
+ "@backstage/catalog-model": "^0.9.4",
"@backstage/config": "^0.1.10",
"@backstage/errors": "^0.1.1",
- "@backstage/integration": "^0.6.5",
+ "@backstage/integration": "^0.6.7",
"@types/express": "^4.17.6",
"cross-fetch": "^3.0.6",
"express": "^4.17.1",
@@ -40,7 +40,7 @@
"yn": "^4.0.0"
},
"devDependencies": {
- "@backstage/cli": "^0.7.13",
+ "@backstage/cli": "^0.7.15",
"@types/supertest": "^2.0.8",
"msw": "^0.29.0",
"supertest": "^6.1.3"
diff --git a/plugins/todo/CHANGELOG.md b/plugins/todo/CHANGELOG.md
index bc9234c3da..880df42ca1 100644
--- a/plugins/todo/CHANGELOG.md
+++ b/plugins/todo/CHANGELOG.md
@@ -1,5 +1,16 @@
# @backstage/plugin-todo
+## 0.1.13
+
+### Patch Changes
+
+- 81a41ec249: Added a `name` key to all extensions in order to improve Analytics API metadata.
+- Updated dependencies
+ - @backstage/core-components@0.6.1
+ - @backstage/core-plugin-api@0.1.10
+ - @backstage/plugin-catalog-react@0.5.2
+ - @backstage/catalog-model@0.9.4
+
## 0.1.12
### Patch Changes
diff --git a/plugins/todo/package.json b/plugins/todo/package.json
index 52175c0809..03a955fda3 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.1.12",
+ "version": "0.1.13",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -27,11 +27,11 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/catalog-model": "^0.9.3",
- "@backstage/core-components": "^0.6.0",
- "@backstage/core-plugin-api": "^0.1.9",
+ "@backstage/catalog-model": "^0.9.4",
+ "@backstage/core-components": "^0.6.1",
+ "@backstage/core-plugin-api": "^0.1.10",
"@backstage/errors": "^0.1.2",
- "@backstage/plugin-catalog-react": "^0.5.1",
+ "@backstage/plugin-catalog-react": "^0.5.2",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -41,10 +41,10 @@
"react-use": "^17.2.4"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
- "@backstage/core-app-api": "^0.1.15",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/core-app-api": "^0.1.16",
"@backstage/dev-utils": "^0.2.11",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/test-utils": "^0.1.18",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.1.8",
diff --git a/plugins/user-settings/CHANGELOG.md b/plugins/user-settings/CHANGELOG.md
index 0014212f86..b16e327f02 100644
--- a/plugins/user-settings/CHANGELOG.md
+++ b/plugins/user-settings/CHANGELOG.md
@@ -1,5 +1,21 @@
# @backstage/plugin-user-settings
+## 0.3.8
+
+### Patch Changes
+
+- 4c3eea7788: Bitbucket Cloud authentication - based on the existing GitHub authentication + changes around BB apis and updated scope.
+
+ - BitbucketAuth added to core-app-api.
+ - Bitbucket provider added to plugin-auth-backend.
+ - Cosmetic entry for Bitbucket connection in user-settings Authentication Providers tab.
+
+- ca0559444c: Avoid usage of `.to*Case()`, preferring `.toLocale*Case('en-US')` instead.
+- 81a41ec249: Added a `name` key to all extensions in order to improve Analytics API metadata.
+- Updated dependencies
+ - @backstage/core-components@0.6.1
+ - @backstage/core-plugin-api@0.1.10
+
## 0.3.7
### Patch Changes
diff --git a/plugins/user-settings/package.json b/plugins/user-settings/package.json
index 818b5622e3..c8f105080a 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.3.7",
+ "version": "0.3.8",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -31,8 +31,8 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/core-components": "^0.6.0",
- "@backstage/core-plugin-api": "^0.1.9",
+ "@backstage/core-components": "^0.6.1",
+ "@backstage/core-plugin-api": "^0.1.10",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -43,11 +43,11 @@
"react-use": "^17.2.4"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
- "@backstage/core-app-api": "^0.1.15",
- "@backstage/core-plugin-api": "^0.1.9",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/core-app-api": "^0.1.16",
+ "@backstage/core-plugin-api": "^0.1.10",
"@backstage/dev-utils": "^0.2.11",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/test-utils": "^0.1.18",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.1.8",
diff --git a/plugins/welcome/CHANGELOG.md b/plugins/welcome/CHANGELOG.md
index a1c03f04f7..d6952c886a 100644
--- a/plugins/welcome/CHANGELOG.md
+++ b/plugins/welcome/CHANGELOG.md
@@ -1,5 +1,14 @@
# @backstage/plugin-welcome
+## 0.3.7
+
+### Patch Changes
+
+- 81a41ec249: Added a `name` key to all extensions in order to improve Analytics API metadata.
+- Updated dependencies
+ - @backstage/core-components@0.6.1
+ - @backstage/core-plugin-api@0.1.10
+
## 0.3.6
### Patch Changes
diff --git a/plugins/welcome/package.json b/plugins/welcome/package.json
index 9273b56ed0..e0f6684dbc 100644
--- a/plugins/welcome/package.json
+++ b/plugins/welcome/package.json
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-welcome",
"description": "An old Backstage plugin that provides a welcome page",
- "version": "0.3.6",
+ "version": "0.3.7",
"main": "src/index.ts",
"types": "src/index.ts",
"private": false,
@@ -31,8 +31,8 @@
"start": "backstage-cli plugin:serve"
},
"dependencies": {
- "@backstage/core-components": "^0.6.0",
- "@backstage/core-plugin-api": "^0.1.9",
+ "@backstage/core-components": "^0.6.1",
+ "@backstage/core-plugin-api": "^0.1.10",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -43,10 +43,10 @@
"react-use": "^17.2.4"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
- "@backstage/core-app-api": "^0.1.15",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/core-app-api": "^0.1.16",
"@backstage/dev-utils": "^0.2.11",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/test-utils": "^0.1.18",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.1.8",
diff --git a/plugins/xcmetrics/CHANGELOG.md b/plugins/xcmetrics/CHANGELOG.md
index 4fa9ea88e6..ce8dae1168 100644
--- a/plugins/xcmetrics/CHANGELOG.md
+++ b/plugins/xcmetrics/CHANGELOG.md
@@ -1,5 +1,15 @@
# @backstage/plugin-xcmetrics
+## 0.2.8
+
+### Patch Changes
+
+- ca0559444c: Avoid usage of `.to*Case()`, preferring `.toLocale*Case('en-US')` instead.
+- 81a41ec249: Added a `name` key to all extensions in order to improve Analytics API metadata.
+- Updated dependencies
+ - @backstage/core-components@0.6.1
+ - @backstage/core-plugin-api@0.1.10
+
## 0.2.7
### Patch Changes
diff --git a/plugins/xcmetrics/package.json b/plugins/xcmetrics/package.json
index 2053aa0e45..e6ef2c2631 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.7",
+ "version": "0.2.8",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -21,8 +21,8 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/core-components": "^0.6.0",
- "@backstage/core-plugin-api": "^0.1.9",
+ "@backstage/core-components": "^0.6.1",
+ "@backstage/core-plugin-api": "^0.1.10",
"@backstage/errors": "^0.1.1",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
@@ -36,10 +36,10 @@
"recharts": "^1.8.5"
},
"devDependencies": {
- "@backstage/cli": "^0.7.14",
- "@backstage/core-app-api": "^0.1.15",
+ "@backstage/cli": "^0.7.15",
+ "@backstage/core-app-api": "^0.1.16",
"@backstage/dev-utils": "^0.2.11",
- "@backstage/test-utils": "^0.1.17",
+ "@backstage/test-utils": "^0.1.18",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.1.8",