Version Packages

This commit is contained in:
github-actions[bot]
2021-07-01 09:06:13 +00:00
parent ba69dca530
commit 6e937b9fa6
118 changed files with 611 additions and 480 deletions
+3 -3
View File
@@ -31,7 +31,7 @@
"dependencies": {
"@asyncapi/react-component": "^0.23.0",
"@backstage/catalog-model": "^0.8.4",
"@backstage/core-components": "^0.1.3",
"@backstage/core-components": "^0.1.4",
"@backstage/core-plugin-api": "^0.1.3",
"@backstage/plugin-catalog": "^0.6.4",
"@backstage/plugin-catalog-react": "^0.2.4",
@@ -51,8 +51,8 @@
"swagger-ui-react": "^3.37.2"
},
"devDependencies": {
"@backstage/cli": "^0.7.2",
"@backstage/core-app-api": "^0.1.3",
"@backstage/cli": "^0.7.3",
"@backstage/core-app-api": "^0.1.4",
"@backstage/dev-utils": "^0.2.0",
"@backstage/test-utils": "^0.1.14",
"@testing-library/jest-dom": "^5.10.1",
+10
View File
@@ -1,5 +1,15 @@
# @backstage/plugin-auth-backend
## 0.3.15
### Patch Changes
- 6ca29b66c: Unbreak `.well-known` OIDC routes
- 72574ac4d: Show better error message when configs defined under auth.providers.<provider> are undefined.
- Updated dependencies
- @backstage/backend-common@0.8.4
- @backstage/catalog-client@0.3.15
## 0.3.14
### Patch Changes
+4 -4
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-auth-backend",
"version": "0.3.14",
"version": "0.3.15",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -29,8 +29,8 @@
"clean": "backstage-cli clean"
},
"dependencies": {
"@backstage/backend-common": "^0.8.3",
"@backstage/catalog-client": "^0.3.14",
"@backstage/backend-common": "^0.8.4",
"@backstage/catalog-client": "^0.3.15",
"@backstage/catalog-model": "^0.8.4",
"@backstage/config": "^0.1.5",
"@backstage/errors": "^0.1.1",
@@ -68,7 +68,7 @@
"yn": "^4.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.7.2",
"@backstage/cli": "^0.7.3",
"@types/body-parser": "^1.19.0",
"@types/cookie-parser": "^1.4.2",
"@types/express-session": "^1.17.2",
+3 -3
View File
@@ -21,7 +21,7 @@
},
"dependencies": {
"@backstage/catalog-model": "^0.8.4",
"@backstage/core-components": "^0.1.3",
"@backstage/core-components": "^0.1.4",
"@backstage/core-plugin-api": "^0.1.3",
"@backstage/errors": "^0.1.1",
"@backstage/plugin-catalog-react": "^0.2.4",
@@ -35,8 +35,8 @@
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/cli": "^0.7.2",
"@backstage/core-app-api": "^0.1.3",
"@backstage/cli": "^0.7.3",
"@backstage/core-app-api": "^0.1.4",
"@backstage/dev-utils": "^0.2.0",
"@backstage/test-utils": "^0.1.14",
"@testing-library/jest-dom": "^5.10.1",
+3 -3
View File
@@ -21,7 +21,7 @@
},
"dependencies": {
"@backstage/catalog-model": "^0.8.4",
"@backstage/core-components": "^0.1.3",
"@backstage/core-components": "^0.1.4",
"@backstage/core-plugin-api": "^0.1.3",
"@backstage/plugin-catalog-react": "^0.2.4",
"@backstage/theme": "^0.2.8",
@@ -38,8 +38,8 @@
"recharts": "^1.8.5"
},
"devDependencies": {
"@backstage/cli": "^0.7.2",
"@backstage/core-app-api": "^0.1.3",
"@backstage/cli": "^0.7.3",
"@backstage/core-app-api": "^0.1.4",
"@backstage/dev-utils": "^0.2.0",
"@backstage/test-utils": "^0.1.14",
"@testing-library/jest-dom": "^5.10.1",
@@ -0,0 +1,8 @@
# @backstage/plugin-catalog-backend-module-ldap
## 0.1.1
### Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-backend@0.11.0
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-catalog-backend-module-ldap",
"version": "0.1.0",
"version": "0.1.1",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -30,14 +30,14 @@
"dependencies": {
"@backstage/catalog-model": "^0.8.3",
"@backstage/config": "^0.1.5",
"@backstage/plugin-catalog-backend": "^0.10.2",
"@backstage/plugin-catalog-backend": "^0.11.0",
"@types/ldapjs": "^1.0.10",
"ldapjs": "^2.2.0",
"lodash": "^4.17.15",
"winston": "^3.2.1"
},
"devDependencies": {
"@backstage/cli": "^0.7.1",
"@backstage/cli": "^0.7.3",
"@backstage/test-utils": "^0.1.13",
"@types/lodash": "^4.14.151",
"msw": "^0.29.0"
@@ -1,5 +1,18 @@
# @backstage/plugin-catalog-backend-module-msgraph
## 0.2.0
### Minor Changes
- 115473c08: Handle error gracefully if failure occurs while loading photos using Microsoft Graph API.
This includes a breaking change: you now have to pass the `options` object to `readMicrosoftGraphUsers` and `readMicrosoftGraphOrg`.
### Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-backend@0.11.0
## 0.1.1
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-catalog-backend-module-msgraph",
"version": "0.1.1",
"version": "0.2.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -31,7 +31,7 @@
"@azure/msal-node": "^1.1.0",
"@backstage/catalog-model": "^0.8.4",
"@backstage/config": "^0.1.5",
"@backstage/plugin-catalog-backend": "^0.10.4",
"@backstage/plugin-catalog-backend": "^0.11.0",
"@microsoft/microsoft-graph-types": "^1.25.0",
"cross-fetch": "^3.0.6",
"lodash": "^4.17.15",
@@ -40,8 +40,8 @@
"qs": "^6.9.4"
},
"devDependencies": {
"@backstage/backend-common": "^0.8.3",
"@backstage/cli": "^0.7.2",
"@backstage/backend-common": "^0.8.4",
"@backstage/cli": "^0.7.3",
"@backstage/test-utils": "^0.1.14",
"@types/lodash": "^4.14.151",
"msw": "^0.29.0"
+90
View File
@@ -1,5 +1,95 @@
# @backstage/plugin-catalog-backend
## 0.11.0
### Minor Changes
- 45af985df: Handle entity name conflicts in a deterministic way and avoid crashes due to naming conflicts at startup.
This is a breaking change for the database and entity provider interfaces of the new catalog. The interfaces with breaking changes are `EntityProvider` and `ProcessingDatabase`, and while it's unlikely that these interfaces have much usage yet, a migration guide is provided below.
The breaking change to the `EntityProvider` interface lies within the items passed in the `EntityProviderMutation` type. Rather than passing along entities directly, they are now wrapped up in a `DeferredEntity` type, which is a tuple of an `entity` and a `locationKey`. The `entity` houses the entity as it was passed on before, while the `locationKey` is a new concept that is used for conflict resolution within the catalog.
The `locationKey` is an opaque string that should be unique for each location that an entity could be located at, and undefined if the entity does not have a fixed location. In practice it should be set to the serialized location reference if the entity is stored in Git, for example `https://github.com/backstage/backstage/blob/master/catalog-info.yaml`. A conflict between two entity definitions happen when they have the same entity reference, i.e. kind, namespace, and name. In the event of a conflict the location key will be used according to the following rules to resolve the conflict:
- If the entity is already present in the database but does not have a location key set, the new entity wins and will override the existing one.
- If the entity is already present in the database the new entity will only win if the location keys of the existing and new entity are the same.
- If the entity is not already present, insert the entity into the database along with the provided location key.
The breaking change to the `ProcessingDatabase` is similar to the one for the entity provider, as it reflects the switch from `Entity` to `DeferredEntity` in the `ReplaceUnprocessedEntitiesOptions`. In addition, the `addUnprocessedEntities` method has been removed from the `ProcessingDatabase` interface, and the `RefreshStateItem` and `UpdateProcessedEntityOptions` types have received a new optional `locationKey` property.
- 8e533f92c: Move `LdapOrgReaderProcessor` from `@backstage/plugin-catalog-backend`
to `@backstage/plugin-catalog-backend-module-ldap`.
The `LdapOrgReaderProcessor` isn't registered by default anymore, if
you want to continue using it you have to register it manually at the catalog
builder:
1. Add dependency to `@backstage/plugin-catalog-backend-module-ldap` to the `package.json` of your backend.
2. Add the processor to the catalog builder:
```typescript
// packages/backend/src/plugins/catalog.ts
builder.addProcessor(
LdapOrgReaderProcessor.fromConfig(config, {
logger,
}),
);
```
For more configuration details, see the [README of the `@backstage/plugin-catalog-backend-module-ldap` package](https://github.com/backstage/backstage/blob/master/plugins/catalog-backend-module-ldap/README.md).
### Patch Changes
- 22a60518c: Support ingesting multiple GitHub organizations via a new `GithubMultiOrgReaderProcessor`.
This new processor handles namespacing created groups according to the org of the associated GitHub team to prevent potential name clashes between organizations. Be aware that this processor is considered alpha and may not be compatible with future org structures in the catalog.
NOTE: This processor only fully supports auth via GitHub Apps
To install this processor, import and add it as follows:
```typescript
// Typically in packages/backend/src/plugins/catalog.ts
import { GithubMultiOrgReaderProcessor } from '@backstage/plugin-catalog-backend';
// ...
export default async function createPlugin(env: PluginEnvironment) {
const builder = new CatalogBuilder(env);
builder.addProcessor(
GithubMultiOrgReaderProcessor.fromConfig(env.config, {
logger: env.logger,
}),
);
// ...
}
```
Configure in your `app-config.yaml` by pointing to your GitHub instance and optionally list which GitHub organizations you wish to import. You can also configure what namespace you want to set for teams from each org. If unspecified, the org name will be used as the namespace. If no organizations are listed, by default this processor will import from all organizations accessible by all configured GitHub Apps:
```yaml
catalog:
locations:
- type: github-multi-org
target: https://github.myorg.com
processors:
githubMultiOrg:
orgs:
- name: fooOrg
groupNamespace: foo
- name: barOrg
groupNamespace: bar
- name: awesomeOrg
- name: anotherOrg
```
- d408af872: Only return the selected fields from the new catalog.
- aa2b15d9d: Ensure that emitted relations are deduplicated
- Updated dependencies
- @backstage/backend-common@0.8.4
- @backstage/integration@0.5.7
- @backstage/catalog-client@0.3.15
## 0.10.4
### Patch Changes
+5 -5
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-catalog-backend",
"version": "0.10.4",
"version": "0.11.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -29,12 +29,12 @@
"clean": "backstage-cli clean"
},
"dependencies": {
"@backstage/backend-common": "^0.8.3",
"@backstage/catalog-client": "^0.3.14",
"@backstage/backend-common": "^0.8.4",
"@backstage/catalog-client": "^0.3.15",
"@backstage/catalog-model": "^0.8.4",
"@backstage/config": "^0.1.5",
"@backstage/errors": "^0.1.1",
"@backstage/integration": "^0.5.6",
"@backstage/integration": "^0.5.7",
"@backstage/plugin-search-backend-node": "^0.2.2",
"@backstage/search-common": "^0.1.2",
"@octokit/graphql": "^4.5.8",
@@ -62,7 +62,7 @@
},
"devDependencies": {
"@backstage/backend-test-utils": "^0.1.3",
"@backstage/cli": "^0.7.2",
"@backstage/cli": "^0.7.3",
"@backstage/test-utils": "^0.1.14",
"@types/core-js": "^2.5.4",
"@types/git-url-parse": "^9.0.0",
+3 -3
View File
@@ -32,7 +32,7 @@
"dependencies": {
"@backstage/catalog-client": "^0.3.14",
"@backstage/catalog-model": "^0.8.4",
"@backstage/core-components": "^0.1.3",
"@backstage/core-components": "^0.1.4",
"@backstage/core-plugin-api": "^0.1.3",
"@backstage/integration": "^0.5.6",
"@backstage/integration-react": "^0.1.4",
@@ -54,8 +54,8 @@
"yaml": "^1.10.0"
},
"devDependencies": {
"@backstage/cli": "^0.7.2",
"@backstage/core-app-api": "^0.1.3",
"@backstage/cli": "^0.7.3",
"@backstage/core-app-api": "^0.1.4",
"@backstage/dev-utils": "^0.2.0",
"@backstage/test-utils": "^0.1.14",
"@testing-library/jest-dom": "^5.10.1",
+11
View File
@@ -1,5 +1,16 @@
# @backstage/plugin-catalog-react
## 0.2.5
### Patch Changes
- 35a3e4e4c: Fix repetitive error reporting in EntityTypePicker
- Updated dependencies
- @backstage/core-app-api@0.1.4
- @backstage/core-components@0.1.4
- @backstage/integration@0.5.7
- @backstage/catalog-client@0.3.15
## 0.2.4
### Patch Changes
+6 -6
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-catalog-react",
"version": "0.2.4",
"version": "0.2.5",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -28,12 +28,12 @@
"clean": "backstage-cli clean"
},
"dependencies": {
"@backstage/catalog-client": "^0.3.14",
"@backstage/catalog-client": "^0.3.15",
"@backstage/catalog-model": "^0.8.4",
"@backstage/core-app-api": "^0.1.3",
"@backstage/core-components": "^0.1.3",
"@backstage/core-app-api": "^0.1.4",
"@backstage/core-components": "^0.1.4",
"@backstage/core-plugin-api": "^0.1.3",
"@backstage/integration": "^0.5.6",
"@backstage/integration": "^0.5.7",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "4.0.0-alpha.45",
@@ -45,7 +45,7 @@
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/cli": "^0.7.2",
"@backstage/cli": "^0.7.3",
"@backstage/dev-utils": "^0.2.0",
"@backstage/test-utils": "^0.1.14",
"@testing-library/jest-dom": "^5.10.1",
+12
View File
@@ -1,5 +1,17 @@
# @backstage/plugin-catalog
## 0.6.5
### Patch Changes
- f423891ee: Fixed sizing of the System diagram when the rendered graph was wider than the container.
- e19283b39: Get rid of flex console warning for IconLink
- Updated dependencies
- @backstage/plugin-catalog-react@0.2.5
- @backstage/core-components@0.1.4
- @backstage/integration@0.5.7
- @backstage/catalog-client@0.3.15
## 0.6.4
### Patch Changes
+7 -7
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-catalog",
"version": "0.6.4",
"version": "0.6.5",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -30,14 +30,14 @@
"clean": "backstage-cli clean"
},
"dependencies": {
"@backstage/catalog-client": "^0.3.14",
"@backstage/catalog-client": "^0.3.15",
"@backstage/catalog-model": "^0.8.4",
"@backstage/core-components": "^0.1.3",
"@backstage/core-components": "^0.1.4",
"@backstage/core-plugin-api": "^0.1.3",
"@backstage/errors": "^0.1.1",
"@backstage/integration": "^0.5.6",
"@backstage/integration": "^0.5.7",
"@backstage/integration-react": "^0.1.4",
"@backstage/plugin-catalog-react": "^0.2.4",
"@backstage/plugin-catalog-react": "^0.2.5",
"@backstage/theme": "^0.2.8",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
@@ -54,8 +54,8 @@
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/cli": "^0.7.2",
"@backstage/core-app-api": "^0.1.3",
"@backstage/cli": "^0.7.3",
"@backstage/core-app-api": "^0.1.4",
"@backstage/dev-utils": "^0.2.0",
"@backstage/test-utils": "^0.1.14",
"@testing-library/jest-dom": "^5.10.1",
+3 -3
View File
@@ -32,7 +32,7 @@
},
"dependencies": {
"@backstage/catalog-model": "^0.8.4",
"@backstage/core-components": "^0.1.3",
"@backstage/core-components": "^0.1.4",
"@backstage/core-plugin-api": "^0.1.3",
"@backstage/plugin-catalog-react": "^0.2.4",
"@backstage/theme": "^0.2.8",
@@ -50,8 +50,8 @@
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/cli": "^0.7.2",
"@backstage/core-app-api": "^0.1.3",
"@backstage/cli": "^0.7.3",
"@backstage/core-app-api": "^0.1.4",
"@backstage/dev-utils": "^0.2.0",
"@backstage/test-utils": "^0.1.14",
"@testing-library/jest-dom": "^5.10.1",
+3 -3
View File
@@ -31,7 +31,7 @@
},
"dependencies": {
"@backstage/catalog-model": "^0.8.4",
"@backstage/core-components": "^0.1.3",
"@backstage/core-components": "^0.1.4",
"@backstage/core-plugin-api": "^0.1.3",
"@backstage/plugin-catalog-react": "^0.2.4",
"@backstage/theme": "^0.2.8",
@@ -48,8 +48,8 @@
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/cli": "^0.7.2",
"@backstage/core-app-api": "^0.1.3",
"@backstage/cli": "^0.7.3",
"@backstage/core-app-api": "^0.1.4",
"@backstage/dev-utils": "^0.2.0",
"@backstage/test-utils": "^0.1.14",
"@testing-library/jest-dom": "^5.10.1",
+3 -3
View File
@@ -22,7 +22,7 @@
"dependencies": {
"@backstage/catalog-model": "^0.8.4",
"@backstage/config": "^0.1.4",
"@backstage/core-components": "^0.1.3",
"@backstage/core-components": "^0.1.4",
"@backstage/core-plugin-api": "^0.1.3",
"@backstage/errors": "^0.1.1",
"@backstage/plugin-catalog-react": "^0.2.4",
@@ -40,8 +40,8 @@
"recharts": "^1.8.5"
},
"devDependencies": {
"@backstage/cli": "^0.7.2",
"@backstage/core-app-api": "^0.1.3",
"@backstage/cli": "^0.7.3",
"@backstage/core-app-api": "^0.1.4",
"@backstage/dev-utils": "^0.2.0",
"@backstage/test-utils": "^0.1.14",
"@testing-library/jest-dom": "^5.10.1",
+3 -3
View File
@@ -21,7 +21,7 @@
},
"dependencies": {
"@backstage/config": "^0.1.4",
"@backstage/core-components": "^0.1.3",
"@backstage/core-components": "^0.1.4",
"@backstage/core-plugin-api": "^0.1.3",
"@backstage/errors": "^0.1.1",
"@backstage/theme": "^0.2.8",
@@ -35,8 +35,8 @@
"zen-observable": "^0.8.15"
},
"devDependencies": {
"@backstage/cli": "^0.7.2",
"@backstage/core-app-api": "^0.1.3",
"@backstage/cli": "^0.7.3",
"@backstage/core-app-api": "^0.1.4",
"@backstage/dev-utils": "^0.2.0",
"@backstage/test-utils": "^0.1.14",
"@testing-library/jest-dom": "^5.10.1",
+8
View File
@@ -1,5 +1,13 @@
# @backstage/plugin-cost-insights
## 0.11.1
### Patch Changes
- 0b4d00687: Replaced moment and dayjs with Luxon
- Updated dependencies
- @backstage/core-components@0.1.4
## 0.11.0
### Minor Changes
+4 -4
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-cost-insights",
"version": "0.11.0",
"version": "0.11.1",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -31,7 +31,7 @@
},
"dependencies": {
"@backstage/config": "^0.1.5",
"@backstage/core-components": "^0.1.3",
"@backstage/core-components": "^0.1.4",
"@backstage/core-plugin-api": "^0.1.3",
"@backstage/theme": "^0.2.8",
"@material-ui/core": "^4.11.0",
@@ -54,8 +54,8 @@
"yup": "^0.29.3"
},
"devDependencies": {
"@backstage/cli": "^0.7.2",
"@backstage/core-app-api": "^0.1.3",
"@backstage/cli": "^0.7.3",
"@backstage/core-app-api": "^0.1.4",
"@backstage/dev-utils": "^0.2.0",
"@backstage/test-utils": "^0.1.14",
"@testing-library/jest-dom": "^5.10.1",
+9
View File
@@ -1,5 +1,14 @@
# @backstage/plugin-explore
## 0.3.8
### Patch Changes
- dd9118574: Using displayName as default value when loading Groups Diagram
- Updated dependencies
- @backstage/plugin-catalog-react@0.2.5
- @backstage/core-components@0.1.4
## 0.3.7
### Patch Changes
+5 -5
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-explore",
"version": "0.3.7",
"version": "0.3.8",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -31,9 +31,9 @@
},
"dependencies": {
"@backstage/catalog-model": "^0.8.4",
"@backstage/core-components": "^0.1.3",
"@backstage/core-components": "^0.1.4",
"@backstage/core-plugin-api": "^0.1.3",
"@backstage/plugin-catalog-react": "^0.2.4",
"@backstage/plugin-catalog-react": "^0.2.5",
"@backstage/plugin-explore-react": "^0.0.6",
"@backstage/theme": "^0.2.8",
"@material-ui/core": "^4.11.0",
@@ -48,8 +48,8 @@
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/cli": "^0.7.2",
"@backstage/core-app-api": "^0.1.3",
"@backstage/cli": "^0.7.3",
"@backstage/core-app-api": "^0.1.4",
"@backstage/dev-utils": "^0.2.0",
"@backstage/test-utils": "^0.1.14",
"@testing-library/jest-dom": "^5.10.1",
+3 -3
View File
@@ -32,7 +32,7 @@
},
"dependencies": {
"@backstage/catalog-model": "^0.8.4",
"@backstage/core-components": "^0.1.3",
"@backstage/core-components": "^0.1.4",
"@backstage/core-plugin-api": "^0.1.3",
"@backstage/errors": "^0.1.1",
"@backstage/plugin-catalog-react": "^0.2.4",
@@ -48,8 +48,8 @@
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/cli": "^0.7.2",
"@backstage/core-app-api": "^0.1.3",
"@backstage/cli": "^0.7.3",
"@backstage/core-app-api": "^0.1.4",
"@backstage/dev-utils": "^0.2.0",
"@backstage/test-utils": "^0.1.14",
"@testing-library/jest-dom": "^5.10.1",
+3 -3
View File
@@ -30,7 +30,7 @@
"clean": "backstage-cli clean"
},
"dependencies": {
"@backstage/core-components": "^0.1.3",
"@backstage/core-components": "^0.1.4",
"@backstage/core-plugin-api": "^0.1.3",
"@backstage/theme": "^0.2.8",
"@material-ui/core": "^4.11.0",
@@ -42,8 +42,8 @@
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/cli": "^0.7.2",
"@backstage/core-app-api": "^0.1.3",
"@backstage/cli": "^0.7.3",
"@backstage/core-app-api": "^0.1.4",
"@backstage/dev-utils": "^0.2.0",
"@backstage/test-utils": "^0.1.14",
"@testing-library/jest-dom": "^5.10.1",
+3 -3
View File
@@ -20,7 +20,7 @@
"clean": "backstage-cli clean"
},
"dependencies": {
"@backstage/core-components": "^0.1.3",
"@backstage/core-components": "^0.1.4",
"@backstage/core-plugin-api": "^0.1.3",
"@backstage/integration": "^0.5.6",
"@backstage/theme": "^0.2.8",
@@ -37,8 +37,8 @@
"recharts": "^1.8.5"
},
"devDependencies": {
"@backstage/cli": "^0.7.2",
"@backstage/core-app-api": "^0.1.3",
"@backstage/cli": "^0.7.3",
"@backstage/core-app-api": "^0.1.4",
"@backstage/dev-utils": "^0.2.0",
"@backstage/test-utils": "^0.1.14",
"@testing-library/jest-dom": "^5.10.1",
+10
View File
@@ -1,5 +1,15 @@
# @backstage/plugin-github-actions
## 0.4.11
### Patch Changes
- 316530684: Migrate from Moment to Luxon
- Updated dependencies
- @backstage/plugin-catalog-react@0.2.5
- @backstage/core-components@0.1.4
- @backstage/integration@0.5.7
## 0.4.10
### Patch Changes
+6 -6
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-github-actions",
"version": "0.4.10",
"version": "0.4.11",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -33,10 +33,10 @@
},
"dependencies": {
"@backstage/catalog-model": "^0.8.4",
"@backstage/core-components": "^0.1.3",
"@backstage/core-components": "^0.1.4",
"@backstage/core-plugin-api": "^0.1.3",
"@backstage/integration": "^0.5.6",
"@backstage/plugin-catalog-react": "^0.2.4",
"@backstage/integration": "^0.5.7",
"@backstage/plugin-catalog-react": "^0.2.5",
"@backstage/theme": "^0.2.8",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
@@ -51,8 +51,8 @@
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/cli": "^0.7.2",
"@backstage/core-app-api": "^0.1.3",
"@backstage/cli": "^0.7.3",
"@backstage/core-app-api": "^0.1.4",
"@backstage/dev-utils": "^0.2.0",
"@backstage/test-utils": "^0.1.14",
"@testing-library/jest-dom": "^5.10.1",
+3 -3
View File
@@ -21,7 +21,7 @@
},
"dependencies": {
"@backstage/catalog-model": "^0.8.4",
"@backstage/core-components": "^0.1.3",
"@backstage/core-components": "^0.1.4",
"@backstage/core-plugin-api": "^0.1.3",
"@backstage/errors": "^0.1.1",
"@backstage/integration": "^0.5.6",
@@ -38,8 +38,8 @@
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/cli": "^0.7.2",
"@backstage/core-app-api": "^0.1.3",
"@backstage/cli": "^0.7.3",
"@backstage/core-app-api": "^0.1.4",
"@backstage/dev-utils": "^0.2.0",
"@backstage/test-utils": "^0.1.14",
"@testing-library/jest-dom": "^5.10.1",
+3 -3
View File
@@ -31,7 +31,7 @@
"clean": "backstage-cli clean"
},
"dependencies": {
"@backstage/core-components": "^0.1.3",
"@backstage/core-components": "^0.1.4",
"@backstage/core-plugin-api": "^0.1.3",
"@backstage/theme": "^0.2.8",
"@material-ui/core": "^4.11.0",
@@ -43,8 +43,8 @@
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/cli": "^0.7.2",
"@backstage/core-app-api": "^0.1.3",
"@backstage/cli": "^0.7.3",
"@backstage/core-app-api": "^0.1.4",
"@backstage/dev-utils": "^0.2.0",
"@backstage/test-utils": "^0.1.14",
"@testing-library/jest-dom": "^5.10.1",
+3 -3
View File
@@ -31,7 +31,7 @@
"clean": "backstage-cli clean"
},
"dependencies": {
"@backstage/core-components": "^0.1.3",
"@backstage/core-components": "^0.1.4",
"@backstage/core-plugin-api": "^0.1.3",
"@backstage/theme": "^0.2.8",
"@material-ui/core": "^4.11.0",
@@ -44,8 +44,8 @@
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/cli": "^0.7.2",
"@backstage/core-app-api": "^0.1.3",
"@backstage/cli": "^0.7.3",
"@backstage/core-app-api": "^0.1.4",
"@backstage/dev-utils": "^0.2.0",
"@backstage/test-utils": "^0.1.14",
"@testing-library/jest-dom": "^5.10.1",
+3 -3
View File
@@ -21,7 +21,7 @@
},
"dependencies": {
"@backstage/catalog-model": "^0.8.4",
"@backstage/core-components": "^0.1.3",
"@backstage/core-components": "^0.1.4",
"@backstage/core-plugin-api": "^0.1.3",
"@backstage/errors": "^0.1.1",
"@backstage/plugin-catalog-react": "^0.2.4",
@@ -38,8 +38,8 @@
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/cli": "^0.7.2",
"@backstage/core-app-api": "^0.1.3",
"@backstage/cli": "^0.7.3",
"@backstage/core-app-api": "^0.1.4",
"@backstage/dev-utils": "^0.2.0",
"@backstage/test-utils": "^0.1.14",
"@testing-library/jest-dom": "^5.10.1",
+3 -3
View File
@@ -32,7 +32,7 @@
},
"dependencies": {
"@backstage/catalog-model": "^0.8.4",
"@backstage/core-components": "^0.1.3",
"@backstage/core-components": "^0.1.4",
"@backstage/core-plugin-api": "^0.1.3",
"@backstage/plugin-catalog-react": "^0.2.4",
"@backstage/theme": "^0.2.8",
@@ -48,8 +48,8 @@
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/cli": "^0.7.2",
"@backstage/core-app-api": "^0.1.3",
"@backstage/cli": "^0.7.3",
"@backstage/core-app-api": "^0.1.4",
"@backstage/dev-utils": "^0.2.0",
"@backstage/test-utils": "^0.1.14",
"@testing-library/jest-dom": "^5.10.1",
+8
View File
@@ -1,5 +1,13 @@
# @backstage/plugin-kafka-backend
## 0.2.7
### Patch Changes
- 8ab897e01: Properly return a 404 when an unknown cluster is given
- Updated dependencies
- @backstage/backend-common@0.8.4
## 0.2.6
### Patch Changes
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-kafka-backend",
"version": "0.2.6",
"version": "0.2.7",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -31,7 +31,7 @@
"clean": "backstage-cli clean"
},
"dependencies": {
"@backstage/backend-common": "^0.8.2",
"@backstage/backend-common": "^0.8.4",
"@backstage/catalog-model": "^0.8.2",
"@backstage/config": "^0.1.5",
"@backstage/errors": "^0.1.1",
@@ -43,7 +43,7 @@
"winston": "^3.2.1"
},
"devDependencies": {
"@backstage/cli": "^0.7.0",
"@backstage/cli": "^0.7.3",
"@types/jest-when": "^2.7.2",
"@types/lodash": "^4.14.151",
"jest-when": "^3.1.0",
+3 -3
View File
@@ -21,7 +21,7 @@
},
"dependencies": {
"@backstage/catalog-model": "^0.8.4",
"@backstage/core-components": "^0.1.3",
"@backstage/core-components": "^0.1.4",
"@backstage/core-plugin-api": "^0.1.3",
"@backstage/plugin-catalog-react": "^0.2.4",
"@backstage/theme": "^0.2.8",
@@ -34,8 +34,8 @@
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/cli": "^0.7.2",
"@backstage/core-app-api": "^0.1.3",
"@backstage/cli": "^0.7.3",
"@backstage/core-app-api": "^0.1.4",
"@backstage/dev-utils": "^0.2.0",
"@backstage/test-utils": "^0.1.14",
"@testing-library/jest-dom": "^5.10.1",
+3 -3
View File
@@ -32,7 +32,7 @@
"dependencies": {
"@backstage/catalog-model": "^0.8.4",
"@backstage/config": "^0.1.5",
"@backstage/core-components": "^0.1.3",
"@backstage/core-components": "^0.1.4",
"@backstage/core-plugin-api": "^0.1.3",
"@backstage/plugin-catalog-react": "^0.2.4",
"@backstage/plugin-kubernetes-common": "^0.1.1",
@@ -50,8 +50,8 @@
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/cli": "^0.7.2",
"@backstage/core-app-api": "^0.1.3",
"@backstage/cli": "^0.7.3",
"@backstage/core-app-api": "^0.1.4",
"@backstage/dev-utils": "^0.2.0",
"@backstage/test-utils": "^0.1.14",
"@testing-library/jest-dom": "^5.10.1",
+3 -3
View File
@@ -33,7 +33,7 @@
"dependencies": {
"@backstage/catalog-model": "^0.8.4",
"@backstage/config": "^0.1.4",
"@backstage/core-components": "^0.1.3",
"@backstage/core-components": "^0.1.4",
"@backstage/core-plugin-api": "^0.1.3",
"@backstage/plugin-catalog-react": "^0.2.4",
"@backstage/theme": "^0.2.8",
@@ -47,8 +47,8 @@
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/cli": "^0.7.2",
"@backstage/core-app-api": "^0.1.3",
"@backstage/cli": "^0.7.3",
"@backstage/core-app-api": "^0.1.4",
"@backstage/dev-utils": "^0.2.0",
"@backstage/test-utils": "^0.1.14",
"@testing-library/jest-dom": "^5.10.1",
+3 -3
View File
@@ -31,7 +31,7 @@
"clean": "backstage-cli clean"
},
"dependencies": {
"@backstage/core-components": "^0.1.3",
"@backstage/core-components": "^0.1.4",
"@backstage/core-plugin-api": "^0.1.3",
"@backstage/theme": "^0.2.8",
"@material-ui/core": "^4.11.0",
@@ -42,8 +42,8 @@
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/cli": "^0.7.2",
"@backstage/core-app-api": "^0.1.3",
"@backstage/cli": "^0.7.3",
"@backstage/core-app-api": "^0.1.4",
"@backstage/dev-utils": "^0.2.0",
"@backstage/test-utils": "^0.1.14",
"@testing-library/jest-dom": "^5.10.1",
+3 -3
View File
@@ -21,7 +21,7 @@
},
"dependencies": {
"@backstage/catalog-model": "^0.8.4",
"@backstage/core-components": "^0.1.3",
"@backstage/core-components": "^0.1.4",
"@backstage/core-plugin-api": "^0.1.3",
"@backstage/plugin-catalog-react": "^0.2.4",
"@backstage/theme": "^0.2.8",
@@ -35,8 +35,8 @@
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/cli": "^0.7.2",
"@backstage/core-app-api": "^0.1.3",
"@backstage/cli": "^0.7.3",
"@backstage/core-app-api": "^0.1.4",
"@backstage/dev-utils": "^0.2.0",
"@backstage/test-utils": "^0.1.14",
"@testing-library/jest-dom": "^5.10.1",
+3 -3
View File
@@ -31,7 +31,7 @@
},
"dependencies": {
"@backstage/catalog-model": "^0.8.4",
"@backstage/core-components": "^0.1.3",
"@backstage/core-components": "^0.1.4",
"@backstage/core-plugin-api": "^0.1.3",
"@backstage/plugin-catalog-react": "^0.2.4",
"@backstage/theme": "^0.2.8",
@@ -47,8 +47,8 @@
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/cli": "^0.7.2",
"@backstage/core-app-api": "^0.1.3",
"@backstage/cli": "^0.7.3",
"@backstage/core-app-api": "^0.1.4",
"@backstage/dev-utils": "^0.2.0",
"@backstage/test-utils": "^0.1.14",
"@testing-library/jest-dom": "^5.10.1",
+9
View File
@@ -1,5 +1,14 @@
# @backstage/plugin-register-component
## 0.2.18
### Patch Changes
- b47fc34bc: Update "service catalog" references to "software catalog"
- Updated dependencies
- @backstage/plugin-catalog-react@0.2.5
- @backstage/core-components@0.1.4
## 0.2.17
### Patch Changes
+5 -5
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-register-component",
"version": "0.2.17",
"version": "0.2.18",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -31,9 +31,9 @@
},
"dependencies": {
"@backstage/catalog-model": "^0.8.4",
"@backstage/core-components": "^0.1.3",
"@backstage/core-components": "^0.1.4",
"@backstage/core-plugin-api": "^0.1.3",
"@backstage/plugin-catalog-react": "^0.2.4",
"@backstage/plugin-catalog-react": "^0.2.5",
"@backstage/theme": "^0.2.8",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
@@ -46,8 +46,8 @@
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/cli": "^0.7.2",
"@backstage/core-app-api": "^0.1.3",
"@backstage/cli": "^0.7.3",
"@backstage/core-app-api": "^0.1.4",
"@backstage/dev-utils": "^0.2.0",
"@backstage/test-utils": "^0.1.14",
"@testing-library/jest-dom": "^5.10.1",
+3 -3
View File
@@ -32,7 +32,7 @@
},
"dependencies": {
"@backstage/catalog-model": "^0.8.4",
"@backstage/core-components": "^0.1.3",
"@backstage/core-components": "^0.1.4",
"@backstage/core-plugin-api": "^0.1.3",
"@backstage/plugin-catalog-react": "^0.2.4",
"@backstage/theme": "^0.2.8",
@@ -48,8 +48,8 @@
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/cli": "^0.7.2",
"@backstage/core-app-api": "^0.1.3",
"@backstage/cli": "^0.7.3",
"@backstage/core-app-api": "^0.1.4",
"@backstage/dev-utils": "^0.2.0",
"@backstage/test-utils": "^0.1.14",
"@testing-library/jest-dom": "^5.10.1",
+11
View File
@@ -1,5 +1,16 @@
# @backstage/plugin-scaffolder-backend
## 0.12.4
### Patch Changes
- 1627daac2: Fix `catalog:write` on windows systems
- ab5cc376f: Use new utilities from `@backstage/backend-common` for safely resolving child paths
- Updated dependencies
- @backstage/backend-common@0.8.4
- @backstage/integration@0.5.7
- @backstage/catalog-client@0.3.15
## 0.12.3
### Patch Changes
+5 -5
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-scaffolder-backend",
"version": "0.12.3",
"version": "0.12.4",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -29,12 +29,12 @@
"clean": "backstage-cli clean"
},
"dependencies": {
"@backstage/backend-common": "^0.8.3",
"@backstage/catalog-client": "^0.3.14",
"@backstage/backend-common": "^0.8.4",
"@backstage/catalog-client": "^0.3.15",
"@backstage/catalog-model": "^0.8.4",
"@backstage/config": "^0.1.5",
"@backstage/errors": "^0.1.1",
"@backstage/integration": "^0.5.6",
"@backstage/integration": "^0.5.7",
"@gitbeaker/core": "^30.2.0",
"@gitbeaker/node": "^30.2.0",
"@octokit/rest": "^18.5.3",
@@ -64,7 +64,7 @@
"yaml": "^1.10.0"
},
"devDependencies": {
"@backstage/cli": "^0.7.2",
"@backstage/cli": "^0.7.3",
"@backstage/test-utils": "^0.1.14",
"@types/command-exists": "^1.2.0",
"@types/fs-extra": "^9.0.1",
+12
View File
@@ -1,5 +1,17 @@
# @backstage/plugin-scaffolder
## 0.9.10
### Patch Changes
- 9e60a728e: Upgrade `rjsf` to 3.0.0.
- a94587cad: Update dependencies
- Updated dependencies
- @backstage/plugin-catalog-react@0.2.5
- @backstage/core-components@0.1.4
- @backstage/integration@0.5.7
- @backstage/catalog-client@0.3.15
## 0.9.9
### Patch Changes
+7 -7
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-scaffolder",
"version": "0.9.9",
"version": "0.9.10",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -30,15 +30,15 @@
"clean": "backstage-cli clean"
},
"dependencies": {
"@backstage/catalog-client": "^0.3.14",
"@backstage/catalog-client": "^0.3.15",
"@backstage/catalog-model": "^0.8.4",
"@backstage/config": "^0.1.5",
"@backstage/core-components": "^0.1.3",
"@backstage/core-components": "^0.1.4",
"@backstage/core-plugin-api": "^0.1.3",
"@backstage/errors": "^0.1.1",
"@backstage/integration": "^0.5.6",
"@backstage/integration": "^0.5.7",
"@backstage/integration-react": "^0.1.4",
"@backstage/plugin-catalog-react": "^0.2.4",
"@backstage/plugin-catalog-react": "^0.2.5",
"@backstage/theme": "^0.2.8",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
@@ -62,8 +62,8 @@
"zen-observable": "^0.8.15"
},
"devDependencies": {
"@backstage/cli": "^0.7.2",
"@backstage/core-app-api": "^0.1.3",
"@backstage/cli": "^0.7.3",
"@backstage/core-app-api": "^0.1.4",
"@backstage/dev-utils": "^0.2.0",
"@backstage/test-utils": "^0.1.14",
"@testing-library/jest-dom": "^5.10.1",
+3 -3
View File
@@ -31,7 +31,7 @@
"dependencies": {
"@backstage/catalog-model": "^0.8.4",
"@backstage/config": "^0.1.5",
"@backstage/core-components": "^0.1.3",
"@backstage/core-components": "^0.1.4",
"@backstage/core-plugin-api": "^0.1.3",
"@backstage/plugin-catalog-react": "^0.2.4",
"@backstage/search-common": "^0.1.2",
@@ -48,8 +48,8 @@
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/cli": "^0.7.2",
"@backstage/core-app-api": "^0.1.3",
"@backstage/cli": "^0.7.3",
"@backstage/core-app-api": "^0.1.4",
"@backstage/dev-utils": "^0.2.0",
"@backstage/test-utils": "^0.1.14",
"@testing-library/jest-dom": "^5.10.1",
+3 -3
View File
@@ -32,7 +32,7 @@
},
"dependencies": {
"@backstage/catalog-model": "^0.8.4",
"@backstage/core-components": "^0.1.3",
"@backstage/core-components": "^0.1.4",
"@backstage/core-plugin-api": "^0.1.3",
"@backstage/plugin-catalog-react": "^0.2.4",
"@backstage/theme": "^0.2.8",
@@ -47,8 +47,8 @@
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/cli": "^0.7.2",
"@backstage/core-app-api": "^0.1.3",
"@backstage/cli": "^0.7.3",
"@backstage/core-app-api": "^0.1.4",
"@backstage/dev-utils": "^0.2.0",
"@backstage/test-utils": "^0.1.14",
"@testing-library/jest-dom": "^5.10.1",
+3 -3
View File
@@ -20,7 +20,7 @@
"clean": "backstage-cli clean"
},
"dependencies": {
"@backstage/core-components": "^0.1.3",
"@backstage/core-components": "^0.1.4",
"@backstage/core-plugin-api": "^0.1.3",
"@backstage/theme": "^0.2.8",
"@material-ui/core": "^4.11.0",
@@ -36,8 +36,8 @@
"zen-observable": "^0.8.15"
},
"devDependencies": {
"@backstage/cli": "^0.7.2",
"@backstage/core-app-api": "^0.1.3",
"@backstage/cli": "^0.7.3",
"@backstage/core-app-api": "^0.1.4",
"@backstage/dev-utils": "^0.2.0",
"@backstage/test-utils": "^0.1.14",
"@testing-library/jest-dom": "^5.10.1",
+3 -3
View File
@@ -33,7 +33,7 @@
},
"dependencies": {
"@backstage/catalog-model": "^0.8.4",
"@backstage/core-components": "^0.1.3",
"@backstage/core-components": "^0.1.4",
"@backstage/core-plugin-api": "^0.1.3",
"@backstage/plugin-catalog-react": "^0.2.4",
"@backstage/theme": "^0.2.8",
@@ -48,8 +48,8 @@
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/cli": "^0.7.2",
"@backstage/core-app-api": "^0.1.3",
"@backstage/cli": "^0.7.3",
"@backstage/core-app-api": "^0.1.4",
"@backstage/dev-utils": "^0.2.0",
"@backstage/test-utils": "^0.1.14",
"@testing-library/jest-dom": "^5.10.1",
+3 -3
View File
@@ -31,7 +31,7 @@
},
"dependencies": {
"@backstage/catalog-model": "^0.8.4",
"@backstage/core-components": "^0.1.3",
"@backstage/core-components": "^0.1.4",
"@backstage/core-plugin-api": "^0.1.3",
"@backstage/plugin-catalog-react": "^0.2.4",
"@backstage/theme": "^0.2.8",
@@ -46,8 +46,8 @@
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/cli": "^0.7.2",
"@backstage/core-app-api": "^0.1.3",
"@backstage/cli": "^0.7.3",
"@backstage/core-app-api": "^0.1.4",
"@backstage/dev-utils": "^0.2.0",
"@backstage/test-utils": "^0.1.14",
"@testing-library/jest-dom": "^5.10.1",
+8
View File
@@ -1,5 +1,13 @@
# @backstage/plugin-tech-radar
## 0.4.2
### Patch Changes
- 846168da2: Add optional id prop passing it to the load API
- Updated dependencies
- @backstage/core-components@0.1.4
## 0.4.1
### Patch Changes
+4 -4
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-tech-radar",
"version": "0.4.1",
"version": "0.4.2",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -30,7 +30,7 @@
"start": "backstage-cli plugin:serve"
},
"dependencies": {
"@backstage/core-components": "^0.1.3",
"@backstage/core-components": "^0.1.4",
"@backstage/core-plugin-api": "^0.1.3",
"@backstage/theme": "^0.2.8",
"@material-ui/core": "^4.11.0",
@@ -44,8 +44,8 @@
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/cli": "^0.7.2",
"@backstage/core-app-api": "^0.1.3",
"@backstage/cli": "^0.7.3",
"@backstage/core-app-api": "^0.1.4",
"@backstage/dev-utils": "^0.2.0",
"@backstage/test-utils": "^0.1.14",
"@testing-library/jest-dom": "^5.10.1",
+9
View File
@@ -1,5 +1,14 @@
# @backstage/plugin-techdocs-backend
## 0.8.5
### Patch Changes
- b47fc34bc: Update "service catalog" references to "software catalog"
- Updated dependencies
- @backstage/backend-common@0.8.4
- @backstage/techdocs-common@0.6.6
## 0.8.4
### Patch Changes
+4 -4
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-techdocs-backend",
"version": "0.8.4",
"version": "0.8.5",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -30,11 +30,11 @@
"clean": "backstage-cli clean"
},
"dependencies": {
"@backstage/backend-common": "^0.8.3",
"@backstage/backend-common": "^0.8.4",
"@backstage/catalog-model": "^0.8.4",
"@backstage/config": "^0.1.5",
"@backstage/errors": "^0.1.1",
"@backstage/techdocs-common": "^0.6.5",
"@backstage/techdocs-common": "^0.6.6",
"@types/express": "^4.17.6",
"cross-fetch": "^3.0.6",
"dockerode": "^3.2.1",
@@ -45,7 +45,7 @@
"winston": "^3.2.1"
},
"devDependencies": {
"@backstage/cli": "^0.7.2",
"@backstage/cli": "^0.7.3",
"@types/dockerode": "^3.2.1",
"supertest": "^6.1.3"
},
+11
View File
@@ -1,5 +1,16 @@
# @backstage/plugin-techdocs
## 0.9.8
### Patch Changes
- 99a2873c7: Include cookies when making fetch requests for SVG from techdocs plugin
- a444c7431: Filter fetched entity fields to optimize loading techdocs list
- Updated dependencies
- @backstage/plugin-catalog-react@0.2.5
- @backstage/core-components@0.1.4
- @backstage/integration@0.5.7
## 0.9.7
### Patch Changes
+6 -6
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-techdocs",
"version": "0.9.7",
"version": "0.9.8",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -33,12 +33,12 @@
"dependencies": {
"@backstage/catalog-model": "^0.8.4",
"@backstage/config": "^0.1.5",
"@backstage/core-components": "^0.1.3",
"@backstage/core-components": "^0.1.4",
"@backstage/core-plugin-api": "^0.1.3",
"@backstage/errors": "^0.1.1",
"@backstage/integration": "^0.5.6",
"@backstage/integration": "^0.5.7",
"@backstage/integration-react": "^0.1.4",
"@backstage/plugin-catalog-react": "^0.2.4",
"@backstage/plugin-catalog-react": "^0.2.5",
"@backstage/theme": "^0.2.8",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
@@ -52,8 +52,8 @@
"sanitize-html": "^2.3.2"
},
"devDependencies": {
"@backstage/cli": "^0.7.2",
"@backstage/core-app-api": "^0.1.3",
"@backstage/cli": "^0.7.3",
"@backstage/core-app-api": "^0.1.4",
"@backstage/dev-utils": "^0.2.0",
"@backstage/test-utils": "^0.1.14",
"@testing-library/jest-dom": "^5.10.1",
+5 -5
View File
@@ -27,7 +27,7 @@
},
"dependencies": {
"@backstage/catalog-model": "^0.8.4",
"@backstage/core-components": "^0.1.3",
"@backstage/core-components": "^0.1.4",
"@backstage/core-plugin-api": "^0.1.3",
"@backstage/errors": "^0.1.1",
"@backstage/plugin-catalog-react": "^0.2.4",
@@ -40,8 +40,8 @@
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/cli": "^0.7.2",
"@backstage/core-app-api": "^0.1.3",
"@backstage/cli": "^0.7.3",
"@backstage/core-app-api": "^0.1.4",
"@backstage/dev-utils": "^0.2.0",
"@backstage/test-utils": "^0.1.14",
"@testing-library/jest-dom": "^5.10.1",
@@ -49,8 +49,8 @@
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32",
"msw": "^0.29.0",
"cross-fetch": "^3.0.6"
"cross-fetch": "^3.0.6",
"msw": "^0.29.0"
},
"files": [
"dist"
+3 -3
View File
@@ -30,7 +30,7 @@
"clean": "backstage-cli clean"
},
"dependencies": {
"@backstage/core-components": "^0.1.3",
"@backstage/core-components": "^0.1.4",
"@backstage/core-plugin-api": "^0.1.3",
"@backstage/theme": "^0.2.8",
"@material-ui/core": "^4.11.0",
@@ -42,8 +42,8 @@
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/cli": "^0.7.2",
"@backstage/core-app-api": "^0.1.3",
"@backstage/cli": "^0.7.3",
"@backstage/core-app-api": "^0.1.4",
"@backstage/core-plugin-api": "^0.1.3",
"@backstage/dev-utils": "^0.2.0",
"@backstage/test-utils": "^0.1.14",
+3 -3
View File
@@ -30,7 +30,7 @@
"start": "backstage-cli plugin:serve"
},
"dependencies": {
"@backstage/core-components": "^0.1.3",
"@backstage/core-components": "^0.1.4",
"@backstage/core-plugin-api": "^0.1.3",
"@backstage/theme": "^0.2.8",
"@material-ui/core": "^4.11.0",
@@ -42,8 +42,8 @@
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/cli": "^0.7.2",
"@backstage/core-app-api": "^0.1.3",
"@backstage/cli": "^0.7.3",
"@backstage/core-app-api": "^0.1.4",
"@backstage/dev-utils": "^0.2.0",
"@backstage/test-utils": "^0.1.14",
"@testing-library/jest-dom": "^5.10.1",