diff --git a/.changeset/cuddly-buses-complain.md b/.changeset/cuddly-buses-complain.md
deleted file mode 100644
index 4780734b83..0000000000
--- a/.changeset/cuddly-buses-complain.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@backstage/plugin-org': patch
----
-
-Correctly route to namespaced group members
diff --git a/.changeset/curvy-keys-leave.md b/.changeset/curvy-keys-leave.md
deleted file mode 100644
index a48cc15fb8..0000000000
--- a/.changeset/curvy-keys-leave.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@backstage/plugin-kafka-backend': patch
----
-
-Add support for SASL authentication & SSL boolean config.
diff --git a/.changeset/flat-meals-behave.md b/.changeset/flat-meals-behave.md
deleted file mode 100644
index cb2af69de6..0000000000
--- a/.changeset/flat-meals-behave.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@backstage/plugin-org': patch
----
-
-Correctly include group members via matching namespace relation
diff --git a/.changeset/flat-toes-enjoy.md b/.changeset/flat-toes-enjoy.md
deleted file mode 100644
index 8b1ee47cfc..0000000000
--- a/.changeset/flat-toes-enjoy.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@backstage/plugin-catalog-backend': minor
----
-
-DELETE on an entity now just deletes the entity, rather than removing all related entities and the location
diff --git a/.changeset/gorgeous-meals-tie.md b/.changeset/gorgeous-meals-tie.md
deleted file mode 100644
index 245d6566e3..0000000000
--- a/.changeset/gorgeous-meals-tie.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@backstage/plugin-kubernetes-backend': patch
----
-
-updated entity name to be set through annotations or fallback
diff --git a/.changeset/healthy-panthers-own.md b/.changeset/healthy-panthers-own.md
deleted file mode 100644
index 3e6c28a1f9..0000000000
--- a/.changeset/healthy-panthers-own.md
+++ /dev/null
@@ -1,6 +0,0 @@
----
-'@backstage/plugin-scaffolder': patch
-'@backstage/plugin-scaffolder-backend': patch
----
-
-Add OwnerPicker component to scaffolder for specifying a component's owner from users and groups in the catalog.
diff --git a/.changeset/hungry-jars-knock.md b/.changeset/hungry-jars-knock.md
deleted file mode 100644
index 733a2ccd17..0000000000
--- a/.changeset/hungry-jars-knock.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@backstage/plugin-auth-backend': patch
----
-
-Fixes timezone bug for auth signing keys
diff --git a/.changeset/light-insects-sort.md b/.changeset/light-insects-sort.md
deleted file mode 100644
index 52f0dd8757..0000000000
--- a/.changeset/light-insects-sort.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@backstage/plugin-api-docs': patch
----
-
-Include the GraphiQL stylesheet
diff --git a/.changeset/little-doors-smell.md b/.changeset/little-doors-smell.md
deleted file mode 100644
index 970854d3f3..0000000000
--- a/.changeset/little-doors-smell.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@backstage/plugin-github-actions': patch
----
-
-Fixed GitHub workflows not appearing when the originating repository for a workflow run was deleted.
diff --git a/.changeset/old-hounds-doubt.md b/.changeset/old-hounds-doubt.md
deleted file mode 100644
index 5076c1f1b6..0000000000
--- a/.changeset/old-hounds-doubt.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@backstage/plugin-catalog-backend': patch
----
-
-Make sure that Group `spec.members` is taken into account when filling out an org hierarchy
diff --git a/.changeset/perfect-coats-train.md b/.changeset/perfect-coats-train.md
deleted file mode 100644
index 9357f51370..0000000000
--- a/.changeset/perfect-coats-train.md
+++ /dev/null
@@ -1,26 +0,0 @@
----
-'@backstage/plugin-catalog': patch
----
-
-Adds a new `EntitySystemDiagramCard` component to visually map all elements in a system.
-
-To use this new component with the legacy composability pattern, you can add a new tab with the component on to the System Entity Page in your `packages/app/src/components/catalog/EntityPage.tsx` file.
-
-For example,
-
-```diff
- const SystemEntityPage = ({ entity }: { entity: Entity }) => (
-
- }
- />
-+ }
-+ />
-
- );
-```
diff --git a/.changeset/pink-sloths-nail.md b/.changeset/pink-sloths-nail.md
deleted file mode 100644
index a59bfb0990..0000000000
--- a/.changeset/pink-sloths-nail.md
+++ /dev/null
@@ -1,6 +0,0 @@
----
-'@backstage/plugin-api-docs': patch
----
-
-Export `apiDocsConfigRef` from `api-docs` plugin to allow extending it with
-custom API rendering.
diff --git a/.changeset/plenty-years-deny.md b/.changeset/plenty-years-deny.md
deleted file mode 100644
index ccd2649978..0000000000
--- a/.changeset/plenty-years-deny.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@backstage/plugin-techdocs': patch
----
-
-Remove the `@backstage/techdocs-common` dependency to not pull in backend config schemas in the frontend.
diff --git a/.changeset/rich-birds-reply.md b/.changeset/rich-birds-reply.md
deleted file mode 100644
index 6e4755ca86..0000000000
--- a/.changeset/rich-birds-reply.md
+++ /dev/null
@@ -1,23 +0,0 @@
----
-'@backstage/plugin-catalog-backend': minor
----
-
-Add `readonly` mode to catalog backend
-
-This change adds a `catalog.readonly` field in `app-config.yaml` that can be used to configure the catalog in readonly mode which effectively disables the possibility of adding new components to the catalog after startup.
-
-When in `readonly` mode only locations configured in `catalog.locations` are loaded and served.
-By default `readonly` is disabled which represents the current functionality where locations can be added at run-time.
-
-This change requires the config API in the router which requires a change to `createRouter`.
-
-```diff
- return await createRouter({
- entitiesCatalog,
- locationsCatalog,
- higherOrderOperation,
- locationAnalyzer,
- logger: env.logger,
-+ config: env.config,
- });
-```
diff --git a/.changeset/selfish-items-dream.md b/.changeset/selfish-items-dream.md
deleted file mode 100644
index 02b88497ad..0000000000
--- a/.changeset/selfish-items-dream.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@backstage/plugin-org': patch
----
-
-Fixed MembersList showing members from a previous group when navigating to a new group
diff --git a/.changeset/sharp-flowers-prove.md b/.changeset/sharp-flowers-prove.md
deleted file mode 100644
index 299bb3b022..0000000000
--- a/.changeset/sharp-flowers-prove.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@backstage/plugin-kubernetes-backend': patch
----
-
-Load credentials properly for AWS Kubernetes Auth Translator
diff --git a/.changeset/silver-starfishes-refuse.md b/.changeset/silver-starfishes-refuse.md
deleted file mode 100644
index 1260af1518..0000000000
--- a/.changeset/silver-starfishes-refuse.md
+++ /dev/null
@@ -1,12 +0,0 @@
----
-'@backstage/catalog-client': patch
-'@backstage/plugin-auth-backend': patch
-'@backstage/plugin-catalog-import': patch
-'@backstage/plugin-catalog': patch
-'@backstage/plugin-explore': patch
-'@backstage/plugin-register-component': patch
-'@backstage/plugin-scaffolder': patch
-'@backstage/plugin-todo-backend': patch
----
-
-Added the `getOriginLocationByEntity` and `removeLocationById` methods to the catalog client
diff --git a/.changeset/sixty-rules-smell.md b/.changeset/sixty-rules-smell.md
deleted file mode 100644
index 7def15c06a..0000000000
--- a/.changeset/sixty-rules-smell.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@backstage/plugin-org': patch
----
-
-Some cleanup in how types and components are used; leverage `EntityRefLinks`
diff --git a/.changeset/soft-cups-pull.md b/.changeset/soft-cups-pull.md
deleted file mode 100644
index 5461b9da0b..0000000000
--- a/.changeset/soft-cups-pull.md
+++ /dev/null
@@ -1,6 +0,0 @@
----
-'@backstage/plugin-api-docs': patch
-'@backstage/plugin-catalog-react': patch
----
-
-Make it possible to specify entity type to `useEntity` when it's known
diff --git a/.changeset/sour-boxes-travel.md b/.changeset/sour-boxes-travel.md
deleted file mode 100644
index 319bcd24c2..0000000000
--- a/.changeset/sour-boxes-travel.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@backstage/plugin-catalog': patch
----
-
-unify how the owner and lifecycle header labels are made
diff --git a/.changeset/stupid-moles-joke.md b/.changeset/stupid-moles-joke.md
deleted file mode 100644
index 7dee230fa7..0000000000
--- a/.changeset/stupid-moles-joke.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@backstage/catalog-client': patch
----
-
-Avoid using Headers as it is not supported in the backend
diff --git a/.changeset/swift-lobsters-learn.md b/.changeset/swift-lobsters-learn.md
deleted file mode 100644
index afdc4e1146..0000000000
--- a/.changeset/swift-lobsters-learn.md
+++ /dev/null
@@ -1,8 +0,0 @@
----
-'@backstage/catalog-model': patch
-'@backstage/plugin-catalog-backend': patch
----
-
-Added support for the "members" field of the Group entity, allowing specification of
-direct members from the Group side of the relationship. Added support to the
-`BuiltinKindsEntityProcessor` to generate the appropriate relationships.
diff --git a/.changeset/tender-steaks-roll.md b/.changeset/tender-steaks-roll.md
deleted file mode 100644
index b29f86f991..0000000000
--- a/.changeset/tender-steaks-roll.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@backstage/backend-common': patch
----
-
-Export `ReadTreeResponseFile` and `SearchResponseFile`.
diff --git a/.changeset/thirty-pants-eat.md b/.changeset/thirty-pants-eat.md
deleted file mode 100644
index 6041d09b2f..0000000000
--- a/.changeset/thirty-pants-eat.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@backstage/plugin-catalog-backend': patch
----
-
-Fix mapping between users and groups for Microsoft Active Directories when using the LdapOrgProcessor
diff --git a/.changeset/tricky-emus-wave.md b/.changeset/tricky-emus-wave.md
deleted file mode 100644
index 69512381f3..0000000000
--- a/.changeset/tricky-emus-wave.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@backstage/plugin-catalog-backend': patch
----
-
-Add Bitbucket Server discovery processor.
diff --git a/.changeset/tricky-lions-press.md b/.changeset/tricky-lions-press.md
deleted file mode 100644
index f648b95ac8..0000000000
--- a/.changeset/tricky-lions-press.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@backstage/plugin-user-settings': patch
----
-
-Adds Auth0 to the default Authentication Providers settings page
diff --git a/.changeset/warm-keys-yell.md b/.changeset/warm-keys-yell.md
deleted file mode 100644
index b50b775de1..0000000000
--- a/.changeset/warm-keys-yell.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@backstage/plugin-scaffolder-backend': patch
----
-
-Fix a bug with GitHub Apps support not parsing the URL correctly
diff --git a/.changeset/young-humans-destroy.md b/.changeset/young-humans-destroy.md
deleted file mode 100644
index 70f9add72c..0000000000
--- a/.changeset/young-humans-destroy.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@backstage/plugin-catalog': patch
----
-
-Improve the unregister dialog, to support both unregistration and plain deletion
diff --git a/packages/backend-common/CHANGELOG.md b/packages/backend-common/CHANGELOG.md
index b1009c8732..dfe057da53 100644
--- a/packages/backend-common/CHANGELOG.md
+++ b/packages/backend-common/CHANGELOG.md
@@ -1,5 +1,11 @@
# @backstage/backend-common
+## 0.6.1
+
+### Patch Changes
+
+- 37e3a69f5: Export `ReadTreeResponseFile` and `SearchResponseFile`.
+
## 0.6.0
### Minor Changes
diff --git a/packages/backend-common/package.json b/packages/backend-common/package.json
index 5900a31c11..b860336d31 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.6.0",
+ "version": "0.6.1",
"main": "src/index.ts",
"types": "src/index.ts",
"private": false,
diff --git a/packages/backend/CHANGELOG.md b/packages/backend/CHANGELOG.md
index 8145d45625..6585ea2723 100644
--- a/packages/backend/CHANGELOG.md
+++ b/packages/backend/CHANGELOG.md
@@ -1,5 +1,34 @@
# example-backend
+## 0.2.22
+
+### Patch Changes
+
+- Updated dependencies [f03a52f5b]
+- Updated dependencies [676ede643]
+- Updated dependencies [1ac6a5233]
+- Updated dependencies [2ab6f3ff0]
+- Updated dependencies [0d55dcc74]
+- Updated dependencies [29e1789e1]
+- Updated dependencies [f1b2c1d2c]
+- Updated dependencies [60e463c8d]
+- Updated dependencies [676ede643]
+- Updated dependencies [b196a4569]
+- Updated dependencies [8488a1a96]
+- Updated dependencies [37e3a69f5]
+- Updated dependencies [6b2d54fd6]
+- Updated dependencies [44590510d]
+- Updated dependencies [164cc4c53]
+ - @backstage/plugin-kafka-backend@0.2.3
+ - @backstage/plugin-catalog-backend@0.7.0
+ - @backstage/plugin-kubernetes-backend@0.3.3
+ - @backstage/plugin-scaffolder-backend@0.9.4
+ - @backstage/plugin-auth-backend@0.3.7
+ - @backstage/catalog-client@0.3.9
+ - @backstage/plugin-todo-backend@0.1.3
+ - @backstage/catalog-model@0.7.5
+ - @backstage/backend-common@0.6.1
+
## 0.2.21
### Patch Changes
diff --git a/packages/backend/package.json b/packages/backend/package.json
index d058e7fbb3..40e5a1cd2f 100644
--- a/packages/backend/package.json
+++ b/packages/backend/package.json
@@ -1,6 +1,6 @@
{
"name": "example-backend",
- "version": "0.2.21",
+ "version": "0.2.22",
"main": "dist/index.cjs.js",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -27,24 +27,24 @@
"migrate:create": "knex migrate:make -x ts"
},
"dependencies": {
- "@backstage/backend-common": "^0.6.0",
- "@backstage/catalog-client": "^0.3.8",
- "@backstage/catalog-model": "^0.7.4",
+ "@backstage/backend-common": "^0.6.1",
+ "@backstage/catalog-client": "^0.3.9",
+ "@backstage/catalog-model": "^0.7.5",
"@backstage/config": "^0.1.4",
"@backstage/plugin-app-backend": "^0.3.10",
- "@backstage/plugin-auth-backend": "^0.3.6",
+ "@backstage/plugin-auth-backend": "^0.3.7",
"@backstage/plugin-badges-backend": "^0.1.1",
- "@backstage/plugin-catalog-backend": "^0.6.7",
+ "@backstage/plugin-catalog-backend": "^0.7.0",
"@backstage/plugin-graphql-backend": "^0.1.6",
- "@backstage/plugin-kubernetes-backend": "^0.3.2",
- "@backstage/plugin-kafka-backend": "^0.2.2",
+ "@backstage/plugin-kubernetes-backend": "^0.3.3",
+ "@backstage/plugin-kafka-backend": "^0.2.3",
"@backstage/plugin-proxy-backend": "^0.2.6",
"@backstage/plugin-rollbar-backend": "^0.1.8",
- "@backstage/plugin-scaffolder-backend": "^0.9.3",
+ "@backstage/plugin-scaffolder-backend": "^0.9.4",
"@backstage/plugin-search-backend": "^0.1.2",
"@backstage/plugin-search-backend-node": "^0.1.2",
"@backstage/plugin-techdocs-backend": "^0.7.0",
- "@backstage/plugin-todo-backend": "^0.1.2",
+ "@backstage/plugin-todo-backend": "^0.1.3",
"@gitbeaker/node": "^28.0.2",
"@octokit/rest": "^18.0.12",
"azure-devops-node-api": "^10.1.1",
diff --git a/packages/catalog-client/CHANGELOG.md b/packages/catalog-client/CHANGELOG.md
index 746f107ec6..8364560625 100644
--- a/packages/catalog-client/CHANGELOG.md
+++ b/packages/catalog-client/CHANGELOG.md
@@ -1,5 +1,14 @@
# @backstage/catalog-client
+## 0.3.9
+
+### Patch Changes
+
+- 676ede643: Added the `getOriginLocationByEntity` and `removeLocationById` methods to the catalog client
+- b196a4569: Avoid using Headers as it is not supported in the backend
+- Updated dependencies [8488a1a96]
+ - @backstage/catalog-model@0.7.5
+
## 0.3.8
### Patch Changes
diff --git a/packages/catalog-client/package.json b/packages/catalog-client/package.json
index 2d664fc612..ea61f3eded 100644
--- a/packages/catalog-client/package.json
+++ b/packages/catalog-client/package.json
@@ -1,6 +1,6 @@
{
"name": "@backstage/catalog-client",
- "version": "0.3.8",
+ "version": "0.3.9",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -29,7 +29,7 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/catalog-model": "^0.7.4",
+ "@backstage/catalog-model": "^0.7.5",
"@backstage/config": "^0.1.4",
"@backstage/errors": "^0.1.1",
"cross-fetch": "^3.0.6"
diff --git a/packages/catalog-model/CHANGELOG.md b/packages/catalog-model/CHANGELOG.md
index 5539f915f4..0ad5d6993f 100644
--- a/packages/catalog-model/CHANGELOG.md
+++ b/packages/catalog-model/CHANGELOG.md
@@ -1,5 +1,13 @@
# @backstage/catalog-model
+## 0.7.5
+
+### Patch Changes
+
+- 8488a1a96: Added support for the "members" field of the Group entity, allowing specification of
+ direct members from the Group side of the relationship. Added support to the
+ `BuiltinKindsEntityProcessor` to generate the appropriate relationships.
+
## 0.7.4
### Patch Changes
diff --git a/packages/catalog-model/package.json b/packages/catalog-model/package.json
index 7848844527..1e5239cc23 100644
--- a/packages/catalog-model/package.json
+++ b/packages/catalog-model/package.json
@@ -1,6 +1,6 @@
{
"name": "@backstage/catalog-model",
- "version": "0.7.4",
+ "version": "0.7.5",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
diff --git a/packages/create-app/CHANGELOG.md b/packages/create-app/CHANGELOG.md
index d2fe7a4df3..8dd4a5ec70 100644
--- a/packages/create-app/CHANGELOG.md
+++ b/packages/create-app/CHANGELOG.md
@@ -1,5 +1,45 @@
# @backstage/create-app
+## 1.0.0
+
+### Patch Changes
+
+- Updated dependencies [676ede643]
+- Updated dependencies [2ab6f3ff0]
+- Updated dependencies [0d55dcc74]
+- Updated dependencies [ee5529268]
+- Updated dependencies [2c29611a0]
+- Updated dependencies [29e1789e1]
+- Updated dependencies [aa58c01e2]
+- Updated dependencies [60bddefce]
+- Updated dependencies [bebd1c4fe]
+- Updated dependencies [f1b2c1d2c]
+- Updated dependencies [676ede643]
+- Updated dependencies [9f48b548c]
+- Updated dependencies [8bee6a131]
+- Updated dependencies [b196a4569]
+- Updated dependencies [8488a1a96]
+- Updated dependencies [37e3a69f5]
+- Updated dependencies [6b2d54fd6]
+- Updated dependencies [44590510d]
+- Updated dependencies [dd7fa21e2]
+- Updated dependencies [164cc4c53]
+- Updated dependencies [676ede643]
+ - @backstage/plugin-catalog-backend@0.7.0
+ - @backstage/plugin-scaffolder@0.8.1
+ - @backstage/plugin-scaffolder-backend@0.9.4
+ - @backstage/plugin-auth-backend@0.3.7
+ - @backstage/plugin-api-docs@0.4.10
+ - @backstage/plugin-github-actions@0.4.3
+ - @backstage/plugin-catalog@0.5.2
+ - @backstage/plugin-techdocs@0.7.1
+ - @backstage/catalog-client@0.3.9
+ - @backstage/plugin-catalog-import@0.5.1
+ - @backstage/plugin-explore@0.3.3
+ - @backstage/catalog-model@0.7.5
+ - @backstage/backend-common@0.6.1
+ - @backstage/plugin-user-settings@0.2.9
+
## 0.3.15
### Patch Changes
diff --git a/packages/create-app/package.json b/packages/create-app/package.json
index 8f293c52c0..2b30eafa2b 100644
--- a/packages/create-app/package.json
+++ b/packages/create-app/package.json
@@ -1,7 +1,7 @@
{
"name": "@backstage/create-app",
"description": "Create app package for Backstage",
- "version": "0.3.15",
+ "version": "1.0.0",
"private": false,
"publishConfig": {
"access": "public"
diff --git a/plugins/api-docs/CHANGELOG.md b/plugins/api-docs/CHANGELOG.md
index c70db48b7e..14247fcea5 100644
--- a/plugins/api-docs/CHANGELOG.md
+++ b/plugins/api-docs/CHANGELOG.md
@@ -1,5 +1,18 @@
# @backstage/plugin-api-docs
+## 0.4.10
+
+### Patch Changes
+
+- ee5529268: Include the GraphiQL stylesheet
+- 60bddefce: Export `apiDocsConfigRef` from `api-docs` plugin to allow extending it with
+ custom API rendering.
+- 9f48b548c: Make it possible to specify entity type to `useEntity` when it's known
+- Updated dependencies [9f48b548c]
+- Updated dependencies [8488a1a96]
+ - @backstage/plugin-catalog-react@0.1.4
+ - @backstage/catalog-model@0.7.5
+
## 0.4.9
### Patch Changes
diff --git a/plugins/api-docs/package.json b/plugins/api-docs/package.json
index b585c0f878..7f34627f6b 100644
--- a/plugins/api-docs/package.json
+++ b/plugins/api-docs/package.json
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-api-docs",
- "version": "0.4.9",
+ "version": "0.4.10",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -30,9 +30,9 @@
},
"dependencies": {
"@asyncapi/react-component": "^0.19.2",
- "@backstage/catalog-model": "^0.7.3",
+ "@backstage/catalog-model": "^0.7.5",
"@backstage/core": "^0.7.3",
- "@backstage/plugin-catalog-react": "^0.1.2",
+ "@backstage/plugin-catalog-react": "^0.1.4",
"@backstage/theme": "^0.2.5",
"@material-icons/font": "^1.0.2",
"@material-ui/core": "^4.11.0",
diff --git a/plugins/auth-backend/CHANGELOG.md b/plugins/auth-backend/CHANGELOG.md
index 71357ca81c..bb2c44f7ff 100644
--- a/plugins/auth-backend/CHANGELOG.md
+++ b/plugins/auth-backend/CHANGELOG.md
@@ -1,5 +1,19 @@
# @backstage/plugin-auth-backend
+## 0.3.7
+
+### Patch Changes
+
+- 0d55dcc74: Fixes timezone bug for auth signing keys
+- 676ede643: Added the `getOriginLocationByEntity` and `removeLocationById` methods to the catalog client
+- Updated dependencies [676ede643]
+- Updated dependencies [b196a4569]
+- Updated dependencies [8488a1a96]
+- Updated dependencies [37e3a69f5]
+ - @backstage/catalog-client@0.3.9
+ - @backstage/catalog-model@0.7.5
+ - @backstage/backend-common@0.6.1
+
## 0.3.6
### Patch Changes
diff --git a/plugins/auth-backend/package.json b/plugins/auth-backend/package.json
index d8ad045949..183798c9e1 100644
--- a/plugins/auth-backend/package.json
+++ b/plugins/auth-backend/package.json
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-auth-backend",
- "version": "0.3.6",
+ "version": "0.3.7",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -29,9 +29,9 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/backend-common": "^0.6.0",
- "@backstage/catalog-client": "^0.3.8",
- "@backstage/catalog-model": "^0.7.4",
+ "@backstage/backend-common": "^0.6.1",
+ "@backstage/catalog-client": "^0.3.9",
+ "@backstage/catalog-model": "^0.7.5",
"@backstage/config": "^0.1.4",
"@backstage/errors": "^0.1.1",
"@backstage/test-utils": "^0.1.9",
diff --git a/plugins/catalog-backend/CHANGELOG.md b/plugins/catalog-backend/CHANGELOG.md
index 28b7b10359..058f75f39a 100644
--- a/plugins/catalog-backend/CHANGELOG.md
+++ b/plugins/catalog-backend/CHANGELOG.md
@@ -1,5 +1,43 @@
# @backstage/plugin-catalog-backend
+## 0.7.0
+
+### Minor Changes
+
+- 676ede643: DELETE on an entity now just deletes the entity, rather than removing all related entities and the location
+- f1b2c1d2c: Add `readonly` mode to catalog backend
+
+ This change adds a `catalog.readonly` field in `app-config.yaml` that can be used to configure the catalog in readonly mode which effectively disables the possibility of adding new components to the catalog after startup.
+
+ When in `readonly` mode only locations configured in `catalog.locations` are loaded and served.
+ By default `readonly` is disabled which represents the current functionality where locations can be added at run-time.
+
+ This change requires the config API in the router which requires a change to `createRouter`.
+
+ ```diff
+ return await createRouter({
+ entitiesCatalog,
+ locationsCatalog,
+ higherOrderOperation,
+ locationAnalyzer,
+ logger: env.logger,
+ + config: env.config,
+ });
+ ```
+
+### Patch Changes
+
+- 29e1789e1: Make sure that Group `spec.members` is taken into account when filling out an org hierarchy
+- 8488a1a96: Added support for the "members" field of the Group entity, allowing specification of
+ direct members from the Group side of the relationship. Added support to the
+ `BuiltinKindsEntityProcessor` to generate the appropriate relationships.
+- 6b2d54fd6: Fix mapping between users and groups for Microsoft Active Directories when using the LdapOrgProcessor
+- 44590510d: Add Bitbucket Server discovery processor.
+- Updated dependencies [8488a1a96]
+- Updated dependencies [37e3a69f5]
+ - @backstage/catalog-model@0.7.5
+ - @backstage/backend-common@0.6.1
+
## 0.6.7
### Patch Changes
diff --git a/plugins/catalog-backend/package.json b/plugins/catalog-backend/package.json
index a969ff96c1..531caa9ea5 100644
--- a/plugins/catalog-backend/package.json
+++ b/plugins/catalog-backend/package.json
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-catalog-backend",
- "version": "0.6.7",
+ "version": "0.7.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -30,8 +30,8 @@
},
"dependencies": {
"@azure/msal-node": "^1.0.0-beta.3",
- "@backstage/backend-common": "^0.6.0",
- "@backstage/catalog-model": "^0.7.4",
+ "@backstage/backend-common": "^0.6.1",
+ "@backstage/catalog-model": "^0.7.5",
"@backstage/config": "^0.1.4",
"@backstage/errors": "^0.1.1",
"@backstage/integration": "^0.5.1",
diff --git a/plugins/catalog-import/CHANGELOG.md b/plugins/catalog-import/CHANGELOG.md
index ea158b03dc..7b5cee247f 100644
--- a/plugins/catalog-import/CHANGELOG.md
+++ b/plugins/catalog-import/CHANGELOG.md
@@ -1,5 +1,18 @@
# @backstage/plugin-catalog-import
+## 0.5.1
+
+### Patch Changes
+
+- 676ede643: Added the `getOriginLocationByEntity` and `removeLocationById` methods to the catalog client
+- Updated dependencies [676ede643]
+- Updated dependencies [9f48b548c]
+- Updated dependencies [b196a4569]
+- Updated dependencies [8488a1a96]
+ - @backstage/catalog-client@0.3.9
+ - @backstage/plugin-catalog-react@0.1.4
+ - @backstage/catalog-model@0.7.5
+
## 0.5.0
### Minor Changes
diff --git a/plugins/catalog-import/package.json b/plugins/catalog-import/package.json
index 044483e2ba..e98bdfdb97 100644
--- a/plugins/catalog-import/package.json
+++ b/plugins/catalog-import/package.json
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-catalog-import",
- "version": "0.5.0",
+ "version": "0.5.1",
"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.7.3",
- "@backstage/catalog-client": "^0.3.8",
+ "@backstage/catalog-model": "^0.7.5",
+ "@backstage/catalog-client": "^0.3.9",
"@backstage/core": "^0.7.3",
"@backstage/integration": "^0.5.0",
"@backstage/integration-react": "^0.1.1",
- "@backstage/plugin-catalog-react": "^0.1.2",
+ "@backstage/plugin-catalog-react": "^0.1.4",
"@backstage/theme": "^0.2.5",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
diff --git a/plugins/catalog-react/CHANGELOG.md b/plugins/catalog-react/CHANGELOG.md
index 8be23efe07..122647a67f 100644
--- a/plugins/catalog-react/CHANGELOG.md
+++ b/plugins/catalog-react/CHANGELOG.md
@@ -1,5 +1,16 @@
# @backstage/plugin-catalog-react
+## 0.1.4
+
+### Patch Changes
+
+- 9f48b548c: Make it possible to specify entity type to `useEntity` when it's known
+- Updated dependencies [676ede643]
+- Updated dependencies [b196a4569]
+- Updated dependencies [8488a1a96]
+ - @backstage/catalog-client@0.3.9
+ - @backstage/catalog-model@0.7.5
+
## 0.1.3
### Patch Changes
diff --git a/plugins/catalog-react/package.json b/plugins/catalog-react/package.json
index fe9e3c17f4..91201a49a1 100644
--- a/plugins/catalog-react/package.json
+++ b/plugins/catalog-react/package.json
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-catalog-react",
- "version": "0.1.3",
+ "version": "0.1.4",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -28,8 +28,8 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/catalog-client": "^0.3.8",
- "@backstage/catalog-model": "^0.7.3",
+ "@backstage/catalog-client": "^0.3.9",
+ "@backstage/catalog-model": "^0.7.5",
"@backstage/core": "^0.7.3",
"@material-ui/core": "^4.11.0",
"@types/react": "^16.9",
diff --git a/plugins/catalog/CHANGELOG.md b/plugins/catalog/CHANGELOG.md
index 3d1b94c4a7..31f511fdbf 100644
--- a/plugins/catalog/CHANGELOG.md
+++ b/plugins/catalog/CHANGELOG.md
@@ -1,5 +1,43 @@
# @backstage/plugin-catalog
+## 0.5.2
+
+### Patch Changes
+
+- aa58c01e2: Adds a new `EntitySystemDiagramCard` component to visually map all elements in a system.
+
+ To use this new component with the legacy composability pattern, you can add a new tab with the component on to the System Entity Page in your `packages/app/src/components/catalog/EntityPage.tsx` file.
+
+ For example,
+
+ ```diff
+ const SystemEntityPage = ({ entity }: { entity: Entity }) => (
+
+ }
+ />
+ + }
+ + />
+
+ );
+ ```
+
+- 676ede643: Added the `getOriginLocationByEntity` and `removeLocationById` methods to the catalog client
+- 8bee6a131: unify how the owner and lifecycle header labels are made
+- 676ede643: Improve the unregister dialog, to support both unregistration and plain deletion
+- Updated dependencies [676ede643]
+- Updated dependencies [9f48b548c]
+- Updated dependencies [b196a4569]
+- Updated dependencies [8488a1a96]
+ - @backstage/catalog-client@0.3.9
+ - @backstage/plugin-catalog-react@0.1.4
+ - @backstage/catalog-model@0.7.5
+
## 0.5.1
### Patch Changes
diff --git a/plugins/catalog/package.json b/plugins/catalog/package.json
index 06fef4b99a..f86c43430a 100644
--- a/plugins/catalog/package.json
+++ b/plugins/catalog/package.json
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-catalog",
- "version": "0.5.1",
+ "version": "0.5.2",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -30,13 +30,13 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/catalog-client": "^0.3.8",
- "@backstage/catalog-model": "^0.7.4",
+ "@backstage/catalog-client": "^0.3.9",
+ "@backstage/catalog-model": "^0.7.5",
"@backstage/core": "^0.7.3",
"@backstage/errors": "^0.1.1",
"@backstage/integration": "^0.5.1",
"@backstage/integration-react": "^0.1.1",
- "@backstage/plugin-catalog-react": "^0.1.3",
+ "@backstage/plugin-catalog-react": "^0.1.4",
"@backstage/theme": "^0.2.5",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
diff --git a/plugins/explore/CHANGELOG.md b/plugins/explore/CHANGELOG.md
index f9cbe6850b..bebf6a8c44 100644
--- a/plugins/explore/CHANGELOG.md
+++ b/plugins/explore/CHANGELOG.md
@@ -1,5 +1,15 @@
# @backstage/plugin-explore
+## 0.3.3
+
+### Patch Changes
+
+- 676ede643: Added the `getOriginLocationByEntity` and `removeLocationById` methods to the catalog client
+- Updated dependencies [9f48b548c]
+- Updated dependencies [8488a1a96]
+ - @backstage/plugin-catalog-react@0.1.4
+ - @backstage/catalog-model@0.7.5
+
## 0.3.2
### Patch Changes
diff --git a/plugins/explore/package.json b/plugins/explore/package.json
index 78b1c786f7..c640be6f23 100644
--- a/plugins/explore/package.json
+++ b/plugins/explore/package.json
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-explore",
- "version": "0.3.2",
+ "version": "0.3.3",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -30,9 +30,9 @@
"start": "backstage-cli plugin:serve"
},
"dependencies": {
- "@backstage/catalog-model": "^0.7.4",
+ "@backstage/catalog-model": "^0.7.5",
"@backstage/core": "^0.7.3",
- "@backstage/plugin-catalog-react": "^0.1.2",
+ "@backstage/plugin-catalog-react": "^0.1.4",
"@backstage/plugin-explore-react": "^0.0.4",
"@backstage/theme": "^0.2.5",
"@material-ui/core": "^4.11.0",
diff --git a/plugins/github-actions/CHANGELOG.md b/plugins/github-actions/CHANGELOG.md
index d4273146ba..a2c6e6bf1f 100644
--- a/plugins/github-actions/CHANGELOG.md
+++ b/plugins/github-actions/CHANGELOG.md
@@ -1,5 +1,15 @@
# @backstage/plugin-github-actions
+## 0.4.3
+
+### Patch Changes
+
+- 2c29611a0: Fixed GitHub workflows not appearing when the originating repository for a workflow run was deleted.
+- Updated dependencies [9f48b548c]
+- Updated dependencies [8488a1a96]
+ - @backstage/plugin-catalog-react@0.1.4
+ - @backstage/catalog-model@0.7.5
+
## 0.4.2
### Patch Changes
diff --git a/plugins/github-actions/package.json b/plugins/github-actions/package.json
index 7e11c02c22..8cc9471613 100644
--- a/plugins/github-actions/package.json
+++ b/plugins/github-actions/package.json
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-github-actions",
- "version": "0.4.2",
+ "version": "0.4.3",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -32,8 +32,8 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/catalog-model": "^0.7.4",
- "@backstage/plugin-catalog-react": "^0.1.3",
+ "@backstage/catalog-model": "^0.7.5",
+ "@backstage/plugin-catalog-react": "^0.1.4",
"@backstage/core": "^0.7.3",
"@backstage/integration": "^0.5.1",
"@backstage/theme": "^0.2.5",
diff --git a/plugins/kafka-backend/CHANGELOG.md b/plugins/kafka-backend/CHANGELOG.md
index 8de69d3401..f29fb62a91 100644
--- a/plugins/kafka-backend/CHANGELOG.md
+++ b/plugins/kafka-backend/CHANGELOG.md
@@ -1,5 +1,15 @@
# @backstage/plugin-kafka-backend
+## 0.2.3
+
+### Patch Changes
+
+- f03a52f5b: Add support for SASL authentication & SSL boolean config.
+- Updated dependencies [8488a1a96]
+- Updated dependencies [37e3a69f5]
+ - @backstage/catalog-model@0.7.5
+ - @backstage/backend-common@0.6.1
+
## 0.2.2
### Patch Changes
diff --git a/plugins/kafka-backend/package.json b/plugins/kafka-backend/package.json
index ff61c9f789..ef64ebfbf5 100644
--- a/plugins/kafka-backend/package.json
+++ b/plugins/kafka-backend/package.json
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-kafka-backend",
- "version": "0.2.2",
+ "version": "0.2.3",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -31,8 +31,8 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/backend-common": "^0.6.0",
- "@backstage/catalog-model": "^0.7.3",
+ "@backstage/backend-common": "^0.6.1",
+ "@backstage/catalog-model": "^0.7.5",
"@backstage/config": "^0.1.4",
"@types/express": "^4.17.6",
"express": "^4.17.1",
diff --git a/plugins/kubernetes-backend/CHANGELOG.md b/plugins/kubernetes-backend/CHANGELOG.md
index b39de32c90..0f61b71858 100644
--- a/plugins/kubernetes-backend/CHANGELOG.md
+++ b/plugins/kubernetes-backend/CHANGELOG.md
@@ -1,5 +1,16 @@
# @backstage/plugin-kubernetes-backend
+## 0.3.3
+
+### Patch Changes
+
+- 1ac6a5233: updated entity name to be set through annotations or fallback
+- 60e463c8d: Load credentials properly for AWS Kubernetes Auth Translator
+- Updated dependencies [8488a1a96]
+- Updated dependencies [37e3a69f5]
+ - @backstage/catalog-model@0.7.5
+ - @backstage/backend-common@0.6.1
+
## 0.3.2
### Patch Changes
diff --git a/plugins/kubernetes-backend/package.json b/plugins/kubernetes-backend/package.json
index 1fb50eb2a7..c6f9f02dc2 100644
--- a/plugins/kubernetes-backend/package.json
+++ b/plugins/kubernetes-backend/package.json
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-kubernetes-backend",
- "version": "0.3.2",
+ "version": "0.3.3",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -31,8 +31,8 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/backend-common": "^0.6.0",
- "@backstage/catalog-model": "^0.7.4",
+ "@backstage/backend-common": "^0.6.1",
+ "@backstage/catalog-model": "^0.7.5",
"@backstage/config": "^0.1.4",
"@google-cloud/container": "^2.2.0",
"@kubernetes/client-node": "^0.14.0",
diff --git a/plugins/org/CHANGELOG.md b/plugins/org/CHANGELOG.md
index fcc99eb40a..9239eabd9b 100644
--- a/plugins/org/CHANGELOG.md
+++ b/plugins/org/CHANGELOG.md
@@ -1,5 +1,18 @@
# @backstage/plugin-org
+## 0.3.11
+
+### Patch Changes
+
+- 7c6e1463b: Correctly route to namespaced group members
+- 87171d57d: Correctly include group members via matching namespace relation
+- baa39809e: Fixed MembersList showing members from a previous group when navigating to a new group
+- 9f48b548c: Some cleanup in how types and components are used; leverage `EntityRefLinks`
+- Updated dependencies [9f48b548c]
+- Updated dependencies [8488a1a96]
+ - @backstage/plugin-catalog-react@0.1.4
+ - @backstage/catalog-model@0.7.5
+
## 0.3.10
### Patch Changes
diff --git a/plugins/org/package.json b/plugins/org/package.json
index ad0e04a3e2..d8de1469ee 100644
--- a/plugins/org/package.json
+++ b/plugins/org/package.json
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-org",
- "version": "0.3.10",
+ "version": "0.3.11",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -20,10 +20,10 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/catalog-model": "^0.7.3",
+ "@backstage/catalog-model": "^0.7.5",
"@backstage/core": "^0.7.3",
"@backstage/core-api": "^0.2.14",
- "@backstage/plugin-catalog-react": "^0.1.2",
+ "@backstage/plugin-catalog-react": "^0.1.4",
"@backstage/theme": "^0.2.5",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
diff --git a/plugins/register-component/CHANGELOG.md b/plugins/register-component/CHANGELOG.md
index d948205d77..424887263c 100644
--- a/plugins/register-component/CHANGELOG.md
+++ b/plugins/register-component/CHANGELOG.md
@@ -1,5 +1,15 @@
# @backstage/plugin-register-component
+## 0.2.13
+
+### Patch Changes
+
+- 676ede643: Added the `getOriginLocationByEntity` and `removeLocationById` methods to the catalog client
+- Updated dependencies [9f48b548c]
+- Updated dependencies [8488a1a96]
+ - @backstage/plugin-catalog-react@0.1.4
+ - @backstage/catalog-model@0.7.5
+
## 0.2.12
### Patch Changes
diff --git a/plugins/register-component/package.json b/plugins/register-component/package.json
index c5bc5fc887..73d343a205 100644
--- a/plugins/register-component/package.json
+++ b/plugins/register-component/package.json
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-register-component",
- "version": "0.2.12",
+ "version": "0.2.13",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -30,9 +30,9 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/catalog-model": "^0.7.3",
+ "@backstage/catalog-model": "^0.7.5",
"@backstage/core": "^0.7.3",
- "@backstage/plugin-catalog-react": "^0.1.1",
+ "@backstage/plugin-catalog-react": "^0.1.4",
"@backstage/theme": "^0.2.5",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
diff --git a/plugins/scaffolder-backend/CHANGELOG.md b/plugins/scaffolder-backend/CHANGELOG.md
index e00d644be7..a54ec4430d 100644
--- a/plugins/scaffolder-backend/CHANGELOG.md
+++ b/plugins/scaffolder-backend/CHANGELOG.md
@@ -1,5 +1,19 @@
# @backstage/plugin-scaffolder-backend
+## 0.9.4
+
+### Patch Changes
+
+- 2ab6f3ff0: Add OwnerPicker component to scaffolder for specifying a component's owner from users and groups in the catalog.
+- 164cc4c53: Fix a bug with GitHub Apps support not parsing the URL correctly
+- Updated dependencies [676ede643]
+- Updated dependencies [b196a4569]
+- Updated dependencies [8488a1a96]
+- Updated dependencies [37e3a69f5]
+ - @backstage/catalog-client@0.3.9
+ - @backstage/catalog-model@0.7.5
+ - @backstage/backend-common@0.6.1
+
## 0.9.3
### Patch Changes
diff --git a/plugins/scaffolder-backend/package.json b/plugins/scaffolder-backend/package.json
index 9bd631a2e9..69aced77b5 100644
--- a/plugins/scaffolder-backend/package.json
+++ b/plugins/scaffolder-backend/package.json
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-scaffolder-backend",
- "version": "0.9.3",
+ "version": "0.9.4",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -29,9 +29,9 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/backend-common": "^0.6.0",
- "@backstage/catalog-client": "^0.3.8",
- "@backstage/catalog-model": "^0.7.4",
+ "@backstage/backend-common": "^0.6.1",
+ "@backstage/catalog-client": "^0.3.9",
+ "@backstage/catalog-model": "^0.7.5",
"@backstage/config": "^0.1.4",
"@backstage/errors": "^0.1.1",
"@backstage/integration": "^0.5.1",
diff --git a/plugins/scaffolder/CHANGELOG.md b/plugins/scaffolder/CHANGELOG.md
index 658d64e176..4823c19816 100644
--- a/plugins/scaffolder/CHANGELOG.md
+++ b/plugins/scaffolder/CHANGELOG.md
@@ -1,5 +1,19 @@
# @backstage/plugin-scaffolder
+## 0.8.1
+
+### Patch Changes
+
+- 2ab6f3ff0: Add OwnerPicker component to scaffolder for specifying a component's owner from users and groups in the catalog.
+- 676ede643: Added the `getOriginLocationByEntity` and `removeLocationById` methods to the catalog client
+- Updated dependencies [676ede643]
+- Updated dependencies [9f48b548c]
+- Updated dependencies [b196a4569]
+- Updated dependencies [8488a1a96]
+ - @backstage/catalog-client@0.3.9
+ - @backstage/plugin-catalog-react@0.1.4
+ - @backstage/catalog-model@0.7.5
+
## 0.8.0
### Minor Changes
diff --git a/plugins/scaffolder/package.json b/plugins/scaffolder/package.json
index 976d5bac56..410e12a97d 100644
--- a/plugins/scaffolder/package.json
+++ b/plugins/scaffolder/package.json
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-scaffolder",
- "version": "0.8.0",
+ "version": "0.8.1",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -30,13 +30,13 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/catalog-client": "^0.3.8",
- "@backstage/catalog-model": "^0.7.4",
+ "@backstage/catalog-client": "^0.3.9",
+ "@backstage/catalog-model": "^0.7.5",
"@backstage/config": "^0.1.4",
"@backstage/core": "^0.7.3",
"@backstage/integration": "^0.5.1",
"@backstage/integration-react": "^0.1.1",
- "@backstage/plugin-catalog-react": "^0.1.2",
+ "@backstage/plugin-catalog-react": "^0.1.4",
"@backstage/theme": "^0.2.5",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
diff --git a/plugins/techdocs/CHANGELOG.md b/plugins/techdocs/CHANGELOG.md
index 16e7c568b6..b9db771618 100644
--- a/plugins/techdocs/CHANGELOG.md
+++ b/plugins/techdocs/CHANGELOG.md
@@ -1,5 +1,15 @@
# @backstage/plugin-techdocs
+## 0.7.1
+
+### Patch Changes
+
+- bebd1c4fe: Remove the `@backstage/techdocs-common` dependency to not pull in backend config schemas in the frontend.
+- Updated dependencies [9f48b548c]
+- Updated dependencies [8488a1a96]
+ - @backstage/plugin-catalog-react@0.1.4
+ - @backstage/catalog-model@0.7.5
+
## 0.7.0
### Minor Changes
diff --git a/plugins/techdocs/package.json b/plugins/techdocs/package.json
index b6b5d0705d..f8e7a184fd 100644
--- a/plugins/techdocs/package.json
+++ b/plugins/techdocs/package.json
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-techdocs",
- "version": "0.7.0",
+ "version": "0.7.1",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -32,9 +32,9 @@
},
"dependencies": {
"@backstage/config": "^0.1.4",
- "@backstage/catalog-model": "^0.7.4",
+ "@backstage/catalog-model": "^0.7.5",
"@backstage/core": "^0.7.3",
- "@backstage/plugin-catalog-react": "^0.1.3",
+ "@backstage/plugin-catalog-react": "^0.1.4",
"@backstage/test-utils": "^0.1.9",
"@backstage/theme": "^0.2.5",
"@backstage/errors": "^0.1.1",
diff --git a/plugins/todo-backend/CHANGELOG.md b/plugins/todo-backend/CHANGELOG.md
index 02c0484bd0..8468bcd500 100644
--- a/plugins/todo-backend/CHANGELOG.md
+++ b/plugins/todo-backend/CHANGELOG.md
@@ -1,5 +1,18 @@
# @backstage/plugin-todo-backend
+## 0.1.3
+
+### Patch Changes
+
+- 676ede643: Added the `getOriginLocationByEntity` and `removeLocationById` methods to the catalog client
+- Updated dependencies [676ede643]
+- Updated dependencies [b196a4569]
+- Updated dependencies [8488a1a96]
+- Updated dependencies [37e3a69f5]
+ - @backstage/catalog-client@0.3.9
+ - @backstage/catalog-model@0.7.5
+ - @backstage/backend-common@0.6.1
+
## 0.1.2
### Patch Changes
diff --git a/plugins/todo-backend/package.json b/plugins/todo-backend/package.json
index 6b3290cb29..2f7348e054 100644
--- a/plugins/todo-backend/package.json
+++ b/plugins/todo-backend/package.json
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-todo-backend",
- "version": "0.1.2",
+ "version": "0.1.3",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -24,9 +24,9 @@
"clean": "backstage-cli clean"
},
"dependencies": {
- "@backstage/backend-common": "^0.6.0",
- "@backstage/catalog-client": "^0.3.8",
- "@backstage/catalog-model": "^0.7.3",
+ "@backstage/backend-common": "^0.6.1",
+ "@backstage/catalog-client": "^0.3.9",
+ "@backstage/catalog-model": "^0.7.5",
"@backstage/config": "^0.1.4",
"@backstage/errors": "^0.1.1",
"@backstage/integration": "^0.5.0",
diff --git a/plugins/user-settings/CHANGELOG.md b/plugins/user-settings/CHANGELOG.md
index cca47049ee..f6f3046bef 100644
--- a/plugins/user-settings/CHANGELOG.md
+++ b/plugins/user-settings/CHANGELOG.md
@@ -1,5 +1,11 @@
# @backstage/plugin-user-settings
+## 0.2.9
+
+### Patch Changes
+
+- dd7fa21e2: Adds Auth0 to the default Authentication Providers settings page
+
## 0.2.8
### Patch Changes
diff --git a/plugins/user-settings/package.json b/plugins/user-settings/package.json
index 8baf16c58b..674e8ee57c 100644
--- a/plugins/user-settings/package.json
+++ b/plugins/user-settings/package.json
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-user-settings",
- "version": "0.2.8",
+ "version": "0.2.9",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",