Version Packages

This commit is contained in:
github-actions[bot]
2021-03-31 12:21:12 +00:00
parent 39f41287d2
commit 8e00ab7e63
72 changed files with 410 additions and 262 deletions
+13
View File
@@ -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
+3 -3
View File
@@ -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",
+14
View File
@@ -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
+4 -4
View File
@@ -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",
+38
View File
@@ -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
+3 -3
View File
@@ -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",
+13
View File
@@ -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
+4 -4
View File
@@ -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",
+11
View File
@@ -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
+3 -3
View File
@@ -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",
+38
View File
@@ -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 }) => (
<EntityPageLayoutWrapper>
<EntityPageLayout.Content
path="/*"
title="Overview"
element={<SystemOverviewContent entity={entity} />}
/>
+ <EntityPageLayout.Content
+ path="/diagram/*"
+ title="Diagram"
+ element={<EntitySystemDiagramCard />}
+ />
</EntityPageLayoutWrapper>
);
```
- 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
+4 -4
View File
@@ -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",
+10
View File
@@ -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
+3 -3
View File
@@ -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",
+10
View File
@@ -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
+3 -3
View File
@@ -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",
+10
View File
@@ -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
+3 -3
View File
@@ -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",
+11
View File
@@ -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
+3 -3
View File
@@ -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",
+13
View File
@@ -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
+3 -3
View File
@@ -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",
+10
View File
@@ -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
+3 -3
View File
@@ -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",
+14
View File
@@ -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
+4 -4
View File
@@ -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",
+14
View File
@@ -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
+4 -4
View File
@@ -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",
+10
View File
@@ -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
+3 -3
View File
@@ -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",
+13
View File
@@ -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
+4 -4
View File
@@ -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",
+6
View File
@@ -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
+1 -1
View File
@@ -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",