Merge pull request #7209 from backstage/changeset-release/master

Version Packages
This commit is contained in:
Patrik Oldsberg
2021-09-23 13:18:36 +02:00
committed by GitHub
176 changed files with 1482 additions and 801 deletions
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-explore': patch
---
Export the `DomainCard` to be able to customize the explorer page.
-7
View File
@@ -1,7 +0,0 @@
---
'@backstage/core-components': patch
---
Allow to configure zooming for `<DependencyGraph>`. `zoom` can either be
`enabled`, `disabled`, or `enable-on-click`. The latter requires the user to
click into the diagram to enable zooming.
-49
View File
@@ -1,49 +0,0 @@
---
'@backstage/plugin-catalog-backend': minor
---
#### Enforcing catalog rules
Apply the catalog rules enforcer, based on origin location.
This is a breaking change, in the sense that this was not properly checked in earlier versions of the new catalog engine. You may see ingestion of certain entities start to be rejected after this update, if the following conditions apply to you:
- You are using the configuration key `catalog.rules.[].allow`, and
- Your registered locations point (directly or transitively) to entities whose kinds are not listed in `catalog.rules.[].allow`
and/or
- You are using the configuration key `catalog.locations.[].rules.[].allow`
- The config locations point (directly or transitively) to entities whose kinds are not listed neither `catalog.rules.[].allow`, nor in the corresponding `.rules.[].allow` of that config location
This is an example of what the configuration might look like:
```yaml
catalog:
# These do not list Template as a valid kind; users are therefore unable to
# manually register entities of the Template kind
rules:
- allow:
- Component
- API
- Resource
- Group
- User
- System
- Domain
- Location
locations:
# This lists Template as valid only for that specific config location
- type: file
target: ../../plugins/scaffolder-backend/sample-templates/all-templates.yaml
rules:
- allow: [Template]
```
If you are not using any of those `rules` section, you should not be affected by this change.
If you do use any of those `rules` sections, make sure that they are complete and list all of the kinds that are in active use in your Backstage installation.
#### Other
Also, the class `CatalogRulesEnforcer` was renamed to `DefaultCatalogRulesEnforcer`, implementing the type `CatalogRulesEnforcer`.
-45
View File
@@ -1,45 +0,0 @@
---
'@backstage/plugin-catalog-import': minor
---
Add initial support for customizing the catalog import page.
It is now possible to pass a custom layout to the import page, as it's already
supported by the search page. If no custom layout is passed, the default layout
is used.
```typescript
<Route path="/catalog-import" element={<CatalogImportPage />}>
<Page themeId="home">
<Header title="Register an existing component" />
<Content>
<ContentHeader title="Start tracking your components">
<SupportButton>
Start tracking your component in Backstage by adding it to the
software catalog.
</SupportButton>
</ContentHeader>
<Grid container spacing={2} direction="row-reverse">
<Grid item xs={12} md={4} lg={6} xl={8}>
Hello World
</Grid>
<Grid item xs={12} md={8} lg={6} xl={4}>
<ImportStepper />
</Grid>
</Grid>
</Content>
</Page>
</Route>
```
Previously it was possible to disable and customize the automatic pull request
feature by passing options to `<CatalogImportPage>` (`pullRequest.disable` and
`pullRequest.preparePullRequest`). This functionality is moved to the
`CatalogImportApi` which now provides an optional `preparePullRequest()`
function. The function can either be overridden to generate a different content
for the pull request, or removed to disable this feature.
The export of the long term deprecated legacy `<Router>` is removed, migrate to
`<CatalogImportPage>` instead.
-7
View File
@@ -1,7 +0,0 @@
---
'@backstage/plugin-catalog-graph': patch
---
Make zooming configurable for `<CatalogGraphCard>` and disable it by default.
This resolves an issue that scrolling on the entity page is sometimes captured
by the graph making the page hard to use.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/integration': patch
---
Allow file extension `.yml` to be ingested in GitLab processor
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/core-components': minor
---
Fixed a popup-blocking bug affecting iOS Safari in SignInPage.tsx by ensuring that the popup occurs in the same tick as the tap/click
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/catalog-client': patch
---
Update `AddLocationResponse` to optionally return `exists` to signal that the location already exists, this is only returned when calling `addLocation` in dryRun.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-backend': patch
---
Update `createLocation` to optionally return `exists` to signal that the location already exists, this is only returned for dry runs.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/cli': patch
---
Disabled ECMAScript transforms in app and backend builds in order to reduce bundle size and runtime performance. For the rationale and a full list of syntax that is no longer transformed, see https://github.com/alangpierce/sucrase#transforms. This also enables TypeScripts `useDefineForClassFields` flag by default, which in rare occasions could cause build failures. For instructions on how to mitigate issues due to the flag, see the [TypeScript documentation](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-7.html#the-usedefineforclassfields-flag-and-the-declare-property-modifier).
-37
View File
@@ -1,37 +0,0 @@
---
'@backstage/create-app': patch
---
This change adds an API endpoint for requesting a catalog refresh at `/refresh`, which is activated if a `RefreshService` is passed to `createRouter`.
The creation of the router has been abstracted behind the `CatalogBuilder` to simplify usage and future changes. The following **changes are required** to your `catalog.ts` for the refresh endpoint to function.
```diff
- import {
- CatalogBuilder,
- createRouter,
- } from '@backstage/plugin-catalog-backend';
+ import { CatalogBuilder } from '@backstage/plugin-catalog-backend';
export default async function createPlugin(
env: PluginEnvironment,
): Promise<Router> {
const builder = await CatalogBuilder.create(env);
- const {
- entitiesCatalog,
- locationAnalyzer,
- processingEngine,
- locationService,
- } = await builder.build();
+ const { processingEngine, router } = await builder.build();
await processingEngine.start();
- return await createRouter({
- entitiesCatalog,
- locationAnalyzer,
- locationService,
- logger: env.logger,
- config: env.config,
- });
+ return router;
}
```
-22
View File
@@ -1,22 +0,0 @@
---
'@backstage/create-app': patch
---
Switched required engine from Node.js 12 or 14, to 14 or 16.
To apply these changes to an existing app, switch out the following in the root `package.json`:
```diff
"engines": {
- "node": "12 || 14"
+ "node": "14 || 16"
},
```
Also get rid of the entire `engines` object in `packages/backend/package.json`, as it is redundant:
```diff
- "engines": {
- "node": "12 || 14"
- },
```
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog': patch
---
Updates the `AboutCard` with a refresh button that allows the entity to be scheduled for refresh.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-backend': minor
---
Bitbucket Cloud Discovery support
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-backend-module-ldap': patch
---
Alters LDAP processor to handle one SearchEntry at a time
-7
View File
@@ -1,7 +0,0 @@
---
'@backstage/plugin-catalog-backend': minor
---
Add API endpoint for requesting a catalog refresh at `/refresh`, which is activated if a `RefreshService` is passed to `createRouter`.
The new method is used to trigger a refresh of an entity in an as localized was as possible, usually by refreshing the parent location.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-user-settings': patch
---
Add search to FeatureFlags
-7
View File
@@ -1,7 +0,0 @@
---
'@backstage/create-app': patch
---
Bumped the default `@spotify/prettier-config` dependency to `^11.0.0`.
This is an optional upgrade, but you may be interested in doing the same, to get the most modern lint rules out there.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-circleci': patch
---
Swapped over to using Luxon as opposed to DayJS in the CircleCI plugin as part of the single Date library improvements.
-6
View File
@@ -1,6 +0,0 @@
---
'@backstage/catalog-client': minor
'@backstage/plugin-catalog-react': minor
---
Extends the `CatalogClient` interface with a `refreshEntity` method.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/cli': patch
---
Restrict imports on the form `../../plugins/x/src`
-6
View File
@@ -1,6 +0,0 @@
---
'@backstage/plugin-api-docs': patch
'@backstage/plugin-catalog-react': patch
---
This makes Type and Lifecycle columns consistent for all table cases and adds a new line in Description column for better readability
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-git-release-manager': patch
---
Remove 'refresh' icon from success dialog's OK-CTA. User feedback deemed it confusing.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/catalog-model': patch
---
Loosen constraints on what's a valid catalog entity tag name (include + and #)
-19
View File
@@ -1,19 +0,0 @@
---
'@backstage/backend-common': patch
'@backstage/catalog-model': patch
'@backstage/cli': patch
'@backstage/config': patch
'@backstage/core-components': patch
'@backstage/plugin-catalog-backend': patch
'@backstage/plugin-catalog-backend-module-ldap': patch
'@backstage/plugin-catalog-backend-module-msgraph': patch
'@backstage/plugin-catalog-react': patch
'@backstage/plugin-circleci': patch
'@backstage/plugin-kafka-backend': patch
'@backstage/plugin-kubernetes-backend': patch
'@backstage/plugin-rollbar': patch
'@backstage/plugin-rollbar-backend': patch
'@backstage/plugin-search-backend-module-pg': patch
---
Bump `lodash` to remediate `SNYK-JS-LODASH-590103` security vulnerability
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-techdocs': patch
---
Make techdocs context search bar width adjust on smaller screens.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/cli': patch
---
Switched the Jest YAML transform from `yaml-jest` to `jest-transform-yaml`, which works with newer versions of Node.js.
-7
View File
@@ -1,7 +0,0 @@
---
'@backstage/plugin-kubernetes': patch
'@backstage/plugin-kubernetes-backend': patch
'@backstage/plugin-kubernetes-common': patch
---
Provide access to the Kubernetes dashboard when viewing a specific resource
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-import': patch
---
The import form is now aware of locations that already exist. It lists them separately and shows a button for triggering a refresh.
+42
View File
@@ -1,5 +1,47 @@
# example-app
## 0.2.47
### Patch Changes
- Updated dependencies
- @backstage/plugin-explore@0.3.17
- @backstage/core-components@0.5.0
- @backstage/plugin-catalog-import@0.6.0
- @backstage/plugin-catalog-graph@0.1.1
- @backstage/cli@0.7.13
- @backstage/plugin-catalog@0.6.16
- @backstage/plugin-user-settings@0.3.6
- @backstage/plugin-circleci@0.2.24
- @backstage/plugin-catalog-react@0.5.0
- @backstage/plugin-api-docs@0.6.9
- @backstage/catalog-model@0.9.3
- @backstage/plugin-rollbar@0.3.15
- @backstage/plugin-techdocs@0.11.3
- @backstage/plugin-kubernetes@0.4.14
- @backstage/core-app-api@0.1.14
- @backstage/integration-react@0.1.10
- @backstage/plugin-badges@0.2.10
- @backstage/plugin-cloudbuild@0.2.24
- @backstage/plugin-code-coverage@0.1.12
- @backstage/plugin-cost-insights@0.11.7
- @backstage/plugin-gcp-projects@0.3.5
- @backstage/plugin-github-actions@0.4.19
- @backstage/plugin-graphiql@0.2.17
- @backstage/plugin-home@0.4.1
- @backstage/plugin-jenkins@0.5.7
- @backstage/plugin-kafka@0.2.16
- @backstage/plugin-lighthouse@0.2.26
- @backstage/plugin-newrelic@0.3.5
- @backstage/plugin-org@0.3.24
- @backstage/plugin-pagerduty@0.3.14
- @backstage/plugin-scaffolder@0.11.5
- @backstage/plugin-search@0.4.12
- @backstage/plugin-sentry@0.3.22
- @backstage/plugin-shortcuts@0.1.9
- @backstage/plugin-tech-radar@0.4.8
- @backstage/plugin-todo@0.1.11
## 0.2.46
### Patch Changes
+37 -37
View File
@@ -1,46 +1,46 @@
{
"name": "example-app",
"version": "0.2.46",
"version": "0.2.47",
"private": true,
"bundled": true,
"dependencies": {
"@backstage/catalog-model": "^0.9.2",
"@backstage/cli": "^0.7.12",
"@backstage/core-app-api": "^0.1.13",
"@backstage/core-components": "^0.4.2",
"@backstage/catalog-model": "^0.9.3",
"@backstage/cli": "^0.7.13",
"@backstage/core-app-api": "^0.1.14",
"@backstage/core-components": "^0.5.0",
"@backstage/core-plugin-api": "^0.1.8",
"@backstage/integration-react": "^0.1.9",
"@backstage/plugin-api-docs": "^0.6.8",
"@backstage/plugin-badges": "^0.2.9",
"@backstage/plugin-catalog": "^0.6.15",
"@backstage/plugin-catalog-graph": "^0.1.0",
"@backstage/plugin-catalog-import": "^0.5.21",
"@backstage/plugin-catalog-react": "^0.4.6",
"@backstage/plugin-circleci": "^0.2.23",
"@backstage/plugin-cloudbuild": "^0.2.23",
"@backstage/plugin-code-coverage": "^0.1.11",
"@backstage/plugin-cost-insights": "^0.11.6",
"@backstage/plugin-explore": "^0.3.16",
"@backstage/plugin-gcp-projects": "^0.3.4",
"@backstage/plugin-github-actions": "^0.4.18",
"@backstage/plugin-graphiql": "^0.2.16",
"@backstage/plugin-home": "^0.4.0",
"@backstage/plugin-jenkins": "^0.5.6",
"@backstage/plugin-kafka": "^0.2.15",
"@backstage/plugin-kubernetes": "^0.4.13",
"@backstage/plugin-lighthouse": "^0.2.25",
"@backstage/plugin-newrelic": "^0.3.4",
"@backstage/plugin-org": "^0.3.23",
"@backstage/plugin-pagerduty": "0.3.13",
"@backstage/plugin-rollbar": "^0.3.14",
"@backstage/plugin-scaffolder": "^0.11.4",
"@backstage/plugin-search": "^0.4.11",
"@backstage/plugin-sentry": "^0.3.21",
"@backstage/plugin-shortcuts": "^0.1.8",
"@backstage/plugin-tech-radar": "^0.4.7",
"@backstage/plugin-techdocs": "^0.11.2",
"@backstage/plugin-todo": "^0.1.10",
"@backstage/plugin-user-settings": "^0.3.5",
"@backstage/integration-react": "^0.1.10",
"@backstage/plugin-api-docs": "^0.6.9",
"@backstage/plugin-badges": "^0.2.10",
"@backstage/plugin-catalog": "^0.6.16",
"@backstage/plugin-catalog-graph": "^0.1.1",
"@backstage/plugin-catalog-import": "^0.6.0",
"@backstage/plugin-catalog-react": "^0.5.0",
"@backstage/plugin-circleci": "^0.2.24",
"@backstage/plugin-cloudbuild": "^0.2.24",
"@backstage/plugin-code-coverage": "^0.1.12",
"@backstage/plugin-cost-insights": "^0.11.7",
"@backstage/plugin-explore": "^0.3.17",
"@backstage/plugin-gcp-projects": "^0.3.5",
"@backstage/plugin-github-actions": "^0.4.19",
"@backstage/plugin-graphiql": "^0.2.17",
"@backstage/plugin-home": "^0.4.1",
"@backstage/plugin-jenkins": "^0.5.7",
"@backstage/plugin-kafka": "^0.2.16",
"@backstage/plugin-kubernetes": "^0.4.14",
"@backstage/plugin-lighthouse": "^0.2.26",
"@backstage/plugin-newrelic": "^0.3.5",
"@backstage/plugin-org": "^0.3.24",
"@backstage/plugin-pagerduty": "0.3.14",
"@backstage/plugin-rollbar": "^0.3.15",
"@backstage/plugin-scaffolder": "^0.11.5",
"@backstage/plugin-search": "^0.4.12",
"@backstage/plugin-sentry": "^0.3.22",
"@backstage/plugin-shortcuts": "^0.1.9",
"@backstage/plugin-tech-radar": "^0.4.8",
"@backstage/plugin-techdocs": "^0.11.3",
"@backstage/plugin-todo": "^0.1.11",
"@backstage/plugin-user-settings": "^0.3.6",
"@backstage/search-common": "^0.2.0",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
+9
View File
@@ -1,5 +1,14 @@
# @backstage/backend-common
## 0.9.4
### Patch Changes
- febddedcb2: Bump `lodash` to remediate `SNYK-JS-LODASH-590103` security vulnerability
- Updated dependencies
- @backstage/integration@0.6.5
- @backstage/config@0.1.10
## 0.9.3
### Patch Changes
+4 -4
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/backend-common",
"description": "Common functionality library for Backstage backends",
"version": "0.9.3",
"version": "0.9.4",
"main": "src/index.ts",
"types": "src/index.ts",
"private": false,
@@ -30,10 +30,10 @@
},
"dependencies": {
"@backstage/cli-common": "^0.1.3",
"@backstage/config": "^0.1.9",
"@backstage/config": "^0.1.10",
"@backstage/config-loader": "^0.6.8",
"@backstage/errors": "^0.1.2",
"@backstage/integration": "^0.6.4",
"@backstage/integration": "^0.6.5",
"@google-cloud/storage": "^5.8.0",
"@octokit/rest": "^18.5.3",
"@types/cors": "^2.8.6",
@@ -77,7 +77,7 @@
}
},
"devDependencies": {
"@backstage/cli": "^0.7.12",
"@backstage/cli": "^0.7.13",
"@backstage/test-utils": "^0.1.17",
"@types/archiver": "^5.1.0",
"@types/compression": "^1.7.0",
+24
View File
@@ -1,5 +1,29 @@
# example-backend
## 0.2.47
### Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-backend@0.14.0
- @backstage/integration@0.6.5
- @backstage/catalog-client@0.4.0
- @backstage/catalog-model@0.9.3
- @backstage/backend-common@0.9.4
- @backstage/config@0.1.10
- @backstage/plugin-kafka-backend@0.2.10
- @backstage/plugin-kubernetes-backend@0.3.16
- @backstage/plugin-rollbar-backend@0.1.15
- @backstage/plugin-search-backend-module-pg@0.2.1
- example-app@0.2.47
- @backstage/plugin-auth-backend@0.4.1
- @backstage/plugin-badges-backend@0.1.10
- @backstage/plugin-code-coverage-backend@0.1.11
- @backstage/plugin-jenkins-backend@0.1.5
- @backstage/plugin-scaffolder-backend@0.15.6
- @backstage/plugin-techdocs-backend@0.10.3
- @backstage/plugin-todo-backend@0.1.12
## 0.2.46
### Patch Changes
+20 -20
View File
@@ -1,6 +1,6 @@
{
"name": "example-backend",
"version": "0.2.46",
"version": "0.2.47",
"main": "dist/index.cjs.js",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -24,35 +24,35 @@
"migrate:create": "knex migrate:make -x ts"
},
"dependencies": {
"@backstage/backend-common": "^0.9.3",
"@backstage/catalog-client": "^0.3.17",
"@backstage/catalog-model": "^0.9.1",
"@backstage/config": "^0.1.8",
"@backstage/integration": "^0.6.4",
"@backstage/backend-common": "^0.9.4",
"@backstage/catalog-client": "^0.4.0",
"@backstage/catalog-model": "^0.9.3",
"@backstage/config": "^0.1.10",
"@backstage/integration": "^0.6.5",
"@backstage/plugin-app-backend": "^0.3.16",
"@backstage/plugin-auth-backend": "^0.4.0",
"@backstage/plugin-badges-backend": "^0.1.9",
"@backstage/plugin-catalog-backend": "^0.13.8",
"@backstage/plugin-code-coverage-backend": "^0.1.10",
"@backstage/plugin-auth-backend": "^0.4.1",
"@backstage/plugin-badges-backend": "^0.1.10",
"@backstage/plugin-catalog-backend": "^0.14.0",
"@backstage/plugin-code-coverage-backend": "^0.1.11",
"@backstage/plugin-graphql-backend": "^0.1.9",
"@backstage/plugin-jenkins-backend": "^0.1.4",
"@backstage/plugin-kubernetes-backend": "^0.3.15",
"@backstage/plugin-kafka-backend": "^0.2.9",
"@backstage/plugin-jenkins-backend": "^0.1.5",
"@backstage/plugin-kubernetes-backend": "^0.3.16",
"@backstage/plugin-kafka-backend": "^0.2.10",
"@backstage/plugin-proxy-backend": "^0.2.12",
"@backstage/plugin-rollbar-backend": "^0.1.14",
"@backstage/plugin-scaffolder-backend": "^0.15.5",
"@backstage/plugin-rollbar-backend": "^0.1.15",
"@backstage/plugin-scaffolder-backend": "^0.15.6",
"@backstage/plugin-scaffolder-backend-module-rails": "^0.1.5",
"@backstage/plugin-search-backend": "^0.2.6",
"@backstage/plugin-search-backend-node": "^0.4.2",
"@backstage/plugin-search-backend-module-elasticsearch": "^0.0.4",
"@backstage/plugin-search-backend-module-pg": "^0.2.0",
"@backstage/plugin-techdocs-backend": "^0.10.2",
"@backstage/plugin-todo-backend": "^0.1.11",
"@backstage/plugin-search-backend-module-pg": "^0.2.1",
"@backstage/plugin-techdocs-backend": "^0.10.3",
"@backstage/plugin-todo-backend": "^0.1.12",
"@gitbeaker/node": "^30.2.0",
"@octokit/rest": "^18.5.3",
"azure-devops-node-api": "^11.0.1",
"dockerode": "^3.2.1",
"example-app": "^0.2.46",
"example-app": "^0.2.47",
"express": "^4.17.1",
"express-promise-router": "^4.1.0",
"express-prom-bundle": "^6.3.6",
@@ -64,7 +64,7 @@
"winston": "^3.2.1"
},
"devDependencies": {
"@backstage/cli": "^0.7.12",
"@backstage/cli": "^0.7.13",
"@types/dockerode": "^3.2.1",
"@types/express": "^4.17.6",
"@types/express-serve-static-core": "^4.17.5"
+13
View File
@@ -1,5 +1,18 @@
# @backstage/catalog-client
## 0.4.0
### Minor Changes
- dbcaa6387a: Extends the `CatalogClient` interface with a `refreshEntity` method.
### Patch Changes
- 9ef2987a83: Update `AddLocationResponse` to optionally return `exists` to signal that the location already exists, this is only returned when calling `addLocation` in dryRun.
- Updated dependencies
- @backstage/catalog-model@0.9.3
- @backstage/config@0.1.10
## 0.3.19
### Patch Changes
+4 -4
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/catalog-client",
"description": "An isomorphic client for the catalog backend",
"version": "0.3.19",
"version": "0.4.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -30,13 +30,13 @@
"clean": "backstage-cli clean"
},
"dependencies": {
"@backstage/catalog-model": "^0.9.2",
"@backstage/config": "^0.1.9",
"@backstage/catalog-model": "^0.9.3",
"@backstage/config": "^0.1.10",
"@backstage/errors": "^0.1.2",
"cross-fetch": "^3.0.6"
},
"devDependencies": {
"@backstage/cli": "^0.7.11",
"@backstage/cli": "^0.7.13",
"@types/jest": "^26.0.7",
"msw": "^0.29.0"
},
+9
View File
@@ -1,5 +1,14 @@
# @backstage/catalog-model
## 0.9.3
### Patch Changes
- d42566c5c9: Loosen constraints on what's a valid catalog entity tag name (include + and #)
- febddedcb2: Bump `lodash` to remediate `SNYK-JS-LODASH-590103` security vulnerability
- Updated dependencies
- @backstage/config@0.1.10
## 0.9.2
### Patch Changes
+3 -3
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/catalog-model",
"description": "Types and validators that help describe the model of a Backstage Catalog",
"version": "0.9.2",
"version": "0.9.3",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -30,7 +30,7 @@
"clean": "backstage-cli clean"
},
"dependencies": {
"@backstage/config": "^0.1.9",
"@backstage/config": "^0.1.10",
"@backstage/errors": "^0.1.2",
"@types/json-schema": "^7.0.5",
"@types/yup": "^0.29.8",
@@ -41,7 +41,7 @@
"yup": "^0.29.3"
},
"devDependencies": {
"@backstage/cli": "^0.7.11",
"@backstage/cli": "^0.7.13",
"@types/express": "^4.17.6",
"@types/jest": "^26.0.7",
"@types/lodash": "^4.14.151",
+11
View File
@@ -1,5 +1,16 @@
# @backstage/cli
## 0.7.13
### Patch Changes
- c0c51c9710: Disabled ECMAScript transforms in app and backend builds in order to reduce bundle size and runtime performance. For the rationale and a full list of syntax that is no longer transformed, see https://github.com/alangpierce/sucrase#transforms. This also enables TypeScripts `useDefineForClassFields` flag by default, which in rare occasions could cause build failures. For instructions on how to mitigate issues due to the flag, see the [TypeScript documentation](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-7.html#the-usedefineforclassfields-flag-and-the-declare-property-modifier).
- e9f332a51c: Restrict imports on the form `../../plugins/x/src`
- febddedcb2: Bump `lodash` to remediate `SNYK-JS-LODASH-590103` security vulnerability
- 050797c5b3: Switched the Jest YAML transform from `yaml-jest` to `jest-transform-yaml`, which works with newer versions of Node.js.
- Updated dependencies
- @backstage/config@0.1.10
## 0.7.12
### Patch Changes
+7 -7
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/cli",
"description": "CLI for developing Backstage plugins and apps",
"version": "0.7.12",
"version": "0.7.13",
"private": false,
"publishConfig": {
"access": "public"
@@ -31,7 +31,7 @@
"@babel/core": "^7.4.4",
"@babel/plugin-transform-modules-commonjs": "^7.4.4",
"@backstage/cli-common": "^0.1.3",
"@backstage/config": "^0.1.9",
"@backstage/config": "^0.1.10",
"@backstage/config-loader": "^0.6.8",
"@hot-loader/react-dom": "^16.13.0",
"@lerna/package-graph": "^4.0.0",
@@ -117,12 +117,12 @@
"yn": "^4.0.0"
},
"devDependencies": {
"@backstage/backend-common": "^0.9.3",
"@backstage/config": "^0.1.9",
"@backstage/core-components": "^0.4.2",
"@backstage/backend-common": "^0.9.4",
"@backstage/config": "^0.1.10",
"@backstage/core-components": "^0.5.0",
"@backstage/core-plugin-api": "^0.1.8",
"@backstage/core-app-api": "^0.1.13",
"@backstage/dev-utils": "^0.2.9",
"@backstage/core-app-api": "^0.1.14",
"@backstage/dev-utils": "^0.2.10",
"@backstage/test-utils": "^0.1.17",
"@backstage/theme": "^0.2.10",
"@types/diff": "^5.0.0",
+8
View File
@@ -1,5 +1,13 @@
# @backstage/codemods
## 0.1.15
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.5.0
- @backstage/core-app-api@0.1.14
## 0.1.14
### Patch Changes
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/codemods",
"description": "A collection of codemods for Backstage projects",
"version": "0.1.14",
"version": "0.1.15",
"private": false,
"publishConfig": {
"access": "public",
+6
View File
@@ -1,5 +1,11 @@
# @backstage/config
## 0.1.10
### Patch Changes
- febddedcb2: Bump `lodash` to remediate `SNYK-JS-LODASH-590103` security vulnerability
## 0.1.9
### Patch Changes
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/config",
"description": "Config API used by Backstage core, backend, and CLI",
"version": "0.1.9",
"version": "0.1.10",
"private": false,
"publishConfig": {
"access": "public",
+8
View File
@@ -1,5 +1,13 @@
# @backstage/core-app-api
## 0.1.14
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.5.0
- @backstage/config@0.1.10
## 0.1.13
### Patch Changes
+4 -4
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/core-app-api",
"description": "Core app API used by Backstage apps",
"version": "0.1.13",
"version": "0.1.14",
"private": false,
"publishConfig": {
"access": "public",
@@ -29,8 +29,8 @@
"clean": "backstage-cli clean"
},
"dependencies": {
"@backstage/core-components": "^0.4.2",
"@backstage/config": "^0.1.9",
"@backstage/core-components": "^0.5.0",
"@backstage/config": "^0.1.10",
"@backstage/core-plugin-api": "^0.1.8",
"@backstage/theme": "^0.2.10",
"@backstage/version-bridge": "^0.1.0",
@@ -45,7 +45,7 @@
"zen-observable": "^0.8.15"
},
"devDependencies": {
"@backstage/cli": "^0.7.12",
"@backstage/cli": "^0.7.13",
"@backstage/test-utils": "^0.1.17",
"@backstage/test-utils-core": "^0.1.2",
"@testing-library/jest-dom": "^5.10.1",
+15
View File
@@ -1,5 +1,20 @@
# @backstage/core-components
## 0.5.0
### Minor Changes
- 537bd04005: Fixed a popup-blocking bug affecting iOS Safari in SignInPage.tsx by ensuring that the popup occurs in the same tick as the tap/click
### Patch Changes
- c0eb1fb9df: Allow to configure zooming for `<DependencyGraph>`. `zoom` can either be
`enabled`, `disabled`, or `enable-on-click`. The latter requires the user to
click into the diagram to enable zooming.
- febddedcb2: Bump `lodash` to remediate `SNYK-JS-LODASH-590103` security vulnerability
- Updated dependencies
- @backstage/config@0.1.10
## 0.4.2
### Patch Changes
+4 -4
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/core-components",
"description": "Core components used by Backstage plugins and apps",
"version": "0.4.2",
"version": "0.5.0",
"private": false,
"publishConfig": {
"access": "public",
@@ -29,7 +29,7 @@
"clean": "backstage-cli clean"
},
"dependencies": {
"@backstage/config": "^0.1.9",
"@backstage/config": "^0.1.10",
"@backstage/core-plugin-api": "^0.1.8",
"@backstage/errors": "^0.1.2",
"@backstage/theme": "^0.2.10",
@@ -70,8 +70,8 @@
"zen-observable": "^0.8.15"
},
"devDependencies": {
"@backstage/core-app-api": "^0.1.13",
"@backstage/cli": "^0.7.12",
"@backstage/core-app-api": "^0.1.14",
"@backstage/cli": "^0.7.13",
"@backstage/test-utils": "^0.1.17",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
+61
View File
@@ -1,5 +1,66 @@
# @backstage/create-app
## 0.3.42
### Patch Changes
- 89fd81a1ab: This change adds an API endpoint for requesting a catalog refresh at `/refresh`, which is activated if a `RefreshService` is passed to `createRouter`.
The creation of the router has been abstracted behind the `CatalogBuilder` to simplify usage and future changes. The following **changes are required** to your `catalog.ts` for the refresh endpoint to function.
```diff
- import {
- CatalogBuilder,
- createRouter,
- } from '@backstage/plugin-catalog-backend';
+ import { CatalogBuilder } from '@backstage/plugin-catalog-backend';
export default async function createPlugin(
env: PluginEnvironment,
): Promise<Router> {
const builder = await CatalogBuilder.create(env);
- const {
- entitiesCatalog,
- locationAnalyzer,
- processingEngine,
- locationService,
- } = await builder.build();
+ const { processingEngine, router } = await builder.build();
await processingEngine.start();
- return await createRouter({
- entitiesCatalog,
- locationAnalyzer,
- locationService,
- logger: env.logger,
- config: env.config,
- });
+ return router;
}
```
- d0a47c8605: Switched required engine from Node.js 12 or 14, to 14 or 16.
To apply these changes to an existing app, switch out the following in the root `package.json`:
```diff
"engines": {
- "node": "12 || 14"
+ "node": "14 || 16"
},
```
Also get rid of the entire `engines` object in `packages/backend/package.json`, as it is redundant:
```diff
- "engines": {
- "node": "12 || 14"
- },
```
- df95665e4b: Bumped the default `@spotify/prettier-config` dependency to `^11.0.0`.
This is an optional upgrade, but you may be interested in doing the same, to get the most modern lint rules out there.
## 0.3.41
## 0.3.40
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/create-app",
"description": "A CLI that helps you create your own Backstage app",
"version": "0.3.41",
"version": "0.3.42",
"private": false,
"publishConfig": {
"access": "public"
+11
View File
@@ -1,5 +1,16 @@
# @backstage/dev-utils
## 0.2.10
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.5.0
- @backstage/plugin-catalog-react@0.5.0
- @backstage/catalog-model@0.9.3
- @backstage/core-app-api@0.1.14
- @backstage/integration-react@0.1.10
## 0.2.9
### Patch Changes
+7 -7
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/dev-utils",
"description": "Utilities for developing Backstage plugins.",
"version": "0.2.9",
"version": "0.2.10",
"private": false,
"publishConfig": {
"access": "public",
@@ -29,12 +29,12 @@
"clean": "backstage-cli clean"
},
"dependencies": {
"@backstage/core-app-api": "^0.1.12",
"@backstage/core-components": "^0.4.1",
"@backstage/core-app-api": "^0.1.14",
"@backstage/core-components": "^0.5.0",
"@backstage/core-plugin-api": "^0.1.7",
"@backstage/catalog-model": "^0.9.2",
"@backstage/integration-react": "^0.1.8",
"@backstage/plugin-catalog-react": "^0.4.5",
"@backstage/catalog-model": "^0.9.3",
"@backstage/integration-react": "^0.1.10",
"@backstage/plugin-catalog-react": "^0.5.0",
"@backstage/test-utils": "^0.1.17",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
@@ -50,7 +50,7 @@
"react-router-dom": "6.0.0-beta.0"
},
"devDependencies": {
"@backstage/cli": "^0.7.11",
"@backstage/cli": "^0.7.13",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32"
},
+9
View File
@@ -1,5 +1,14 @@
# @backstage/integration-react
## 0.1.10
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.5.0
- @backstage/integration@0.6.5
- @backstage/config@0.1.10
## 0.1.9
### Patch Changes
+6 -6
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/integration-react",
"description": "Frontend package for managing integrations towards external systems",
"version": "0.1.9",
"version": "0.1.10",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -21,10 +21,10 @@
"clean": "backstage-cli clean"
},
"dependencies": {
"@backstage/config": "^0.1.6",
"@backstage/core-components": "^0.4.2",
"@backstage/config": "^0.1.10",
"@backstage/core-components": "^0.5.0",
"@backstage/core-plugin-api": "^0.1.8",
"@backstage/integration": "^0.6.4",
"@backstage/integration": "^0.6.5",
"@backstage/theme": "^0.2.9",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -34,8 +34,8 @@
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/cli": "^0.7.12",
"@backstage/dev-utils": "^0.2.8",
"@backstage/cli": "^0.7.13",
"@backstage/dev-utils": "^0.2.10",
"@backstage/test-utils": "^0.1.17",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
+8
View File
@@ -1,5 +1,13 @@
# @backstage/integration
## 0.6.5
### Patch Changes
- 8113ba5ebb: Allow file extension `.yml` to be ingested in GitLab processor
- Updated dependencies
- @backstage/config@0.1.10
## 0.6.4
### Patch Changes
+3 -3
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/integration",
"description": "Helpers for managing integrations towards external systems",
"version": "0.6.4",
"version": "0.6.5",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -30,7 +30,7 @@
"clean": "backstage-cli clean"
},
"dependencies": {
"@backstage/config": "^0.1.8",
"@backstage/config": "^0.1.10",
"cross-fetch": "^3.0.6",
"git-url-parse": "^11.6.0",
"@octokit/rest": "^18.5.3",
@@ -38,7 +38,7 @@
"luxon": "^2.0.2"
},
"devDependencies": {
"@backstage/cli": "^0.7.12",
"@backstage/cli": "^0.7.13",
"@backstage/config-loader": "^0.6.7",
"@backstage/test-utils": "^0.1.17",
"@types/jest": "^26.0.7",
+9
View File
@@ -1,5 +1,14 @@
# @backstage/plugin-allure
## 0.1.3
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.5.0
- @backstage/plugin-catalog-react@0.5.0
- @backstage/catalog-model@0.9.3
## 0.1.2
### Patch Changes
+7 -7
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-allure",
"description": "A Backstage plugin that integrates with Allure",
"version": "0.1.2",
"version": "0.1.3",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -22,10 +22,10 @@
"clean": "backstage-cli clean"
},
"dependencies": {
"@backstage/catalog-model": "^0.9.1",
"@backstage/core-components": "^0.4.2",
"@backstage/catalog-model": "^0.9.3",
"@backstage/core-components": "^0.5.0",
"@backstage/core-plugin-api": "^0.1.8",
"@backstage/plugin-catalog-react": "^0.4.6",
"@backstage/plugin-catalog-react": "^0.5.0",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -36,9 +36,9 @@
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/cli": "^0.7.12",
"@backstage/core-app-api": "^0.1.13",
"@backstage/dev-utils": "^0.2.9",
"@backstage/cli": "^0.7.13",
"@backstage/core-app-api": "^0.1.14",
"@backstage/dev-utils": "^0.2.10",
"@backstage/test-utils": "^0.1.17",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
+11
View File
@@ -1,5 +1,16 @@
# @backstage/plugin-api-docs
## 0.6.9
### Patch Changes
- cc464a56b3: This makes Type and Lifecycle columns consistent for all table cases and adds a new line in Description column for better readability
- Updated dependencies
- @backstage/core-components@0.5.0
- @backstage/plugin-catalog@0.6.16
- @backstage/plugin-catalog-react@0.5.0
- @backstage/catalog-model@0.9.3
## 0.6.8
### Patch Changes
+8 -8
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-api-docs",
"description": "A Backstage plugin that helps represent API entities in the frontend",
"version": "0.6.8",
"version": "0.6.9",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -31,11 +31,11 @@
},
"dependencies": {
"@asyncapi/react-component": "^0.23.0",
"@backstage/catalog-model": "^0.9.1",
"@backstage/core-components": "^0.4.2",
"@backstage/catalog-model": "^0.9.3",
"@backstage/core-components": "^0.5.0",
"@backstage/core-plugin-api": "^0.1.8",
"@backstage/plugin-catalog": "^0.6.15",
"@backstage/plugin-catalog-react": "^0.4.6",
"@backstage/plugin-catalog": "^0.6.16",
"@backstage/plugin-catalog-react": "^0.5.0",
"@backstage/theme": "^0.2.10",
"@material-icons/font": "^1.0.2",
"@material-ui/core": "^4.12.2",
@@ -53,9 +53,9 @@
"swagger-ui-react": "^3.37.2"
},
"devDependencies": {
"@backstage/cli": "^0.7.12",
"@backstage/core-app-api": "^0.1.13",
"@backstage/dev-utils": "^0.2.9",
"@backstage/cli": "^0.7.13",
"@backstage/core-app-api": "^0.1.14",
"@backstage/dev-utils": "^0.2.10",
"@backstage/test-utils": "^0.1.17",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
+10
View File
@@ -1,5 +1,15 @@
# @backstage/plugin-auth-backend
## 0.4.1
### Patch Changes
- Updated dependencies
- @backstage/catalog-client@0.4.0
- @backstage/catalog-model@0.9.3
- @backstage/backend-common@0.9.4
- @backstage/config@0.1.10
## 0.4.0
### Minor Changes
+6 -6
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-auth-backend",
"description": "A Backstage backend plugin that handles authentication",
"version": "0.4.0",
"version": "0.4.1",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -30,10 +30,10 @@
"clean": "backstage-cli clean"
},
"dependencies": {
"@backstage/backend-common": "^0.9.3",
"@backstage/catalog-client": "^0.3.18",
"@backstage/catalog-model": "^0.9.1",
"@backstage/config": "^0.1.8",
"@backstage/backend-common": "^0.9.4",
"@backstage/catalog-client": "^0.4.0",
"@backstage/catalog-model": "^0.9.3",
"@backstage/config": "^0.1.10",
"@backstage/errors": "^0.1.1",
"@backstage/test-utils": "^0.1.17",
"@types/express": "^4.17.6",
@@ -71,7 +71,7 @@
"yn": "^4.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.7.12",
"@backstage/cli": "^0.7.13",
"@types/body-parser": "^1.19.0",
"@types/cookie-parser": "^1.4.2",
"@types/express-session": "^1.17.2",
+10
View File
@@ -1,5 +1,15 @@
# @backstage/plugin-badges-backend
## 0.1.10
### Patch Changes
- Updated dependencies
- @backstage/catalog-client@0.4.0
- @backstage/catalog-model@0.9.3
- @backstage/backend-common@0.9.4
- @backstage/config@0.1.10
## 0.1.9
### Patch Changes
+6 -6
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-badges-backend",
"description": "A Backstage backend plugin that generates README badges for your entities",
"version": "0.1.9",
"version": "0.1.10",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -31,10 +31,10 @@
"clean": "backstage-cli clean"
},
"dependencies": {
"@backstage/backend-common": "^0.9.0",
"@backstage/catalog-client": "^0.3.16",
"@backstage/catalog-model": "^0.9.0",
"@backstage/config": "^0.1.8",
"@backstage/backend-common": "^0.9.4",
"@backstage/catalog-client": "^0.4.0",
"@backstage/catalog-model": "^0.9.3",
"@backstage/config": "^0.1.10",
"@backstage/errors": "^0.1.1",
"@types/express": "^4.17.6",
"badge-maker": "^3.3.0",
@@ -46,7 +46,7 @@
"yn": "^4.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.7.1",
"@backstage/cli": "^0.7.13",
"@types/supertest": "^2.0.8",
"supertest": "^6.1.3"
},
+9
View File
@@ -1,5 +1,14 @@
# @backstage/plugin-badges
## 0.2.10
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.5.0
- @backstage/plugin-catalog-react@0.5.0
- @backstage/catalog-model@0.9.3
## 0.2.9
### Patch Changes
+7 -7
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-badges",
"description": "A Backstage plugin that generates README badges for your entities",
"version": "0.2.9",
"version": "0.2.10",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -21,11 +21,11 @@
"clean": "backstage-cli clean"
},
"dependencies": {
"@backstage/catalog-model": "^0.9.1",
"@backstage/core-components": "^0.4.2",
"@backstage/catalog-model": "^0.9.3",
"@backstage/core-components": "^0.5.0",
"@backstage/core-plugin-api": "^0.1.8",
"@backstage/errors": "^0.1.1",
"@backstage/plugin-catalog-react": "^0.4.6",
"@backstage/plugin-catalog-react": "^0.5.0",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -36,9 +36,9 @@
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/cli": "^0.7.12",
"@backstage/core-app-api": "^0.1.13",
"@backstage/dev-utils": "^0.2.9",
"@backstage/cli": "^0.7.13",
"@backstage/core-app-api": "^0.1.14",
"@backstage/dev-utils": "^0.2.10",
"@backstage/test-utils": "^0.1.17",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
+9
View File
@@ -1,5 +1,14 @@
# @backstage/plugin-bitrise
## 0.1.13
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.5.0
- @backstage/plugin-catalog-react@0.5.0
- @backstage/catalog-model@0.9.3
## 0.1.12
### Patch Changes
+7 -7
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-bitrise",
"description": "A Backstage plugin that integrates towards Bitrise",
"version": "0.1.12",
"version": "0.1.13",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -21,10 +21,10 @@
"clean": "backstage-cli clean"
},
"dependencies": {
"@backstage/catalog-model": "^0.9.1",
"@backstage/core-components": "^0.4.2",
"@backstage/catalog-model": "^0.9.3",
"@backstage/core-components": "^0.5.0",
"@backstage/core-plugin-api": "^0.1.8",
"@backstage/plugin-catalog-react": "^0.4.6",
"@backstage/plugin-catalog-react": "^0.5.0",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -39,9 +39,9 @@
"recharts": "^1.8.5"
},
"devDependencies": {
"@backstage/cli": "^0.7.12",
"@backstage/core-app-api": "^0.1.13",
"@backstage/dev-utils": "^0.2.9",
"@backstage/cli": "^0.7.13",
"@backstage/core-app-api": "^0.1.14",
"@backstage/dev-utils": "^0.2.10",
"@backstage/test-utils": "^0.1.17",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
@@ -1,5 +1,16 @@
# @backstage/plugin-catalog-backend-module-ldap
## 0.3.1
### Patch Changes
- 8b016ce67b: Alters LDAP processor to handle one SearchEntry at a time
- febddedcb2: Bump `lodash` to remediate `SNYK-JS-LODASH-590103` security vulnerability
- Updated dependencies
- @backstage/plugin-catalog-backend@0.14.0
- @backstage/catalog-model@0.9.3
- @backstage/config@0.1.10
## 0.3.0
### Minor Changes
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-catalog-backend-module-ldap",
"description": "A Backstage catalog backend modules that helps integrate towards LDAP",
"version": "0.3.0",
"version": "0.3.1",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -29,16 +29,16 @@
"clean": "backstage-cli clean"
},
"dependencies": {
"@backstage/catalog-model": "^0.9.0",
"@backstage/config": "^0.1.7",
"@backstage/plugin-catalog-backend": "^0.13.3",
"@backstage/catalog-model": "^0.9.3",
"@backstage/config": "^0.1.10",
"@backstage/plugin-catalog-backend": "^0.14.0",
"@types/ldapjs": "^2.2.0",
"ldapjs": "^2.2.0",
"lodash": "^4.17.21",
"winston": "^3.2.1"
},
"devDependencies": {
"@backstage/cli": "^0.7.9",
"@backstage/cli": "^0.7.13",
"@backstage/test-utils": "^0.1.16",
"@types/lodash": "^4.14.151",
"msw": "^0.29.0"
@@ -1,5 +1,15 @@
# @backstage/plugin-catalog-backend-module-msgraph
## 0.2.4
### Patch Changes
- febddedcb2: Bump `lodash` to remediate `SNYK-JS-LODASH-590103` security vulnerability
- Updated dependencies
- @backstage/plugin-catalog-backend@0.14.0
- @backstage/catalog-model@0.9.3
- @backstage/config@0.1.10
## 0.2.3
### Patch Changes
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-catalog-backend-module-msgraph",
"description": "A Backstage catalog backend modules that helps integrate towards Microsoft Graph",
"version": "0.2.3",
"version": "0.2.4",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -30,9 +30,9 @@
},
"dependencies": {
"@azure/msal-node": "^1.1.0",
"@backstage/catalog-model": "^0.9.0",
"@backstage/config": "^0.1.8",
"@backstage/plugin-catalog-backend": "^0.13.5",
"@backstage/catalog-model": "^0.9.3",
"@backstage/config": "^0.1.10",
"@backstage/plugin-catalog-backend": "^0.14.0",
"@microsoft/microsoft-graph-types": "^1.25.0",
"cross-fetch": "^3.0.6",
"lodash": "^4.17.21",
@@ -41,8 +41,8 @@
"qs": "^6.9.4"
},
"devDependencies": {
"@backstage/backend-common": "^0.9.0",
"@backstage/cli": "^0.7.9",
"@backstage/backend-common": "^0.9.4",
"@backstage/cli": "^0.7.13",
"@backstage/test-utils": "^0.1.14",
"@types/lodash": "^4.14.151",
"msw": "^0.29.0"
+66
View File
@@ -1,5 +1,71 @@
# @backstage/plugin-catalog-backend
## 0.14.0
### Minor Changes
- d6f90e934d: #### Enforcing catalog rules
Apply the catalog rules enforcer, based on origin location.
This is a breaking change, in the sense that this was not properly checked in earlier versions of the new catalog engine. You may see ingestion of certain entities start to be rejected after this update, if the following conditions apply to you:
- You are using the configuration key `catalog.rules.[].allow`, and
- Your registered locations point (directly or transitively) to entities whose kinds are not listed in `catalog.rules.[].allow`
and/or
- You are using the configuration key `catalog.locations.[].rules.[].allow`
- The config locations point (directly or transitively) to entities whose kinds are not listed neither `catalog.rules.[].allow`, nor in the corresponding `.rules.[].allow` of that config location
This is an example of what the configuration might look like:
```yaml
catalog:
# These do not list Template as a valid kind; users are therefore unable to
# manually register entities of the Template kind
rules:
- allow:
- Component
- API
- Resource
- Group
- User
- System
- Domain
- Location
locations:
# This lists Template as valid only for that specific config location
- type: file
target: ../../plugins/scaffolder-backend/sample-templates/all-templates.yaml
rules:
- allow: [Template]
```
If you are not using any of those `rules` section, you should not be affected by this change.
If you do use any of those `rules` sections, make sure that they are complete and list all of the kinds that are in active use in your Backstage installation.
#### Other
Also, the class `CatalogRulesEnforcer` was renamed to `DefaultCatalogRulesEnforcer`, implementing the type `CatalogRulesEnforcer`.
- 501ce92f9c: Bitbucket Cloud Discovery support
- 89fd81a1ab: Add API endpoint for requesting a catalog refresh at `/refresh`, which is activated if a `RefreshService` is passed to `createRouter`.
The new method is used to trigger a refresh of an entity in an as localized was as possible, usually by refreshing the parent location.
### Patch Changes
- 9ef2987a83: Update `createLocation` to optionally return `exists` to signal that the location already exists, this is only returned for dry runs.
- febddedcb2: Bump `lodash` to remediate `SNYK-JS-LODASH-590103` security vulnerability
- Updated dependencies
- @backstage/integration@0.6.5
- @backstage/catalog-client@0.4.0
- @backstage/catalog-model@0.9.3
- @backstage/backend-common@0.9.4
- @backstage/config@0.1.10
## 0.13.8
### Patch Changes
+7 -7
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-catalog-backend",
"description": "The Backstage backend plugin that provides the Backstage catalog",
"version": "0.13.8",
"version": "0.14.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -30,12 +30,12 @@
"clean": "backstage-cli clean"
},
"dependencies": {
"@backstage/backend-common": "^0.9.3",
"@backstage/catalog-client": "^0.3.19",
"@backstage/catalog-model": "^0.9.2",
"@backstage/config": "^0.1.9",
"@backstage/backend-common": "^0.9.4",
"@backstage/catalog-client": "^0.4.0",
"@backstage/catalog-model": "^0.9.3",
"@backstage/config": "^0.1.10",
"@backstage/errors": "^0.1.2",
"@backstage/integration": "^0.6.4",
"@backstage/integration": "^0.6.5",
"@backstage/plugin-search-backend-node": "^0.4.2",
"@backstage/search-common": "^0.2.0",
"@octokit/graphql": "^4.5.8",
@@ -65,7 +65,7 @@
},
"devDependencies": {
"@backstage/backend-test-utils": "^0.1.7",
"@backstage/cli": "^0.7.12",
"@backstage/cli": "^0.7.13",
"@backstage/test-utils": "^0.1.17",
"@types/core-js": "^2.5.4",
"@types/git-url-parse": "^9.0.0",
+14
View File
@@ -0,0 +1,14 @@
# @backstage/plugin-catalog-graph
## 0.1.1
### Patch Changes
- c0eb1fb9df: Make zooming configurable for `<CatalogGraphCard>` and disable it by default.
This resolves an issue that scrolling on the entity page is sometimes captured
by the graph making the page hard to use.
- Updated dependencies
- @backstage/core-components@0.5.0
- @backstage/catalog-client@0.4.0
- @backstage/plugin-catalog-react@0.5.0
- @backstage/catalog-model@0.9.3
+8 -8
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-catalog-graph",
"version": "0.1.0",
"version": "0.1.1",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -21,11 +21,11 @@
"clean": "backstage-cli clean"
},
"dependencies": {
"@backstage/catalog-client": "^0.3.18",
"@backstage/catalog-model": "^0.9.2",
"@backstage/core-components": "^0.4.2",
"@backstage/catalog-client": "^0.4.0",
"@backstage/catalog-model": "^0.9.3",
"@backstage/core-components": "^0.5.0",
"@backstage/core-plugin-api": "^0.1.8",
"@backstage/plugin-catalog-react": "^0.4.5",
"@backstage/plugin-catalog-react": "^0.5.0",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -41,10 +41,10 @@
"p-limit": "^3.1.0"
},
"devDependencies": {
"@backstage/cli": "^0.7.12",
"@backstage/dev-utils": "^0.2.9",
"@backstage/cli": "^0.7.13",
"@backstage/dev-utils": "^0.2.10",
"@backstage/test-utils": "^0.1.17",
"@backstage/core-app-api": "^0.1.13",
"@backstage/core-app-api": "^0.1.14",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.1.8",
+57
View File
@@ -1,5 +1,62 @@
# @backstage/plugin-catalog-import
## 0.6.0
### Minor Changes
- 690657799e: Add initial support for customizing the catalog import page.
It is now possible to pass a custom layout to the import page, as it's already
supported by the search page. If no custom layout is passed, the default layout
is used.
```typescript
<Route path="/catalog-import" element={<CatalogImportPage />}>
<Page themeId="home">
<Header title="Register an existing component" />
<Content>
<ContentHeader title="Start tracking your components">
<SupportButton>
Start tracking your component in Backstage by adding it to the
software catalog.
</SupportButton>
</ContentHeader>
<Grid container spacing={2} direction="row-reverse">
<Grid item xs={12} md={4} lg={6} xl={8}>
Hello World
</Grid>
<Grid item xs={12} md={8} lg={6} xl={4}>
<ImportStepper />
</Grid>
</Grid>
</Content>
</Page>
</Route>
```
Previously it was possible to disable and customize the automatic pull request
feature by passing options to `<CatalogImportPage>` (`pullRequest.disable` and
`pullRequest.preparePullRequest`). This functionality is moved to the
`CatalogImportApi` which now provides an optional `preparePullRequest()`
function. The function can either be overridden to generate a different content
for the pull request, or removed to disable this feature.
The export of the long term deprecated legacy `<Router>` is removed, migrate to
`<CatalogImportPage>` instead.
### Patch Changes
- 9ef2987a83: The import form is now aware of locations that already exist. It lists them separately and shows a button for triggering a refresh.
- Updated dependencies
- @backstage/core-components@0.5.0
- @backstage/integration@0.6.5
- @backstage/catalog-client@0.4.0
- @backstage/plugin-catalog-react@0.5.0
- @backstage/catalog-model@0.9.3
- @backstage/integration-react@0.1.10
## 0.5.21
### Patch Changes
+10 -10
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-catalog-import",
"description": "A Backstage plugin the helps you import entities into your catalog",
"version": "0.5.21",
"version": "0.6.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -31,13 +31,13 @@
"clean": "backstage-cli clean"
},
"dependencies": {
"@backstage/catalog-client": "^0.3.18",
"@backstage/catalog-model": "^0.9.1",
"@backstage/core-components": "^0.4.2",
"@backstage/catalog-client": "^0.4.0",
"@backstage/catalog-model": "^0.9.3",
"@backstage/core-components": "^0.5.0",
"@backstage/core-plugin-api": "^0.1.8",
"@backstage/integration": "^0.6.4",
"@backstage/integration-react": "^0.1.9",
"@backstage/plugin-catalog-react": "^0.4.6",
"@backstage/integration": "^0.6.5",
"@backstage/integration-react": "^0.1.10",
"@backstage/plugin-catalog-react": "^0.5.0",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -56,9 +56,9 @@
"lodash": "^4.17.21"
},
"devDependencies": {
"@backstage/cli": "^0.7.12",
"@backstage/core-app-api": "^0.1.13",
"@backstage/dev-utils": "^0.2.9",
"@backstage/cli": "^0.7.13",
"@backstage/core-app-api": "^0.1.14",
"@backstage/dev-utils": "^0.2.10",
"@backstage/test-utils": "^0.1.17",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
+17
View File
@@ -1,5 +1,22 @@
# @backstage/plugin-catalog-react
## 0.5.0
### Minor Changes
- dbcaa6387a: Extends the `CatalogClient` interface with a `refreshEntity` method.
### Patch Changes
- cc464a56b3: This makes Type and Lifecycle columns consistent for all table cases and adds a new line in Description column for better readability
- febddedcb2: Bump `lodash` to remediate `SNYK-JS-LODASH-590103` security vulnerability
- Updated dependencies
- @backstage/core-components@0.5.0
- @backstage/integration@0.6.5
- @backstage/catalog-client@0.4.0
- @backstage/catalog-model@0.9.3
- @backstage/core-app-api@0.1.14
## 0.4.6
### Patch Changes
+8 -8
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-catalog-react",
"description": "A frontend library that helps other Backstage plugins interact with the catalog",
"version": "0.4.6",
"version": "0.5.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -29,12 +29,12 @@
"clean": "backstage-cli clean"
},
"dependencies": {
"@backstage/catalog-client": "^0.3.18",
"@backstage/catalog-model": "^0.9.1",
"@backstage/core-app-api": "^0.1.13",
"@backstage/core-components": "^0.4.2",
"@backstage/catalog-client": "^0.4.0",
"@backstage/catalog-model": "^0.9.3",
"@backstage/core-app-api": "^0.1.14",
"@backstage/core-components": "^0.5.0",
"@backstage/core-plugin-api": "^0.1.8",
"@backstage/integration": "^0.6.4",
"@backstage/integration": "^0.6.5",
"@backstage/version-bridge": "^0.1.0",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -49,8 +49,8 @@
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/cli": "^0.7.12",
"@backstage/dev-utils": "^0.2.8",
"@backstage/cli": "^0.7.13",
"@backstage/dev-utils": "^0.2.10",
"@backstage/test-utils": "^0.1.17",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
+13
View File
@@ -1,5 +1,18 @@
# @backstage/plugin-catalog
## 0.6.16
### Patch Changes
- dbcaa6387a: Updates the `AboutCard` with a refresh button that allows the entity to be scheduled for refresh.
- Updated dependencies
- @backstage/core-components@0.5.0
- @backstage/integration@0.6.5
- @backstage/catalog-client@0.4.0
- @backstage/plugin-catalog-react@0.5.0
- @backstage/catalog-model@0.9.3
- @backstage/integration-react@0.1.10
## 0.6.15
### Patch Changes
+10 -10
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-catalog",
"description": "The Backstage plugin for browsing the Backstage catalog",
"version": "0.6.15",
"version": "0.6.16",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -31,14 +31,14 @@
"clean": "backstage-cli clean"
},
"dependencies": {
"@backstage/catalog-client": "^0.3.18",
"@backstage/catalog-model": "^0.9.1",
"@backstage/core-components": "^0.4.2",
"@backstage/catalog-client": "^0.4.0",
"@backstage/catalog-model": "^0.9.3",
"@backstage/core-components": "^0.5.0",
"@backstage/core-plugin-api": "^0.1.8",
"@backstage/errors": "^0.1.1",
"@backstage/integration": "^0.6.4",
"@backstage/integration-react": "^0.1.9",
"@backstage/plugin-catalog-react": "^0.4.6",
"@backstage/integration": "^0.6.5",
"@backstage/integration-react": "^0.1.10",
"@backstage/plugin-catalog-react": "^0.5.0",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -55,9 +55,9 @@
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/cli": "^0.7.12",
"@backstage/core-app-api": "^0.1.13",
"@backstage/dev-utils": "^0.2.9",
"@backstage/cli": "^0.7.13",
"@backstage/core-app-api": "^0.1.14",
"@backstage/dev-utils": "^0.2.10",
"@backstage/test-utils": "^0.1.17",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
+11
View File
@@ -1,5 +1,16 @@
# @backstage/plugin-circleci
## 0.2.24
### Patch Changes
- 47e21d8d69: Swapped over to using Luxon as opposed to DayJS in the CircleCI plugin as part of the single Date library improvements.
- febddedcb2: Bump `lodash` to remediate `SNYK-JS-LODASH-590103` security vulnerability
- Updated dependencies
- @backstage/core-components@0.5.0
- @backstage/plugin-catalog-react@0.5.0
- @backstage/catalog-model@0.9.3
## 0.2.23
### Patch Changes
+7 -7
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-circleci",
"description": "A Backstage plugin that integrates towards Circle CI",
"version": "0.2.23",
"version": "0.2.24",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -32,10 +32,10 @@
"postpack": "backstage-cli postpack"
},
"dependencies": {
"@backstage/catalog-model": "^0.9.1",
"@backstage/core-components": "^0.4.2",
"@backstage/catalog-model": "^0.9.3",
"@backstage/core-components": "^0.5.0",
"@backstage/core-plugin-api": "^0.1.8",
"@backstage/plugin-catalog-react": "^0.4.6",
"@backstage/plugin-catalog-react": "^0.5.0",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -52,9 +52,9 @@
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/cli": "^0.7.12",
"@backstage/core-app-api": "^0.1.13",
"@backstage/dev-utils": "^0.2.9",
"@backstage/cli": "^0.7.13",
"@backstage/core-app-api": "^0.1.14",
"@backstage/dev-utils": "^0.2.10",
"@backstage/test-utils": "^0.1.17",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
+9
View File
@@ -1,5 +1,14 @@
# @backstage/plugin-cloudbuild
## 0.2.24
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.5.0
- @backstage/plugin-catalog-react@0.5.0
- @backstage/catalog-model@0.9.3
## 0.2.23
### Patch Changes
+7 -7
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-cloudbuild",
"description": "A Backstage plugin that integrates towards Google Cloud Build",
"version": "0.2.23",
"version": "0.2.24",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -31,10 +31,10 @@
"clean": "backstage-cli clean"
},
"dependencies": {
"@backstage/catalog-model": "^0.9.1",
"@backstage/core-components": "^0.4.2",
"@backstage/catalog-model": "^0.9.3",
"@backstage/core-components": "^0.5.0",
"@backstage/core-plugin-api": "^0.1.8",
"@backstage/plugin-catalog-react": "^0.4.6",
"@backstage/plugin-catalog-react": "^0.5.0",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -49,9 +49,9 @@
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/cli": "^0.7.12",
"@backstage/core-app-api": "^0.1.13",
"@backstage/dev-utils": "^0.2.9",
"@backstage/cli": "^0.7.13",
"@backstage/core-app-api": "^0.1.14",
"@backstage/dev-utils": "^0.2.10",
"@backstage/test-utils": "^0.1.17",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
@@ -1,5 +1,16 @@
# @backstage/plugin-code-coverage-backend
## 0.1.11
### Patch Changes
- Updated dependencies
- @backstage/integration@0.6.5
- @backstage/catalog-client@0.4.0
- @backstage/catalog-model@0.9.3
- @backstage/backend-common@0.9.4
- @backstage/config@0.1.10
## 0.1.10
### Patch Changes
+7 -7
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-code-coverage-backend",
"description": "A Backstage backend plugin that helps you keep track of your code coverage",
"version": "0.1.10",
"version": "0.1.11",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -20,12 +20,12 @@
"clean": "backstage-cli clean"
},
"dependencies": {
"@backstage/backend-common": "^0.9.0",
"@backstage/catalog-client": "^0.3.16",
"@backstage/catalog-model": "^0.9.0",
"@backstage/config": "^0.1.8",
"@backstage/backend-common": "^0.9.4",
"@backstage/catalog-client": "^0.4.0",
"@backstage/catalog-model": "^0.9.3",
"@backstage/config": "^0.1.10",
"@backstage/errors": "^0.1.1",
"@backstage/integration": "^0.6.2",
"@backstage/integration": "^0.6.5",
"@types/express": "^4.17.6",
"cross-fetch": "^3.0.6",
"express": "^4.17.1",
@@ -37,7 +37,7 @@
"yn": "^4.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.7.8",
"@backstage/cli": "^0.7.13",
"@types/express-xml-bodyparser": "^0.3.2",
"@types/supertest": "^2.0.8",
"msw": "^0.29.0",
+10
View File
@@ -1,5 +1,15 @@
# @backstage/plugin-code-coverage
## 0.1.12
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.5.0
- @backstage/plugin-catalog-react@0.5.0
- @backstage/catalog-model@0.9.3
- @backstage/config@0.1.10
## 0.1.11
### Patch Changes
+8 -8
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-code-coverage",
"description": "A Backstage plugin that helps you keep track of your code coverage",
"version": "0.1.11",
"version": "0.1.12",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -21,12 +21,12 @@
"clean": "backstage-cli clean"
},
"dependencies": {
"@backstage/catalog-model": "^0.9.1",
"@backstage/config": "^0.1.6",
"@backstage/core-components": "^0.4.2",
"@backstage/catalog-model": "^0.9.3",
"@backstage/config": "^0.1.10",
"@backstage/core-components": "^0.5.0",
"@backstage/core-plugin-api": "^0.1.8",
"@backstage/errors": "^0.1.1",
"@backstage/plugin-catalog-react": "^0.4.6",
"@backstage/plugin-catalog-react": "^0.5.0",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -41,9 +41,9 @@
"recharts": "^1.8.5"
},
"devDependencies": {
"@backstage/cli": "^0.7.12",
"@backstage/core-app-api": "^0.1.13",
"@backstage/dev-utils": "^0.2.9",
"@backstage/cli": "^0.7.13",
"@backstage/core-app-api": "^0.1.14",
"@backstage/dev-utils": "^0.2.10",
"@backstage/test-utils": "^0.1.17",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
+8
View File
@@ -1,5 +1,13 @@
# @backstage/plugin-config-schema
## 0.1.8
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.5.0
- @backstage/config@0.1.10
## 0.1.7
### Patch Changes
+6 -6
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-config-schema",
"description": "A Backstage plugin that lets you browse the configuration schema of your app",
"version": "0.1.7",
"version": "0.1.8",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -21,8 +21,8 @@
"clean": "backstage-cli clean"
},
"dependencies": {
"@backstage/config": "^0.1.6",
"@backstage/core-components": "^0.4.2",
"@backstage/config": "^0.1.10",
"@backstage/core-components": "^0.5.0",
"@backstage/core-plugin-api": "^0.1.8",
"@backstage/errors": "^0.1.1",
"@backstage/theme": "^0.2.10",
@@ -36,9 +36,9 @@
"zen-observable": "^0.8.15"
},
"devDependencies": {
"@backstage/cli": "^0.7.12",
"@backstage/core-app-api": "^0.1.13",
"@backstage/dev-utils": "^0.2.9",
"@backstage/cli": "^0.7.13",
"@backstage/core-app-api": "^0.1.14",
"@backstage/dev-utils": "^0.2.10",
"@backstage/test-utils": "^0.1.17",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
+8
View File
@@ -1,5 +1,13 @@
# @backstage/plugin-cost-insights
## 0.11.7
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.5.0
- @backstage/config@0.1.10
## 0.11.6
### Patch Changes
+6 -6
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-cost-insights",
"description": "A Backstage plugin that helps you keep track of your cloud spend",
"version": "0.11.6",
"version": "0.11.7",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -31,8 +31,8 @@
"clean": "backstage-cli clean"
},
"dependencies": {
"@backstage/config": "^0.1.6",
"@backstage/core-components": "^0.4.2",
"@backstage/config": "^0.1.10",
"@backstage/core-components": "^0.5.0",
"@backstage/core-plugin-api": "^0.1.8",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
@@ -55,9 +55,9 @@
"yup": "^0.29.3"
},
"devDependencies": {
"@backstage/cli": "^0.7.12",
"@backstage/core-app-api": "^0.1.13",
"@backstage/dev-utils": "^0.2.9",
"@backstage/cli": "^0.7.13",
"@backstage/core-app-api": "^0.1.14",
"@backstage/dev-utils": "^0.2.10",
"@backstage/test-utils": "^0.1.17",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
+10
View File
@@ -1,5 +1,15 @@
# @backstage/plugin-explore
## 0.3.17
### Patch Changes
- 5cd6c73ff5: Export the `DomainCard` to be able to customize the explorer page.
- Updated dependencies
- @backstage/core-components@0.5.0
- @backstage/plugin-catalog-react@0.5.0
- @backstage/catalog-model@0.9.3
## 0.3.16
### Patch Changes
+7 -7
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-explore",
"description": "A Backstage plugin for building an exploration page of your software ecosystem",
"version": "0.3.16",
"version": "0.3.17",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -31,10 +31,10 @@
"start": "backstage-cli plugin:serve"
},
"dependencies": {
"@backstage/catalog-model": "^0.9.1",
"@backstage/core-components": "^0.4.2",
"@backstage/catalog-model": "^0.9.3",
"@backstage/core-components": "^0.5.0",
"@backstage/core-plugin-api": "^0.1.8",
"@backstage/plugin-catalog-react": "^0.4.6",
"@backstage/plugin-catalog-react": "^0.5.0",
"@backstage/plugin-explore-react": "^0.0.6",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
@@ -49,9 +49,9 @@
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/cli": "^0.7.12",
"@backstage/core-app-api": "^0.1.13",
"@backstage/dev-utils": "^0.2.9",
"@backstage/cli": "^0.7.13",
"@backstage/core-app-api": "^0.1.14",
"@backstage/dev-utils": "^0.2.10",
"@backstage/test-utils": "^0.1.17",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
+8
View File
@@ -1,5 +1,13 @@
# @backstage/plugin-firehydrant
## 0.1.4
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.5.0
- @backstage/plugin-catalog-react@0.5.0
## 0.1.3
### Patch Changes
+6 -6
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-firehydrant",
"description": "A Backstage plugin that integrates towards FireHydrant",
"version": "0.1.3",
"version": "0.1.4",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -22,9 +22,9 @@
"clean": "backstage-cli clean"
},
"dependencies": {
"@backstage/core-components": "^0.4.2",
"@backstage/core-components": "^0.5.0",
"@backstage/core-plugin-api": "^0.1.8",
"@backstage/plugin-catalog-react": "^0.4.6",
"@backstage/plugin-catalog-react": "^0.5.0",
"@backstage/theme": "^0.2.10",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -35,9 +35,9 @@
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/cli": "^0.7.12",
"@backstage/core-app-api": "^0.1.13",
"@backstage/dev-utils": "^0.2.9",
"@backstage/cli": "^0.7.13",
"@backstage/core-app-api": "^0.1.14",
"@backstage/dev-utils": "^0.2.10",
"@backstage/test-utils": "^0.1.17",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
+9
View File
@@ -1,5 +1,14 @@
# @backstage/plugin-fossa
## 0.2.17
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.5.0
- @backstage/plugin-catalog-react@0.5.0
- @backstage/catalog-model@0.9.3
## 0.2.16
### Patch Changes

Some files were not shown because too many files have changed in this diff Show More