Version Packages (next)

This commit is contained in:
github-actions[bot]
2022-05-03 09:38:51 +00:00
parent 624f90b6f1
commit 55da880bf9
185 changed files with 2762 additions and 730 deletions
+49 -1
View File
@@ -144,52 +144,100 @@
"@backstage/plugin-user-settings": "0.4.3",
"@backstage/plugin-xcmetrics": "0.2.24",
"@backstage/plugin-catalog-backend-module-gerrit": "0.0.0",
"@backstage/plugin-techdocs-module-addons-contrib": "0.0.0"
"@backstage/plugin-techdocs-module-addons-contrib": "0.0.0",
"@backstage/plugin-adr": "0.0.0",
"@backstage/plugin-adr-backend": "0.0.0",
"@backstage/plugin-adr-common": "0.0.0",
"@internal/plugin-todo-list": "1.0.0",
"@internal/plugin-todo-list-backend": "1.0.0",
"@internal/plugin-todo-list-common": "1.0.0",
"@backstage/plugin-techdocs-addons-test-utils": "0.0.0"
},
"changesets": [
"afraid-insects-do",
"beige-panthers-dream",
"brave-starfishes-try",
"breezy-days-prove",
"bright-panthers-guess",
"chatty-forks-bathe",
"clever-trains-greet",
"cool-mice-sit",
"cool-ties-share",
"curly-parrots-applaud",
"cyan-boxes-double",
"dirty-eagles-hunt",
"early-crabs-help",
"early-lemons-add",
"eighty-chicken-retire",
"empty-mugs-bow",
"empty-poems-lick",
"fair-kings-retire",
"fair-pigs-mate",
"funny-lamps-turn",
"fuzzy-seahorses-teach",
"giant-cheetahs-thank",
"grumpy-panthers-peel",
"hip-adults-collect",
"hip-monkeys-hide",
"honest-kids-live",
"hot-peaches-give",
"hungry-goats-mate",
"kind-cats-clap",
"lazy-zebras-pay",
"loud-peaches-warn",
"lovely-houses-argue",
"mean-flowers-change",
"mean-owls-share",
"mean-seas-burn",
"metal-hairs-build",
"metal-pants-fly",
"moody-laws-boil",
"moody-suns-smell",
"nasty-humans-give",
"nasty-paws-move",
"new-beds-argue",
"nine-actors-fly",
"nine-geese-rest",
"odd-apples-smash",
"old-bikes-study",
"orange-elephants-laugh",
"perfect-penguins-rescue",
"pink-mayflies-rhyme",
"polite-planets-learn",
"renovate-05696d1",
"renovate-5970cc2",
"renovate-b063c4b",
"renovate-bf43c44",
"renovate-ca619fc",
"search-dry-wolves-join",
"search-heavy-llamas-worry",
"seven-deers-rule",
"shiny-students-approve",
"short-chicken-act",
"short-dodos-sparkle",
"short-flies-collect",
"silver-readers-deliver",
"six-buckets-tap",
"sixty-llamas-change",
"smart-ghosts-search",
"spotty-plums-rule",
"stale-pigs-reply",
"strong-mangos-sell",
"swift-bugs-share",
"swift-parrots-hammer",
"tall-parents-deny",
"tasty-drinks-teach",
"techdocs-changeset-not-found",
"techdocs-five-hundred-ml",
"techdocs-low-calorie-drink",
"techdocs-nice-boats-wonder",
"techdocs-quick-owls-smile",
"techdocs-touch-screen-wipes",
"techdocs-vitamin-well-reload",
"thick-bees-brush",
"tough-forks-carry",
"violet-steaks-knock",
"wicked-vans-press",
"wild-pigs-work",
"wise-emus-wait"
]
+956
View File
@@ -0,0 +1,956 @@
# Release v1.2.0-next.1
## @backstage/test-utils@1.1.0-next.1
### Minor Changes
- 1da8b248c2: Added the options parameter to `renderWithEffects`, which if forwarded to the `render` function from `@testling-library/react`. Initially only the `wrapper` option is supported.
- 1da8b248c2: Added `createTestAppWrapper`, which returns a component that can be used as the `wrapper` option for `render` or `renderWithEffects`.
### Patch Changes
- 1da8b248c2: Fixed `renderInTestApp` so that it is able to re-render the result without removing the app wrapping.
- Updated dependencies
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/core-app-api@1.0.2-next.0
- @backstage/plugin-permission-react@0.4.1-next.0
## @backstage/plugin-adr@0.1.0-next.0
### Minor Changes
- e73075a301: Implement ADR plugin
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/plugin-adr-common@0.1.0-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
- @backstage/integration-react@1.1.0-next.1
## @backstage/plugin-adr-backend@0.1.0-next.0
### Minor Changes
- e73075a301: Implement ADR plugin
### Patch Changes
- Updated dependencies
- @backstage/plugin-adr-common@0.1.0-next.0
- @backstage/backend-common@0.13.3-next.1
## @backstage/plugin-adr-common@0.1.0-next.0
### Minor Changes
- e73075a301: Implement ADR plugin
## @backstage/plugin-search-react@0.2.0-next.1
### Minor Changes
- bdbe620797: **BREAKING**: `SearchContextProviderForStorybook` and `SearchApiProviderForStorybook` has been deleted. New mock implementation of the `SearchApi` introduced. If you need to mock the api we recommend you to do the following:
```tsx
import {
searchApiRef,
MockSearchApi,
SearchContextProvider,
} from '@backstage/plugin-search-react';
import { TestApiProvider } from '@backstage/test-utils';
<TestApiProvider apis={[[searchApiRef, new MockSearchApi()]]}>
<SearchContextProvider>
<Component />
</SearchContextProvider>
</TestApiProvider>;
```
### Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.0.2-next.0
## @backstage/plugin-tech-insights-backend@0.4.0-next.1
### Minor Changes
- 3333e20b27: **BREAKING**: The `buildTechInsightsContext` function now takes an additional
field in its options argument: `tokenManager`. This is an instance of
`TokenManager`, which can be found in your backend initialization code's
`env`.
```diff
const builder = buildTechInsightsContext({
logger: env.logger,
config: env.config,
database: env.database,
discovery: env.discovery,
scheduler: env.scheduler,
+ tokenManager: env.tokenManager,
factRetrievers: [ /* ... */ ],
});
```
### Patch Changes
- Updated dependencies
- @backstage/backend-common@0.13.3-next.1
- @backstage/plugin-tech-insights-node@0.3.0-next.1
## @backstage/plugin-tech-insights-node@0.3.0-next.1
### Minor Changes
- 58e2c46151: **BREAKING**: The `FactRetrieverContext` type now contains an additional
field: `tokenManager`.
### Patch Changes
- Updated dependencies
- @backstage/backend-common@0.13.3-next.1
## @backstage/plugin-techdocs-addons-test-utils@0.1.0-next.0
### Minor Changes
- 52fddad92d: Introducing a package with utilities to help test TechDocs Addons.
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/test-utils@1.1.0-next.1
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog@1.2.0-next.1
- @backstage/plugin-search-react@0.2.0-next.1
- @backstage/plugin-techdocs-react@0.1.1-next.1
- @backstage/plugin-techdocs@1.1.1-next.1
- @backstage/integration-react@1.1.0-next.1
- @backstage/core-app-api@1.0.2-next.0
## @backstage/app-defaults@1.0.2-next.0
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/core-app-api@1.0.2-next.0
- @backstage/plugin-permission-react@0.4.1-next.0
## @backstage/backend-common@0.13.3-next.1
### Patch Changes
- 28b0e4ddef: Update types to match the new version of `@keyv/redis`
## @backstage/cli@0.17.1-next.1
### Patch Changes
- 52fb9920ac: Fixed coverage configuration when using `BACKSTAGE_NEXT_TESTS`.
- 6cd1f50ae1: Extended lint rule to prevents imports of stories or tests from production code.
- 4d8736eded: Changed Rollup configuration for TypeScript definition plugin to ignore `css`,
`scss`, `sass`, `svg`, `eot`, `woff`, `woff2` and `ttf` files.
- 2737777e02: Added the ability to help a user get started with a new organization
## @backstage/core-app-api@1.0.2-next.0
### Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.0.2-next.0
## @backstage/core-components@0.9.4-next.0
### Patch Changes
- ac19f82936: Added ARIA landmark <main> to Page component and added ARIA landmark <nav> to DesktopSidebar and Sidebar components
- c0055ece91: Announce external links to screen readers
- cfc0f2e5bd: Added optional anchorOrigin alignment prop to AlertDisplay
- f4380eb602: Add an aria-label to the support button to improve accessibility for screen readers
- Updated dependencies
- @backstage/core-plugin-api@1.0.2-next.0
## @backstage/core-plugin-api@1.0.2-next.0
### Patch Changes
- b653a5595c: The authentication APIs are no longer `@alpha`. Since the `@backstage/core-plugin-api` has no `/alpha` entrypoint, the only effect of marking the APIs as `@alpha` was to hide them in documentation. They are still expected to be widely used and there will be a migration path if they are changed in the future.
## @backstage/create-app@0.4.27-next.1
### Patch Changes
- 7b253072c6: Tweaked template to provide an example and guidance for how to configure sign-in in `packages/backend/src/plugins/auth.ts`. There is no need to add this to existing apps, but for more information about sign-in configuration, see <https://backstage.io/docs/auth/identity-resolver>.
- 00fa0dada0: Removed the database choice from the `create-app` command.
This reduces the step from development to production by always installing the dependencies and templating the production configuration in `app-config.production.yaml`.
Added `app-config.local.yaml` to allow for local configuration overrides.
To replicate this behavior in an existing installation simply `touch app-config.local.yaml` in the project root and apply your local configuration.
`better-sqlite3` has been moved to devDependencies, for existing installations using postgres in production and SQLite in development it's recommended to move SQLite into the devDependencies section to avoid unnecessary dependencies during builds.
in `packages/backend/package.json`
```diff
"dependencies": {
...
"pg": "^8.3.0",
- "better-sqlite3": "^7.5.0",
"winston": "^3.2.1"
},
"devDependencies": {
...
"@types/luxon": "^2.0.4",
+ "better-sqlite3": "^7.5.0"
}
```
- d41f19ca2a: Bumped the `typescript` version in the template to `~4.6.4`.
To apply this change to an existing app, make the following change to the root `package.json`:
```diff
dependencies: {
...
- "typescript": "~4.5.4"
+ "typescript": "~4.6.4"
},
```
## @backstage/dev-utils@1.0.2-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/test-utils@1.1.0-next.1
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
- @backstage/app-defaults@1.0.2-next.0
- @backstage/integration-react@1.1.0-next.1
- @backstage/core-app-api@1.0.2-next.0
## @backstage/integration-react@1.1.0-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
## @techdocs/cli@1.1.1-next.1
### Patch Changes
- 52fddad92d: The TechDocs CLI's embedded app now imports all API refs from the `@backstage/plugin-techdocs-react` package.
- Updated dependencies
- @backstage/backend-common@0.13.3-next.1
## @backstage/plugin-airbrake@0.3.5-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/test-utils@1.1.0-next.1
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
- @backstage/dev-utils@1.0.2-next.1
## @backstage/plugin-allure@0.1.21-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
## @backstage/plugin-analytics-module-ga@0.1.16-next.0
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
## @backstage/plugin-apache-airflow@0.1.13-next.0
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
## @backstage/plugin-api-docs@0.8.5-next.1
### Patch Changes
- 2c279df4eb: Updated dependency `graphiql` to `^1.8.8`.
- 165790975d: Updated dependency `@asyncapi/react-component` to `1.0.0-next.37`.
- 7f6f97d151: Updated dependency `@asyncapi/react-component` to `1.0.0-next.38`.
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog@1.2.0-next.1
- @backstage/plugin-catalog-react@1.1.0-next.1
## @backstage/plugin-auth-backend@0.13.1-next.1
### Patch Changes
- cac3ba68a2: Fixed a bug that was introduced in `0.13.1-next.0` which caused the `ent` claim of issued tokens to be dropped.
- 5d268623dd: Updates the OAuth2 Proxy provider to require less infrastructure configuration.
The auth result object of the OAuth2 Proxy now provides access to the request headers, both through the `headers` object as well as `getHeader` method. The existing logic that parses and extracts the user information from ID tokens is deprecated and will be removed in a future release. See the OAuth2 Proxy provider documentation for more details.
The OAuth2 Proxy provider now also has a default `authHandler` implementation that reads the display name and email from the incoming request headers.
- Updated dependencies
- @backstage/backend-common@0.13.3-next.1
## @backstage/plugin-azure-devops@0.1.21-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
## @backstage/plugin-badges@0.2.29-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
## @backstage/plugin-bazaar@0.1.20-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/cli@0.17.1-next.1
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog@1.2.0-next.1
- @backstage/plugin-catalog-react@1.1.0-next.1
## @backstage/plugin-bitrise@0.1.32-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
## @backstage/plugin-catalog@1.2.0-next.1
### Patch Changes
- 051fc60258: Lighthouse was reporting this button as having invalid aria- values, as the popover doesn't exist until clicked. This adds additional labels to the button to make it valid aria
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
- @backstage/integration-react@1.1.0-next.1
## @backstage/plugin-catalog-backend@1.1.2-next.1
### Patch Changes
- 1ccbe081cc: Minor internal tweak to support TypeScript 4.6
- Updated dependencies
- @backstage/backend-common@0.13.3-next.1
## @backstage/plugin-catalog-backend-module-gerrit@0.1.0-next.1
### Patch Changes
- 57f684f59c: Fix incorrect main path in `publishConfig`
- Updated dependencies
- @backstage/backend-common@0.13.3-next.1
- @backstage/plugin-catalog-backend@1.1.2-next.1
## @backstage/plugin-catalog-graph@0.2.17-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
## @backstage/plugin-catalog-import@0.8.8-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
- @backstage/integration-react@1.1.0-next.1
## @backstage/plugin-catalog-react@1.1.0-next.1
### Patch Changes
- 0418447669: Added menu parent role for menu items accessibility
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-permission-react@0.4.1-next.0
## @backstage/plugin-cicd-statistics@0.1.7-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
## @backstage/plugin-cicd-statistics-module-gitlab@0.1.1-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-cicd-statistics@0.1.7-next.1
## @backstage/plugin-circleci@0.3.5-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
## @backstage/plugin-cloudbuild@0.3.5-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
## @backstage/plugin-code-climate@0.1.5-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
## @backstage/plugin-code-coverage@0.1.32-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
## @backstage/plugin-config-schema@0.1.28-next.0
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
## @backstage/plugin-cost-insights@0.11.27-next.0
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
## @backstage/plugin-explore@0.3.36-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
- @backstage/plugin-explore-react@0.0.17-next.0
## @backstage/plugin-explore-react@0.0.17-next.0
### Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.0.2-next.0
## @backstage/plugin-firehydrant@0.1.22-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
## @backstage/plugin-fossa@0.2.37-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
## @backstage/plugin-gcalendar@0.3.1-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
## @backstage/plugin-gcp-projects@0.3.24-next.0
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
## @backstage/plugin-git-release-manager@0.3.18-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
## @backstage/plugin-github-actions@0.5.5-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
## @backstage/plugin-github-deployments@0.1.36-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
- @backstage/integration-react@1.1.0-next.1
## @backstage/plugin-gitops-profiles@0.3.23-next.0
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
## @backstage/plugin-gocd@0.1.11-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
## @backstage/plugin-graphiql@0.2.37-next.0
### Patch Changes
- 8d4ecc30f1: Updated dependency `@types/codemirror` to `^0.0.109`.
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
## @backstage/plugin-home@0.4.21-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
- @backstage/plugin-stack-overflow@0.1.1-next.1
## @backstage/plugin-ilert@0.1.31-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
## @backstage/plugin-jenkins@0.7.4-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
## @backstage/plugin-kafka@0.3.5-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
## @backstage/plugin-kubernetes@0.6.5-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
## @backstage/plugin-lighthouse@0.3.5-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
## @backstage/plugin-newrelic@0.3.23-next.0
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
## @backstage/plugin-newrelic-dashboard@0.1.13-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
## @backstage/plugin-org@0.5.5-next.1
### Patch Changes
- cb0db62344: Fix linking ownership card to catalog owner filter when namespaces are used
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
## @backstage/plugin-pagerduty@0.3.32-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
## @backstage/plugin-periskop@0.1.3-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
## @backstage/plugin-permission-react@0.4.1-next.0
### Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.0.2-next.0
## @backstage/plugin-rollbar@0.4.5-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
## @backstage/plugin-rollbar-backend@0.1.29-next.1
### Patch Changes
- ab1435dcc9: Updated README to include clearer installation instructions on how to install and configure.
- Updated dependencies
- @backstage/backend-common@0.13.3-next.1
## @backstage/plugin-scaffolder@1.2.0-next.1
### Patch Changes
- 8dce7d5244: Allow validation for custom field extension with type object
- ace230b599: Updated dependency `@codemirror/legacy-modes` to `^0.20.0`.
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
- @backstage/integration-react@1.1.0-next.1
- @backstage/plugin-permission-react@0.4.1-next.0
## @backstage/plugin-search@0.8.1-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
- @backstage/plugin-search-react@0.2.0-next.1
## @backstage/plugin-sentry@0.3.43-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
## @backstage/plugin-shortcuts@0.2.6-next.0
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
## @backstage/plugin-sonarqube@0.3.5-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
## @backstage/plugin-splunk-on-call@0.3.29-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
## @backstage/plugin-stack-overflow@0.1.1-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-home@0.4.21-next.1
## @backstage/plugin-tech-insights@0.2.1-next.1
### Patch Changes
- aa8db01acb: Add new component `EntityTechInsightsScorecardCard`, which can be used in the overview of the `EntityPage` page or display multiple individual `EntityTechInsightsScorecardCard` in `EntityLayout.Route`.
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
## @backstage/plugin-tech-insights-backend-module-jsonfc@0.1.16-next.1
### Patch Changes
- 58e2c46151: Updated usages of `buildTechInsightsContext` in README.
- Updated dependencies
- @backstage/backend-common@0.13.3-next.1
- @backstage/plugin-tech-insights-node@0.3.0-next.1
## @backstage/plugin-tech-radar@0.5.12-next.0
### Patch Changes
- 3588a77994: Rename `use` to `adopt`, to reflect Zalando Tech Radar regarding quadrants and add link to Zalando explanation.
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
## @backstage/plugin-techdocs@1.1.1-next.1
### Patch Changes
- 52fddad92d: The `TechDocsStorageApi` and its associated ref are now exported by `@backstage/plugin-techdocs-react`. The API interface, ref, and types are now deprecated in `@backstage/plugin-techdocs` and will be removed in a future release.
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
- @backstage/plugin-search-react@0.2.0-next.1
- @backstage/plugin-techdocs-react@0.1.1-next.1
- @backstage/integration-react@1.1.0-next.1
## @backstage/plugin-techdocs-module-addons-contrib@0.1.0-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-techdocs-react@0.1.1-next.1
- @backstage/integration-react@1.1.0-next.1
## @backstage/plugin-techdocs-react@0.1.1-next.1
### Patch Changes
- 52fddad92d: The `TechDocsStorageApi` and its associated ref are now exported by `@backstage/plugin-techdocs-react`. The API interface, ref, and types are now deprecated in `@backstage/plugin-techdocs` and will be removed in a future release.
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
## @backstage/plugin-todo@0.2.7-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
## @backstage/plugin-user-settings@0.4.4-next.0
### Patch Changes
- ed075219aa: Added alternative text to profile picture
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
## @backstage/plugin-xcmetrics@0.2.25-next.0
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
## example-app@0.2.71-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/plugin-api-docs@0.8.5-next.1
- @backstage/plugin-tech-insights@0.2.1-next.1
- @backstage/plugin-tech-radar@0.5.12-next.0
- @backstage/cli@0.17.1-next.1
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-user-settings@0.4.4-next.0
- @backstage/plugin-scaffolder@1.2.0-next.1
- @backstage/plugin-catalog@1.2.0-next.1
- @backstage/plugin-catalog-react@1.1.0-next.1
- @backstage/plugin-org@0.5.5-next.1
- @backstage/plugin-graphiql@0.2.37-next.0
- @backstage/plugin-search-react@0.2.0-next.1
- @backstage/plugin-techdocs-react@0.1.1-next.1
- @backstage/plugin-techdocs@1.1.1-next.1
- @backstage/app-defaults@1.0.2-next.0
- @backstage/integration-react@1.1.0-next.1
- @backstage/plugin-airbrake@0.3.5-next.1
- @backstage/plugin-apache-airflow@0.1.13-next.0
- @backstage/plugin-azure-devops@0.1.21-next.1
- @backstage/plugin-badges@0.2.29-next.1
- @backstage/plugin-catalog-graph@0.2.17-next.1
- @backstage/plugin-catalog-import@0.8.8-next.1
- @backstage/plugin-circleci@0.3.5-next.1
- @backstage/plugin-cloudbuild@0.3.5-next.1
- @backstage/plugin-code-coverage@0.1.32-next.1
- @backstage/plugin-cost-insights@0.11.27-next.0
- @backstage/plugin-explore@0.3.36-next.1
- @backstage/plugin-gcalendar@0.3.1-next.1
- @backstage/plugin-gcp-projects@0.3.24-next.0
- @backstage/plugin-github-actions@0.5.5-next.1
- @backstage/plugin-gocd@0.1.11-next.1
- @backstage/plugin-home@0.4.21-next.1
- @backstage/plugin-jenkins@0.7.4-next.1
- @backstage/plugin-kafka@0.3.5-next.1
- @backstage/plugin-kubernetes@0.6.5-next.1
- @backstage/plugin-lighthouse@0.3.5-next.1
- @backstage/plugin-newrelic@0.3.23-next.0
- @backstage/plugin-newrelic-dashboard@0.1.13-next.1
- @backstage/plugin-pagerduty@0.3.32-next.1
- @backstage/plugin-rollbar@0.4.5-next.1
- @backstage/plugin-search@0.8.1-next.1
- @backstage/plugin-sentry@0.3.43-next.1
- @backstage/plugin-shortcuts@0.2.6-next.0
- @backstage/plugin-stack-overflow@0.1.1-next.1
- @backstage/plugin-techdocs-module-addons-contrib@0.1.0-next.1
- @backstage/plugin-todo@0.2.7-next.1
- @backstage/core-app-api@1.0.2-next.0
- @backstage/plugin-permission-react@0.4.1-next.0
## example-backend@0.2.71-next.1
### Patch Changes
- Updated dependencies
- @backstage/plugin-auth-backend@0.13.1-next.1
- @backstage/plugin-tech-insights-backend@0.4.0-next.1
- @backstage/backend-common@0.13.3-next.1
- @backstage/plugin-tech-insights-node@0.3.0-next.1
- @backstage/plugin-tech-insights-backend-module-jsonfc@0.1.16-next.1
- @backstage/plugin-catalog-backend@1.1.2-next.1
- @backstage/plugin-rollbar-backend@0.1.29-next.1
- example-app@0.2.71-next.1
## techdocs-cli-embedded-app@0.2.70-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/test-utils@1.1.0-next.1
- @backstage/cli@0.17.1-next.1
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog@1.2.0-next.1
- @backstage/plugin-techdocs-react@0.1.1-next.1
- @backstage/plugin-techdocs@1.1.1-next.1
- @backstage/app-defaults@1.0.2-next.0
- @backstage/integration-react@1.1.0-next.1
- @backstage/core-app-api@1.0.2-next.0
## @internal/plugin-todo-list@1.0.1-next.0
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
+1 -1
View File
@@ -49,7 +49,7 @@
"@types/react": "^17",
"@types/react-dom": "^17"
},
"version": "1.2.0-next.0",
"version": "1.2.0-next.1",
"dependencies": {
"@manypkg/get-packages": "^1.1.3",
"@microsoft/api-documenter": "^7.17.11",
+10
View File
@@ -1,5 +1,15 @@
# @backstage/app-defaults
## 1.0.2-next.0
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/core-app-api@1.0.2-next.0
- @backstage/plugin-permission-react@0.4.1-next.0
## 1.0.1
### Patch Changes
+7 -7
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/app-defaults",
"description": "Provides the default wiring of a Backstage App",
"version": "1.0.1",
"version": "1.0.2-next.0",
"private": false,
"publishConfig": {
"access": "public",
@@ -33,10 +33,10 @@
"start": "backstage-cli package start"
},
"dependencies": {
"@backstage/core-components": "^0.9.3",
"@backstage/core-app-api": "^1.0.1",
"@backstage/core-plugin-api": "^1.0.1",
"@backstage/plugin-permission-react": "^0.4.0",
"@backstage/core-components": "^0.9.4-next.0",
"@backstage/core-app-api": "^1.0.2-next.0",
"@backstage/core-plugin-api": "^1.0.2-next.0",
"@backstage/plugin-permission-react": "^0.4.1-next.0",
"@backstage/theme": "^0.2.15",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -46,8 +46,8 @@
"react": "^16.13.1 || ^17.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.17.1-next.0",
"@backstage/test-utils": "^1.0.2-next.0",
"@backstage/cli": "^0.17.1-next.1",
"@backstage/test-utils": "^1.1.0-next.1",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@types/jest": "^26.0.7",
+55
View File
@@ -1,5 +1,60 @@
# example-app
## 0.2.71-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/plugin-api-docs@0.8.5-next.1
- @backstage/plugin-tech-insights@0.2.1-next.1
- @backstage/plugin-tech-radar@0.5.12-next.0
- @backstage/cli@0.17.1-next.1
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-user-settings@0.4.4-next.0
- @backstage/plugin-scaffolder@1.2.0-next.1
- @backstage/plugin-catalog@1.2.0-next.1
- @backstage/plugin-catalog-react@1.1.0-next.1
- @backstage/plugin-org@0.5.5-next.1
- @backstage/plugin-graphiql@0.2.37-next.0
- @backstage/plugin-search-react@0.2.0-next.1
- @backstage/plugin-techdocs-react@0.1.1-next.1
- @backstage/plugin-techdocs@1.1.1-next.1
- @backstage/app-defaults@1.0.2-next.0
- @backstage/integration-react@1.1.0-next.1
- @backstage/plugin-airbrake@0.3.5-next.1
- @backstage/plugin-apache-airflow@0.1.13-next.0
- @backstage/plugin-azure-devops@0.1.21-next.1
- @backstage/plugin-badges@0.2.29-next.1
- @backstage/plugin-catalog-graph@0.2.17-next.1
- @backstage/plugin-catalog-import@0.8.8-next.1
- @backstage/plugin-circleci@0.3.5-next.1
- @backstage/plugin-cloudbuild@0.3.5-next.1
- @backstage/plugin-code-coverage@0.1.32-next.1
- @backstage/plugin-cost-insights@0.11.27-next.0
- @backstage/plugin-explore@0.3.36-next.1
- @backstage/plugin-gcalendar@0.3.1-next.1
- @backstage/plugin-gcp-projects@0.3.24-next.0
- @backstage/plugin-github-actions@0.5.5-next.1
- @backstage/plugin-gocd@0.1.11-next.1
- @backstage/plugin-home@0.4.21-next.1
- @backstage/plugin-jenkins@0.7.4-next.1
- @backstage/plugin-kafka@0.3.5-next.1
- @backstage/plugin-kubernetes@0.6.5-next.1
- @backstage/plugin-lighthouse@0.3.5-next.1
- @backstage/plugin-newrelic@0.3.23-next.0
- @backstage/plugin-newrelic-dashboard@0.1.13-next.1
- @backstage/plugin-pagerduty@0.3.32-next.1
- @backstage/plugin-rollbar@0.4.5-next.1
- @backstage/plugin-search@0.8.1-next.1
- @backstage/plugin-sentry@0.3.43-next.1
- @backstage/plugin-shortcuts@0.2.6-next.0
- @backstage/plugin-stack-overflow@0.1.1-next.1
- @backstage/plugin-techdocs-module-addons-contrib@0.1.0-next.1
- @backstage/plugin-todo@0.2.7-next.1
- @backstage/core-app-api@1.0.2-next.0
- @backstage/plugin-permission-react@0.4.1-next.0
## 0.2.71-next.0
### Patch Changes
+51 -51
View File
@@ -1,65 +1,65 @@
{
"name": "example-app",
"version": "0.2.71-next.0",
"version": "0.2.71-next.1",
"private": true,
"backstage": {
"role": "frontend"
},
"bundled": true,
"dependencies": {
"@backstage/app-defaults": "^1.0.1",
"@backstage/app-defaults": "^1.0.2-next.0",
"@backstage/catalog-model": "^1.0.1",
"@backstage/cli": "^0.17.1-next.0",
"@backstage/cli": "^0.17.1-next.1",
"@backstage/config": "^1.0.0",
"@backstage/core-app-api": "^1.0.1",
"@backstage/core-components": "^0.9.3",
"@backstage/core-plugin-api": "^1.0.1",
"@backstage/integration-react": "^1.1.0-next.0",
"@backstage/plugin-airbrake": "^0.3.5-next.0",
"@backstage/plugin-api-docs": "^0.8.5-next.0",
"@backstage/plugin-azure-devops": "^0.1.21-next.0",
"@backstage/plugin-apache-airflow": "^0.1.12",
"@backstage/plugin-badges": "^0.2.29-next.0",
"@backstage/plugin-catalog": "^1.2.0-next.0",
"@backstage/core-app-api": "^1.0.2-next.0",
"@backstage/core-components": "^0.9.4-next.0",
"@backstage/core-plugin-api": "^1.0.2-next.0",
"@backstage/integration-react": "^1.1.0-next.1",
"@backstage/plugin-airbrake": "^0.3.5-next.1",
"@backstage/plugin-api-docs": "^0.8.5-next.1",
"@backstage/plugin-azure-devops": "^0.1.21-next.1",
"@backstage/plugin-apache-airflow": "^0.1.13-next.0",
"@backstage/plugin-badges": "^0.2.29-next.1",
"@backstage/plugin-catalog": "^1.2.0-next.1",
"@backstage/plugin-catalog-common": "^1.0.1",
"@backstage/plugin-catalog-graph": "^0.2.17-next.0",
"@backstage/plugin-catalog-import": "^0.8.8-next.0",
"@backstage/plugin-catalog-react": "^1.1.0-next.0",
"@backstage/plugin-circleci": "^0.3.5-next.0",
"@backstage/plugin-cloudbuild": "^0.3.5-next.0",
"@backstage/plugin-code-coverage": "^0.1.32-next.0",
"@backstage/plugin-cost-insights": "^0.11.26",
"@backstage/plugin-explore": "^0.3.36-next.0",
"@backstage/plugin-gcalendar": "^0.3.1-next.0",
"@backstage/plugin-gcp-projects": "^0.3.23",
"@backstage/plugin-github-actions": "^0.5.5-next.0",
"@backstage/plugin-gocd": "^0.1.11-next.0",
"@backstage/plugin-graphiql": "^0.2.36",
"@backstage/plugin-home": "^0.4.21-next.0",
"@backstage/plugin-jenkins": "^0.7.4-next.0",
"@backstage/plugin-kafka": "^0.3.5-next.0",
"@backstage/plugin-kubernetes": "^0.6.5-next.0",
"@backstage/plugin-lighthouse": "^0.3.5-next.0",
"@backstage/plugin-newrelic": "^0.3.22",
"@backstage/plugin-newrelic-dashboard": "^0.1.13-next.0",
"@backstage/plugin-org": "^0.5.5-next.0",
"@backstage/plugin-pagerduty": "0.3.32-next.0",
"@backstage/plugin-permission-react": "^0.4.0",
"@backstage/plugin-rollbar": "^0.4.5-next.0",
"@backstage/plugin-scaffolder": "^1.2.0-next.0",
"@backstage/plugin-search": "^0.8.1-next.0",
"@backstage/plugin-search-react": "^0.1.1-next.0",
"@backstage/plugin-catalog-graph": "^0.2.17-next.1",
"@backstage/plugin-catalog-import": "^0.8.8-next.1",
"@backstage/plugin-catalog-react": "^1.1.0-next.1",
"@backstage/plugin-circleci": "^0.3.5-next.1",
"@backstage/plugin-cloudbuild": "^0.3.5-next.1",
"@backstage/plugin-code-coverage": "^0.1.32-next.1",
"@backstage/plugin-cost-insights": "^0.11.27-next.0",
"@backstage/plugin-explore": "^0.3.36-next.1",
"@backstage/plugin-gcalendar": "^0.3.1-next.1",
"@backstage/plugin-gcp-projects": "^0.3.24-next.0",
"@backstage/plugin-github-actions": "^0.5.5-next.1",
"@backstage/plugin-gocd": "^0.1.11-next.1",
"@backstage/plugin-graphiql": "^0.2.37-next.0",
"@backstage/plugin-home": "^0.4.21-next.1",
"@backstage/plugin-jenkins": "^0.7.4-next.1",
"@backstage/plugin-kafka": "^0.3.5-next.1",
"@backstage/plugin-kubernetes": "^0.6.5-next.1",
"@backstage/plugin-lighthouse": "^0.3.5-next.1",
"@backstage/plugin-newrelic": "^0.3.23-next.0",
"@backstage/plugin-newrelic-dashboard": "^0.1.13-next.1",
"@backstage/plugin-org": "^0.5.5-next.1",
"@backstage/plugin-pagerduty": "0.3.32-next.1",
"@backstage/plugin-permission-react": "^0.4.1-next.0",
"@backstage/plugin-rollbar": "^0.4.5-next.1",
"@backstage/plugin-scaffolder": "^1.2.0-next.1",
"@backstage/plugin-search": "^0.8.1-next.1",
"@backstage/plugin-search-react": "^0.2.0-next.1",
"@backstage/plugin-search-common": "^0.3.3",
"@backstage/plugin-sentry": "^0.3.43-next.0",
"@backstage/plugin-shortcuts": "^0.2.5",
"@backstage/plugin-stack-overflow": "^0.1.1-next.0",
"@backstage/plugin-tech-radar": "^0.5.11",
"@backstage/plugin-techdocs": "^1.1.1-next.0",
"@backstage/plugin-techdocs-react": "^0.1.1-next.0",
"@backstage/plugin-techdocs-module-addons-contrib": "^0.1.0-next.0",
"@backstage/plugin-todo": "^0.2.7-next.0",
"@backstage/plugin-user-settings": "^0.4.3",
"@backstage/plugin-tech-insights": "^0.2.1-next.0",
"@backstage/plugin-sentry": "^0.3.43-next.1",
"@backstage/plugin-shortcuts": "^0.2.6-next.0",
"@backstage/plugin-stack-overflow": "^0.1.1-next.1",
"@backstage/plugin-tech-radar": "^0.5.12-next.0",
"@backstage/plugin-techdocs": "^1.1.1-next.1",
"@backstage/plugin-techdocs-react": "^0.1.1-next.1",
"@backstage/plugin-techdocs-module-addons-contrib": "^0.1.0-next.1",
"@backstage/plugin-todo": "^0.2.7-next.1",
"@backstage/plugin-user-settings": "^0.4.4-next.0",
"@backstage/plugin-tech-insights": "^0.2.1-next.1",
"@backstage/theme": "^0.2.15",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -80,7 +80,7 @@
"zen-observable": "^0.8.15"
},
"devDependencies": {
"@backstage/test-utils": "^1.0.2-next.0",
"@backstage/test-utils": "^1.1.0-next.1",
"@rjsf/core": "^3.2.1",
"@testing-library/cypress": "^8.0.2",
"@testing-library/jest-dom": "^5.10.1",
+6
View File
@@ -1,5 +1,11 @@
# @backstage/backend-common
## 0.13.3-next.1
### Patch Changes
- 28b0e4ddef: Update types to match the new version of `@keyv/redis`
## 0.13.3-next.0
### Patch Changes
+2 -2
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/backend-common",
"description": "Common functionality library for Backstage backends",
"version": "0.13.3-next.0",
"version": "0.13.3-next.1",
"main": "src/index.ts",
"types": "src/index.ts",
"private": false,
@@ -91,7 +91,7 @@
},
"devDependencies": {
"@backstage/backend-test-utils": "^0.1.24-next.0",
"@backstage/cli": "^0.17.1-next.0",
"@backstage/cli": "^0.17.1-next.1",
"@types/archiver": "^5.1.0",
"@types/compression": "^1.7.0",
"@types/concat-stream": "^2.0.0",
+14
View File
@@ -1,5 +1,19 @@
# example-backend
## 0.2.71-next.1
### Patch Changes
- Updated dependencies
- @backstage/plugin-auth-backend@0.13.1-next.1
- @backstage/plugin-tech-insights-backend@0.4.0-next.1
- @backstage/backend-common@0.13.3-next.1
- @backstage/plugin-tech-insights-node@0.3.0-next.1
- @backstage/plugin-tech-insights-backend-module-jsonfc@0.1.16-next.1
- @backstage/plugin-catalog-backend@1.1.2-next.1
- @backstage/plugin-rollbar-backend@0.1.29-next.1
- example-app@0.2.71-next.1
## 0.2.71-next.0
### Patch Changes
+9 -9
View File
@@ -1,6 +1,6 @@
{
"name": "example-backend",
"version": "0.2.71-next.0",
"version": "0.2.71-next.1",
"main": "dist/index.cjs.js",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -26,18 +26,18 @@
"build-image": "docker build ../.. -f Dockerfile --tag example-backend"
},
"dependencies": {
"@backstage/backend-common": "^0.13.3-next.0",
"@backstage/backend-common": "^0.13.3-next.1",
"@backstage/backend-tasks": "^0.3.1-next.0",
"@backstage/catalog-client": "^1.0.1",
"@backstage/catalog-model": "^1.0.1",
"@backstage/config": "^1.0.0",
"@backstage/integration": "^1.2.0-next.0",
"@backstage/plugin-app-backend": "^0.3.32-next.0",
"@backstage/plugin-auth-backend": "^0.13.1-next.0",
"@backstage/plugin-auth-backend": "^0.13.1-next.1",
"@backstage/plugin-auth-node": "^0.2.1-next.0",
"@backstage/plugin-azure-devops-backend": "^0.3.11-next.0",
"@backstage/plugin-badges-backend": "^0.1.26-next.0",
"@backstage/plugin-catalog-backend": "^1.1.2-next.0",
"@backstage/plugin-catalog-backend": "^1.1.2-next.1",
"@backstage/plugin-code-coverage-backend": "^0.1.30-next.0",
"@backstage/plugin-graphql-backend": "^0.1.22-next.0",
"@backstage/plugin-jenkins-backend": "^0.1.22-next.0",
@@ -47,7 +47,7 @@
"@backstage/plugin-permission-common": "^0.6.0",
"@backstage/plugin-permission-node": "^0.6.1-next.0",
"@backstage/plugin-proxy-backend": "^0.2.26-next.0",
"@backstage/plugin-rollbar-backend": "^0.1.29-next.0",
"@backstage/plugin-rollbar-backend": "^0.1.29-next.1",
"@backstage/plugin-scaffolder-backend": "^1.2.0-next.0",
"@backstage/plugin-scaffolder-backend-module-rails": "^0.3.7-next.0",
"@backstage/plugin-search-backend": "^0.5.2-next.0",
@@ -55,9 +55,9 @@
"@backstage/plugin-search-backend-module-elasticsearch": "^0.1.4-next.0",
"@backstage/plugin-search-backend-module-pg": "^0.3.3-next.0",
"@backstage/plugin-techdocs-backend": "^1.1.1-next.0",
"@backstage/plugin-tech-insights-backend": "^0.3.1-next.0",
"@backstage/plugin-tech-insights-node": "^0.2.10-next.0",
"@backstage/plugin-tech-insights-backend-module-jsonfc": "^0.1.16-next.0",
"@backstage/plugin-tech-insights-backend": "^0.4.0-next.1",
"@backstage/plugin-tech-insights-node": "^0.3.0-next.1",
"@backstage/plugin-tech-insights-backend-module-jsonfc": "^0.1.16-next.1",
"@backstage/plugin-todo-backend": "^0.1.29-next.0",
"@gitbeaker/node": "^35.1.0",
"@octokit/rest": "^18.5.3",
@@ -75,7 +75,7 @@
"winston": "^3.2.1"
},
"devDependencies": {
"@backstage/cli": "^0.17.1-next.0",
"@backstage/cli": "^0.17.1-next.1",
"@types/dockerode": "^3.3.0",
"@types/express": "^4.17.6",
"@types/express-serve-static-core": "^4.17.5",
+10
View File
@@ -1,5 +1,15 @@
# @backstage/cli
## 0.17.1-next.1
### Patch Changes
- 52fb9920ac: Fixed coverage configuration when using `BACKSTAGE_NEXT_TESTS`.
- 6cd1f50ae1: Extended lint rule to prevents imports of stories or tests from production code.
- 4d8736eded: Changed Rollup configuration for TypeScript definition plugin to ignore `css`,
`scss`, `sass`, `svg`, `eot`, `woff`, `woff2` and `ttf` files.
- 2737777e02: Added the ability to help a user get started with a new organization
## 0.17.1-next.0
### Patch Changes
+7 -7
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/cli",
"description": "CLI for developing Backstage plugins and apps",
"version": "0.17.1-next.0",
"version": "0.17.1-next.1",
"private": false,
"publishConfig": {
"access": "public"
@@ -125,13 +125,13 @@
"zod": "^3.11.6"
},
"devDependencies": {
"@backstage/backend-common": "^0.13.3-next.0",
"@backstage/backend-common": "^0.13.3-next.1",
"@backstage/config": "^1.0.0",
"@backstage/core-app-api": "^1.0.1",
"@backstage/core-components": "^0.9.3",
"@backstage/core-plugin-api": "^1.0.1",
"@backstage/dev-utils": "^1.0.2-next.0",
"@backstage/test-utils": "^1.0.2-next.0",
"@backstage/core-app-api": "^1.0.2-next.0",
"@backstage/core-components": "^0.9.4-next.0",
"@backstage/core-plugin-api": "^1.0.2-next.0",
"@backstage/dev-utils": "^1.0.2-next.1",
"@backstage/test-utils": "^1.1.0-next.1",
"@backstage/theme": "^0.2.15",
"@types/diff": "^5.0.0",
"@types/express": "^4.17.6",
+1 -1
View File
@@ -37,7 +37,7 @@
"lodash": "^4.17.21"
},
"devDependencies": {
"@backstage/test-utils": "^1.0.2-next.0",
"@backstage/test-utils": "^1.1.0-next.1",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32"
},
+7
View File
@@ -1,5 +1,12 @@
# @backstage/core-app-api
## 1.0.2-next.0
### Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.0.2-next.0
## 1.0.1
### Patch Changes
+4 -4
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/core-app-api",
"description": "Core app API used by Backstage apps",
"version": "1.0.1",
"version": "1.0.2-next.0",
"private": false,
"publishConfig": {
"access": "public",
@@ -34,7 +34,7 @@
},
"dependencies": {
"@backstage/config": "^1.0.0",
"@backstage/core-plugin-api": "^1.0.1",
"@backstage/core-plugin-api": "^1.0.2-next.0",
"@backstage/types": "^1.0.0",
"@backstage/version-bridge": "^1.0.1",
"@types/prop-types": "^15.7.3",
@@ -49,8 +49,8 @@
"react": "^16.13.1 || ^17.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.17.1-next.0",
"@backstage/test-utils": "^1.0.2-next.0",
"@backstage/cli": "^0.17.1-next.1",
"@backstage/test-utils": "^1.1.0-next.1",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@testing-library/react-hooks": "^8.0.0",
+11
View File
@@ -1,5 +1,16 @@
# @backstage/core-components
## 0.9.4-next.0
### Patch Changes
- ac19f82936: Added ARIA landmark <main> to Page component and added ARIA landmark <nav> to DesktopSidebar and Sidebar components
- c0055ece91: Announce external links to screen readers
- cfc0f2e5bd: Added optional anchorOrigin alignment prop to AlertDisplay
- f4380eb602: Add an aria-label to the support button to improve accessibility for screen readers
- Updated dependencies
- @backstage/core-plugin-api@1.0.2-next.0
## 0.9.3
### Patch Changes
+5 -5
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/core-components",
"description": "Core components used by Backstage plugins and apps",
"version": "0.9.3",
"version": "0.9.4-next.0",
"private": false,
"publishConfig": {
"access": "public",
@@ -34,7 +34,7 @@
},
"dependencies": {
"@backstage/config": "^1.0.0",
"@backstage/core-plugin-api": "^1.0.1",
"@backstage/core-plugin-api": "^1.0.2-next.0",
"@backstage/errors": "^1.0.0",
"@backstage/theme": "^0.2.15",
"@material-table/core": "^3.1.0",
@@ -78,9 +78,9 @@
"react-dom": "^16.13.1 || ^17.0.0"
},
"devDependencies": {
"@backstage/core-app-api": "^1.0.1",
"@backstage/cli": "^0.17.1-next.0",
"@backstage/test-utils": "^1.0.2-next.0",
"@backstage/core-app-api": "^1.0.2-next.0",
"@backstage/cli": "^0.17.1-next.1",
"@backstage/test-utils": "^1.1.0-next.1",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@testing-library/react-hooks": "^8.0.0",
+6
View File
@@ -1,5 +1,11 @@
# @backstage/core-plugin-api
## 1.0.2-next.0
### Patch Changes
- b653a5595c: The authentication APIs are no longer `@alpha`. Since the `@backstage/core-plugin-api` has no `/alpha` entrypoint, the only effect of marking the APIs as `@alpha` was to hide them in documentation. They are still expected to be widely used and there will be a migration path if they are changed in the future.
## 1.0.1
### Patch Changes
+4 -4
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/core-plugin-api",
"description": "Core API used by Backstage plugins",
"version": "1.0.1",
"version": "1.0.2-next.0",
"private": false,
"publishConfig": {
"access": "public",
@@ -46,9 +46,9 @@
"react": "^16.13.1 || ^17.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.17.1-next.0",
"@backstage/core-app-api": "^1.0.1",
"@backstage/test-utils": "^1.0.2-next.0",
"@backstage/cli": "^0.17.1-next.1",
"@backstage/core-app-api": "^1.0.2-next.0",
"@backstage/test-utils": "^1.1.0-next.1",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@testing-library/react-hooks": "^8.0.0",
+42
View File
@@ -1,5 +1,47 @@
# @backstage/create-app
## 0.4.27-next.1
### Patch Changes
- 7b253072c6: Tweaked template to provide an example and guidance for how to configure sign-in in `packages/backend/src/plugins/auth.ts`. There is no need to add this to existing apps, but for more information about sign-in configuration, see https://backstage.io/docs/auth/identity-resolver.
- 00fa0dada0: Removed the database choice from the `create-app` command.
This reduces the step from development to production by always installing the dependencies and templating the production configuration in `app-config.production.yaml`.
Added `app-config.local.yaml` to allow for local configuration overrides.
To replicate this behavior in an existing installation simply `touch app-config.local.yaml` in the project root and apply your local configuration.
`better-sqlite3` has been moved to devDependencies, for existing installations using postgres in production and SQLite in development it's recommended to move SQLite into the devDependencies section to avoid unnecessary dependencies during builds.
in `packages/backend/package.json`
```diff
"dependencies": {
...
"pg": "^8.3.0",
- "better-sqlite3": "^7.5.0",
"winston": "^3.2.1"
},
"devDependencies": {
...
"@types/luxon": "^2.0.4",
+ "better-sqlite3": "^7.5.0"
}
```
- d41f19ca2a: Bumped the `typescript` version in the template to `~4.6.4`.
To apply this change to an existing app, make the following change to the root `package.json`:
```diff
dependencies: {
...
- "typescript": "~4.5.4"
+ "typescript": "~4.6.4"
},
```
## 0.4.27-next.0
### Patch Changes
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/create-app",
"description": "A CLI that helps you create your own Backstage app",
"version": "0.4.27-next.0",
"version": "0.4.27-next.1",
"private": false,
"publishConfig": {
"access": "public"
+13
View File
@@ -1,5 +1,18 @@
# @backstage/dev-utils
## 1.0.2-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/test-utils@1.1.0-next.1
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
- @backstage/app-defaults@1.0.2-next.0
- @backstage/integration-react@1.1.0-next.1
- @backstage/core-app-api@1.0.2-next.0
## 1.0.2-next.0
### Patch Changes
+9 -9
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/dev-utils",
"description": "Utilities for developing Backstage plugins.",
"version": "1.0.2-next.0",
"version": "1.0.2-next.1",
"private": false,
"publishConfig": {
"access": "public",
@@ -33,14 +33,14 @@
"start": "backstage-cli package start"
},
"dependencies": {
"@backstage/app-defaults": "^1.0.1",
"@backstage/core-app-api": "^1.0.1",
"@backstage/core-components": "^0.9.3",
"@backstage/core-plugin-api": "^1.0.1",
"@backstage/app-defaults": "^1.0.2-next.0",
"@backstage/core-app-api": "^1.0.2-next.0",
"@backstage/core-components": "^0.9.4-next.0",
"@backstage/core-plugin-api": "^1.0.2-next.0",
"@backstage/catalog-model": "^1.0.1",
"@backstage/integration-react": "^1.1.0-next.0",
"@backstage/plugin-catalog-react": "^1.1.0-next.0",
"@backstage/test-utils": "^1.0.2-next.0",
"@backstage/integration-react": "^1.1.0-next.1",
"@backstage/plugin-catalog-react": "^1.1.0-next.1",
"@backstage/test-utils": "^1.1.0-next.1",
"@backstage/theme": "^0.2.15",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -59,7 +59,7 @@
"react-dom": "^16.13.1 || ^17.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.17.1-next.0",
"@backstage/cli": "^0.17.1-next.1",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32"
},
+8
View File
@@ -1,5 +1,13 @@
# @backstage/integration-react
## 1.1.0-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
## 1.1.0-next.0
### Minor Changes
+6 -6
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/integration-react",
"description": "Frontend package for managing integrations towards external systems",
"version": "1.1.0-next.0",
"version": "1.1.0-next.1",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -25,8 +25,8 @@
},
"dependencies": {
"@backstage/config": "^1.0.0",
"@backstage/core-components": "^0.9.3",
"@backstage/core-plugin-api": "^1.0.1",
"@backstage/core-components": "^0.9.4-next.0",
"@backstage/core-plugin-api": "^1.0.2-next.0",
"@backstage/integration": "^1.2.0-next.0",
"@backstage/theme": "^0.2.15",
"@material-ui/core": "^4.12.2",
@@ -38,9 +38,9 @@
"react": "^16.13.1 || ^17.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.17.1-next.0",
"@backstage/dev-utils": "^1.0.2-next.0",
"@backstage/test-utils": "^1.0.2-next.0",
"@backstage/cli": "^0.17.1-next.1",
"@backstage/dev-utils": "^1.0.2-next.1",
"@backstage/test-utils": "^1.1.0-next.1",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^14.0.0",
+2 -2
View File
@@ -42,9 +42,9 @@
"lodash": "^4.17.21"
},
"devDependencies": {
"@backstage/cli": "^0.17.1-next.0",
"@backstage/cli": "^0.17.1-next.1",
"@backstage/config-loader": "^1.1.1-next.0",
"@backstage/test-utils": "^1.0.2-next.0",
"@backstage/test-utils": "^1.1.0-next.1",
"@types/jest": "^26.0.7",
"@types/luxon": "^2.0.4",
"msw": "^0.35.0"
+1 -1
View File
@@ -36,7 +36,7 @@
"cross-fetch": "^3.1.5"
},
"devDependencies": {
"@backstage/test-utils": "^1.0.2-next.0",
"@backstage/test-utils": "^1.1.0-next.1",
"msw": "^0.35.0",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32"
@@ -1,5 +1,21 @@
# techdocs-cli-embedded-app
## 0.2.70-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/test-utils@1.1.0-next.1
- @backstage/cli@0.17.1-next.1
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog@1.2.0-next.1
- @backstage/plugin-techdocs-react@0.1.1-next.1
- @backstage/plugin-techdocs@1.1.1-next.1
- @backstage/app-defaults@1.0.2-next.0
- @backstage/integration-react@1.1.0-next.1
- @backstage/core-app-api@1.0.2-next.0
## 0.2.70-next.0
### Patch Changes
+12 -12
View File
@@ -1,24 +1,24 @@
{
"name": "techdocs-cli-embedded-app",
"version": "0.2.70-next.0",
"version": "0.2.70-next.1",
"private": true,
"backstage": {
"role": "frontend"
},
"bundled": true,
"dependencies": {
"@backstage/app-defaults": "^1.0.1",
"@backstage/app-defaults": "^1.0.2-next.0",
"@backstage/catalog-model": "^1.0.1",
"@backstage/cli": "^0.17.1-next.0",
"@backstage/cli": "^0.17.1-next.1",
"@backstage/config": "^1.0.0",
"@backstage/core-app-api": "^1.0.1",
"@backstage/core-components": "^0.9.3",
"@backstage/core-plugin-api": "^1.0.1",
"@backstage/integration-react": "^1.1.0-next.0",
"@backstage/plugin-catalog": "^1.2.0-next.0",
"@backstage/plugin-techdocs": "^1.1.1-next.0",
"@backstage/plugin-techdocs-react": "^0.1.1-next.0",
"@backstage/test-utils": "^1.0.2-next.0",
"@backstage/core-app-api": "^1.0.2-next.0",
"@backstage/core-components": "^0.9.4-next.0",
"@backstage/core-plugin-api": "^1.0.2-next.0",
"@backstage/integration-react": "^1.1.0-next.1",
"@backstage/plugin-catalog": "^1.2.0-next.1",
"@backstage/plugin-techdocs": "^1.1.1-next.1",
"@backstage/plugin-techdocs-react": "^0.1.1-next.1",
"@backstage/test-utils": "^1.1.0-next.1",
"@backstage/theme": "^0.2.15",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
@@ -30,7 +30,7 @@
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/cli": "^0.17.1-next.0",
"@backstage/cli": "^0.17.1-next.1",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^14.0.0",
+8
View File
@@ -1,5 +1,13 @@
# @techdocs/cli
## 1.1.1-next.1
### Patch Changes
- 52fddad92d: The TechDocs CLI's embedded app now imports all API refs from the `@backstage/plugin-techdocs-react` package.
- Updated dependencies
- @backstage/backend-common@0.13.3-next.1
## 1.1.1-next.0
### Patch Changes
+3 -3
View File
@@ -1,7 +1,7 @@
{
"name": "@techdocs/cli",
"description": "Utility CLI for managing TechDocs sites in Backstage.",
"version": "1.1.1-next.0",
"version": "1.1.1-next.1",
"private": false,
"publishConfig": {
"access": "public"
@@ -37,7 +37,7 @@
"techdocs-cli": "bin/techdocs-cli"
},
"devDependencies": {
"@backstage/cli": "^0.17.1-next.0",
"@backstage/cli": "^0.17.1-next.1",
"@types/commander": "^2.12.2",
"@types/fs-extra": "^9.0.6",
"@types/http-proxy": "^1.17.4",
@@ -62,7 +62,7 @@
"ext": "ts"
},
"dependencies": {
"@backstage/backend-common": "^0.13.3-next.0",
"@backstage/backend-common": "^0.13.3-next.1",
"@backstage/catalog-model": "^1.0.1",
"@backstage/cli-common": "^0.1.8",
"@backstage/config": "^1.0.0",
+15
View File
@@ -1,5 +1,20 @@
# @backstage/test-utils
## 1.1.0-next.1
### Minor Changes
- 1da8b248c2: Added the options parameter to `renderWithEffects`, which if forwarded to the `render` function from `@testling-library/react`. Initially only the `wrapper` option is supported.
- 1da8b248c2: Added `createTestAppWrapper`, which returns a component that can be used as the `wrapper` option for `render` or `renderWithEffects`.
### Patch Changes
- 1da8b248c2: Fixed `renderInTestApp` so that it is able to re-render the result without removing the app wrapping.
- Updated dependencies
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/core-app-api@1.0.2-next.0
- @backstage/plugin-permission-react@0.4.1-next.0
## 1.0.2-next.0
### Patch Changes
+5 -5
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/test-utils",
"description": "Utilities to test Backstage plugins and apps.",
"version": "1.0.2-next.0",
"version": "1.1.0-next.1",
"private": false,
"publishConfig": {
"access": "public",
@@ -34,10 +34,10 @@
},
"dependencies": {
"@backstage/config": "^1.0.0",
"@backstage/core-app-api": "^1.0.1",
"@backstage/core-plugin-api": "^1.0.1",
"@backstage/core-app-api": "^1.0.2-next.0",
"@backstage/core-plugin-api": "^1.0.2-next.0",
"@backstage/plugin-permission-common": "^0.6.0",
"@backstage/plugin-permission-react": "^0.4.0",
"@backstage/plugin-permission-react": "^0.4.1-next.0",
"@backstage/theme": "^0.2.15",
"@backstage/types": "^1.0.0",
"@material-ui/core": "^4.12.2",
@@ -55,7 +55,7 @@
"react": "^16.13.1 || ^17.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.17.1-next.0",
"@backstage/cli": "^0.17.1-next.1",
"@types/jest": "^26.0.7",
"@types/node": "^16.11.26",
"msw": "^0.35.0"
+13
View File
@@ -0,0 +1,13 @@
# @backstage/plugin-adr-backend
## 0.1.0-next.0
### Minor Changes
- e73075a301: Implement ADR plugin
### Patch Changes
- Updated dependencies
- @backstage/plugin-adr-common@0.1.0-next.0
- @backstage/backend-common@0.13.3-next.1
+4 -4
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-adr-backend",
"version": "0.0.0",
"version": "0.1.0-next.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -29,13 +29,13 @@
"postpack": "backstage-cli package postpack"
},
"dependencies": {
"@backstage/backend-common": "^0.13.3-next.0",
"@backstage/backend-common": "^0.13.3-next.1",
"@backstage/catalog-client": "^1.0.1",
"@backstage/catalog-model": "^1.0.1",
"@backstage/config": "^1.0.0",
"@backstage/errors": "^1.0.0",
"@backstage/integration": "^1.2.0-next.0",
"@backstage/plugin-adr-common": "^0.0.0",
"@backstage/plugin-adr-common": "^0.1.0-next.0",
"@backstage/plugin-search-common": "^0.3.3",
"luxon": "^2.0.2",
"marked": "^4.0.14",
@@ -44,7 +44,7 @@
"yn": "^4.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.17.1-next.0",
"@backstage/cli": "^0.17.1-next.1",
"@types/marked": "^4.0.0",
"@types/supertest": "^2.0.8",
"supertest": "^6.1.3",
+7
View File
@@ -0,0 +1,7 @@
# @backstage/plugin-adr-common
## 0.1.0-next.0
### Minor Changes
- e73075a301: Implement ADR plugin
+2 -2
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-adr-common",
"description": "Common functionalities for the adr plugin",
"version": "0.0.0",
"version": "0.1.0-next.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -35,7 +35,7 @@
"@backstage/plugin-search-common": "^0.3.3"
},
"devDependencies": {
"@backstage/cli": "^0.17.1-next.0"
"@backstage/cli": "^0.17.1-next.1"
},
"files": [
"dist"
+16
View File
@@ -0,0 +1,16 @@
# @backstage/plugin-adr
## 0.1.0-next.0
### Minor Changes
- e73075a301: Implement ADR plugin
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/plugin-adr-common@0.1.0-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
- @backstage/integration-react@1.1.0-next.1
+10 -10
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-adr",
"version": "0.0.0",
"version": "0.1.0-next.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -22,11 +22,11 @@
"postpack": "backstage-cli package postpack"
},
"dependencies": {
"@backstage/core-components": "^0.9.3",
"@backstage/core-plugin-api": "^1.0.1",
"@backstage/integration-react": "^1.1.0-next.0",
"@backstage/plugin-adr-common": "^0.0.0",
"@backstage/plugin-catalog-react": "^1.1.0-next.0",
"@backstage/core-components": "^0.9.4-next.0",
"@backstage/core-plugin-api": "^1.0.2-next.0",
"@backstage/integration-react": "^1.1.0-next.1",
"@backstage/plugin-adr-common": "^0.1.0-next.0",
"@backstage/plugin-catalog-react": "^1.1.0-next.1",
"@backstage/theme": "^0.2.15",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -43,10 +43,10 @@
"react": "^16.13.1 || ^17.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.17.1-next.0",
"@backstage/core-app-api": "^1.0.1",
"@backstage/dev-utils": "^1.0.2-next.0",
"@backstage/test-utils": "^1.0.2-next.0",
"@backstage/cli": "^0.17.1-next.1",
"@backstage/core-app-api": "^1.0.2-next.0",
"@backstage/dev-utils": "^1.0.2-next.1",
"@backstage/test-utils": "^1.1.0-next.1",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^14.0.0",
+11
View File
@@ -1,5 +1,16 @@
# @backstage/plugin-airbrake
## 0.3.5-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/test-utils@1.1.0-next.1
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
- @backstage/dev-utils@1.0.2-next.1
## 0.3.5-next.0
### Patch Changes
+10 -10
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-airbrake",
"version": "0.3.5-next.0",
"version": "0.3.5-next.1",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -24,11 +24,11 @@
},
"dependencies": {
"@backstage/catalog-model": "^1.0.1",
"@backstage/core-components": "^0.9.3",
"@backstage/core-plugin-api": "^1.0.1",
"@backstage/dev-utils": "^1.0.2-next.0",
"@backstage/plugin-catalog-react": "^1.1.0-next.0",
"@backstage/test-utils": "^1.0.2-next.0",
"@backstage/core-components": "^0.9.4-next.0",
"@backstage/core-plugin-api": "^1.0.2-next.0",
"@backstage/dev-utils": "^1.0.2-next.1",
"@backstage/plugin-catalog-react": "^1.1.0-next.1",
"@backstage/test-utils": "^1.1.0-next.1",
"@backstage/theme": "^0.2.15",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -40,10 +40,10 @@
"react": "^16.13.1 || ^17.0.0"
},
"devDependencies": {
"@backstage/app-defaults": "^1.0.1",
"@backstage/cli": "^0.17.1-next.0",
"@backstage/dev-utils": "^1.0.2-next.0",
"@backstage/test-utils": "^1.0.2-next.0",
"@backstage/app-defaults": "^1.0.2-next.0",
"@backstage/cli": "^0.17.1-next.1",
"@backstage/dev-utils": "^1.0.2-next.1",
"@backstage/test-utils": "^1.1.0-next.1",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^14.0.0",
+9
View File
@@ -1,5 +1,14 @@
# @backstage/plugin-allure
## 0.1.21-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
## 0.1.21-next.0
### Patch Changes
+8 -8
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-allure",
"description": "A Backstage plugin that integrates with Allure",
"version": "0.1.21-next.0",
"version": "0.1.21-next.1",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -26,9 +26,9 @@
},
"dependencies": {
"@backstage/catalog-model": "^1.0.1",
"@backstage/core-components": "^0.9.3",
"@backstage/core-plugin-api": "^1.0.1",
"@backstage/plugin-catalog-react": "^1.1.0-next.0",
"@backstage/core-components": "^0.9.4-next.0",
"@backstage/core-plugin-api": "^1.0.2-next.0",
"@backstage/plugin-catalog-react": "^1.1.0-next.1",
"@backstage/theme": "^0.2.15",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -40,10 +40,10 @@
"react": "^16.13.1 || ^17.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.17.1-next.0",
"@backstage/core-app-api": "^1.0.1",
"@backstage/dev-utils": "^1.0.2-next.0",
"@backstage/test-utils": "^1.0.2-next.0",
"@backstage/cli": "^0.17.1-next.1",
"@backstage/core-app-api": "^1.0.2-next.0",
"@backstage/dev-utils": "^1.0.2-next.1",
"@backstage/test-utils": "^1.1.0-next.1",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^14.0.0",
+8
View File
@@ -1,5 +1,13 @@
# @backstage/plugin-analytics-module-ga
## 0.1.16-next.0
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
## 0.1.15
### Patch Changes
+7 -7
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-analytics-module-ga",
"version": "0.1.15",
"version": "0.1.16-next.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -25,8 +25,8 @@
},
"dependencies": {
"@backstage/config": "^1.0.0",
"@backstage/core-components": "^0.9.3",
"@backstage/core-plugin-api": "^1.0.1",
"@backstage/core-components": "^0.9.4-next.0",
"@backstage/core-plugin-api": "^1.0.2-next.0",
"@backstage/theme": "^0.2.15",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -38,10 +38,10 @@
"react": "^16.13.1 || ^17.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.17.1-next.0",
"@backstage/core-app-api": "^1.0.1",
"@backstage/dev-utils": "^1.0.2-next.0",
"@backstage/test-utils": "^1.0.2-next.0",
"@backstage/cli": "^0.17.1-next.1",
"@backstage/core-app-api": "^1.0.2-next.0",
"@backstage/dev-utils": "^1.0.2-next.1",
"@backstage/test-utils": "^1.1.0-next.1",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^14.0.0",
+8
View File
@@ -1,5 +1,13 @@
# @backstage/plugin-apache-airflow
## 0.1.13-next.0
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
## 0.1.12
### Patch Changes
+7 -7
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-apache-airflow",
"version": "0.1.12",
"version": "0.1.13-next.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -23,8 +23,8 @@
"clean": "backstage-cli package clean"
},
"dependencies": {
"@backstage/core-components": "^0.9.3",
"@backstage/core-plugin-api": "^1.0.1",
"@backstage/core-components": "^0.9.4-next.0",
"@backstage/core-plugin-api": "^1.0.2-next.0",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "4.0.0-alpha.57",
@@ -36,10 +36,10 @@
"react": "^16.13.1 || ^17.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.17.1-next.0",
"@backstage/core-app-api": "^1.0.1",
"@backstage/dev-utils": "^1.0.2-next.0",
"@backstage/test-utils": "^1.0.2-next.0",
"@backstage/cli": "^0.17.1-next.1",
"@backstage/core-app-api": "^1.0.2-next.0",
"@backstage/dev-utils": "^1.0.2-next.1",
"@backstage/test-utils": "^1.1.0-next.1",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^14.0.0",
+13
View File
@@ -1,5 +1,18 @@
# @backstage/plugin-api-docs
## 0.8.5-next.1
### Patch Changes
- 2c279df4eb: Updated dependency `graphiql` to `^1.8.8`.
- 165790975d: Updated dependency `@asyncapi/react-component` to `1.0.0-next.37`.
- 7f6f97d151: Updated dependency `@asyncapi/react-component` to `1.0.0-next.38`.
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog@1.2.0-next.1
- @backstage/plugin-catalog-react@1.1.0-next.1
## 0.8.5-next.0
### Patch Changes
+9 -9
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-api-docs",
"description": "A Backstage plugin that helps represent API entities in the frontend",
"version": "0.8.5-next.0",
"version": "0.8.5-next.1",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -35,10 +35,10 @@
"dependencies": {
"@asyncapi/react-component": "1.0.0-next.38",
"@backstage/catalog-model": "^1.0.1",
"@backstage/core-components": "^0.9.3",
"@backstage/core-plugin-api": "^1.0.1",
"@backstage/plugin-catalog": "^1.2.0-next.0",
"@backstage/plugin-catalog-react": "^1.1.0-next.0",
"@backstage/core-components": "^0.9.4-next.0",
"@backstage/core-plugin-api": "^1.0.2-next.0",
"@backstage/plugin-catalog": "^1.2.0-next.1",
"@backstage/plugin-catalog-react": "^1.1.0-next.1",
"@backstage/theme": "^0.2.15",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -56,10 +56,10 @@
"react": "^16.13.1 || ^17.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.17.1-next.0",
"@backstage/core-app-api": "^1.0.1",
"@backstage/dev-utils": "^1.0.2-next.0",
"@backstage/test-utils": "^1.0.2-next.0",
"@backstage/cli": "^0.17.1-next.1",
"@backstage/core-app-api": "^1.0.2-next.0",
"@backstage/dev-utils": "^1.0.2-next.1",
"@backstage/test-utils": "^1.1.0-next.1",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^14.0.0",
+14
View File
@@ -1,5 +1,19 @@
# @backstage/plugin-auth-backend
## 0.13.1-next.1
### Patch Changes
- cac3ba68a2: Fixed a bug that was introduced in `0.13.1-next.0` which caused the `ent` claim of issued tokens to be dropped.
- 5d268623dd: Updates the OAuth2 Proxy provider to require less infrastructure configuration.
The auth result object of the OAuth2 Proxy now provides access to the request headers, both through the `headers` object as well as `getHeader` method. The existing logic that parses and extracts the user information from ID tokens is deprecated and will be removed in a future release. See the OAuth2 Proxy provider documentation for more details.
The OAuth2 Proxy provider now also has a default `authHandler` implementation that reads the display name and email from the incoming request headers.
- Updated dependencies
- @backstage/backend-common@0.13.3-next.1
## 0.13.1-next.0
### Patch Changes
+3 -3
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-auth-backend",
"description": "A Backstage backend plugin that handles authentication",
"version": "0.13.1-next.0",
"version": "0.13.1-next.1",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -34,7 +34,7 @@
},
"dependencies": {
"@backstage/plugin-auth-node": "^0.2.1-next.0",
"@backstage/backend-common": "^0.13.3-next.0",
"@backstage/backend-common": "^0.13.3-next.1",
"@backstage/catalog-client": "^1.0.1",
"@backstage/catalog-model": "^1.0.1",
"@backstage/config": "^1.0.0",
@@ -77,7 +77,7 @@
},
"devDependencies": {
"@backstage/backend-test-utils": "^0.1.24-next.0",
"@backstage/cli": "^0.17.1-next.0",
"@backstage/cli": "^0.17.1-next.1",
"@types/body-parser": "^1.19.0",
"@types/cookie-parser": "^1.4.2",
"@types/express-session": "^1.17.2",
+9
View File
@@ -1,5 +1,14 @@
# @backstage/plugin-azure-devops
## 0.1.21-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
## 0.1.21-next.0
### Patch Changes
+8 -8
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-azure-devops",
"version": "0.1.21-next.0",
"version": "0.1.21-next.1",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -31,11 +31,11 @@
},
"dependencies": {
"@backstage/catalog-model": "^1.0.1",
"@backstage/core-components": "^0.9.3",
"@backstage/core-plugin-api": "^1.0.1",
"@backstage/core-components": "^0.9.4-next.0",
"@backstage/core-plugin-api": "^1.0.2-next.0",
"@backstage/errors": "^1.0.0",
"@backstage/plugin-azure-devops-common": "^0.2.2",
"@backstage/plugin-catalog-react": "^1.1.0-next.0",
"@backstage/plugin-catalog-react": "^1.1.0-next.1",
"@backstage/theme": "^0.2.15",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -49,10 +49,10 @@
"react": "^16.13.1 || ^17.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.17.1-next.0",
"@backstage/core-app-api": "^1.0.1",
"@backstage/dev-utils": "^1.0.2-next.0",
"@backstage/test-utils": "^1.0.2-next.0",
"@backstage/cli": "^0.17.1-next.1",
"@backstage/core-app-api": "^1.0.2-next.0",
"@backstage/dev-utils": "^1.0.2-next.1",
"@backstage/test-utils": "^1.1.0-next.1",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^14.0.0",
+9
View File
@@ -1,5 +1,14 @@
# @backstage/plugin-badges
## 0.2.29-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
## 0.2.29-next.0
### Patch Changes
+8 -8
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-badges",
"description": "A Backstage plugin that generates README badges for your entities",
"version": "0.2.29-next.0",
"version": "0.2.29-next.1",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -31,10 +31,10 @@
},
"dependencies": {
"@backstage/catalog-model": "^1.0.1",
"@backstage/core-components": "^0.9.3",
"@backstage/core-plugin-api": "^1.0.1",
"@backstage/core-components": "^0.9.4-next.0",
"@backstage/core-plugin-api": "^1.0.2-next.0",
"@backstage/errors": "^1.0.0",
"@backstage/plugin-catalog-react": "^1.1.0-next.0",
"@backstage/plugin-catalog-react": "^1.1.0-next.1",
"@backstage/theme": "^0.2.15",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -46,10 +46,10 @@
"react": "^16.13.1 || ^17.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.17.1-next.0",
"@backstage/core-app-api": "^1.0.1",
"@backstage/dev-utils": "^1.0.2-next.0",
"@backstage/test-utils": "^1.0.2-next.0",
"@backstage/cli": "^0.17.1-next.1",
"@backstage/core-app-api": "^1.0.2-next.0",
"@backstage/dev-utils": "^1.0.2-next.1",
"@backstage/test-utils": "^1.1.0-next.1",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^14.0.0",
+11
View File
@@ -1,5 +1,16 @@
# @backstage/plugin-bazaar
## 0.1.20-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/cli@0.17.1-next.1
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog@1.2.0-next.1
- @backstage/plugin-catalog-react@1.1.0-next.1
## 0.1.20-next.0
### Patch Changes
+8 -8
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-bazaar",
"version": "0.1.20-next.0",
"version": "0.1.20-next.1",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -26,11 +26,11 @@
"dependencies": {
"@backstage/catalog-client": "^1.0.1",
"@backstage/catalog-model": "^1.0.1",
"@backstage/cli": "^0.17.1-next.0",
"@backstage/core-components": "^0.9.3",
"@backstage/core-plugin-api": "^1.0.1",
"@backstage/plugin-catalog": "^1.2.0-next.0",
"@backstage/plugin-catalog-react": "^1.1.0-next.0",
"@backstage/cli": "^0.17.1-next.1",
"@backstage/core-components": "^0.9.4-next.0",
"@backstage/core-plugin-api": "^1.0.2-next.0",
"@backstage/plugin-catalog": "^1.2.0-next.1",
"@backstage/plugin-catalog-react": "^1.1.0-next.1",
"@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.17.1-next.0",
"@backstage/dev-utils": "^1.0.2-next.0",
"@backstage/cli": "^0.17.1-next.1",
"@backstage/dev-utils": "^1.0.2-next.1",
"@testing-library/jest-dom": "^5.10.1",
"cross-fetch": "^3.1.5"
},
+9
View File
@@ -1,5 +1,14 @@
# @backstage/plugin-bitrise
## 0.1.32-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
## 0.1.32-next.0
### Patch Changes
+8 -8
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-bitrise",
"description": "A Backstage plugin that integrates towards Bitrise",
"version": "0.1.32-next.0",
"version": "0.1.32-next.1",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -25,9 +25,9 @@
},
"dependencies": {
"@backstage/catalog-model": "^1.0.1",
"@backstage/core-components": "^0.9.3",
"@backstage/core-plugin-api": "^1.0.1",
"@backstage/plugin-catalog-react": "^1.1.0-next.0",
"@backstage/core-components": "^0.9.4-next.0",
"@backstage/core-plugin-api": "^1.0.2-next.0",
"@backstage/plugin-catalog-react": "^1.1.0-next.1",
"@backstage/theme": "^0.2.15",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -43,10 +43,10 @@
"react": "^16.13.1 || ^17.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.17.1-next.0",
"@backstage/core-app-api": "^1.0.1",
"@backstage/dev-utils": "^1.0.2-next.0",
"@backstage/test-utils": "^1.0.2-next.0",
"@backstage/cli": "^0.17.1-next.1",
"@backstage/core-app-api": "^1.0.2-next.0",
"@backstage/dev-utils": "^1.0.2-next.1",
"@backstage/test-utils": "^1.1.0-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,14 @@
# @backstage/plugin-catalog-backend-module-gerrit
## 0.1.0-next.1
### Patch Changes
- 57f684f59c: Fix incorrect main path in `publishConfig`
- Updated dependencies
- @backstage/backend-common@0.13.3-next.1
- @backstage/plugin-catalog-backend@1.1.2-next.1
## 0.1.0-next.0
### Minor Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-catalog-backend-module-gerrit",
"version": "0.1.0-next.0",
"version": "0.1.0-next.1",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -28,13 +28,13 @@
"postpack": "backstage-cli package postpack"
},
"dependencies": {
"@backstage/backend-common": "^0.13.3-next.0",
"@backstage/backend-common": "^0.13.3-next.1",
"@backstage/backend-tasks": "^0.3.1-next.0",
"@backstage/catalog-model": "^1.0.1",
"@backstage/config": "^1.0.0",
"@backstage/errors": "^1.0.0",
"@backstage/integration": "^1.2.0-next.0",
"@backstage/plugin-catalog-backend": "^1.1.2-next.0",
"@backstage/plugin-catalog-backend": "^1.1.2-next.1",
"fs-extra": "10.1.0",
"msw": "^0.35.0",
"node-fetch": "^2.6.7",
@@ -43,7 +43,7 @@
},
"devDependencies": {
"@backstage/backend-test-utils": "^0.1.24-next.0",
"@backstage/cli": "^0.17.1-next.0",
"@backstage/cli": "^0.17.1-next.1",
"@types/fs-extra": "^9.0.1"
},
"files": [
+8
View File
@@ -1,5 +1,13 @@
# @backstage/plugin-catalog-backend
## 1.1.2-next.1
### Patch Changes
- 1ccbe081cc: Minor internal tweak to support TypeScript 4.6
- Updated dependencies
- @backstage/backend-common@0.13.3-next.1
## 1.1.2-next.0
### Patch Changes
+3 -3
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-catalog-backend",
"description": "The Backstage backend plugin that provides the Backstage catalog",
"version": "1.1.2-next.0",
"version": "1.1.2-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/backend-common": "^0.13.3-next.0",
"@backstage/backend-common": "^0.13.3-next.1",
"@backstage/catalog-client": "^1.0.1",
"@backstage/catalog-model": "^1.0.1",
"@backstage/config": "^1.0.0",
@@ -69,7 +69,7 @@
},
"devDependencies": {
"@backstage/backend-test-utils": "^0.1.24-next.0",
"@backstage/cli": "^0.17.1-next.0",
"@backstage/cli": "^0.17.1-next.1",
"@backstage/plugin-permission-common": "^0.6.0",
"@backstage/plugin-search-backend-node": "0.6.1-next.0",
"@types/core-js": "^2.5.4",
+9
View File
@@ -1,5 +1,14 @@
# @backstage/plugin-catalog-graph
## 0.2.17-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
## 0.2.17-next.0
### Patch Changes
+9 -9
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-catalog-graph",
"version": "0.2.17-next.0",
"version": "0.2.17-next.1",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -26,9 +26,9 @@
"dependencies": {
"@backstage/catalog-client": "^1.0.1",
"@backstage/catalog-model": "^1.0.1",
"@backstage/core-components": "^0.9.3",
"@backstage/core-plugin-api": "^1.0.1",
"@backstage/plugin-catalog-react": "^1.1.0-next.0",
"@backstage/core-components": "^0.9.4-next.0",
"@backstage/core-plugin-api": "^1.0.2-next.0",
"@backstage/plugin-catalog-react": "^1.1.0-next.1",
"@backstage/theme": "^0.2.15",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -45,11 +45,11 @@
"react": "^16.13.1 || ^17.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.17.1-next.0",
"@backstage/plugin-catalog": "^1.2.0-next.0",
"@backstage/core-app-api": "^1.0.1",
"@backstage/dev-utils": "^1.0.2-next.0",
"@backstage/test-utils": "^1.0.2-next.0",
"@backstage/cli": "^0.17.1-next.1",
"@backstage/plugin-catalog": "^1.2.0-next.1",
"@backstage/core-app-api": "^1.0.2-next.0",
"@backstage/dev-utils": "^1.0.2-next.1",
"@backstage/test-utils": "^1.1.0-next.1",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@testing-library/react-hooks": "^8.0.0",
+2 -2
View File
@@ -46,8 +46,8 @@
"winston": "^3.2.1"
},
"devDependencies": {
"@backstage/cli": "^0.17.1-next.0",
"@backstage/test-utils": "^1.0.2-next.0",
"@backstage/cli": "^0.17.1-next.1",
"@backstage/test-utils": "^1.1.0-next.1",
"@graphql-codegen/cli": "^2.3.1",
"@graphql-codegen/graphql-modules-preset": "^2.3.2",
"@graphql-codegen/typescript": "^2.4.2",
+10
View File
@@ -1,5 +1,15 @@
# @backstage/plugin-catalog-import
## 0.8.8-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
- @backstage/integration-react@1.1.0-next.1
## 0.8.8-next.0
### Patch Changes
+9 -9
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-catalog-import",
"description": "A Backstage plugin the helps you import entities into your catalog",
"version": "0.8.8-next.0",
"version": "0.8.8-next.1",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -37,12 +37,12 @@
"@backstage/catalog-client": "^1.0.1",
"@backstage/catalog-model": "^1.0.1",
"@backstage/config": "^1.0.0",
"@backstage/core-components": "^0.9.3",
"@backstage/core-plugin-api": "^1.0.1",
"@backstage/core-components": "^0.9.4-next.0",
"@backstage/core-plugin-api": "^1.0.2-next.0",
"@backstage/errors": "^1.0.0",
"@backstage/integration": "^1.2.0-next.0",
"@backstage/integration-react": "^1.1.0-next.0",
"@backstage/plugin-catalog-react": "^1.1.0-next.0",
"@backstage/integration-react": "^1.1.0-next.1",
"@backstage/plugin-catalog-react": "^1.1.0-next.1",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "4.0.0-alpha.57",
@@ -60,10 +60,10 @@
"react": "^16.13.1 || ^17.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.17.1-next.0",
"@backstage/core-app-api": "^1.0.1",
"@backstage/dev-utils": "^1.0.2-next.0",
"@backstage/test-utils": "^1.0.2-next.0",
"@backstage/cli": "^0.17.1-next.1",
"@backstage/core-app-api": "^1.0.2-next.0",
"@backstage/dev-utils": "^1.0.2-next.1",
"@backstage/test-utils": "^1.1.0-next.1",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@testing-library/react-hooks": "^8.0.0",
+10
View File
@@ -1,5 +1,15 @@
# @backstage/plugin-catalog-react
## 1.1.0-next.1
### Patch Changes
- 0418447669: Added menu parent role for menu items accessibility
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-permission-react@0.4.1-next.0
## 1.1.0-next.0
### Minor Changes
+7 -7
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-catalog-react",
"description": "A frontend library that helps other Backstage plugins interact with the catalog",
"version": "1.1.0-next.0",
"version": "1.1.0-next.1",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -36,13 +36,13 @@
"dependencies": {
"@backstage/catalog-client": "^1.0.1",
"@backstage/catalog-model": "^1.0.1",
"@backstage/core-components": "^0.9.3",
"@backstage/core-plugin-api": "^1.0.1",
"@backstage/core-components": "^0.9.4-next.0",
"@backstage/core-plugin-api": "^1.0.2-next.0",
"@backstage/errors": "^1.0.0",
"@backstage/integration": "^1.2.0-next.0",
"@backstage/plugin-catalog-common": "^1.0.1",
"@backstage/plugin-permission-common": "^0.6.0",
"@backstage/plugin-permission-react": "^0.4.0",
"@backstage/plugin-permission-react": "^0.4.1-next.0",
"@backstage/theme": "^0.2.15",
"@backstage/types": "^1.0.0",
"@backstage/version-bridge": "^1.0.1",
@@ -63,11 +63,11 @@
"react": "^16.13.1 || ^17.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.17.1-next.0",
"@backstage/core-app-api": "^1.0.1",
"@backstage/cli": "^0.17.1-next.1",
"@backstage/core-app-api": "^1.0.2-next.0",
"@backstage/plugin-catalog-common": "^1.0.1",
"@backstage/plugin-scaffolder-common": "^1.0.1",
"@backstage/test-utils": "^1.0.2-next.0",
"@backstage/test-utils": "^1.1.0-next.1",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@testing-library/react-hooks": "^8.0.0",
+11
View File
@@ -1,5 +1,16 @@
# @backstage/plugin-catalog
## 1.2.0-next.1
### Patch Changes
- 051fc60258: Lighthouse was reporting this button as having invalid aria- values, as the popover doesn't exist until clicked. This adds additional labels to the button to make it valid aria
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
- @backstage/integration-react@1.1.0-next.1
## 1.2.0-next.0
### Minor Changes
+10 -10
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-catalog",
"description": "The Backstage plugin for browsing the Backstage catalog",
"version": "1.2.0-next.0",
"version": "1.2.0-next.1",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -36,12 +36,12 @@
"dependencies": {
"@backstage/catalog-client": "^1.0.1",
"@backstage/catalog-model": "^1.0.1",
"@backstage/core-components": "^0.9.3",
"@backstage/core-plugin-api": "^1.0.1",
"@backstage/core-components": "^0.9.4-next.0",
"@backstage/core-plugin-api": "^1.0.2-next.0",
"@backstage/errors": "^1.0.0",
"@backstage/integration-react": "^1.1.0-next.0",
"@backstage/integration-react": "^1.1.0-next.1",
"@backstage/plugin-catalog-common": "^1.0.1",
"@backstage/plugin-catalog-react": "^1.1.0-next.0",
"@backstage/plugin-catalog-react": "^1.1.0-next.1",
"@backstage/plugin-search-common": "^0.3.3",
"@backstage/theme": "^0.2.15",
"@backstage/types": "^1.0.0",
@@ -60,11 +60,11 @@
"react": "^16.13.1 || ^17.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.17.1-next.0",
"@backstage/core-app-api": "^1.0.1",
"@backstage/dev-utils": "^1.0.2-next.0",
"@backstage/plugin-permission-react": "^0.4.0",
"@backstage/test-utils": "^1.0.2-next.0",
"@backstage/cli": "^0.17.1-next.1",
"@backstage/core-app-api": "^1.0.2-next.0",
"@backstage/dev-utils": "^1.0.2-next.1",
"@backstage/plugin-permission-react": "^0.4.1-next.0",
"@backstage/test-utils": "^1.1.0-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,13 @@
# @backstage/plugin-cicd-statistics-module-gitlab
## 0.1.1-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-cicd-statistics@0.1.7-next.1
## 0.1.1-next.0
### Patch Changes
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-cicd-statistics-module-gitlab",
"description": "CI/CD Statistics plugin module; Gitlab CICD",
"version": "0.1.1-next.0",
"version": "0.1.1-next.1",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -29,16 +29,16 @@
"postpack": "backstage-cli package postpack"
},
"dependencies": {
"@backstage/plugin-cicd-statistics": "^0.1.7-next.0",
"@backstage/plugin-cicd-statistics": "^0.1.7-next.1",
"@gitbeaker/browser": "^35.6.0",
"@gitbeaker/core": "^35.6.0",
"luxon": "^2.0.2",
"p-limit": "^4.0.0",
"@backstage/core-plugin-api": "^1.0.1",
"@backstage/core-plugin-api": "^1.0.2-next.0",
"@backstage/catalog-model": "^1.0.1"
},
"devDependencies": {
"@backstage/cli": "^0.17.1-next.0"
"@backstage/cli": "^0.17.1-next.1"
},
"files": [
"dist"
+8
View File
@@ -1,5 +1,13 @@
# @backstage/plugin-cicd-statistics
## 0.1.7-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
## 0.1.7-next.0
### Patch Changes
+3 -3
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-cicd-statistics",
"description": "A frontend plugin visualizing CI/CD pipeline statistics (build time)",
"version": "0.1.7-next.0",
"version": "0.1.7-next.1",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -38,8 +38,8 @@
},
"dependencies": {
"@backstage/catalog-model": "^1.0.1",
"@backstage/core-plugin-api": "^1.0.1",
"@backstage/plugin-catalog-react": "^1.1.0-next.0",
"@backstage/core-plugin-api": "^1.0.2-next.0",
"@backstage/plugin-catalog-react": "^1.1.0-next.1",
"@date-io/luxon": "^1.3.13",
"@material-ui/core": "^4.9.13",
"@material-ui/icons": "^4.11.2",
+9
View File
@@ -1,5 +1,14 @@
# @backstage/plugin-circleci
## 0.3.5-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
## 0.3.5-next.0
### Patch Changes
+8 -8
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-circleci",
"description": "A Backstage plugin that integrates towards Circle CI",
"version": "0.3.5-next.0",
"version": "0.3.5-next.1",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -36,9 +36,9 @@
},
"dependencies": {
"@backstage/catalog-model": "^1.0.1",
"@backstage/core-components": "^0.9.3",
"@backstage/core-plugin-api": "^1.0.1",
"@backstage/plugin-catalog-react": "^1.1.0-next.0",
"@backstage/core-components": "^0.9.4-next.0",
"@backstage/core-plugin-api": "^1.0.2-next.0",
"@backstage/plugin-catalog-react": "^1.1.0-next.1",
"@backstage/theme": "^0.2.15",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -55,10 +55,10 @@
"react": "^16.13.1 || ^17.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.17.1-next.0",
"@backstage/core-app-api": "^1.0.1",
"@backstage/dev-utils": "^1.0.2-next.0",
"@backstage/test-utils": "^1.0.2-next.0",
"@backstage/cli": "^0.17.1-next.1",
"@backstage/core-app-api": "^1.0.2-next.0",
"@backstage/dev-utils": "^1.0.2-next.1",
"@backstage/test-utils": "^1.1.0-next.1",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^14.0.0",
+9
View File
@@ -1,5 +1,14 @@
# @backstage/plugin-cloudbuild
## 0.3.5-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
## 0.3.5-next.0
### Patch Changes
+8 -8
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-cloudbuild",
"description": "A Backstage plugin that integrates towards Google Cloud Build",
"version": "0.3.5-next.0",
"version": "0.3.5-next.1",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -35,9 +35,9 @@
},
"dependencies": {
"@backstage/catalog-model": "^1.0.1",
"@backstage/core-components": "^0.9.3",
"@backstage/core-plugin-api": "^1.0.1",
"@backstage/plugin-catalog-react": "^1.1.0-next.0",
"@backstage/core-components": "^0.9.4-next.0",
"@backstage/core-plugin-api": "^1.0.2-next.0",
"@backstage/plugin-catalog-react": "^1.1.0-next.1",
"@backstage/theme": "^0.2.15",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -52,10 +52,10 @@
"react": "^16.13.1 || ^17.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.17.1-next.0",
"@backstage/core-app-api": "^1.0.1",
"@backstage/dev-utils": "^1.0.2-next.0",
"@backstage/test-utils": "^1.0.2-next.0",
"@backstage/cli": "^0.17.1-next.1",
"@backstage/core-app-api": "^1.0.2-next.0",
"@backstage/dev-utils": "^1.0.2-next.1",
"@backstage/test-utils": "^1.1.0-next.1",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^14.0.0",
+9
View File
@@ -1,5 +1,14 @@
# @backstage/plugin-code-climate
## 0.1.5-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
## 0.1.5-next.0
### Patch Changes
+7 -7
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-code-climate",
"version": "0.1.5-next.0",
"version": "0.1.5-next.1",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -24,9 +24,9 @@
},
"dependencies": {
"@backstage/catalog-model": "^1.0.1",
"@backstage/core-components": "^0.9.3",
"@backstage/core-plugin-api": "^1.0.1",
"@backstage/plugin-catalog-react": "^1.1.0-next.0",
"@backstage/core-components": "^0.9.4-next.0",
"@backstage/core-plugin-api": "^1.0.2-next.0",
"@backstage/plugin-catalog-react": "^1.1.0-next.1",
"@backstage/theme": "^0.2.15",
"@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.17.1-next.0",
"@backstage/dev-utils": "^1.0.2-next.0",
"@backstage/test-utils": "^1.0.2-next.0",
"@backstage/cli": "^0.17.1-next.1",
"@backstage/dev-utils": "^1.0.2-next.1",
"@backstage/test-utils": "^1.1.0-next.1",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^14.0.0",
+9
View File
@@ -1,5 +1,14 @@
# @backstage/plugin-code-coverage
## 0.1.32-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
## 0.1.32-next.0
### Patch Changes
+8 -8
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-code-coverage",
"description": "A Backstage plugin that helps you keep track of your code coverage",
"version": "0.1.32-next.0",
"version": "0.1.32-next.1",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -26,10 +26,10 @@
"dependencies": {
"@backstage/catalog-model": "^1.0.1",
"@backstage/config": "^1.0.0",
"@backstage/core-components": "^0.9.3",
"@backstage/core-plugin-api": "^1.0.1",
"@backstage/core-components": "^0.9.4-next.0",
"@backstage/core-plugin-api": "^1.0.2-next.0",
"@backstage/errors": "^1.0.0",
"@backstage/plugin-catalog-react": "^1.1.0-next.0",
"@backstage/plugin-catalog-react": "^1.1.0-next.1",
"@backstage/theme": "^0.2.15",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -46,10 +46,10 @@
"react": "^16.13.1 || ^17.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.17.1-next.0",
"@backstage/core-app-api": "^1.0.1",
"@backstage/dev-utils": "^1.0.2-next.0",
"@backstage/test-utils": "^1.0.2-next.0",
"@backstage/cli": "^0.17.1-next.1",
"@backstage/core-app-api": "^1.0.2-next.0",
"@backstage/dev-utils": "^1.0.2-next.1",
"@backstage/test-utils": "^1.1.0-next.1",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^14.0.0",
+8
View File
@@ -1,5 +1,13 @@
# @backstage/plugin-config-schema
## 0.1.28-next.0
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
## 0.1.27
### Patch Changes
+7 -7
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-config-schema",
"description": "A Backstage plugin that lets you browse the configuration schema of your app",
"version": "0.1.27",
"version": "0.1.28-next.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -25,8 +25,8 @@
},
"dependencies": {
"@backstage/config": "^1.0.0",
"@backstage/core-components": "^0.9.3",
"@backstage/core-plugin-api": "^1.0.1",
"@backstage/core-components": "^0.9.4-next.0",
"@backstage/core-plugin-api": "^1.0.2-next.0",
"@backstage/errors": "^1.0.0",
"@backstage/theme": "^0.2.15",
"@backstage/types": "^1.0.0",
@@ -41,10 +41,10 @@
"react": "^16.13.1 || ^17.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.17.1-next.0",
"@backstage/core-app-api": "^1.0.1",
"@backstage/dev-utils": "^1.0.2-next.0",
"@backstage/test-utils": "^1.0.2-next.0",
"@backstage/cli": "^0.17.1-next.1",
"@backstage/core-app-api": "^1.0.2-next.0",
"@backstage/dev-utils": "^1.0.2-next.1",
"@backstage/test-utils": "^1.1.0-next.1",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^14.0.0",
+8
View File
@@ -1,5 +1,13 @@
# @backstage/plugin-cost-insights
## 0.11.27-next.0
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
## 0.11.26
### Patch Changes
+7 -7
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-cost-insights",
"description": "A Backstage plugin that helps you keep track of your cloud spend",
"version": "0.11.26",
"version": "0.11.27-next.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -36,8 +36,8 @@
"dependencies": {
"@backstage/catalog-model": "^1.0.1",
"@backstage/config": "^1.0.0",
"@backstage/core-components": "^0.9.3",
"@backstage/core-plugin-api": "^1.0.1",
"@backstage/core-components": "^0.9.4-next.0",
"@backstage/core-plugin-api": "^1.0.2-next.0",
"@backstage/theme": "^0.2.15",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -60,10 +60,10 @@
"react": "^16.13.1 || ^17.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.17.1-next.0",
"@backstage/core-app-api": "^1.0.1",
"@backstage/dev-utils": "^1.0.2-next.0",
"@backstage/test-utils": "^1.0.2-next.0",
"@backstage/cli": "^0.17.1-next.1",
"@backstage/core-app-api": "^1.0.2-next.0",
"@backstage/dev-utils": "^1.0.2-next.1",
"@backstage/test-utils": "^1.1.0-next.1",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^14.0.0",
@@ -26,10 +26,10 @@
"@backstage/plugin-permission-common": "^0.6.0"
},
"devDependencies": {
"@backstage/cli": "^0.17.1-next.0",
"@backstage/core-app-api": "^1.0.1",
"@backstage/dev-utils": "^1.0.2-next.0",
"@backstage/test-utils": "^1.0.2-next.0",
"@backstage/cli": "^0.17.1-next.1",
"@backstage/core-app-api": "^1.0.2-next.0",
"@backstage/dev-utils": "^1.0.2-next.1",
"@backstage/test-utils": "^1.1.0-next.1",
"@types/node": "^16.11.26",
"msw": "^0.35.0",
"cross-fetch": "^3.1.5"
+9
View File
@@ -0,0 +1,9 @@
# @internal/plugin-todo-list
## 1.0.1-next.0
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
+7 -7
View File
@@ -1,6 +1,6 @@
{
"name": "@internal/plugin-todo-list",
"version": "1.0.0",
"version": "1.0.1-next.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -21,8 +21,8 @@
"clean": "backstage-cli package clean"
},
"dependencies": {
"@backstage/core-components": "^0.9.3",
"@backstage/core-plugin-api": "^1.0.1",
"@backstage/core-components": "^0.9.4-next.0",
"@backstage/core-plugin-api": "^1.0.2-next.0",
"@backstage/theme": "^0.2.15",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -33,10 +33,10 @@
"react": "^16.13.1 || ^17.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.17.1-next.0",
"@backstage/core-app-api": "^1.0.1",
"@backstage/dev-utils": "^1.0.2-next.0",
"@backstage/test-utils": "^1.0.2-next.0",
"@backstage/cli": "^0.17.1-next.1",
"@backstage/core-app-api": "^1.0.2-next.0",
"@backstage/dev-utils": "^1.0.2-next.1",
"@backstage/test-utils": "^1.1.0-next.1",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^14.0.0",
+7
View File
@@ -1,5 +1,12 @@
# @backstage/plugin-explore-react
## 0.0.17-next.0
### Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.0.2-next.0
## 0.0.16
### Patch Changes
+5 -5
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-explore-react",
"description": "A frontend library for Backstage plugins that want to interact with the explore plugin",
"version": "0.0.16",
"version": "0.0.17-next.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -33,12 +33,12 @@
"start": "backstage-cli package start"
},
"dependencies": {
"@backstage/core-plugin-api": "^1.0.1"
"@backstage/core-plugin-api": "^1.0.2-next.0"
},
"devDependencies": {
"@backstage/cli": "^0.17.1-next.0",
"@backstage/dev-utils": "^1.0.2-next.0",
"@backstage/test-utils": "^1.0.2-next.0",
"@backstage/cli": "^0.17.1-next.1",
"@backstage/dev-utils": "^1.0.2-next.1",
"@backstage/test-utils": "^1.1.0-next.1",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^14.0.0",
+10
View File
@@ -1,5 +1,15 @@
# @backstage/plugin-explore
## 0.3.36-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
- @backstage/plugin-explore-react@0.0.17-next.0
## 0.3.36-next.0
### Patch Changes
+9 -9
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-explore",
"description": "A Backstage plugin for building an exploration page of your software ecosystem",
"version": "0.3.36-next.0",
"version": "0.3.36-next.1",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -35,10 +35,10 @@
},
"dependencies": {
"@backstage/catalog-model": "^1.0.1",
"@backstage/core-components": "^0.9.3",
"@backstage/core-plugin-api": "^1.0.1",
"@backstage/plugin-catalog-react": "^1.1.0-next.0",
"@backstage/plugin-explore-react": "^0.0.16",
"@backstage/core-components": "^0.9.4-next.0",
"@backstage/core-plugin-api": "^1.0.2-next.0",
"@backstage/plugin-catalog-react": "^1.1.0-next.1",
"@backstage/plugin-explore-react": "^0.0.17-next.0",
"@backstage/theme": "^0.2.15",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -53,10 +53,10 @@
"react": "^16.13.1 || ^17.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.17.1-next.0",
"@backstage/core-app-api": "^1.0.1",
"@backstage/dev-utils": "^1.0.2-next.0",
"@backstage/test-utils": "^1.0.2-next.0",
"@backstage/cli": "^0.17.1-next.1",
"@backstage/core-app-api": "^1.0.2-next.0",
"@backstage/dev-utils": "^1.0.2-next.1",
"@backstage/test-utils": "^1.1.0-next.1",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^14.0.0",
+9
View File
@@ -1,5 +1,14 @@
# @backstage/plugin-firehydrant
## 0.1.22-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
## 0.1.22-next.0
### Patch Changes
+8 -8
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-firehydrant",
"description": "A Backstage plugin that integrates towards FireHydrant",
"version": "0.1.22-next.0",
"version": "0.1.22-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.9.3",
"@backstage/core-plugin-api": "^1.0.1",
"@backstage/plugin-catalog-react": "^1.1.0-next.0",
"@backstage/core-components": "^0.9.4-next.0",
"@backstage/core-plugin-api": "^1.0.2-next.0",
"@backstage/plugin-catalog-react": "^1.1.0-next.1",
"@backstage/theme": "^0.2.15",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -39,10 +39,10 @@
"react": "^16.13.1 || ^17.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.17.1-next.0",
"@backstage/core-app-api": "^1.0.1",
"@backstage/dev-utils": "^1.0.2-next.0",
"@backstage/test-utils": "^1.0.2-next.0",
"@backstage/cli": "^0.17.1-next.1",
"@backstage/core-app-api": "^1.0.2-next.0",
"@backstage/dev-utils": "^1.0.2-next.1",
"@backstage/test-utils": "^1.1.0-next.1",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^14.0.0",
+9
View File
@@ -1,5 +1,14 @@
# @backstage/plugin-fossa
## 0.2.37-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.4-next.0
- @backstage/core-plugin-api@1.0.2-next.0
- @backstage/plugin-catalog-react@1.1.0-next.1
## 0.2.37-next.0
### Patch Changes
+8 -8
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-fossa",
"description": "A Backstage plugin that integrates towards FOSSA",
"version": "0.2.37-next.0",
"version": "0.2.37-next.1",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -36,10 +36,10 @@
},
"dependencies": {
"@backstage/catalog-model": "^1.0.1",
"@backstage/core-components": "^0.9.3",
"@backstage/core-plugin-api": "^1.0.1",
"@backstage/core-components": "^0.9.4-next.0",
"@backstage/core-plugin-api": "^1.0.2-next.0",
"@backstage/errors": "^1.0.0",
"@backstage/plugin-catalog-react": "^1.1.0-next.0",
"@backstage/plugin-catalog-react": "^1.1.0-next.1",
"@backstage/theme": "^0.2.15",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -53,10 +53,10 @@
"react": "^16.13.1 || ^17.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.17.1-next.0",
"@backstage/core-app-api": "^1.0.1",
"@backstage/dev-utils": "^1.0.2-next.0",
"@backstage/test-utils": "^1.0.2-next.0",
"@backstage/cli": "^0.17.1-next.1",
"@backstage/core-app-api": "^1.0.2-next.0",
"@backstage/dev-utils": "^1.0.2-next.1",
"@backstage/test-utils": "^1.1.0-next.1",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^14.0.0",

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