Merge pull request #12936 from backstage/changeset-release/master
Version Packages (next)
This commit is contained in:
+22
-2
@@ -166,11 +166,14 @@
|
||||
"@backstage/plugin-vault-backend": "0.2.0",
|
||||
"@backstage/plugin-xcmetrics": "0.2.27",
|
||||
"@internal/plugin-catalog-customized": "0.0.0",
|
||||
"@backstage/plugin-sonarqube-backend": "0.0.0"
|
||||
"@backstage/plugin-sonarqube-backend": "0.0.0",
|
||||
"@backstage/plugin-catalog-backend-module-bitbucket-server": "0.0.0",
|
||||
"@backstage/plugin-github-issues": "0.0.0"
|
||||
},
|
||||
"changesets": [
|
||||
"big-mirrors-play",
|
||||
"calm-clocks-drum",
|
||||
"cool-months-tickle",
|
||||
"create-app-1658824524",
|
||||
"create-app-1659429685",
|
||||
"dull-owls-grab",
|
||||
@@ -182,12 +185,16 @@
|
||||
"famous-bikes-brush",
|
||||
"fast-panthers-fold",
|
||||
"few-berries-deny",
|
||||
"flat-zebras-draw",
|
||||
"forty-lobsters-guess",
|
||||
"fresh-hounds-argue",
|
||||
"friendly-sheep-flash",
|
||||
"green-laws-greet",
|
||||
"hot-crabs-wonder",
|
||||
"itchy-mice-kiss",
|
||||
"khaki-meals-hammer",
|
||||
"little-laws-heal",
|
||||
"long-pumpkins-walk",
|
||||
"loud-panthers-arrive",
|
||||
"lovely-walls-brush",
|
||||
"mean-ants-hang",
|
||||
@@ -198,22 +205,35 @@
|
||||
"odd-adults-smash",
|
||||
"odd-tomatoes-juggle",
|
||||
"olive-tips-camp",
|
||||
"plenty-timers-flow",
|
||||
"popular-starfishes-bow",
|
||||
"pretty-gifts-do",
|
||||
"purple-apricots-build",
|
||||
"red-turtles-melt",
|
||||
"renovate-15030f1",
|
||||
"renovate-5b3cf8c",
|
||||
"renovate-5b7b62b",
|
||||
"renovate-5ba3a71",
|
||||
"renovate-5f2abaa",
|
||||
"rich-readers-return",
|
||||
"rotten-moles-give",
|
||||
"short-trains-roll",
|
||||
"silver-carpets-grin",
|
||||
"silver-poets-push",
|
||||
"strange-crabs-confess",
|
||||
"strange-moles-design",
|
||||
"stupid-carpets-remain",
|
||||
"tall-mugs-press",
|
||||
"tasty-falcons-press",
|
||||
"techdocs-eagles-stare",
|
||||
"ten-roses-walk",
|
||||
"thick-readers-invite",
|
||||
"three-parents-love",
|
||||
"tricky-ligers-move",
|
||||
"twenty-humans-visit",
|
||||
"violet-mayflies-mix",
|
||||
"violet-trees-play"
|
||||
"violet-trees-play",
|
||||
"weak-shrimps-deny",
|
||||
"wicked-knives-wink"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -0,0 +1,791 @@
|
||||
# Release v1.5.0-next.2
|
||||
|
||||
## @backstage/core-components@0.11.0-next.2
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- d0eefc499a: Made the `to` prop of `Button` and `Link` more strict, only supporting plain strings. It used to be the case that this prop was unexpectedly too liberal, making it look like we supported the complex `react-router-dom` object form of the parameter as well, which led to unexpected results at runtime.
|
||||
|
||||
## @techdocs/cli@1.2.0-next.2
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- 855952db53: Added CLI option `--docker-option` to allow passing additional options to the `docker run` command executed my `serve` and `serve:mkdocs`.
|
||||
|
||||
## @backstage/plugin-catalog-backend-module-bitbucket-server@0.1.0-next.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- f7607f9d85: Add new plugin catalog-backend-module-bitbucket-server which adds the `BitbucketServerEntityProvider`.
|
||||
|
||||
The entity provider is meant as a replacement for the `BitbucketDiscoveryProcessor` to be used with Bitbucket Server (Bitbucket Cloud already has a replacement).
|
||||
|
||||
**Before:**
|
||||
|
||||
```typescript
|
||||
// packages/backend/src/plugins/catalog.ts
|
||||
builder.addProcessor(
|
||||
BitbucketDiscoveryProcessor.fromConfig(env.config, { logger: env.logger }),
|
||||
);
|
||||
```
|
||||
|
||||
```yaml
|
||||
# app-config.yaml
|
||||
catalog:
|
||||
locations:
|
||||
- type: bitbucket-discovery
|
||||
target: 'https://bitbucket.mycompany.com/projects/*/repos/*/catalog-info.yaml
|
||||
```
|
||||
|
||||
**After:**
|
||||
|
||||
```typescript
|
||||
// packages/backend/src/plugins/catalog.ts
|
||||
builder.addEntityProvider(
|
||||
BitbucketServerEntityProvider.fromConfig(env.config, {
|
||||
logger: env.logger,
|
||||
schedule: env.scheduler.createScheduledTaskRunner({
|
||||
frequency: { minutes: 30 },
|
||||
timeout: { minutes: 3 },
|
||||
}),
|
||||
}),
|
||||
);
|
||||
```
|
||||
|
||||
```yaml
|
||||
# app-config.yaml
|
||||
catalog:
|
||||
providers:
|
||||
bitbucketServer:
|
||||
yourProviderId: # identifies your ingested dataset
|
||||
catalogPath: /catalog-info.yaml # default value
|
||||
filters: # optional
|
||||
projectKey: '.*' # optional; RegExp
|
||||
repoSlug: '.*' # optional; RegExp
|
||||
```
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-backend@1.3.1-next.2
|
||||
|
||||
## @backstage/plugin-github-issues@0.1.0-next.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- ffd5e47fb5: New plugin for displaying GitHub Issues added
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- b522f49403: Updated dependency `@spotify/prettier-config` to `^14.0.0`.
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-scaffolder-backend@1.5.0-next.2
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- 692d5d3405: Added `reviewers` and `teamReviewers` parameters to `publish:github:pull-request` action to add reviewers on the pull request created by the action
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-backend@1.3.1-next.2
|
||||
|
||||
## @backstage/app-defaults@1.0.5-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/cli@0.18.1-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- fd68d6f138: Added resolution of `.json` and `.wasm` files to the Webpack configuration in order to match defaults.
|
||||
|
||||
## @backstage/create-app@0.4.30-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 0174a0a022: Add `PATCH` and `HEAD` to the `Access-Control-Allow-Methods`.
|
||||
|
||||
To apply this change to your Backstage installation make the following change to your `app-config.yaml`
|
||||
|
||||
```diff
|
||||
cors:
|
||||
origin: http://localhost:3000
|
||||
- methods: [GET, POST, PUT, DELETE]
|
||||
+ methods: [GET, POST, PUT, DELETE, PATCH, HEAD]
|
||||
```
|
||||
|
||||
## @backstage/dev-utils@1.0.5-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
- @backstage/app-defaults@1.0.5-next.1
|
||||
- @backstage/integration-react@1.1.3-next.1
|
||||
|
||||
## @backstage/integration-react@1.1.3-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-adr@0.1.3-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
- @backstage/integration-react@1.1.3-next.1
|
||||
- @backstage/plugin-search-react@1.0.1-next.1
|
||||
|
||||
## @backstage/plugin-airbrake@0.3.8-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
- @backstage/dev-utils@1.0.5-next.1
|
||||
|
||||
## @backstage/plugin-allure@0.1.24-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-analytics-module-ga@0.1.19-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-apache-airflow@0.2.1-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-api-docs@0.8.8-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
- @backstage/plugin-catalog@1.5.0-next.2
|
||||
|
||||
## @backstage/plugin-apollo-explorer@0.1.1-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-auth-backend@0.15.1-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 2d7d6028e1: Updated dependency `@google-cloud/firestore` to `^6.0.0`.
|
||||
|
||||
## @backstage/plugin-azure-devops@0.1.24-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-badges@0.2.32-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-bazaar@0.1.23-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/cli@0.18.1-next.1
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
- @backstage/plugin-catalog@1.5.0-next.2
|
||||
|
||||
## @backstage/plugin-bitrise@0.1.35-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-catalog@1.5.0-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
- @backstage/integration-react@1.1.3-next.1
|
||||
- @backstage/plugin-search-react@1.0.1-next.1
|
||||
|
||||
## @backstage/plugin-catalog-backend@1.3.1-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 059ae348b4: Use the non-deprecated form of table.unique in knex
|
||||
|
||||
## @backstage/plugin-catalog-backend-module-github@0.1.6-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 97f0a37378: Improved support for wildcards in `catalogPath`
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-backend@1.3.1-next.2
|
||||
|
||||
## @backstage/plugin-catalog-backend-module-gitlab@0.1.6-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 24979413a4: Enhancing GitLab provider with filtering projects by pattern RegExp
|
||||
|
||||
```yaml
|
||||
providers:
|
||||
gitlab:
|
||||
stg:
|
||||
host: gitlab.stg.company.io
|
||||
branch: main
|
||||
projectPattern: 'john/' # new option
|
||||
entityFilename: template.yaml
|
||||
```
|
||||
|
||||
With the aforementioned parameter you can filter projects, and keep only who belongs to the namespace "john".
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-backend@1.3.1-next.2
|
||||
|
||||
## @backstage/plugin-catalog-graph@0.2.20-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-catalog-import@0.8.11-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
- @backstage/integration-react@1.1.3-next.1
|
||||
|
||||
## @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 44e691a7f9: Modify description column to not use auto width.
|
||||
- Updated dependencies
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-circleci@0.3.8-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-cloudbuild@0.3.8-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-code-climate@0.1.8-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-code-coverage@0.2.1-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-codescene@0.1.3-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-config-schema@0.1.31-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-cost-insights@0.11.30-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- b746eca638: Make `products` field optional in the config
|
||||
- daf4b33e34: Add name property to Group
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-cost-insights-common@0.1.1-next.0
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-cost-insights-common@0.1.1-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- daf4b33e34: Add name property to Group
|
||||
|
||||
## @backstage/plugin-dynatrace@0.1.2-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-explore@0.3.39-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-firehydrant@0.1.25-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-fossa@0.2.40-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-gcalendar@0.3.4-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-gcp-projects@0.3.27-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-git-release-manager@0.3.21-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-github-actions@0.5.8-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-github-deployments@0.1.39-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
- @backstage/integration-react@1.1.3-next.1
|
||||
|
||||
## @backstage/plugin-github-pull-requests-board@0.1.2-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-gitops-profiles@0.3.26-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-gocd@0.1.14-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-graphiql@0.2.40-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-home@0.4.24-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
- @backstage/plugin-stack-overflow@0.1.4-next.1
|
||||
|
||||
## @backstage/plugin-ilert@0.1.34-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-jenkins@0.7.7-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-kafka@0.3.8-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-kubernetes@0.7.1-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- f563b86a5b: Adds namespace column to Kubernetes error reporting table
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-kubernetes-backend@0.7.1-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 0cd87cf30d: Added a new `customResources` field to the ClusterDetails interface, in order to specify (override) custom resources per cluster
|
||||
|
||||
## @backstage/plugin-lighthouse@0.3.8-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-newrelic@0.3.26-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-newrelic-dashboard@0.2.1-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-org@0.5.8-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-pagerduty@0.5.1-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-periskop@0.1.6-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-rollbar@0.4.8-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-scaffolder@1.5.0-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
- @backstage/integration-react@1.1.3-next.1
|
||||
|
||||
## @backstage/plugin-search@1.0.1-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
- @backstage/plugin-search-react@1.0.1-next.1
|
||||
|
||||
## @backstage/plugin-search-react@1.0.1-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-sentry@0.4.1-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-shortcuts@0.3.0-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-sonarqube@0.4.0-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-splunk-on-call@0.3.32-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-stack-overflow@0.1.4-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
- @backstage/plugin-home@0.4.24-next.2
|
||||
|
||||
## @backstage/plugin-tech-insights@0.2.4-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-tech-radar@0.5.15-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-techdocs@1.3.1-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 8acb22205c: Scroll techdocs navigation into focus and expand any nested navigation items.
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
- @backstage/integration-react@1.1.3-next.1
|
||||
- @backstage/plugin-search-react@1.0.1-next.1
|
||||
- @backstage/plugin-techdocs-react@1.0.3-next.2
|
||||
|
||||
## @backstage/plugin-techdocs-addons-test-utils@1.0.3-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-techdocs@1.3.1-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
- @backstage/integration-react@1.1.3-next.1
|
||||
- @backstage/plugin-catalog@1.5.0-next.2
|
||||
- @backstage/plugin-search-react@1.0.1-next.1
|
||||
- @backstage/plugin-techdocs-react@1.0.3-next.2
|
||||
|
||||
## @backstage/plugin-techdocs-module-addons-contrib@1.0.3-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
- @backstage/integration-react@1.1.3-next.1
|
||||
- @backstage/plugin-techdocs-react@1.0.3-next.2
|
||||
|
||||
## @backstage/plugin-techdocs-react@1.0.3-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-todo@0.2.10-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-user-settings@0.4.7-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-vault@0.1.2-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## @backstage/plugin-xcmetrics@0.2.28-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## example-app@0.2.74-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-kubernetes@0.7.1-next.2
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/plugin-cost-insights@0.11.30-next.1
|
||||
- @backstage/cli@0.18.1-next.1
|
||||
- @backstage/plugin-techdocs@1.3.1-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
- @backstage/app-defaults@1.0.5-next.1
|
||||
- @backstage/integration-react@1.1.3-next.1
|
||||
- @backstage/plugin-airbrake@0.3.8-next.1
|
||||
- @backstage/plugin-apache-airflow@0.2.1-next.1
|
||||
- @backstage/plugin-api-docs@0.8.8-next.2
|
||||
- @backstage/plugin-azure-devops@0.1.24-next.1
|
||||
- @backstage/plugin-badges@0.2.32-next.1
|
||||
- @backstage/plugin-catalog-graph@0.2.20-next.1
|
||||
- @backstage/plugin-catalog-import@0.8.11-next.1
|
||||
- @backstage/plugin-circleci@0.3.8-next.1
|
||||
- @backstage/plugin-cloudbuild@0.3.8-next.1
|
||||
- @backstage/plugin-code-coverage@0.2.1-next.1
|
||||
- @backstage/plugin-dynatrace@0.1.2-next.1
|
||||
- @backstage/plugin-explore@0.3.39-next.1
|
||||
- @backstage/plugin-gcalendar@0.3.4-next.1
|
||||
- @backstage/plugin-gcp-projects@0.3.27-next.1
|
||||
- @backstage/plugin-github-actions@0.5.8-next.1
|
||||
- @backstage/plugin-gocd@0.1.14-next.1
|
||||
- @backstage/plugin-graphiql@0.2.40-next.1
|
||||
- @backstage/plugin-home@0.4.24-next.2
|
||||
- @backstage/plugin-jenkins@0.7.7-next.2
|
||||
- @backstage/plugin-kafka@0.3.8-next.1
|
||||
- @backstage/plugin-lighthouse@0.3.8-next.1
|
||||
- @backstage/plugin-newrelic@0.3.26-next.1
|
||||
- @backstage/plugin-newrelic-dashboard@0.2.1-next.1
|
||||
- @backstage/plugin-org@0.5.8-next.1
|
||||
- @backstage/plugin-pagerduty@0.5.1-next.1
|
||||
- @backstage/plugin-rollbar@0.4.8-next.1
|
||||
- @backstage/plugin-scaffolder@1.5.0-next.2
|
||||
- @backstage/plugin-search@1.0.1-next.1
|
||||
- @backstage/plugin-search-react@1.0.1-next.1
|
||||
- @backstage/plugin-sentry@0.4.1-next.1
|
||||
- @backstage/plugin-shortcuts@0.3.0-next.1
|
||||
- @backstage/plugin-stack-overflow@0.1.4-next.1
|
||||
- @backstage/plugin-tech-insights@0.2.4-next.1
|
||||
- @backstage/plugin-tech-radar@0.5.15-next.1
|
||||
- @backstage/plugin-techdocs-module-addons-contrib@1.0.3-next.2
|
||||
- @backstage/plugin-techdocs-react@1.0.3-next.2
|
||||
- @backstage/plugin-todo@0.2.10-next.1
|
||||
- @backstage/plugin-user-settings@0.4.7-next.1
|
||||
|
||||
## techdocs-cli-embedded-app@0.2.73-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/cli@0.18.1-next.1
|
||||
- @backstage/plugin-techdocs@1.3.1-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
- @backstage/app-defaults@1.0.5-next.1
|
||||
- @backstage/integration-react@1.1.3-next.1
|
||||
- @backstage/plugin-catalog@1.5.0-next.2
|
||||
- @backstage/plugin-techdocs-react@1.0.3-next.2
|
||||
|
||||
## @internal/plugin-todo-list@1.0.4-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
+1
-1
@@ -49,7 +49,7 @@
|
||||
"@types/react": "^17",
|
||||
"@types/react-dom": "^17"
|
||||
},
|
||||
"version": "1.5.0-next.1",
|
||||
"version": "1.5.0-next.2",
|
||||
"dependencies": {
|
||||
"@manypkg/get-packages": "^1.1.3",
|
||||
"@microsoft/api-documenter": "^7.17.11",
|
||||
|
||||
@@ -1,5 +1,12 @@
|
||||
# @backstage/app-defaults
|
||||
|
||||
## 1.0.5-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## 1.0.5-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/app-defaults",
|
||||
"description": "Provides the default wiring of a Backstage App",
|
||||
"version": "1.0.5-next.0",
|
||||
"version": "1.0.5-next.1",
|
||||
"private": false,
|
||||
"publishConfig": {
|
||||
"access": "public",
|
||||
@@ -33,7 +33,7 @@
|
||||
"start": "backstage-cli package start"
|
||||
},
|
||||
"dependencies": {
|
||||
"@backstage/core-components": "^0.10.1-next.0",
|
||||
"@backstage/core-components": "^0.11.0-next.2",
|
||||
"@backstage/core-app-api": "^1.0.5-next.0",
|
||||
"@backstage/core-plugin-api": "^1.0.5-next.0",
|
||||
"@backstage/plugin-permission-react": "^0.4.4-next.0",
|
||||
@@ -46,7 +46,7 @@
|
||||
"react": "^16.13.1 || ^17.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/cli": "^0.18.1-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.1",
|
||||
"@backstage/test-utils": "^1.1.3-next.0",
|
||||
"@testing-library/jest-dom": "^5.10.1",
|
||||
"@testing-library/react": "^12.1.3",
|
||||
|
||||
@@ -1,5 +1,57 @@
|
||||
# example-app
|
||||
|
||||
## 0.2.74-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-kubernetes@0.7.1-next.2
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/plugin-cost-insights@0.11.30-next.1
|
||||
- @backstage/cli@0.18.1-next.1
|
||||
- @backstage/plugin-techdocs@1.3.1-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
- @backstage/app-defaults@1.0.5-next.1
|
||||
- @backstage/integration-react@1.1.3-next.1
|
||||
- @backstage/plugin-airbrake@0.3.8-next.1
|
||||
- @backstage/plugin-apache-airflow@0.2.1-next.1
|
||||
- @backstage/plugin-api-docs@0.8.8-next.2
|
||||
- @backstage/plugin-azure-devops@0.1.24-next.1
|
||||
- @backstage/plugin-badges@0.2.32-next.1
|
||||
- @backstage/plugin-catalog-graph@0.2.20-next.1
|
||||
- @backstage/plugin-catalog-import@0.8.11-next.1
|
||||
- @backstage/plugin-circleci@0.3.8-next.1
|
||||
- @backstage/plugin-cloudbuild@0.3.8-next.1
|
||||
- @backstage/plugin-code-coverage@0.2.1-next.1
|
||||
- @backstage/plugin-dynatrace@0.1.2-next.1
|
||||
- @backstage/plugin-explore@0.3.39-next.1
|
||||
- @backstage/plugin-gcalendar@0.3.4-next.1
|
||||
- @backstage/plugin-gcp-projects@0.3.27-next.1
|
||||
- @backstage/plugin-github-actions@0.5.8-next.1
|
||||
- @backstage/plugin-gocd@0.1.14-next.1
|
||||
- @backstage/plugin-graphiql@0.2.40-next.1
|
||||
- @backstage/plugin-home@0.4.24-next.2
|
||||
- @backstage/plugin-jenkins@0.7.7-next.2
|
||||
- @backstage/plugin-kafka@0.3.8-next.1
|
||||
- @backstage/plugin-lighthouse@0.3.8-next.1
|
||||
- @backstage/plugin-newrelic@0.3.26-next.1
|
||||
- @backstage/plugin-newrelic-dashboard@0.2.1-next.1
|
||||
- @backstage/plugin-org@0.5.8-next.1
|
||||
- @backstage/plugin-pagerduty@0.5.1-next.1
|
||||
- @backstage/plugin-rollbar@0.4.8-next.1
|
||||
- @backstage/plugin-scaffolder@1.5.0-next.2
|
||||
- @backstage/plugin-search@1.0.1-next.1
|
||||
- @backstage/plugin-search-react@1.0.1-next.1
|
||||
- @backstage/plugin-sentry@0.4.1-next.1
|
||||
- @backstage/plugin-shortcuts@0.3.0-next.1
|
||||
- @backstage/plugin-stack-overflow@0.1.4-next.1
|
||||
- @backstage/plugin-tech-insights@0.2.4-next.1
|
||||
- @backstage/plugin-tech-radar@0.5.15-next.1
|
||||
- @backstage/plugin-techdocs-module-addons-contrib@1.0.3-next.2
|
||||
- @backstage/plugin-techdocs-react@1.0.3-next.2
|
||||
- @backstage/plugin-todo@0.2.10-next.1
|
||||
- @backstage/plugin-user-settings@0.4.7-next.1
|
||||
|
||||
## 0.2.74-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
+47
-47
@@ -1,65 +1,65 @@
|
||||
{
|
||||
"name": "example-app",
|
||||
"version": "0.2.74-next.1",
|
||||
"version": "0.2.74-next.2",
|
||||
"private": true,
|
||||
"backstage": {
|
||||
"role": "frontend"
|
||||
},
|
||||
"bundled": true,
|
||||
"dependencies": {
|
||||
"@backstage/app-defaults": "^1.0.5-next.0",
|
||||
"@backstage/app-defaults": "^1.0.5-next.1",
|
||||
"@backstage/catalog-model": "^1.1.0",
|
||||
"@backstage/cli": "^0.18.1-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.1",
|
||||
"@backstage/config": "^1.0.1",
|
||||
"@backstage/core-app-api": "^1.0.5-next.0",
|
||||
"@backstage/core-components": "^0.10.1-next.1",
|
||||
"@backstage/core-components": "^0.11.0-next.2",
|
||||
"@backstage/core-plugin-api": "^1.0.5-next.0",
|
||||
"@backstage/integration-react": "^1.1.3-next.0",
|
||||
"@backstage/plugin-airbrake": "^0.3.8-next.0",
|
||||
"@backstage/plugin-api-docs": "^0.8.8-next.1",
|
||||
"@backstage/plugin-azure-devops": "^0.1.24-next.0",
|
||||
"@backstage/plugin-apache-airflow": "^0.2.1-next.0",
|
||||
"@backstage/plugin-badges": "^0.2.32-next.0",
|
||||
"@backstage/integration-react": "^1.1.3-next.1",
|
||||
"@backstage/plugin-airbrake": "^0.3.8-next.1",
|
||||
"@backstage/plugin-api-docs": "^0.8.8-next.2",
|
||||
"@backstage/plugin-azure-devops": "^0.1.24-next.1",
|
||||
"@backstage/plugin-apache-airflow": "^0.2.1-next.1",
|
||||
"@backstage/plugin-badges": "^0.2.32-next.1",
|
||||
"@backstage/plugin-catalog-common": "^1.0.5-next.0",
|
||||
"@backstage/plugin-catalog-graph": "^0.2.20-next.0",
|
||||
"@backstage/plugin-catalog-import": "^0.8.11-next.0",
|
||||
"@backstage/plugin-catalog-react": "^1.1.3-next.1",
|
||||
"@backstage/plugin-circleci": "^0.3.8-next.0",
|
||||
"@backstage/plugin-cloudbuild": "^0.3.8-next.0",
|
||||
"@backstage/plugin-code-coverage": "^0.2.1-next.0",
|
||||
"@backstage/plugin-cost-insights": "^0.11.30-next.0",
|
||||
"@backstage/plugin-dynatrace": "^0.1.2-next.0",
|
||||
"@backstage/plugin-explore": "^0.3.39-next.0",
|
||||
"@backstage/plugin-gcalendar": "^0.3.4-next.0",
|
||||
"@backstage/plugin-gcp-projects": "^0.3.27-next.0",
|
||||
"@backstage/plugin-github-actions": "^0.5.8-next.0",
|
||||
"@backstage/plugin-gocd": "^0.1.14-next.0",
|
||||
"@backstage/plugin-graphiql": "^0.2.40-next.0",
|
||||
"@backstage/plugin-home": "^0.4.24-next.1",
|
||||
"@backstage/plugin-jenkins": "^0.7.7-next.1",
|
||||
"@backstage/plugin-kafka": "^0.3.8-next.0",
|
||||
"@backstage/plugin-kubernetes": "^0.7.1-next.1",
|
||||
"@backstage/plugin-lighthouse": "^0.3.8-next.0",
|
||||
"@backstage/plugin-newrelic": "^0.3.26-next.0",
|
||||
"@backstage/plugin-newrelic-dashboard": "^0.2.1-next.0",
|
||||
"@backstage/plugin-org": "^0.5.8-next.0",
|
||||
"@backstage/plugin-pagerduty": "0.5.1-next.0",
|
||||
"@backstage/plugin-catalog-graph": "^0.2.20-next.1",
|
||||
"@backstage/plugin-catalog-import": "^0.8.11-next.1",
|
||||
"@backstage/plugin-catalog-react": "^1.1.3-next.2",
|
||||
"@backstage/plugin-circleci": "^0.3.8-next.1",
|
||||
"@backstage/plugin-cloudbuild": "^0.3.8-next.1",
|
||||
"@backstage/plugin-code-coverage": "^0.2.1-next.1",
|
||||
"@backstage/plugin-cost-insights": "^0.11.30-next.1",
|
||||
"@backstage/plugin-dynatrace": "^0.1.2-next.1",
|
||||
"@backstage/plugin-explore": "^0.3.39-next.1",
|
||||
"@backstage/plugin-gcalendar": "^0.3.4-next.1",
|
||||
"@backstage/plugin-gcp-projects": "^0.3.27-next.1",
|
||||
"@backstage/plugin-github-actions": "^0.5.8-next.1",
|
||||
"@backstage/plugin-gocd": "^0.1.14-next.1",
|
||||
"@backstage/plugin-graphiql": "^0.2.40-next.1",
|
||||
"@backstage/plugin-home": "^0.4.24-next.2",
|
||||
"@backstage/plugin-jenkins": "^0.7.7-next.2",
|
||||
"@backstage/plugin-kafka": "^0.3.8-next.1",
|
||||
"@backstage/plugin-kubernetes": "^0.7.1-next.2",
|
||||
"@backstage/plugin-lighthouse": "^0.3.8-next.1",
|
||||
"@backstage/plugin-newrelic": "^0.3.26-next.1",
|
||||
"@backstage/plugin-newrelic-dashboard": "^0.2.1-next.1",
|
||||
"@backstage/plugin-org": "^0.5.8-next.1",
|
||||
"@backstage/plugin-pagerduty": "0.5.1-next.1",
|
||||
"@backstage/plugin-permission-react": "^0.4.4-next.0",
|
||||
"@backstage/plugin-rollbar": "^0.4.8-next.0",
|
||||
"@backstage/plugin-scaffolder": "^1.5.0-next.1",
|
||||
"@backstage/plugin-search": "^1.0.1-next.0",
|
||||
"@backstage/plugin-rollbar": "^0.4.8-next.1",
|
||||
"@backstage/plugin-scaffolder": "^1.5.0-next.2",
|
||||
"@backstage/plugin-search": "^1.0.1-next.1",
|
||||
"@backstage/plugin-search-common": "^1.0.0",
|
||||
"@backstage/plugin-search-react": "^1.0.1-next.0",
|
||||
"@backstage/plugin-sentry": "^0.4.1-next.0",
|
||||
"@backstage/plugin-shortcuts": "^0.3.0-next.0",
|
||||
"@backstage/plugin-stack-overflow": "^0.1.4-next.0",
|
||||
"@backstage/plugin-tech-insights": "^0.2.4-next.0",
|
||||
"@backstage/plugin-tech-radar": "^0.5.15-next.0",
|
||||
"@backstage/plugin-techdocs": "^1.3.1-next.1",
|
||||
"@backstage/plugin-techdocs-module-addons-contrib": "^1.0.3-next.1",
|
||||
"@backstage/plugin-techdocs-react": "^1.0.3-next.1",
|
||||
"@backstage/plugin-todo": "^0.2.10-next.0",
|
||||
"@backstage/plugin-user-settings": "^0.4.7-next.0",
|
||||
"@backstage/plugin-search-react": "^1.0.1-next.1",
|
||||
"@backstage/plugin-sentry": "^0.4.1-next.1",
|
||||
"@backstage/plugin-shortcuts": "^0.3.0-next.1",
|
||||
"@backstage/plugin-stack-overflow": "^0.1.4-next.1",
|
||||
"@backstage/plugin-tech-insights": "^0.2.4-next.1",
|
||||
"@backstage/plugin-tech-radar": "^0.5.15-next.1",
|
||||
"@backstage/plugin-techdocs": "^1.3.1-next.2",
|
||||
"@backstage/plugin-techdocs-module-addons-contrib": "^1.0.3-next.2",
|
||||
"@backstage/plugin-techdocs-react": "^1.0.3-next.2",
|
||||
"@backstage/plugin-todo": "^0.2.10-next.1",
|
||||
"@backstage/plugin-user-settings": "^0.4.7-next.1",
|
||||
"@backstage/theme": "^0.2.16",
|
||||
"@material-ui/core": "^4.12.2",
|
||||
"@material-ui/icons": "^4.9.1",
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
# @backstage/cli
|
||||
|
||||
## 0.18.1-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- fd68d6f138: Added resolution of `.json` and `.wasm` files to the Webpack configuration in order to match defaults.
|
||||
|
||||
## 0.18.1-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/cli",
|
||||
"description": "CLI for developing Backstage plugins and apps",
|
||||
"version": "0.18.1-next.0",
|
||||
"version": "0.18.1-next.1",
|
||||
"private": false,
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
@@ -129,9 +129,9 @@
|
||||
"@backstage/backend-common": "^0.15.0-next.0",
|
||||
"@backstage/config": "^1.0.1",
|
||||
"@backstage/core-app-api": "^1.0.5-next.0",
|
||||
"@backstage/core-components": "^0.10.1-next.0",
|
||||
"@backstage/core-components": "^0.11.0-next.2",
|
||||
"@backstage/core-plugin-api": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.1",
|
||||
"@backstage/test-utils": "^1.1.3-next.0",
|
||||
"@backstage/theme": "^0.2.16",
|
||||
"@types/diff": "^5.0.0",
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
# @backstage/core-components
|
||||
|
||||
## 0.11.0-next.2
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- d0eefc499a: Made the `to` prop of `Button` and `Link` more strict, only supporting plain strings. It used to be the case that this prop was unexpectedly too liberal, making it look like we supported the complex `react-router-dom` object form of the parameter as well, which led to unexpected results at runtime.
|
||||
|
||||
## 0.10.1-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/core-components",
|
||||
"description": "Core components used by Backstage plugins and apps",
|
||||
"version": "0.10.1-next.1",
|
||||
"version": "0.11.0-next.2",
|
||||
"private": false,
|
||||
"publishConfig": {
|
||||
"access": "public",
|
||||
@@ -80,7 +80,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/core-app-api": "^1.0.5-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.1",
|
||||
"@backstage/test-utils": "^1.1.3-next.0",
|
||||
"@testing-library/jest-dom": "^5.10.1",
|
||||
"@testing-library/react": "^12.1.3",
|
||||
|
||||
@@ -1,5 +1,20 @@
|
||||
# @backstage/create-app
|
||||
|
||||
## 0.4.30-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 0174a0a022: Add `PATCH` and `HEAD` to the `Access-Control-Allow-Methods`.
|
||||
|
||||
To apply this change to your Backstage installation make the following change to your `app-config.yaml`
|
||||
|
||||
```diff
|
||||
cors:
|
||||
origin: http://localhost:3000
|
||||
- methods: [GET, POST, PUT, DELETE]
|
||||
+ methods: [GET, POST, PUT, DELETE, PATCH, HEAD]
|
||||
```
|
||||
|
||||
## 0.4.30-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/create-app",
|
||||
"description": "A CLI that helps you create your own Backstage app",
|
||||
"version": "0.4.30-next.1",
|
||||
"version": "0.4.30-next.2",
|
||||
"private": false,
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
|
||||
@@ -1,5 +1,15 @@
|
||||
# @backstage/dev-utils
|
||||
|
||||
## 1.0.5-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
- @backstage/app-defaults@1.0.5-next.1
|
||||
- @backstage/integration-react@1.1.3-next.1
|
||||
|
||||
## 1.0.5-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/dev-utils",
|
||||
"description": "Utilities for developing Backstage plugins.",
|
||||
"version": "1.0.5-next.0",
|
||||
"version": "1.0.5-next.1",
|
||||
"private": false,
|
||||
"publishConfig": {
|
||||
"access": "public",
|
||||
@@ -33,13 +33,13 @@
|
||||
"start": "backstage-cli package start"
|
||||
},
|
||||
"dependencies": {
|
||||
"@backstage/app-defaults": "^1.0.5-next.0",
|
||||
"@backstage/app-defaults": "^1.0.5-next.1",
|
||||
"@backstage/core-app-api": "^1.0.5-next.0",
|
||||
"@backstage/core-components": "^0.10.1-next.0",
|
||||
"@backstage/core-components": "^0.11.0-next.2",
|
||||
"@backstage/core-plugin-api": "^1.0.5-next.0",
|
||||
"@backstage/catalog-model": "^1.1.0",
|
||||
"@backstage/integration-react": "^1.1.3-next.0",
|
||||
"@backstage/plugin-catalog-react": "^1.1.3-next.0",
|
||||
"@backstage/integration-react": "^1.1.3-next.1",
|
||||
"@backstage/plugin-catalog-react": "^1.1.3-next.2",
|
||||
"@backstage/test-utils": "^1.1.3-next.0",
|
||||
"@backstage/theme": "^0.2.16",
|
||||
"@material-ui/core": "^4.12.2",
|
||||
@@ -59,7 +59,7 @@
|
||||
"react-dom": "^16.13.1 || ^17.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/cli": "^0.18.1-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.1",
|
||||
"@types/jest": "^26.0.7",
|
||||
"@types/node": "^16.0.0"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,12 @@
|
||||
# @backstage/integration-react
|
||||
|
||||
## 1.1.3-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## 1.1.3-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/integration-react",
|
||||
"description": "Frontend package for managing integrations towards external systems",
|
||||
"version": "1.1.3-next.0",
|
||||
"version": "1.1.3-next.1",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -25,7 +25,7 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@backstage/config": "^1.0.1",
|
||||
"@backstage/core-components": "^0.10.1-next.0",
|
||||
"@backstage/core-components": "^0.11.0-next.2",
|
||||
"@backstage/core-plugin-api": "^1.0.5-next.0",
|
||||
"@backstage/integration": "^1.3.0-next.0",
|
||||
"@backstage/theme": "^0.2.16",
|
||||
@@ -38,8 +38,8 @@
|
||||
"react": "^16.13.1 || ^17.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/cli": "^0.18.1-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.1",
|
||||
"@backstage/dev-utils": "^1.0.5-next.1",
|
||||
"@backstage/test-utils": "^1.1.3-next.0",
|
||||
"@testing-library/jest-dom": "^5.10.1",
|
||||
"@testing-library/react": "^12.1.3",
|
||||
|
||||
@@ -1,5 +1,18 @@
|
||||
# techdocs-cli-embedded-app
|
||||
|
||||
## 0.2.73-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/cli@0.18.1-next.1
|
||||
- @backstage/plugin-techdocs@1.3.1-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
- @backstage/app-defaults@1.0.5-next.1
|
||||
- @backstage/integration-react@1.1.3-next.1
|
||||
- @backstage/plugin-catalog@1.5.0-next.2
|
||||
- @backstage/plugin-techdocs-react@1.0.3-next.2
|
||||
|
||||
## 0.2.73-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,23 +1,23 @@
|
||||
{
|
||||
"name": "techdocs-cli-embedded-app",
|
||||
"version": "0.2.73-next.0",
|
||||
"version": "0.2.73-next.1",
|
||||
"private": true,
|
||||
"backstage": {
|
||||
"role": "frontend"
|
||||
},
|
||||
"bundled": true,
|
||||
"dependencies": {
|
||||
"@backstage/app-defaults": "^1.0.5-next.0",
|
||||
"@backstage/app-defaults": "^1.0.5-next.1",
|
||||
"@backstage/catalog-model": "^1.1.0",
|
||||
"@backstage/cli": "^0.18.1-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.1",
|
||||
"@backstage/config": "^1.0.1",
|
||||
"@backstage/core-app-api": "^1.0.5-next.0",
|
||||
"@backstage/core-components": "^0.10.1-next.0",
|
||||
"@backstage/core-components": "^0.11.0-next.2",
|
||||
"@backstage/core-plugin-api": "^1.0.5-next.0",
|
||||
"@backstage/integration-react": "^1.1.3-next.0",
|
||||
"@backstage/plugin-catalog": "^1.5.0-next.0",
|
||||
"@backstage/plugin-techdocs": "^1.3.1-next.0",
|
||||
"@backstage/plugin-techdocs-react": "^1.0.3-next.0",
|
||||
"@backstage/integration-react": "^1.1.3-next.1",
|
||||
"@backstage/plugin-catalog": "^1.5.0-next.2",
|
||||
"@backstage/plugin-techdocs": "^1.3.1-next.2",
|
||||
"@backstage/plugin-techdocs-react": "^1.0.3-next.2",
|
||||
"@backstage/test-utils": "^1.1.3-next.0",
|
||||
"@backstage/theme": "^0.2.16",
|
||||
"@material-ui/core": "^4.11.0",
|
||||
@@ -30,7 +30,7 @@
|
||||
"react-use": "^17.2.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/cli": "^0.18.1-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.1",
|
||||
"@testing-library/jest-dom": "^5.10.1",
|
||||
"@testing-library/react": "^12.1.3",
|
||||
"@testing-library/user-event": "^14.0.0",
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
# @techdocs/cli
|
||||
|
||||
## 1.2.0-next.2
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- 855952db53: Added CLI option `--docker-option` to allow passing additional options to the `docker run` command executed my `serve` and `serve:mkdocs`.
|
||||
|
||||
## 1.1.4-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@techdocs/cli",
|
||||
"description": "Utility CLI for managing TechDocs sites in Backstage.",
|
||||
"version": "1.1.4-next.1",
|
||||
"version": "1.2.0-next.2",
|
||||
"private": false,
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
@@ -37,7 +37,7 @@
|
||||
"techdocs-cli": "bin/techdocs-cli"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/cli": "^0.18.1-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.1",
|
||||
"@types/commander": "^2.12.2",
|
||||
"@types/fs-extra": "^9.0.6",
|
||||
"@types/http-proxy": "^1.17.4",
|
||||
|
||||
@@ -1,5 +1,15 @@
|
||||
# @backstage/plugin-adr
|
||||
|
||||
## 0.1.3-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
- @backstage/integration-react@1.1.3-next.1
|
||||
- @backstage/plugin-search-react@1.0.1-next.1
|
||||
|
||||
## 0.1.3-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@backstage/plugin-adr",
|
||||
"version": "0.1.3-next.0",
|
||||
"version": "0.1.3-next.1",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -22,13 +22,13 @@
|
||||
"postpack": "backstage-cli package postpack"
|
||||
},
|
||||
"dependencies": {
|
||||
"@backstage/core-components": "^0.10.1-next.0",
|
||||
"@backstage/core-components": "^0.11.0-next.2",
|
||||
"@backstage/core-plugin-api": "^1.0.5-next.0",
|
||||
"@backstage/integration-react": "^1.1.3-next.0",
|
||||
"@backstage/integration-react": "^1.1.3-next.1",
|
||||
"@backstage/plugin-adr-common": "^0.1.3-next.0",
|
||||
"@backstage/plugin-catalog-react": "^1.1.3-next.0",
|
||||
"@backstage/plugin-catalog-react": "^1.1.3-next.2",
|
||||
"@backstage/plugin-search-common": "^1.0.0",
|
||||
"@backstage/plugin-search-react": "^1.0.1-next.0",
|
||||
"@backstage/plugin-search-react": "^1.0.1-next.1",
|
||||
"@backstage/theme": "^0.2.16",
|
||||
"@material-ui/core": "^4.12.2",
|
||||
"@material-ui/icons": "^4.9.1",
|
||||
@@ -44,9 +44,9 @@
|
||||
"react": "^16.13.1 || ^17.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/cli": "^0.18.1-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.1",
|
||||
"@backstage/core-app-api": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.1",
|
||||
"@backstage/test-utils": "^1.1.3-next.0",
|
||||
"@testing-library/jest-dom": "^5.10.1",
|
||||
"@testing-library/react": "^12.1.3",
|
||||
|
||||
@@ -1,5 +1,14 @@
|
||||
# @backstage/plugin-airbrake
|
||||
|
||||
## 0.3.8-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
- @backstage/dev-utils@1.0.5-next.1
|
||||
|
||||
## 0.3.8-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@backstage/plugin-airbrake",
|
||||
"version": "0.3.8-next.0",
|
||||
"version": "0.3.8-next.1",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -24,10 +24,10 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@backstage/catalog-model": "^1.1.0",
|
||||
"@backstage/core-components": "^0.10.1-next.1",
|
||||
"@backstage/core-components": "^0.11.0-next.2",
|
||||
"@backstage/core-plugin-api": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.0",
|
||||
"@backstage/plugin-catalog-react": "^1.1.3-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.1",
|
||||
"@backstage/plugin-catalog-react": "^1.1.3-next.2",
|
||||
"@backstage/test-utils": "^1.1.3-next.0",
|
||||
"@backstage/theme": "^0.2.16",
|
||||
"@material-ui/core": "^4.12.2",
|
||||
@@ -40,9 +40,9 @@
|
||||
"react": "^16.13.1 || ^17.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/app-defaults": "^1.0.5-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.0",
|
||||
"@backstage/app-defaults": "^1.0.5-next.1",
|
||||
"@backstage/cli": "^0.18.1-next.1",
|
||||
"@backstage/dev-utils": "^1.0.5-next.1",
|
||||
"@backstage/test-utils": "^1.1.3-next.0",
|
||||
"@testing-library/jest-dom": "^5.10.1",
|
||||
"@testing-library/react": "^12.1.3",
|
||||
|
||||
@@ -1,5 +1,13 @@
|
||||
# @backstage/plugin-allure
|
||||
|
||||
## 0.1.24-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## 0.1.24-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/plugin-allure",
|
||||
"description": "A Backstage plugin that integrates with Allure",
|
||||
"version": "0.1.24-next.0",
|
||||
"version": "0.1.24-next.1",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -26,9 +26,9 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@backstage/catalog-model": "^1.1.0",
|
||||
"@backstage/core-components": "^0.10.1-next.1",
|
||||
"@backstage/core-components": "^0.11.0-next.2",
|
||||
"@backstage/core-plugin-api": "^1.0.5-next.0",
|
||||
"@backstage/plugin-catalog-react": "^1.1.3-next.0",
|
||||
"@backstage/plugin-catalog-react": "^1.1.3-next.2",
|
||||
"@backstage/theme": "^0.2.16",
|
||||
"@material-ui/core": "^4.12.2",
|
||||
"@material-ui/icons": "^4.9.1",
|
||||
@@ -40,9 +40,9 @@
|
||||
"react": "^16.13.1 || ^17.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/cli": "^0.18.1-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.1",
|
||||
"@backstage/core-app-api": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.1",
|
||||
"@backstage/test-utils": "^1.1.3-next.0",
|
||||
"@testing-library/jest-dom": "^5.10.1",
|
||||
"@testing-library/react": "^12.1.3",
|
||||
|
||||
@@ -1,5 +1,12 @@
|
||||
# @backstage/plugin-analytics-module-ga
|
||||
|
||||
## 0.1.19-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## 0.1.19-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@backstage/plugin-analytics-module-ga",
|
||||
"version": "0.1.19-next.0",
|
||||
"version": "0.1.19-next.1",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -25,7 +25,7 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@backstage/config": "^1.0.1",
|
||||
"@backstage/core-components": "^0.10.1-next.1",
|
||||
"@backstage/core-components": "^0.11.0-next.2",
|
||||
"@backstage/core-plugin-api": "^1.0.5-next.0",
|
||||
"@backstage/theme": "^0.2.16",
|
||||
"@material-ui/core": "^4.12.2",
|
||||
@@ -38,9 +38,9 @@
|
||||
"react": "^16.13.1 || ^17.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/cli": "^0.18.1-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.1",
|
||||
"@backstage/core-app-api": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.1",
|
||||
"@backstage/test-utils": "^1.1.3-next.0",
|
||||
"@testing-library/jest-dom": "^5.10.1",
|
||||
"@testing-library/react": "^12.1.3",
|
||||
|
||||
@@ -1,5 +1,12 @@
|
||||
# @backstage/plugin-apache-airflow
|
||||
|
||||
## 0.2.1-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## 0.2.1-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@backstage/plugin-apache-airflow",
|
||||
"version": "0.2.1-next.0",
|
||||
"version": "0.2.1-next.1",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -23,7 +23,7 @@
|
||||
"clean": "backstage-cli package clean"
|
||||
},
|
||||
"dependencies": {
|
||||
"@backstage/core-components": "^0.10.1-next.1",
|
||||
"@backstage/core-components": "^0.11.0-next.2",
|
||||
"@backstage/core-plugin-api": "^1.0.5-next.0",
|
||||
"@material-ui/core": "^4.12.2",
|
||||
"@material-ui/icons": "^4.9.1",
|
||||
@@ -36,9 +36,9 @@
|
||||
"react": "^16.13.1 || ^17.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/cli": "^0.18.1-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.1",
|
||||
"@backstage/core-app-api": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.1",
|
||||
"@backstage/test-utils": "^1.1.3-next.0",
|
||||
"@testing-library/jest-dom": "^5.10.1",
|
||||
"@testing-library/react": "^12.1.3",
|
||||
|
||||
@@ -1,5 +1,14 @@
|
||||
# @backstage/plugin-api-docs
|
||||
|
||||
## 0.8.8-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
- @backstage/plugin-catalog@1.5.0-next.2
|
||||
|
||||
## 0.8.8-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/plugin-api-docs",
|
||||
"description": "A Backstage plugin that helps represent API entities in the frontend",
|
||||
"version": "0.8.8-next.1",
|
||||
"version": "0.8.8-next.2",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -35,10 +35,10 @@
|
||||
"dependencies": {
|
||||
"@asyncapi/react-component": "1.0.0-next.40",
|
||||
"@backstage/catalog-model": "^1.1.0",
|
||||
"@backstage/core-components": "^0.10.1-next.1",
|
||||
"@backstage/core-components": "^0.11.0-next.2",
|
||||
"@backstage/core-plugin-api": "^1.0.5-next.0",
|
||||
"@backstage/plugin-catalog": "^1.5.0-next.1",
|
||||
"@backstage/plugin-catalog-react": "^1.1.3-next.1",
|
||||
"@backstage/plugin-catalog": "^1.5.0-next.2",
|
||||
"@backstage/plugin-catalog-react": "^1.1.3-next.2",
|
||||
"@backstage/theme": "^0.2.16",
|
||||
"@material-ui/core": "^4.12.2",
|
||||
"@material-ui/icons": "^4.9.1",
|
||||
@@ -57,9 +57,9 @@
|
||||
"react": "^16.13.1 || ^17.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/cli": "^0.18.1-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.1",
|
||||
"@backstage/core-app-api": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.1",
|
||||
"@backstage/test-utils": "^1.1.3-next.0",
|
||||
"@testing-library/jest-dom": "^5.10.1",
|
||||
"@testing-library/react": "^12.1.3",
|
||||
|
||||
@@ -1,5 +1,12 @@
|
||||
# @backstage/plugin-apollo-explorer
|
||||
|
||||
## 0.1.1-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## 0.1.1-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@backstage/plugin-apollo-explorer",
|
||||
"version": "0.1.1-next.0",
|
||||
"version": "0.1.1-next.1",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -22,7 +22,7 @@
|
||||
"postpack": "backstage-cli package postpack"
|
||||
},
|
||||
"dependencies": {
|
||||
"@backstage/core-components": "^0.10.1-next.0",
|
||||
"@backstage/core-components": "^0.11.0-next.2",
|
||||
"@backstage/core-plugin-api": "^1.0.5-next.0",
|
||||
"@backstage/theme": "^0.2.16",
|
||||
"@material-ui/core": "^4.9.13",
|
||||
@@ -36,9 +36,9 @@
|
||||
"react": "^16.13.1 || ^17.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/cli": "^0.18.1-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.1",
|
||||
"@backstage/core-app-api": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.1",
|
||||
"@backstage/test-utils": "^1.1.3-next.0",
|
||||
"@testing-library/jest-dom": "^5.10.1",
|
||||
"@testing-library/react": "^12.1.3",
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
# @backstage/plugin-auth-backend
|
||||
|
||||
## 0.15.1-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 2d7d6028e1: Updated dependency `@google-cloud/firestore` to `^6.0.0`.
|
||||
|
||||
## 0.15.1-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/plugin-auth-backend",
|
||||
"description": "A Backstage backend plugin that handles authentication",
|
||||
"version": "0.15.1-next.0",
|
||||
"version": "0.15.1-next.1",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -77,7 +77,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/backend-test-utils": "^0.1.27-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.1",
|
||||
"@types/body-parser": "^1.19.0",
|
||||
"@types/cookie-parser": "^1.4.2",
|
||||
"@types/express-session": "^1.17.2",
|
||||
|
||||
@@ -1,5 +1,13 @@
|
||||
# @backstage/plugin-azure-devops
|
||||
|
||||
## 0.1.24-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## 0.1.24-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@backstage/plugin-azure-devops",
|
||||
"version": "0.1.24-next.0",
|
||||
"version": "0.1.24-next.1",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -31,11 +31,11 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@backstage/catalog-model": "^1.1.0",
|
||||
"@backstage/core-components": "^0.10.1-next.1",
|
||||
"@backstage/core-components": "^0.11.0-next.2",
|
||||
"@backstage/core-plugin-api": "^1.0.5-next.0",
|
||||
"@backstage/errors": "^1.1.0",
|
||||
"@backstage/plugin-azure-devops-common": "^0.2.4",
|
||||
"@backstage/plugin-catalog-react": "^1.1.3-next.0",
|
||||
"@backstage/plugin-catalog-react": "^1.1.3-next.2",
|
||||
"@backstage/theme": "^0.2.16",
|
||||
"@material-ui/core": "^4.12.2",
|
||||
"@material-ui/icons": "^4.9.1",
|
||||
@@ -49,9 +49,9 @@
|
||||
"react": "^16.13.1 || ^17.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/cli": "^0.18.1-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.1",
|
||||
"@backstage/core-app-api": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.1",
|
||||
"@backstage/test-utils": "^1.1.3-next.0",
|
||||
"@testing-library/jest-dom": "^5.10.1",
|
||||
"@testing-library/react": "^12.1.3",
|
||||
|
||||
@@ -1,5 +1,13 @@
|
||||
# @backstage/plugin-badges
|
||||
|
||||
## 0.2.32-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## 0.2.32-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/plugin-badges",
|
||||
"description": "A Backstage plugin that generates README badges for your entities",
|
||||
"version": "0.2.32-next.0",
|
||||
"version": "0.2.32-next.1",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -31,10 +31,10 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@backstage/catalog-model": "^1.1.0",
|
||||
"@backstage/core-components": "^0.10.1-next.1",
|
||||
"@backstage/core-components": "^0.11.0-next.2",
|
||||
"@backstage/core-plugin-api": "^1.0.5-next.0",
|
||||
"@backstage/errors": "^1.1.0",
|
||||
"@backstage/plugin-catalog-react": "^1.1.3-next.0",
|
||||
"@backstage/plugin-catalog-react": "^1.1.3-next.2",
|
||||
"@backstage/theme": "^0.2.16",
|
||||
"@material-ui/core": "^4.12.2",
|
||||
"@material-ui/icons": "^4.9.1",
|
||||
@@ -46,9 +46,9 @@
|
||||
"react": "^16.13.1 || ^17.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/cli": "^0.18.1-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.1",
|
||||
"@backstage/core-app-api": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.1",
|
||||
"@backstage/test-utils": "^1.1.3-next.0",
|
||||
"@testing-library/jest-dom": "^5.10.1",
|
||||
"@testing-library/react": "^12.1.3",
|
||||
|
||||
@@ -1,5 +1,15 @@
|
||||
# @backstage/plugin-bazaar
|
||||
|
||||
## 0.1.23-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/cli@0.18.1-next.1
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
- @backstage/plugin-catalog@1.5.0-next.2
|
||||
|
||||
## 0.1.23-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@backstage/plugin-bazaar",
|
||||
"version": "0.1.23-next.0",
|
||||
"version": "0.1.23-next.1",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -26,11 +26,11 @@
|
||||
"dependencies": {
|
||||
"@backstage/catalog-client": "^1.0.4",
|
||||
"@backstage/catalog-model": "^1.1.0",
|
||||
"@backstage/cli": "^0.18.1-next.0",
|
||||
"@backstage/core-components": "^0.10.1-next.1",
|
||||
"@backstage/cli": "^0.18.1-next.1",
|
||||
"@backstage/core-components": "^0.11.0-next.2",
|
||||
"@backstage/core-plugin-api": "^1.0.5-next.0",
|
||||
"@backstage/plugin-catalog": "^1.5.0-next.0",
|
||||
"@backstage/plugin-catalog-react": "^1.1.3-next.0",
|
||||
"@backstage/plugin-catalog": "^1.5.0-next.2",
|
||||
"@backstage/plugin-catalog-react": "^1.1.3-next.2",
|
||||
"@date-io/luxon": "1.x",
|
||||
"@material-ui/core": "^4.12.2",
|
||||
"@material-ui/icons": "^4.9.1",
|
||||
@@ -47,8 +47,8 @@
|
||||
"react": "^16.13.1 || ^17.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/cli": "^0.18.1-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.1",
|
||||
"@backstage/dev-utils": "^1.0.5-next.1",
|
||||
"@testing-library/jest-dom": "^5.10.1",
|
||||
"cross-fetch": "^3.1.5"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,13 @@
|
||||
# @backstage/plugin-bitrise
|
||||
|
||||
## 0.1.35-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## 0.1.35-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/plugin-bitrise",
|
||||
"description": "A Backstage plugin that integrates towards Bitrise",
|
||||
"version": "0.1.35-next.0",
|
||||
"version": "0.1.35-next.1",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -25,9 +25,9 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@backstage/catalog-model": "^1.1.0",
|
||||
"@backstage/core-components": "^0.10.1-next.1",
|
||||
"@backstage/core-components": "^0.11.0-next.2",
|
||||
"@backstage/core-plugin-api": "^1.0.5-next.0",
|
||||
"@backstage/plugin-catalog-react": "^1.1.3-next.0",
|
||||
"@backstage/plugin-catalog-react": "^1.1.3-next.2",
|
||||
"@backstage/theme": "^0.2.16",
|
||||
"@material-ui/core": "^4.12.2",
|
||||
"@material-ui/icons": "^4.9.1",
|
||||
@@ -43,9 +43,9 @@
|
||||
"react": "^16.13.1 || ^17.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/cli": "^0.18.1-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.1",
|
||||
"@backstage/core-app-api": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.1",
|
||||
"@backstage/test-utils": "^1.1.3-next.0",
|
||||
"@testing-library/jest-dom": "^5.10.1",
|
||||
"@testing-library/react": "^12.1.3",
|
||||
|
||||
@@ -1 +1,58 @@
|
||||
# @backstage/plugin-catalog-backend-module-bitbucket-server
|
||||
|
||||
## 0.1.0-next.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- f7607f9d85: Add new plugin catalog-backend-module-bitbucket-server which adds the `BitbucketServerEntityProvider`.
|
||||
|
||||
The entity provider is meant as a replacement for the `BitbucketDiscoveryProcessor` to be used with Bitbucket Server (Bitbucket Cloud already has a replacement).
|
||||
|
||||
**Before:**
|
||||
|
||||
```typescript
|
||||
// packages/backend/src/plugins/catalog.ts
|
||||
builder.addProcessor(
|
||||
BitbucketDiscoveryProcessor.fromConfig(env.config, { logger: env.logger }),
|
||||
);
|
||||
```
|
||||
|
||||
```yaml
|
||||
# app-config.yaml
|
||||
catalog:
|
||||
locations:
|
||||
- type: bitbucket-discovery
|
||||
target: 'https://bitbucket.mycompany.com/projects/*/repos/*/catalog-info.yaml
|
||||
```
|
||||
|
||||
**After:**
|
||||
|
||||
```typescript
|
||||
// packages/backend/src/plugins/catalog.ts
|
||||
builder.addEntityProvider(
|
||||
BitbucketServerEntityProvider.fromConfig(env.config, {
|
||||
logger: env.logger,
|
||||
schedule: env.scheduler.createScheduledTaskRunner({
|
||||
frequency: { minutes: 30 },
|
||||
timeout: { minutes: 3 },
|
||||
}),
|
||||
}),
|
||||
);
|
||||
```
|
||||
|
||||
```yaml
|
||||
# app-config.yaml
|
||||
catalog:
|
||||
providers:
|
||||
bitbucketServer:
|
||||
yourProviderId: # identifies your ingested dataset
|
||||
catalogPath: /catalog-info.yaml # default value
|
||||
filters: # optional
|
||||
projectKey: '.*' # optional; RegExp
|
||||
repoSlug: '.*' # optional; RegExp
|
||||
```
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-backend@1.3.1-next.2
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@backstage/plugin-catalog-backend-module-bitbucket-server",
|
||||
"version": "0.0.0",
|
||||
"version": "0.1.0-next.0",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -38,14 +38,14 @@
|
||||
"@backstage/config": "^1.0.0",
|
||||
"@backstage/errors": "^1.0.0",
|
||||
"@backstage/integration": "^1.3.0-next.0",
|
||||
"@backstage/plugin-catalog-backend": "^1.3.1-next.0",
|
||||
"@backstage/plugin-catalog-backend": "^1.3.1-next.2",
|
||||
"cross-fetch": "^3.1.5",
|
||||
"uuid": "^8.0.0",
|
||||
"winston": "^3.2.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/backend-test-utils": "^0.1.27-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.1",
|
||||
"msw": "^0.44.0"
|
||||
},
|
||||
"files": [
|
||||
|
||||
@@ -1,5 +1,13 @@
|
||||
# @backstage/plugin-catalog-backend-module-github
|
||||
|
||||
## 0.1.6-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 97f0a37378: Improved support for wildcards in `catalogPath`
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-backend@1.3.1-next.2
|
||||
|
||||
## 0.1.6-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/plugin-catalog-backend-module-github",
|
||||
"description": "A Backstage catalog backend module that helps integrate towards GitHub",
|
||||
"version": "0.1.6-next.1",
|
||||
"version": "0.1.6-next.2",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -39,7 +39,7 @@
|
||||
"@backstage/config": "^1.0.1",
|
||||
"@backstage/errors": "^1.1.0",
|
||||
"@backstage/integration": "^1.3.0-next.1",
|
||||
"@backstage/plugin-catalog-backend": "^1.3.1-next.1",
|
||||
"@backstage/plugin-catalog-backend": "^1.3.1-next.2",
|
||||
"@backstage/types": "^1.0.0",
|
||||
"@octokit/graphql": "^5.0.0",
|
||||
"lodash": "^4.17.21",
|
||||
@@ -50,7 +50,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/backend-test-utils": "^0.1.27-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.1",
|
||||
"@types/lodash": "^4.14.151"
|
||||
},
|
||||
"files": [
|
||||
|
||||
@@ -1,5 +1,26 @@
|
||||
# @backstage/plugin-catalog-backend-module-gitlab
|
||||
|
||||
## 0.1.6-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 24979413a4: Enhancing GitLab provider with filtering projects by pattern RegExp
|
||||
|
||||
```yaml
|
||||
providers:
|
||||
gitlab:
|
||||
stg:
|
||||
host: gitlab.stg.company.io
|
||||
branch: main
|
||||
projectPattern: 'john/' # new option
|
||||
entityFilename: template.yaml
|
||||
```
|
||||
|
||||
With the aforementioned parameter you can filter projects, and keep only who belongs to the namespace "john".
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-backend@1.3.1-next.2
|
||||
|
||||
## 0.1.6-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/plugin-catalog-backend-module-gitlab",
|
||||
"description": "A Backstage catalog backend module that helps integrate towards GitLab",
|
||||
"version": "0.1.6-next.0",
|
||||
"version": "0.1.6-next.1",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -39,7 +39,7 @@
|
||||
"@backstage/config": "^1.0.1",
|
||||
"@backstage/errors": "^1.1.0",
|
||||
"@backstage/integration": "^1.3.0-next.0",
|
||||
"@backstage/plugin-catalog-backend": "^1.3.1-next.0",
|
||||
"@backstage/plugin-catalog-backend": "^1.3.1-next.2",
|
||||
"@backstage/types": "^1.0.0",
|
||||
"lodash": "^4.17.21",
|
||||
"msw": "^0.44.0",
|
||||
@@ -49,7 +49,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/backend-test-utils": "^0.1.27-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.1",
|
||||
"@types/lodash": "^4.14.151",
|
||||
"@types/uuid": "^8.0.0"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
# @backstage/plugin-catalog-backend
|
||||
|
||||
## 1.3.1-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 059ae348b4: Use the non-deprecated form of table.unique in knex
|
||||
|
||||
## 1.3.1-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/plugin-catalog-backend",
|
||||
"description": "The Backstage backend plugin that provides the Backstage catalog",
|
||||
"version": "1.3.1-next.1",
|
||||
"version": "1.3.1-next.2",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -71,7 +71,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/backend-test-utils": "^0.1.27-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.1",
|
||||
"@backstage/plugin-permission-common": "^0.6.3",
|
||||
"@backstage/plugin-search-backend-node": "1.0.1-next.0",
|
||||
"@types/core-js": "^2.5.4",
|
||||
|
||||
@@ -1,5 +1,13 @@
|
||||
# @backstage/plugin-catalog-graph
|
||||
|
||||
## 0.2.20-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## 0.2.20-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@backstage/plugin-catalog-graph",
|
||||
"version": "0.2.20-next.0",
|
||||
"version": "0.2.20-next.1",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -26,9 +26,9 @@
|
||||
"dependencies": {
|
||||
"@backstage/catalog-client": "^1.0.4",
|
||||
"@backstage/catalog-model": "^1.1.0",
|
||||
"@backstage/core-components": "^0.10.1-next.1",
|
||||
"@backstage/core-components": "^0.11.0-next.2",
|
||||
"@backstage/core-plugin-api": "^1.0.5-next.0",
|
||||
"@backstage/plugin-catalog-react": "^1.1.3-next.0",
|
||||
"@backstage/plugin-catalog-react": "^1.1.3-next.2",
|
||||
"@backstage/theme": "^0.2.16",
|
||||
"@material-ui/core": "^4.12.2",
|
||||
"@material-ui/icons": "^4.9.1",
|
||||
@@ -45,10 +45,10 @@
|
||||
"react": "^16.13.1 || ^17.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/cli": "^0.18.1-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.1",
|
||||
"@backstage/core-app-api": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.0",
|
||||
"@backstage/plugin-catalog": "^1.5.0-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.1",
|
||||
"@backstage/plugin-catalog": "^1.5.0-next.2",
|
||||
"@backstage/test-utils": "^1.1.3-next.0",
|
||||
"@backstage/types": "^1.0.0",
|
||||
"@testing-library/jest-dom": "^5.10.1",
|
||||
|
||||
@@ -1,5 +1,14 @@
|
||||
# @backstage/plugin-catalog-import
|
||||
|
||||
## 0.8.11-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
- @backstage/integration-react@1.1.3-next.1
|
||||
|
||||
## 0.8.11-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/plugin-catalog-import",
|
||||
"description": "A Backstage plugin the helps you import entities into your catalog",
|
||||
"version": "0.8.11-next.0",
|
||||
"version": "0.8.11-next.1",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -37,12 +37,12 @@
|
||||
"@backstage/catalog-client": "^1.0.4",
|
||||
"@backstage/catalog-model": "^1.1.0",
|
||||
"@backstage/config": "^1.0.1",
|
||||
"@backstage/core-components": "^0.10.1-next.1",
|
||||
"@backstage/core-components": "^0.11.0-next.2",
|
||||
"@backstage/core-plugin-api": "^1.0.5-next.0",
|
||||
"@backstage/errors": "^1.1.0",
|
||||
"@backstage/integration": "^1.3.0-next.0",
|
||||
"@backstage/integration-react": "^1.1.3-next.0",
|
||||
"@backstage/plugin-catalog-react": "^1.1.3-next.0",
|
||||
"@backstage/integration-react": "^1.1.3-next.1",
|
||||
"@backstage/plugin-catalog-react": "^1.1.3-next.2",
|
||||
"@material-ui/core": "^4.12.2",
|
||||
"@material-ui/icons": "^4.9.1",
|
||||
"@material-ui/lab": "4.0.0-alpha.57",
|
||||
@@ -60,9 +60,9 @@
|
||||
"react": "^16.13.1 || ^17.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/cli": "^0.18.1-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.1",
|
||||
"@backstage/core-app-api": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.1",
|
||||
"@backstage/test-utils": "^1.1.3-next.0",
|
||||
"@testing-library/jest-dom": "^5.10.1",
|
||||
"@testing-library/react": "^12.1.3",
|
||||
|
||||
@@ -1,5 +1,13 @@
|
||||
# @backstage/plugin-catalog-react
|
||||
|
||||
## 1.1.3-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 44e691a7f9: Modify description column to not use auto width.
|
||||
- Updated dependencies
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## 1.1.3-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/plugin-catalog-react",
|
||||
"description": "A frontend library that helps other Backstage plugins interact with the catalog",
|
||||
"version": "1.1.3-next.1",
|
||||
"version": "1.1.3-next.2",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -36,7 +36,7 @@
|
||||
"dependencies": {
|
||||
"@backstage/catalog-client": "^1.0.4",
|
||||
"@backstage/catalog-model": "^1.1.0",
|
||||
"@backstage/core-components": "^0.10.1-next.1",
|
||||
"@backstage/core-components": "^0.11.0-next.2",
|
||||
"@backstage/core-plugin-api": "^1.0.5-next.0",
|
||||
"@backstage/errors": "^1.1.0",
|
||||
"@backstage/integration": "^1.3.0-next.1",
|
||||
@@ -63,7 +63,7 @@
|
||||
"react": "^16.13.1 || ^17.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/cli": "^0.18.1-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.1",
|
||||
"@backstage/core-app-api": "^1.0.5-next.0",
|
||||
"@backstage/plugin-catalog-common": "^1.0.5-next.0",
|
||||
"@backstage/plugin-scaffolder-common": "^1.1.2",
|
||||
|
||||
@@ -1,5 +1,15 @@
|
||||
# @backstage/plugin-catalog
|
||||
|
||||
## 1.5.0-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
- @backstage/integration-react@1.1.3-next.1
|
||||
- @backstage/plugin-search-react@1.0.1-next.1
|
||||
|
||||
## 1.5.0-next.1
|
||||
|
||||
### Minor Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/plugin-catalog",
|
||||
"description": "The Backstage plugin for browsing the Backstage catalog",
|
||||
"version": "1.5.0-next.1",
|
||||
"version": "1.5.0-next.2",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -36,14 +36,14 @@
|
||||
"dependencies": {
|
||||
"@backstage/catalog-client": "^1.0.4",
|
||||
"@backstage/catalog-model": "^1.1.0",
|
||||
"@backstage/core-components": "^0.10.1-next.1",
|
||||
"@backstage/core-components": "^0.11.0-next.2",
|
||||
"@backstage/core-plugin-api": "^1.0.5-next.0",
|
||||
"@backstage/errors": "^1.1.0",
|
||||
"@backstage/integration-react": "^1.1.3-next.0",
|
||||
"@backstage/integration-react": "^1.1.3-next.1",
|
||||
"@backstage/plugin-catalog-common": "^1.0.5-next.0",
|
||||
"@backstage/plugin-catalog-react": "^1.1.3-next.1",
|
||||
"@backstage/plugin-catalog-react": "^1.1.3-next.2",
|
||||
"@backstage/plugin-search-common": "^1.0.0",
|
||||
"@backstage/plugin-search-react": "^1.0.1-next.0",
|
||||
"@backstage/plugin-search-react": "^1.0.1-next.1",
|
||||
"@backstage/theme": "^0.2.16",
|
||||
"@backstage/types": "^1.0.0",
|
||||
"@material-ui/core": "^4.12.2",
|
||||
@@ -61,9 +61,9 @@
|
||||
"react": "^16.13.1 || ^17.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/cli": "^0.18.1-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.1",
|
||||
"@backstage/core-app-api": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.1",
|
||||
"@backstage/plugin-permission-react": "^0.4.4-next.0",
|
||||
"@backstage/test-utils": "^1.1.3-next.0",
|
||||
"@testing-library/jest-dom": "^5.10.1",
|
||||
|
||||
@@ -1,5 +1,13 @@
|
||||
# @backstage/plugin-circleci
|
||||
|
||||
## 0.3.8-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## 0.3.8-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/plugin-circleci",
|
||||
"description": "A Backstage plugin that integrates towards Circle CI",
|
||||
"version": "0.3.8-next.0",
|
||||
"version": "0.3.8-next.1",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -36,9 +36,9 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@backstage/catalog-model": "^1.1.0",
|
||||
"@backstage/core-components": "^0.10.1-next.1",
|
||||
"@backstage/core-components": "^0.11.0-next.2",
|
||||
"@backstage/core-plugin-api": "^1.0.5-next.0",
|
||||
"@backstage/plugin-catalog-react": "^1.1.3-next.0",
|
||||
"@backstage/plugin-catalog-react": "^1.1.3-next.2",
|
||||
"@backstage/theme": "^0.2.16",
|
||||
"@material-ui/core": "^4.12.2",
|
||||
"@material-ui/icons": "^4.9.1",
|
||||
@@ -55,9 +55,9 @@
|
||||
"react": "^16.13.1 || ^17.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/cli": "^0.18.1-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.1",
|
||||
"@backstage/core-app-api": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.1",
|
||||
"@backstage/test-utils": "^1.1.3-next.0",
|
||||
"@testing-library/jest-dom": "^5.10.1",
|
||||
"@testing-library/react": "^12.1.3",
|
||||
|
||||
@@ -1,5 +1,13 @@
|
||||
# @backstage/plugin-cloudbuild
|
||||
|
||||
## 0.3.8-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## 0.3.8-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/plugin-cloudbuild",
|
||||
"description": "A Backstage plugin that integrates towards Google Cloud Build",
|
||||
"version": "0.3.8-next.0",
|
||||
"version": "0.3.8-next.1",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -35,9 +35,9 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@backstage/catalog-model": "^1.1.0",
|
||||
"@backstage/core-components": "^0.10.1-next.1",
|
||||
"@backstage/core-components": "^0.11.0-next.2",
|
||||
"@backstage/core-plugin-api": "^1.0.5-next.0",
|
||||
"@backstage/plugin-catalog-react": "^1.1.3-next.0",
|
||||
"@backstage/plugin-catalog-react": "^1.1.3-next.2",
|
||||
"@backstage/theme": "^0.2.16",
|
||||
"@material-ui/core": "^4.12.2",
|
||||
"@material-ui/icons": "^4.9.1",
|
||||
@@ -52,9 +52,9 @@
|
||||
"react": "^16.13.1 || ^17.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/cli": "^0.18.1-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.1",
|
||||
"@backstage/core-app-api": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.1",
|
||||
"@backstage/test-utils": "^1.1.3-next.0",
|
||||
"@testing-library/jest-dom": "^5.10.1",
|
||||
"@testing-library/react": "^12.1.3",
|
||||
|
||||
@@ -1,5 +1,13 @@
|
||||
# @backstage/plugin-code-climate
|
||||
|
||||
## 0.1.8-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## 0.1.8-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@backstage/plugin-code-climate",
|
||||
"version": "0.1.8-next.0",
|
||||
"version": "0.1.8-next.1",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -24,9 +24,9 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@backstage/catalog-model": "^1.1.0",
|
||||
"@backstage/core-components": "^0.10.1-next.1",
|
||||
"@backstage/core-components": "^0.11.0-next.2",
|
||||
"@backstage/core-plugin-api": "^1.0.5-next.0",
|
||||
"@backstage/plugin-catalog-react": "^1.1.3-next.0",
|
||||
"@backstage/plugin-catalog-react": "^1.1.3-next.2",
|
||||
"@backstage/theme": "^0.2.16",
|
||||
"@material-ui/core": "^4.12.2",
|
||||
"@material-ui/icons": "^4.9.1",
|
||||
@@ -40,8 +40,8 @@
|
||||
"react": "^16.13.1 || ^17.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/cli": "^0.18.1-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.1",
|
||||
"@backstage/dev-utils": "^1.0.5-next.1",
|
||||
"@backstage/test-utils": "^1.1.3-next.0",
|
||||
"@testing-library/jest-dom": "^5.10.1",
|
||||
"@testing-library/react": "^12.1.3",
|
||||
|
||||
@@ -1,5 +1,13 @@
|
||||
# @backstage/plugin-code-coverage
|
||||
|
||||
## 0.2.1-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## 0.2.1-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/plugin-code-coverage",
|
||||
"description": "A Backstage plugin that helps you keep track of your code coverage",
|
||||
"version": "0.2.1-next.0",
|
||||
"version": "0.2.1-next.1",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -26,10 +26,10 @@
|
||||
"dependencies": {
|
||||
"@backstage/catalog-model": "^1.1.0",
|
||||
"@backstage/config": "^1.0.1",
|
||||
"@backstage/core-components": "^0.10.1-next.1",
|
||||
"@backstage/core-components": "^0.11.0-next.2",
|
||||
"@backstage/core-plugin-api": "^1.0.5-next.0",
|
||||
"@backstage/errors": "^1.1.0",
|
||||
"@backstage/plugin-catalog-react": "^1.1.3-next.0",
|
||||
"@backstage/plugin-catalog-react": "^1.1.3-next.2",
|
||||
"@backstage/theme": "^0.2.16",
|
||||
"@material-ui/core": "^4.12.2",
|
||||
"@material-ui/icons": "^4.9.1",
|
||||
@@ -46,9 +46,9 @@
|
||||
"react": "^16.13.1 || ^17.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/cli": "^0.18.1-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.1",
|
||||
"@backstage/core-app-api": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.1",
|
||||
"@backstage/test-utils": "^1.1.3-next.0",
|
||||
"@testing-library/jest-dom": "^5.10.1",
|
||||
"@testing-library/react": "^12.1.3",
|
||||
|
||||
@@ -1,5 +1,12 @@
|
||||
# @backstage/plugin-codescene
|
||||
|
||||
## 0.1.3-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## 0.1.3-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@backstage/plugin-codescene",
|
||||
"version": "0.1.3-next.0",
|
||||
"version": "0.1.3-next.1",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -23,7 +23,7 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@backstage/config": "^1.0.1",
|
||||
"@backstage/core-components": "^0.10.1-next.0",
|
||||
"@backstage/core-components": "^0.11.0-next.2",
|
||||
"@backstage/core-plugin-api": "^1.0.5-next.0",
|
||||
"@backstage/errors": "^1.1.0",
|
||||
"@backstage/theme": "^0.2.16",
|
||||
@@ -38,9 +38,9 @@
|
||||
"react": "^16.13.1 || ^17.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/cli": "^0.18.1-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.1",
|
||||
"@backstage/core-app-api": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.1",
|
||||
"@backstage/test-utils": "^1.1.3-next.0",
|
||||
"@testing-library/jest-dom": "^5.10.1",
|
||||
"@testing-library/react": "^12.1.3",
|
||||
|
||||
@@ -1,5 +1,12 @@
|
||||
# @backstage/plugin-config-schema
|
||||
|
||||
## 0.1.31-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## 0.1.31-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -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.31-next.0",
|
||||
"version": "0.1.31-next.1",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -25,7 +25,7 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@backstage/config": "^1.0.1",
|
||||
"@backstage/core-components": "^0.10.1-next.1",
|
||||
"@backstage/core-components": "^0.11.0-next.2",
|
||||
"@backstage/core-plugin-api": "^1.0.5-next.0",
|
||||
"@backstage/errors": "^1.1.0",
|
||||
"@backstage/theme": "^0.2.16",
|
||||
@@ -41,9 +41,9 @@
|
||||
"react": "^16.13.1 || ^17.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/cli": "^0.18.1-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.1",
|
||||
"@backstage/core-app-api": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.1",
|
||||
"@backstage/test-utils": "^1.1.3-next.0",
|
||||
"@testing-library/jest-dom": "^5.10.1",
|
||||
"@testing-library/react": "^12.1.3",
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
# @backstage/plugin-cost-insights-common
|
||||
|
||||
## 0.1.1-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- daf4b33e34: Add name property to Group
|
||||
|
||||
## 0.1.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/plugin-cost-insights-common",
|
||||
"description": "Common functionalities for the cost-insights plugin",
|
||||
"version": "0.1.0",
|
||||
"version": "0.1.1-next.0",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -34,7 +34,7 @@
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"@backstage/cli": "^0.18.1-next.0"
|
||||
"@backstage/cli": "^0.18.1-next.1"
|
||||
},
|
||||
"files": [
|
||||
"dist"
|
||||
|
||||
@@ -1,5 +1,15 @@
|
||||
# @backstage/plugin-cost-insights
|
||||
|
||||
## 0.11.30-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- b746eca638: Make `products` field optional in the config
|
||||
- daf4b33e34: Add name property to Group
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-cost-insights-common@0.1.1-next.0
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## 0.11.30-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -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.30-next.0",
|
||||
"version": "0.11.30-next.1",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -36,9 +36,9 @@
|
||||
"dependencies": {
|
||||
"@backstage/catalog-model": "^1.1.0",
|
||||
"@backstage/config": "^1.0.1",
|
||||
"@backstage/core-components": "^0.10.1-next.1",
|
||||
"@backstage/core-components": "^0.11.0-next.2",
|
||||
"@backstage/core-plugin-api": "^1.0.5-next.0",
|
||||
"@backstage/plugin-cost-insights-common": "^0.1.0",
|
||||
"@backstage/plugin-cost-insights-common": "^0.1.1-next.0",
|
||||
"@backstage/theme": "^0.2.16",
|
||||
"@material-ui/core": "^4.12.2",
|
||||
"@material-ui/icons": "^4.9.1",
|
||||
@@ -61,9 +61,9 @@
|
||||
"react": "^16.13.1 || ^17.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/cli": "^0.18.1-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.1",
|
||||
"@backstage/core-app-api": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.1",
|
||||
"@backstage/test-utils": "^1.1.3-next.0",
|
||||
"@testing-library/jest-dom": "^5.10.1",
|
||||
"@testing-library/react": "^12.1.3",
|
||||
|
||||
@@ -1,5 +1,12 @@
|
||||
# @backstage/plugin-dynatrace
|
||||
|
||||
## 0.1.2-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## 0.1.2-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@backstage/plugin-dynatrace",
|
||||
"version": "0.1.2-next.0",
|
||||
"version": "0.1.2-next.1",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -23,7 +23,7 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@backstage/catalog-model": "^1.1.0",
|
||||
"@backstage/core-components": "^0.10.1-next.0",
|
||||
"@backstage/core-components": "^0.11.0-next.2",
|
||||
"@backstage/core-plugin-api": "^1.0.5-next.0",
|
||||
"@backstage/theme": "^0.2.16",
|
||||
"@material-ui/core": "^4.9.13",
|
||||
@@ -37,9 +37,9 @@
|
||||
"react": "^16.13.1 || ^17.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/cli": "^0.18.1-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.1",
|
||||
"@backstage/core-app-api": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.1",
|
||||
"@backstage/test-utils": "^1.1.3-next.0",
|
||||
"@testing-library/jest-dom": "^5.10.1",
|
||||
"@testing-library/react": "^12.1.3",
|
||||
|
||||
@@ -1,5 +1,12 @@
|
||||
# @internal/plugin-todo-list
|
||||
|
||||
## 1.0.4-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## 1.0.4-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@internal/plugin-todo-list",
|
||||
"version": "1.0.4-next.0",
|
||||
"version": "1.0.4-next.1",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -24,7 +24,7 @@
|
||||
"clean": "backstage-cli package clean"
|
||||
},
|
||||
"dependencies": {
|
||||
"@backstage/core-components": "^0.10.1-next.1",
|
||||
"@backstage/core-components": "^0.11.0-next.2",
|
||||
"@backstage/core-plugin-api": "^1.0.5-next.0",
|
||||
"@backstage/theme": "^0.2.16",
|
||||
"@material-ui/core": "^4.12.2",
|
||||
@@ -36,9 +36,9 @@
|
||||
"react": "^16.13.1 || ^17.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/cli": "^0.18.1-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.1",
|
||||
"@backstage/core-app-api": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.1",
|
||||
"@backstage/test-utils": "^1.1.3-next.0",
|
||||
"@testing-library/jest-dom": "^5.10.1",
|
||||
"@testing-library/react": "^12.1.3",
|
||||
|
||||
@@ -1,5 +1,13 @@
|
||||
# @backstage/plugin-explore
|
||||
|
||||
## 0.3.39-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## 0.3.39-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/plugin-explore",
|
||||
"description": "A Backstage plugin for building an exploration page of your software ecosystem",
|
||||
"version": "0.3.39-next.0",
|
||||
"version": "0.3.39-next.1",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -35,9 +35,9 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@backstage/catalog-model": "^1.1.0",
|
||||
"@backstage/core-components": "^0.10.1-next.1",
|
||||
"@backstage/core-components": "^0.11.0-next.2",
|
||||
"@backstage/core-plugin-api": "^1.0.5-next.0",
|
||||
"@backstage/plugin-catalog-react": "^1.1.3-next.0",
|
||||
"@backstage/plugin-catalog-react": "^1.1.3-next.2",
|
||||
"@backstage/plugin-explore-react": "^0.0.20-next.0",
|
||||
"@backstage/theme": "^0.2.16",
|
||||
"@material-ui/core": "^4.12.2",
|
||||
@@ -53,9 +53,9 @@
|
||||
"react": "^16.13.1 || ^17.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/cli": "^0.18.1-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.1",
|
||||
"@backstage/core-app-api": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.1",
|
||||
"@backstage/test-utils": "^1.1.3-next.0",
|
||||
"@testing-library/jest-dom": "^5.10.1",
|
||||
"@testing-library/react": "^12.1.3",
|
||||
|
||||
@@ -1,5 +1,13 @@
|
||||
# @backstage/plugin-firehydrant
|
||||
|
||||
## 0.1.25-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## 0.1.25-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/plugin-firehydrant",
|
||||
"description": "A Backstage plugin that integrates towards FireHydrant",
|
||||
"version": "0.1.25-next.0",
|
||||
"version": "0.1.25-next.1",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -25,9 +25,9 @@
|
||||
"clean": "backstage-cli package clean"
|
||||
},
|
||||
"dependencies": {
|
||||
"@backstage/core-components": "^0.10.1-next.1",
|
||||
"@backstage/core-components": "^0.11.0-next.2",
|
||||
"@backstage/core-plugin-api": "^1.0.5-next.0",
|
||||
"@backstage/plugin-catalog-react": "^1.1.3-next.0",
|
||||
"@backstage/plugin-catalog-react": "^1.1.3-next.2",
|
||||
"@backstage/theme": "^0.2.16",
|
||||
"@material-ui/core": "^4.12.2",
|
||||
"@material-ui/icons": "^4.9.1",
|
||||
@@ -39,9 +39,9 @@
|
||||
"react": "^16.13.1 || ^17.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/cli": "^0.18.1-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.1",
|
||||
"@backstage/core-app-api": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.1",
|
||||
"@backstage/test-utils": "^1.1.3-next.0",
|
||||
"@testing-library/jest-dom": "^5.10.1",
|
||||
"@testing-library/react": "^12.1.3",
|
||||
|
||||
@@ -1,5 +1,13 @@
|
||||
# @backstage/plugin-fossa
|
||||
|
||||
## 0.2.40-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## 0.2.40-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/plugin-fossa",
|
||||
"description": "A Backstage plugin that integrates towards FOSSA",
|
||||
"version": "0.2.40-next.0",
|
||||
"version": "0.2.40-next.1",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -36,10 +36,10 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@backstage/catalog-model": "^1.1.0",
|
||||
"@backstage/core-components": "^0.10.1-next.1",
|
||||
"@backstage/core-components": "^0.11.0-next.2",
|
||||
"@backstage/core-plugin-api": "^1.0.5-next.0",
|
||||
"@backstage/errors": "^1.1.0",
|
||||
"@backstage/plugin-catalog-react": "^1.1.3-next.0",
|
||||
"@backstage/plugin-catalog-react": "^1.1.3-next.2",
|
||||
"@backstage/theme": "^0.2.16",
|
||||
"@material-ui/core": "^4.12.2",
|
||||
"@material-ui/icons": "^4.9.1",
|
||||
@@ -53,9 +53,9 @@
|
||||
"react": "^16.13.1 || ^17.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/cli": "^0.18.1-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.1",
|
||||
"@backstage/core-app-api": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.1",
|
||||
"@backstage/test-utils": "^1.1.3-next.0",
|
||||
"@testing-library/jest-dom": "^5.10.1",
|
||||
"@testing-library/react": "^12.1.3",
|
||||
|
||||
@@ -1,5 +1,12 @@
|
||||
# @backstage/plugin-gcalendar
|
||||
|
||||
## 0.3.4-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## 0.3.4-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@backstage/plugin-gcalendar",
|
||||
"version": "0.3.4-next.0",
|
||||
"version": "0.3.4-next.1",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -22,7 +22,7 @@
|
||||
"postpack": "backstage-cli package postpack"
|
||||
},
|
||||
"dependencies": {
|
||||
"@backstage/core-components": "^0.10.1-next.0",
|
||||
"@backstage/core-components": "^0.11.0-next.2",
|
||||
"@backstage/core-plugin-api": "^1.0.5-next.0",
|
||||
"@backstage/errors": "^1.1.0",
|
||||
"@backstage/theme": "^0.2.16",
|
||||
@@ -43,9 +43,9 @@
|
||||
"react": "^16.13.1 || ^17.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/cli": "^0.18.1-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.1",
|
||||
"@backstage/core-app-api": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.1",
|
||||
"@backstage/test-utils": "^1.1.3-next.0",
|
||||
"@testing-library/jest-dom": "^5.10.1",
|
||||
"@testing-library/react": "^12.1.3",
|
||||
|
||||
@@ -1,5 +1,12 @@
|
||||
# @backstage/plugin-gcp-projects
|
||||
|
||||
## 0.3.27-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## 0.3.27-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/plugin-gcp-projects",
|
||||
"description": "A Backstage plugin that helps you manage projects in GCP",
|
||||
"version": "0.3.27-next.0",
|
||||
"version": "0.3.27-next.1",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -34,7 +34,7 @@
|
||||
"clean": "backstage-cli package clean"
|
||||
},
|
||||
"dependencies": {
|
||||
"@backstage/core-components": "^0.10.1-next.1",
|
||||
"@backstage/core-components": "^0.11.0-next.2",
|
||||
"@backstage/core-plugin-api": "^1.0.5-next.0",
|
||||
"@backstage/theme": "^0.2.16",
|
||||
"@material-ui/core": "^4.12.2",
|
||||
@@ -47,9 +47,9 @@
|
||||
"react": "^16.13.1 || ^17.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/cli": "^0.18.1-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.1",
|
||||
"@backstage/core-app-api": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.1",
|
||||
"@backstage/test-utils": "^1.1.3-next.0",
|
||||
"@testing-library/jest-dom": "^5.10.1",
|
||||
"@testing-library/react": "^12.1.3",
|
||||
|
||||
@@ -1,5 +1,12 @@
|
||||
# @backstage/plugin-git-release-manager
|
||||
|
||||
## 0.3.21-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## 0.3.21-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/plugin-git-release-manager",
|
||||
"description": "A Backstage plugin that helps you manage releases in git",
|
||||
"version": "0.3.21-next.0",
|
||||
"version": "0.3.21-next.1",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -24,7 +24,7 @@
|
||||
"clean": "backstage-cli package clean"
|
||||
},
|
||||
"dependencies": {
|
||||
"@backstage/core-components": "^0.10.1-next.1",
|
||||
"@backstage/core-components": "^0.11.0-next.2",
|
||||
"@backstage/core-plugin-api": "^1.0.5-next.0",
|
||||
"@backstage/integration": "^1.3.0-next.0",
|
||||
"@backstage/theme": "^0.2.16",
|
||||
@@ -43,9 +43,9 @@
|
||||
"react": "^16.13.1 || ^17.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/cli": "^0.18.1-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.1",
|
||||
"@backstage/core-app-api": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.1",
|
||||
"@backstage/test-utils": "^1.1.3-next.0",
|
||||
"@testing-library/jest-dom": "^5.10.1",
|
||||
"@testing-library/react": "^12.1.3",
|
||||
|
||||
@@ -1,5 +1,13 @@
|
||||
# @backstage/plugin-github-actions
|
||||
|
||||
## 0.5.8-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## 0.5.8-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/plugin-github-actions",
|
||||
"description": "A Backstage plugin that integrates towards GitHub Actions",
|
||||
"version": "0.5.8-next.0",
|
||||
"version": "0.5.8-next.1",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -37,10 +37,10 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@backstage/catalog-model": "^1.1.0",
|
||||
"@backstage/core-components": "^0.10.1-next.1",
|
||||
"@backstage/core-components": "^0.11.0-next.2",
|
||||
"@backstage/core-plugin-api": "^1.0.5-next.0",
|
||||
"@backstage/integration": "^1.3.0-next.0",
|
||||
"@backstage/plugin-catalog-react": "^1.1.3-next.0",
|
||||
"@backstage/plugin-catalog-react": "^1.1.3-next.2",
|
||||
"@backstage/theme": "^0.2.16",
|
||||
"@material-ui/core": "^4.12.2",
|
||||
"@material-ui/icons": "^4.9.1",
|
||||
@@ -55,9 +55,9 @@
|
||||
"react": "^16.13.1 || ^17.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/cli": "^0.18.1-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.1",
|
||||
"@backstage/core-app-api": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.1",
|
||||
"@backstage/test-utils": "^1.1.3-next.0",
|
||||
"@testing-library/jest-dom": "^5.10.1",
|
||||
"@testing-library/react": "^12.1.3",
|
||||
|
||||
@@ -1,5 +1,14 @@
|
||||
# @backstage/plugin-github-deployments
|
||||
|
||||
## 0.1.39-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
- @backstage/integration-react@1.1.3-next.1
|
||||
|
||||
## 0.1.39-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/plugin-github-deployments",
|
||||
"description": "A Backstage plugin that integrates towards GitHub Deployments",
|
||||
"version": "0.1.39-next.0",
|
||||
"version": "0.1.39-next.1",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -25,12 +25,12 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@backstage/catalog-model": "^1.1.0",
|
||||
"@backstage/core-components": "^0.10.1-next.1",
|
||||
"@backstage/core-components": "^0.11.0-next.2",
|
||||
"@backstage/core-plugin-api": "^1.0.5-next.0",
|
||||
"@backstage/errors": "^1.1.0",
|
||||
"@backstage/integration": "^1.3.0-next.0",
|
||||
"@backstage/integration-react": "^1.1.3-next.0",
|
||||
"@backstage/plugin-catalog-react": "^1.1.3-next.0",
|
||||
"@backstage/integration-react": "^1.1.3-next.1",
|
||||
"@backstage/plugin-catalog-react": "^1.1.3-next.2",
|
||||
"@backstage/theme": "^0.2.16",
|
||||
"@material-ui/core": "^4.12.2",
|
||||
"@material-ui/icons": "^4.9.1",
|
||||
@@ -43,9 +43,9 @@
|
||||
"react": "^16.13.1 || ^17.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/cli": "^0.18.1-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.1",
|
||||
"@backstage/core-app-api": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.1",
|
||||
"@backstage/test-utils": "^1.1.3-next.0",
|
||||
"@testing-library/jest-dom": "^5.10.1",
|
||||
"@testing-library/react": "^12.1.3",
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
# @backstage/plugin-github-issues
|
||||
|
||||
## 0.1.0-next.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- ffd5e47fb5: New plugin for displaying GitHub Issues added
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- b522f49403: Updated dependency `@spotify/prettier-config` to `^14.0.0`.
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@backstage/plugin-github-issues",
|
||||
"version": "0.0.0",
|
||||
"version": "0.1.0-next.0",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -24,10 +24,10 @@
|
||||
"prettier": "@spotify/prettier-config",
|
||||
"dependencies": {
|
||||
"@backstage/catalog-model": "^1.0.3",
|
||||
"@backstage/core-components": "^0.10.1-next.0",
|
||||
"@backstage/core-components": "^0.11.0-next.2",
|
||||
"@backstage/core-plugin-api": "^1.0.5-next.0",
|
||||
"@backstage/integration": "^1.3.0-next.0",
|
||||
"@backstage/plugin-catalog-react": "^1.1.3-next.0",
|
||||
"@backstage/plugin-catalog-react": "^1.1.3-next.2",
|
||||
"@backstage/theme": "^0.2.15",
|
||||
"@material-ui/core": "^4.12.4",
|
||||
"@material-ui/icons": "^4.9.1",
|
||||
@@ -40,9 +40,9 @@
|
||||
"react": "^16.13.1 || ^17.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/cli": "^0.18.1-next.0",
|
||||
"@backstage/cli": "^0.18.1-next.1",
|
||||
"@backstage/core-app-api": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.0",
|
||||
"@backstage/dev-utils": "^1.0.5-next.1",
|
||||
"@backstage/test-utils": "^1.1.3-next.0",
|
||||
"@spotify/prettier-config": "^14.0.0",
|
||||
"@testing-library/jest-dom": "^5.10.1",
|
||||
|
||||
@@ -1,5 +1,13 @@
|
||||
# @backstage/plugin-github-pull-requests-board
|
||||
|
||||
## 0.1.2-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.1.3-next.2
|
||||
- @backstage/core-components@0.11.0-next.2
|
||||
|
||||
## 0.1.2-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user