Version Packages (next)

This commit is contained in:
github-actions[bot]
2025-03-11 16:50:56 +00:00
parent 936e005b3c
commit 68af69b2b8
244 changed files with 4154 additions and 126 deletions
+55
View File
@@ -198,67 +198,122 @@
},
"changesets": [
"angry-plants-peel",
"brave-ears-bow",
"brave-wasps-fry",
"breezy-socks-cross",
"bright-pets-agree",
"calm-bottles-rest",
"calm-files-hunt",
"catch-you-mamma",
"chatty-turkeys-brake",
"chilled-bugs-draw",
"chilled-rocks-rule",
"cool-moons-lay",
"create-app-1740489353",
"create-app-1741106897",
"cuddly-apricots-fetch",
"dependabot-64f57a3",
"dirty-turkeys-remain",
"dull-coats-help",
"dull-olives-itch",
"early-buses-lick",
"fair-pianos-add",
"fair-rabbits-greet",
"famous-ladybugs-swim",
"famous-wombats-explain",
"fluffy-ghosts-drop",
"four-badgers-buy",
"four-readers-vanish",
"friendly-garlics-explain",
"gentle-lemons-explain",
"gentle-students-glow",
"giant-phones-melt",
"gold-donkeys-flow",
"good-lions-tease",
"gorgeous-keys-shop",
"grumpy-humans-brush",
"hip-ladybugs-behave",
"honest-ravens-stare",
"hungry-walls-pump",
"itchy-houses-whisper",
"itchy-moose-raise",
"itchy-schools-camp",
"itchy-shoes-rest",
"kind-paws-visit",
"kind-waves-impress",
"late-hairs-kneel",
"lazy-apricots-whisper",
"lazy-deers-dance",
"light-turtles-talk",
"loud-clocks-obey",
"lucky-ducks-attend",
"many-insects-add",
"many-rockets-marry",
"many-wolves-own",
"mira-color-like",
"nasty-lemons-scream",
"nervous-cups-happen",
"nice-dolphins-own",
"nice-ghosts-clean",
"nine-hounds-rest",
"ninety-experts-cheat",
"ninety-teachers-tease",
"old-avocados-grow",
"old-ladybugs-report",
"olive-carrots-move",
"olive-dodos-applaud",
"olive-dragons-guess",
"olive-planes-pay",
"poor-bats-retire",
"poor-phones-switch",
"popular-bobcats-occur",
"pretty-chicken-eat",
"quick-schools-grin",
"real-hounds-mate",
"real-turkeys-hunt",
"red-hotels-destroy",
"renovate-e8e0621",
"rich-berries-glow",
"rich-sloths-hang",
"rotten-bees-design",
"selfish-cheetahs-sip",
"shiny-ways-develop",
"short-moose-attend",
"shy-geckos-leave",
"shy-knives-matter",
"silly-otters-hang",
"silly-taxis-suffer",
"silver-camels-brake",
"silver-fishes-shop",
"six-shrimps-breathe",
"six-taxis-film",
"six-teachers-prove",
"sixty-ducks-bathe",
"slimy-rockets-jog",
"small-onions-live",
"smart-pens-change",
"stale-frogs-wonder",
"strange-eels-turn",
"strange-masks-type",
"sweet-zoos-beam",
"swift-rings-switch",
"swift-worms-behave",
"tall-falcons-juggle",
"tall-meals-prove",
"techdocs-four-needles-switch",
"techdocs-late-ants-remain",
"techdocs-slow-zebras-camp",
"ten-impalas-hope",
"thick-deers-destroy",
"thin-books-rest",
"thin-experts-sing",
"thin-steaks-trade",
"three-bears-heal",
"tidy-ads-cover",
"tiny-llamas-boil",
"unlucky-cups-sell",
"weak-lemons-sing",
"wicked-dancers-count",
"young-gifts-know"
]
}
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "root",
"version": "1.37.0-next.1",
"version": "1.37.0-next.2",
"private": true,
"repository": {
"type": "git",
+42
View File
@@ -1,5 +1,47 @@
# @backstage/app-defaults
## 1.6.0-next.1
### Minor Changes
- 12f8e01: **BREAKING**: The default `DiscoveryApi` implementation has been switched to use `FrontendHostDiscovery`, which adds support for the `discovery.endpoints` configuration.
This is marked as a breaking change because it will cause any existing `discovery.endpoints` configuration to be picked up and used, which may break existing setups.
For example, consider the following configuration:
```yaml
app:
baseUrl: https://backstage.acme.org
backend:
baseUrl: https://backstage.internal.acme.org
discovery:
endpoints:
- target: https://catalog.internal.acme.org/api/{{pluginId}}
plugins: [catalog]
```
This will now cause requests from the frontend towards the `catalog` plugin to be routed to `https://catalog.internal.acme.org/api/catalog`, but this might not be reachable from the frontend. To fix this, you should update the `discovery.endpoints` configuration to only override the internal URL of the plugin:
```yaml
discovery:
endpoints:
- target:
internal: https://catalog.internal.acme.org/api/{{pluginId}}
plugins: [catalog]
```
### Patch Changes
- Updated dependencies
- @backstage/core-app-api@1.16.0-next.0
- @backstage/core-components@0.16.5-next.1
- @backstage/core-plugin-api@1.10.4
- @backstage/theme@0.6.4
- @backstage/plugin-permission-react@0.4.31
## 1.5.18-next.0
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/app-defaults",
"version": "1.5.18-next.0",
"version": "1.6.0-next.1",
"description": "Provides the default wiring of a Backstage App",
"backstage": {
"role": "web-library"
@@ -1,5 +1,13 @@
# app-next-example-plugin
## 0.0.21-next.2
### Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.10.0-next.2
- @backstage/core-components@0.16.5-next.1
## 0.0.21-next.1
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "app-next-example-plugin",
"version": "0.0.21-next.1",
"version": "0.0.21-next.2",
"description": "Backstage internal example plugin",
"backstage": {
"role": "frontend-plugin",
+45
View File
@@ -1,5 +1,50 @@
# example-app-next
## 0.0.21-next.2
### Patch Changes
- Updated dependencies
- @backstage/plugin-catalog@1.28.0-next.2
- @backstage/frontend-app-api@0.11.0-next.2
- @backstage/frontend-defaults@0.2.0-next.2
- @backstage/frontend-plugin-api@0.10.0-next.2
- @backstage/cli@0.31.0-next.1
- @backstage/core-app-api@1.16.0-next.0
- @backstage/plugin-catalog-react@1.16.0-next.2
- @backstage/core-compat-api@0.4.0-next.2
- @backstage/plugin-signals@0.0.17-next.2
- @backstage/plugin-app@0.1.7-next.2
- @backstage/core-components@0.16.5-next.1
- @backstage/plugin-scaffolder-react@1.14.6-next.2
- @backstage/app-defaults@1.6.0-next.1
- @backstage/plugin-scaffolder@1.29.0-next.2
- @backstage/plugin-api-docs@0.12.5-next.2
- @backstage/plugin-catalog-graph@0.4.17-next.2
- @backstage/plugin-catalog-import@0.12.11-next.2
- @backstage/plugin-org@0.6.37-next.2
- @backstage/plugin-techdocs@1.12.4-next.2
- @backstage/plugin-user-settings@0.8.20-next.2
- @backstage/plugin-search-react@1.8.7-next.2
- @backstage/plugin-app-visualizer@0.1.17-next.2
- @backstage/plugin-catalog-unprocessed-entities@0.2.15-next.2
- @backstage/plugin-home@0.8.6-next.2
- @backstage/plugin-kubernetes@0.12.5-next.2
- @backstage/plugin-notifications@0.5.3-next.2
- @backstage/plugin-search@1.4.24-next.2
- @backstage/plugin-techdocs-module-addons-contrib@1.1.22-next.2
- @backstage/plugin-techdocs-react@1.2.15-next.2
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/core-plugin-api@1.10.4
- @backstage/integration-react@1.2.5-next.0
- @backstage/theme@0.6.4
- @backstage/plugin-auth-react@0.1.13-next.1
- @backstage/plugin-catalog-common@1.1.3
- @backstage/plugin-kubernetes-cluster@0.0.23-next.2
- @backstage/plugin-permission-react@0.4.31
- @backstage/plugin-search-common@1.2.17
## 0.0.21-next.1
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "example-app-next",
"version": "0.0.21-next.1",
"version": "0.0.21-next.2",
"backstage": {
"role": "frontend"
},
+41
View File
@@ -1,5 +1,46 @@
# example-app
## 0.2.107-next.2
### Patch Changes
- Updated dependencies
- @backstage/plugin-catalog@1.28.0-next.2
- @backstage/frontend-app-api@0.11.0-next.2
- @backstage/cli@0.31.0-next.1
- @backstage/core-app-api@1.16.0-next.0
- @backstage/plugin-catalog-react@1.16.0-next.2
- @backstage/plugin-signals@0.0.17-next.2
- @backstage/core-components@0.16.5-next.1
- @backstage/plugin-scaffolder-react@1.14.6-next.2
- @backstage/app-defaults@1.6.0-next.1
- @backstage/plugin-scaffolder@1.29.0-next.2
- @backstage/plugin-api-docs@0.12.5-next.2
- @backstage/plugin-catalog-graph@0.4.17-next.2
- @backstage/plugin-catalog-import@0.12.11-next.2
- @backstage/plugin-org@0.6.37-next.2
- @backstage/plugin-techdocs@1.12.4-next.2
- @backstage/plugin-user-settings@0.8.20-next.2
- @backstage/plugin-search-react@1.8.7-next.2
- @backstage/plugin-catalog-unprocessed-entities@0.2.15-next.2
- @backstage/plugin-devtools@0.1.25-next.2
- @backstage/plugin-home@0.8.6-next.2
- @backstage/plugin-kubernetes@0.12.5-next.2
- @backstage/plugin-notifications@0.5.3-next.2
- @backstage/plugin-search@1.4.24-next.2
- @backstage/plugin-techdocs-module-addons-contrib@1.1.22-next.2
- @backstage/plugin-techdocs-react@1.2.15-next.2
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/core-plugin-api@1.10.4
- @backstage/integration-react@1.2.5-next.0
- @backstage/theme@0.6.4
- @backstage/plugin-auth-react@0.1.13-next.1
- @backstage/plugin-catalog-common@1.1.3
- @backstage/plugin-kubernetes-cluster@0.0.23-next.2
- @backstage/plugin-permission-react@0.4.31
- @backstage/plugin-search-common@1.2.17
## 0.2.107-next.1
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "example-app",
"version": "0.2.107-next.1",
"version": "0.2.107-next.2",
"backstage": {
"role": "frontend"
},
+14
View File
@@ -1,5 +1,19 @@
# @backstage/backend-app-api
## 1.2.1-next.2
### Patch Changes
- Updated dependencies
- @backstage/config-loader@1.10.0-next.0
- @backstage/backend-plugin-api@1.2.1-next.1
- @backstage/cli-common@0.1.15
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/plugin-auth-node@0.6.1-next.1
- @backstage/plugin-permission-node@0.8.9-next.1
## 1.2.1-next.1
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/backend-app-api",
"version": "1.2.1-next.1",
"version": "1.2.1-next.2",
"description": "Core API used by Backstage backend apps",
"backstage": {
"role": "node-library"
+21
View File
@@ -1,5 +1,26 @@
# @backstage/backend-defaults
## 0.8.2-next.2
### Patch Changes
- 12f8e01: The `discovery.endpoints` configuration no longer requires both `internal` and `external` target when using the object form, instead falling back to the default.
- Updated dependencies
- @backstage/config-loader@1.10.0-next.0
- @backstage/integration@1.16.2-next.0
- @backstage/plugin-events-node@0.4.9-next.2
- @backstage/backend-app-api@1.2.1-next.2
- @backstage/backend-dev-utils@0.1.5
- @backstage/backend-plugin-api@1.2.1-next.1
- @backstage/cli-common@0.1.15
- @backstage/cli-node@0.2.13
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/integration-aws-node@0.1.15
- @backstage/types@1.2.1
- @backstage/plugin-auth-node@0.6.1-next.1
- @backstage/plugin-permission-node@0.8.9-next.1
## 0.8.2-next.1
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/backend-defaults",
"version": "0.8.2-next.1",
"version": "0.8.2-next.2",
"description": "Backend defaults used by Backstage backend apps",
"backstage": {
"role": "node-library"
@@ -1,5 +1,29 @@
# @backstage/backend-dynamic-feature-service
## 0.6.1-next.2
### Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.8.0-next.2
- @backstage/plugin-catalog-backend@1.32.0-next.2
- @backstage/config-loader@1.10.0-next.0
- @backstage/backend-defaults@0.8.2-next.2
- @backstage/plugin-events-backend@0.4.4-next.2
- @backstage/plugin-events-node@0.4.9-next.2
- @backstage/backend-plugin-api@1.2.1-next.1
- @backstage/cli-common@0.1.15
- @backstage/cli-node@0.2.13
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/plugin-app-node@0.1.31-next.2
- @backstage/plugin-auth-node@0.6.1-next.1
- @backstage/plugin-permission-common@0.8.4
- @backstage/plugin-permission-node@0.8.9-next.1
- @backstage/plugin-search-backend-node@1.3.9-next.1
- @backstage/plugin-search-common@1.2.17
## 0.6.1-next.1
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/backend-dynamic-feature-service",
"version": "0.6.1-next.1",
"version": "0.6.1-next.2",
"description": "Backstage dynamic feature service",
"backstage": {
"role": "node-library"
+38
View File
@@ -1,5 +1,43 @@
# example-backend-legacy
## 0.2.108-next.2
### Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-backend-module-gitlab@0.8.1-next.2
- @backstage/plugin-scaffolder-backend@1.31.0-next.2
- @backstage/plugin-catalog-backend@1.32.0-next.2
- @backstage/plugin-techdocs-backend@1.11.7-next.2
- @backstage/backend-defaults@0.8.2-next.2
- @backstage/integration@1.16.2-next.0
- @backstage/plugin-events-backend@0.4.4-next.2
- @backstage/plugin-events-node@0.4.9-next.2
- @backstage/backend-plugin-api@1.2.1-next.1
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/plugin-auth-backend@0.24.4-next.2
- @backstage/plugin-auth-node@0.6.1-next.1
- @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.6-next.1
- @backstage/plugin-catalog-backend-module-unprocessed@0.5.6-next.1
- @backstage/plugin-catalog-node@1.16.1-next.1
- @backstage/plugin-kubernetes-backend@0.19.4-next.1
- @backstage/plugin-permission-backend@0.5.55-next.1
- @backstage/plugin-permission-common@0.8.4
- @backstage/plugin-permission-node@0.8.9-next.1
- @backstage/plugin-scaffolder-backend-module-confluence-to-markdown@0.3.7-next.2
- @backstage/plugin-scaffolder-backend-module-rails@0.5.7-next.2
- @backstage/plugin-search-backend@1.8.3-next.2
- @backstage/plugin-search-backend-module-catalog@0.3.2-next.1
- @backstage/plugin-search-backend-module-elasticsearch@1.6.6-next.1
- @backstage/plugin-search-backend-module-explore@0.2.9-next.1
- @backstage/plugin-search-backend-module-pg@0.5.42-next.1
- @backstage/plugin-search-backend-module-techdocs@0.3.7-next.2
- @backstage/plugin-search-backend-node@1.3.9-next.1
- @backstage/plugin-signals-backend@0.3.2-next.2
- @backstage/plugin-signals-node@0.1.18-next.2
## 0.2.108-next.1
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "example-backend-legacy",
"version": "0.2.108-next.1",
"version": "0.2.108-next.2",
"backstage": {
"role": "backend"
},
+15
View File
@@ -1,5 +1,20 @@
# @backstage/backend-test-utils
## 1.3.1-next.2
### Patch Changes
- 37c6510: Moved `@types/jest` to `devDependencies`.
- Updated dependencies
- @backstage/backend-defaults@0.8.2-next.2
- @backstage/plugin-events-node@0.4.9-next.2
- @backstage/backend-app-api@1.2.1-next.2
- @backstage/backend-plugin-api@1.2.1-next.1
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/plugin-auth-node@0.6.1-next.1
## 1.3.1-next.1
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/backend-test-utils",
"version": "1.3.1-next.1",
"version": "1.3.1-next.2",
"description": "Test helpers library for Backstage backends",
"backstage": {
"role": "node-library"
+38
View File
@@ -1,5 +1,43 @@
# example-backend
## 0.0.36-next.2
### Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-backend@1.31.0-next.2
- @backstage/plugin-catalog-backend@1.32.0-next.2
- @backstage/plugin-techdocs-backend@1.11.7-next.2
- @backstage/plugin-scaffolder-backend-module-github@0.6.1-next.2
- @backstage/backend-defaults@0.8.2-next.2
- @backstage/plugin-events-backend@0.4.4-next.2
- @backstage/backend-plugin-api@1.2.1-next.1
- @backstage/catalog-model@1.7.3
- @backstage/plugin-app-backend@0.5.0-next.2
- @backstage/plugin-auth-backend@0.24.4-next.2
- @backstage/plugin-auth-backend-module-github-provider@0.3.1-next.1
- @backstage/plugin-auth-backend-module-guest-provider@0.2.6-next.1
- @backstage/plugin-auth-node@0.6.1-next.1
- @backstage/plugin-catalog-backend-module-backstage-openapi@0.5.0-next.1
- @backstage/plugin-catalog-backend-module-openapi@0.2.8-next.2
- @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.6-next.1
- @backstage/plugin-catalog-backend-module-unprocessed@0.5.6-next.1
- @backstage/plugin-devtools-backend@0.5.3-next.2
- @backstage/plugin-kubernetes-backend@0.19.4-next.1
- @backstage/plugin-notifications-backend@0.5.4-next.2
- @backstage/plugin-permission-backend@0.5.55-next.1
- @backstage/plugin-permission-backend-module-allow-all-policy@0.2.6-next.1
- @backstage/plugin-permission-common@0.8.4
- @backstage/plugin-permission-node@0.8.9-next.1
- @backstage/plugin-proxy-backend@0.6.0-next.1
- @backstage/plugin-scaffolder-backend-module-notifications@0.1.8-next.2
- @backstage/plugin-search-backend@1.8.3-next.2
- @backstage/plugin-search-backend-module-catalog@0.3.2-next.1
- @backstage/plugin-search-backend-module-explore@0.2.9-next.1
- @backstage/plugin-search-backend-module-techdocs@0.3.7-next.2
- @backstage/plugin-search-backend-node@1.3.9-next.1
- @backstage/plugin-signals-backend@0.3.2-next.2
## 0.0.36-next.1
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "example-backend",
"version": "0.0.36-next.1",
"version": "0.0.36-next.2",
"backstage": {
"role": "backend"
},
+25
View File
@@ -1,5 +1,30 @@
# @backstage/cli
## 0.31.0-next.1
### Minor Changes
- 5b70679: **BREAKING**: ESLint warnings no longer trigger system exit codes like errors do.
Set the max number of warnings to `-1` during linting to enable the gradual adoption of new ESLint rules. To restore the previous behavior, include the `--max-warnings 0` flag in the `backstage-cli <repo|package> lint` command.
### Patch Changes
- e0b226b: build(deps): bump `esbuild` from 0.24.2 to 0.25.0
- 4d45498: Fixed the package prepack command so that it no longer produces unnecessary `index` entries in the `typesVersions` map, which could cause `/index` to be added when automatically adding imports.
- f8bd342: Fix a bug in the translation of the deprecated `--scope` option for the `new` command that could cause plugins to have `backstage-backstage-plugin` in their name.
- Updated dependencies
- @backstage/config-loader@1.10.0-next.0
- @backstage/integration@1.16.2-next.0
- @backstage/catalog-model@1.7.3
- @backstage/cli-common@0.1.15
- @backstage/cli-node@0.2.13
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/eslint-plugin@0.1.10
- @backstage/release-manifests@0.0.12
- @backstage/types@1.2.1
## 0.30.1-next.0
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/cli",
"version": "0.30.1-next.0",
"version": "0.31.0-next.1",
"description": "CLI for developing Backstage plugins and apps",
"backstage": {
"role": "cli"
+14
View File
@@ -1,5 +1,19 @@
# @backstage/config-loader
## 1.10.0-next.0
### Minor Changes
- 2fd73aa: The include transforms applied during config loading will now only apply to the known keys `$file`, `$env`, and `$include`. Any other key that begins with a `# @backstage/config-loader will now be passed through as is.
### Patch Changes
- Updated dependencies
- @backstage/cli-common@0.1.15
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
## 1.9.6
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/config-loader",
"version": "1.9.6",
"version": "1.10.0-next.0",
"description": "Config loading functionality used by Backstage backend, and CLI",
"backstage": {
"role": "node-library"
+15
View File
@@ -1,5 +1,20 @@
# @backstage/core-app-api
## 1.16.0-next.0
### Minor Changes
- 9262001: The default auth injection middleware for the `FetchApi` will now also take configuration under `discovery.endpoints` into consideration when deciding whether to include credentials or not.
- 12f8e01: The `discovery.endpoints` configuration no longer requires both `internal` and `external` target when using the object form, instead falling back to the default.
### Patch Changes
- Updated dependencies
- @backstage/config@1.3.2
- @backstage/core-plugin-api@1.10.4
- @backstage/types@1.2.1
- @backstage/version-bridge@1.0.11
## 1.15.5
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/core-app-api",
"version": "1.15.5",
"version": "1.16.0-next.0",
"description": "Core app API used by Backstage apps",
"backstage": {
"role": "web-library"
+15
View File
@@ -1,5 +1,20 @@
# @backstage/core-compat-api
## 0.4.0-next.2
### Minor Changes
- 8250ffe: **BREAKING**: Dropped support for the removed opaque `@backstage/ExtensionOverrides` and `@backstage/BackstagePlugin` types.
### Patch Changes
- e7fab55: Added the `entityPage` option to `convertLegacyApp`, which you can read more about in the [app migration docs](https://backstage.io/docs/frontend-system/building-apps/migrating#entity-pages).
- Updated dependencies
- @backstage/frontend-plugin-api@0.10.0-next.2
- @backstage/plugin-catalog-react@1.16.0-next.2
- @backstage/core-plugin-api@1.10.4
- @backstage/version-bridge@1.0.11
## 0.3.7-next.1
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/core-compat-api",
"version": "0.3.7-next.1",
"version": "0.4.0-next.2",
"backstage": {
"role": "web-library"
},
+12
View File
@@ -1,5 +1,17 @@
# @backstage/core-components
## 0.16.5-next.1
### Patch Changes
- 48aab13: Add i18n support for scaffolder-react plugin
- Updated dependencies
- @backstage/config@1.3.2
- @backstage/core-plugin-api@1.10.4
- @backstage/errors@1.2.7
- @backstage/theme@0.6.4
- @backstage/version-bridge@1.0.11
## 0.16.5-next.0
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/core-components",
"version": "0.16.5-next.0",
"version": "0.16.5-next.1",
"description": "Core components used by Backstage plugins and apps",
"backstage": {
"role": "web-library"
+12
View File
@@ -1,5 +1,17 @@
# @backstage/create-app
## 0.6.0-next.2
### Minor Changes
- 31731b0: Upgraded the TypeScript version in the template to `5.8`.
### Patch Changes
- 19e5c3f: Added link to multi-stage Dockerfile documentation as alternative option
- Updated dependencies
- @backstage/cli-common@0.1.15
## 0.5.26-next.1
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/create-app",
"version": "0.5.26-next.1",
"version": "0.6.0-next.2",
"description": "A CLI that helps you create your own Backstage app",
"backstage": {
"role": "cli"
+14
View File
@@ -1,5 +1,19 @@
# @backstage/dev-utils
## 1.1.8-next.2
### Patch Changes
- Updated dependencies
- @backstage/core-app-api@1.16.0-next.0
- @backstage/plugin-catalog-react@1.16.0-next.2
- @backstage/core-components@0.16.5-next.1
- @backstage/app-defaults@1.6.0-next.1
- @backstage/catalog-model@1.7.3
- @backstage/core-plugin-api@1.10.4
- @backstage/integration-react@1.2.5-next.0
- @backstage/theme@0.6.4
## 1.1.8-next.1
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/dev-utils",
"version": "1.1.8-next.1",
"version": "1.1.8-next.2",
"description": "Utilities for developing Backstage plugins.",
"backstage": {
"role": "web-library"
+9
View File
@@ -1,5 +1,14 @@
# e2e-test
## 0.2.26-next.2
### Patch Changes
- Updated dependencies
- @backstage/create-app@0.6.0-next.2
- @backstage/cli-common@0.1.15
- @backstage/errors@1.2.7
## 0.2.26-next.1
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "e2e-test",
"version": "0.2.26-next.1",
"version": "0.2.26-next.2",
"description": "E2E test for verifying Backstage packages",
"backstage": {
"role": "cli"
+27
View File
@@ -1,5 +1,32 @@
# @backstage/frontend-app-api
## 0.11.0-next.2
### Minor Changes
- abcdf44: **BREAKING**: The returned object from `createSpecializedApp` no longer contains a `createRoot()` method, and it instead now contains `apis` and `tree`.
You can replace existing usage of `app.createRoot()` with the following:
```ts
const root = tree.root.instance?.getData(coreExtensionData.reactElement);
```
- 8250ffe: **BREAKING**: Dropped support for the removed opaque `@backstage/ExtensionOverrides` and `@backstage/BackstagePlugin` types.
### Patch Changes
- 4d18b55: It's now possible to provide a middleware that wraps all extension factories by passing an `extensionFactoryMiddleware` to either `createApp()` or `createSpecializedApp()`.
- Updated dependencies
- @backstage/frontend-defaults@0.2.0-next.2
- @backstage/frontend-plugin-api@0.10.0-next.2
- @backstage/core-app-api@1.16.0-next.0
- @backstage/config@1.3.2
- @backstage/core-plugin-api@1.10.4
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/version-bridge@1.0.11
## 0.10.6-next.1
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/frontend-app-api",
"version": "0.10.6-next.1",
"version": "0.11.0-next.2",
"backstage": {
"role": "web-library"
},
+18
View File
@@ -1,5 +1,23 @@
# @backstage/frontend-defaults
## 0.2.0-next.2
### Minor Changes
- 8250ffe: **BREAKING**: Dropped support for the removed opaque `@backstage/ExtensionOverrides` and `@backstage/BackstagePlugin` types.
### Patch Changes
- 4d18b55: It's now possible to provide a middleware that wraps all extension factories by passing an `extensionFactoryMiddleware` to either `createApp()` or `createSpecializedApp()`.
- abcdf44: Internal refactor to match updated `createSpecializedApp`.
- e3f19db: Feature discovery and resolution logic used in `createApp` is now exposed via the `discoverAvailableFeatures` and `resolveAsyncFeatures` functions respectively.
- Updated dependencies
- @backstage/frontend-app-api@0.11.0-next.2
- @backstage/frontend-plugin-api@0.10.0-next.2
- @backstage/plugin-app@0.1.7-next.2
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
## 0.1.7-next.1
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/frontend-defaults",
"version": "0.1.7-next.1",
"version": "0.2.0-next.2",
"backstage": {
"role": "web-library"
},
+9
View File
@@ -1,5 +1,14 @@
# @internal/frontend
## 0.0.7-next.2
### Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.10.0-next.2
- @backstage/types@1.2.1
- @backstage/version-bridge@1.0.11
## 0.0.7-next.1
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@internal/frontend",
"version": "0.0.7-next.1",
"version": "0.0.7-next.2",
"backstage": {
"role": "web-library",
"inline": true
+18
View File
@@ -1,5 +1,23 @@
# @backstage/frontend-plugin-api
## 0.10.0-next.2
### Minor Changes
- 8250ffe: **BREAKING**: Removed the deprecated `ExtensionOverrides` and `FrontendFeature` types.
- 0d1a397: **BREAKING**: Removed deprecated variant of `createExtensionDataRef` where the ID is passed directly.
### Patch Changes
- 5aa7f2c: Added a new Utility API, `DialogApi`, which can be used to show dialogs in the React tree that can collect input from the user.
- e23f5e0: Added new `ExtensionMiddlewareFactory` type.
- a6cb67d: The extensions map for plugins created with `createFrontendPlugin` is now sorted alphabetically by ID in the TypeScript type.
- Updated dependencies
- @backstage/core-components@0.16.5-next.1
- @backstage/core-plugin-api@1.10.4
- @backstage/types@1.2.1
- @backstage/version-bridge@1.0.11
## 0.9.6-next.1
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/frontend-plugin-api",
"version": "0.9.6-next.1",
"version": "0.10.0-next.2",
"backstage": {
"role": "web-library"
},
+20
View File
@@ -1,5 +1,25 @@
# @backstage/frontend-test-utils
## 0.3.0-next.2
### Minor Changes
- bba525b: **BREAKING**: Removed deprecated `setupRequestMockHandlers` which was replaced by `registerMswTestHooks`.
### Patch Changes
- f861bfc: Added a `initialRouteEntries` option to `renderInTestApp`.
- f861bfc: The `renderInTestApp` helper now provides a default mock config with mock values for both `app.baseUrl` and `backend.baseUrl`.
- abcdf44: Internal refactor to match updated `createSpecializedApp`.
- Updated dependencies
- @backstage/frontend-app-api@0.11.0-next.2
- @backstage/frontend-plugin-api@0.10.0-next.2
- @backstage/plugin-app@0.1.7-next.2
- @backstage/test-utils@1.7.6-next.0
- @backstage/config@1.3.2
- @backstage/types@1.2.1
- @backstage/version-bridge@1.0.11
## 0.2.7-next.1
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/frontend-test-utils",
"version": "0.2.7-next.1",
"version": "0.3.0-next.2",
"backstage": {
"role": "web-library"
},
+9
View File
@@ -1,5 +1,14 @@
# @backstage/integration-react
## 1.2.5-next.0
### Patch Changes
- Updated dependencies
- @backstage/integration@1.16.2-next.0
- @backstage/config@1.3.2
- @backstage/core-plugin-api@1.10.4
## 1.2.4
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/integration-react",
"version": "1.2.4",
"version": "1.2.5-next.0",
"description": "Frontend package for managing integrations towards external systems",
"backstage": {
"role": "web-library"
+9
View File
@@ -1,5 +1,14 @@
# @backstage/integration
## 1.16.2-next.0
### Patch Changes
- 4f8b5b6: Allow signing git commits using configured private PGP key in scaffolder
- Updated dependencies
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
## 1.16.1
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/integration",
"version": "1.16.1",
"version": "1.16.2-next.0",
"description": "Helpers for managing integrations towards external systems",
"backstage": {
"role": "common-library"
+12
View File
@@ -1,5 +1,17 @@
# @backstage/repo-tools
## 0.13.1-next.2
### Patch Changes
- Updated dependencies
- @backstage/config-loader@1.10.0-next.0
- @backstage/backend-plugin-api@1.2.1-next.1
- @backstage/catalog-model@1.7.3
- @backstage/cli-common@0.1.15
- @backstage/cli-node@0.2.13
- @backstage/errors@1.2.7
## 0.13.1-next.1
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/repo-tools",
"version": "0.13.1-next.1",
"version": "0.13.1-next.2",
"description": "CLI for Backstage repo tooling ",
"backstage": {
"role": "cli"
@@ -1,5 +1,13 @@
# @internal/scaffolder
## 0.0.7-next.2
### Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.10.0-next.2
- @backstage/plugin-scaffolder-react@1.14.6-next.2
## 0.0.7-next.1
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@internal/scaffolder",
"version": "0.0.7-next.1",
"version": "0.0.7-next.2",
"backstage": {
"role": "web-library",
"inline": true
@@ -1,5 +1,24 @@
# techdocs-cli-embedded-app
## 0.2.106-next.2
### Patch Changes
- Updated dependencies
- @backstage/plugin-catalog@1.28.0-next.2
- @backstage/cli@0.31.0-next.1
- @backstage/core-app-api@1.16.0-next.0
- @backstage/core-components@0.16.5-next.1
- @backstage/app-defaults@1.6.0-next.1
- @backstage/test-utils@1.7.6-next.0
- @backstage/plugin-techdocs@1.12.4-next.2
- @backstage/plugin-techdocs-react@1.2.15-next.2
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/core-plugin-api@1.10.4
- @backstage/integration-react@1.2.5-next.0
- @backstage/theme@0.6.4
## 0.2.106-next.1
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "techdocs-cli-embedded-app",
"version": "0.2.106-next.1",
"version": "0.2.106-next.2",
"backstage": {
"role": "frontend"
},
+11
View File
@@ -1,5 +1,16 @@
# @techdocs/cli
## 1.9.1-next.2
### Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.8.2-next.2
- @backstage/catalog-model@1.7.3
- @backstage/cli-common@0.1.15
- @backstage/config@1.3.2
- @backstage/plugin-techdocs-node@1.13.1-next.2
## 1.9.1-next.1
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@techdocs/cli",
"version": "1.9.1-next.1",
"version": "1.9.1-next.2",
"description": "Utility CLI for managing TechDocs sites in Backstage.",
"backstage": {
"role": "cli"
+14
View File
@@ -1,5 +1,19 @@
# @backstage/test-utils
## 1.7.6-next.0
### Patch Changes
- 37c6510: Moved `@types/jest` to `devDependencies`.
- Updated dependencies
- @backstage/core-app-api@1.16.0-next.0
- @backstage/config@1.3.2
- @backstage/core-plugin-api@1.10.4
- @backstage/theme@0.6.4
- @backstage/types@1.2.1
- @backstage/plugin-permission-common@0.8.4
- @backstage/plugin-permission-react@0.4.31
## 1.7.5
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/test-utils",
"version": "1.7.5",
"version": "1.7.6-next.0",
"description": "Utilities to test Backstage plugins and apps.",
"backstage": {
"role": "web-library"
+16
View File
@@ -1,5 +1,21 @@
# @backstage/plugin-api-docs
## 0.12.5-next.2
### Patch Changes
- 74871cc: Use consistent Typography in Entity HasApisCard
- Updated dependencies
- @backstage/plugin-catalog@1.28.0-next.2
- @backstage/frontend-plugin-api@0.10.0-next.2
- @backstage/plugin-catalog-react@1.16.0-next.2
- @backstage/core-compat-api@0.4.0-next.2
- @backstage/core-components@0.16.5-next.1
- @backstage/catalog-model@1.7.3
- @backstage/core-plugin-api@1.10.4
- @backstage/plugin-catalog-common@1.1.3
- @backstage/plugin-permission-react@0.4.31
## 0.12.5-next.1
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-api-docs",
"version": "0.12.5-next.1",
"version": "0.12.5-next.2",
"description": "A Backstage plugin that helps represent API entities in the frontend",
"backstage": {
"role": "frontend-plugin",
+13
View File
@@ -1,5 +1,18 @@
# @backstage/plugin-app-backend
## 0.5.0-next.2
### Patch Changes
- Updated dependencies
- @backstage/config-loader@1.10.0-next.0
- @backstage/backend-plugin-api@1.2.1-next.1
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/plugin-app-node@0.1.31-next.2
- @backstage/plugin-auth-node@0.6.1-next.1
## 0.5.0-next.1
### Minor Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-app-backend",
"version": "0.5.0-next.1",
"version": "0.5.0-next.2",
"description": "A Backstage backend plugin that serves the Backstage frontend app",
"backstage": {
"role": "backend-plugin",
+8
View File
@@ -1,5 +1,13 @@
# @backstage/plugin-app-node
## 0.1.31-next.2
### Patch Changes
- Updated dependencies
- @backstage/config-loader@1.10.0-next.0
- @backstage/backend-plugin-api@1.2.1-next.1
## 0.1.31-next.1
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-app-node",
"version": "0.1.31-next.1",
"version": "0.1.31-next.2",
"description": "Node.js library for the app plugin",
"backstage": {
"role": "node-library",
+9
View File
@@ -1,5 +1,14 @@
# @backstage/plugin-app-visualizer
## 0.1.17-next.2
### Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.10.0-next.2
- @backstage/core-components@0.16.5-next.1
- @backstage/core-plugin-api@1.10.4
## 0.1.17-next.1
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-app-visualizer",
"version": "0.1.17-next.1",
"version": "0.1.17-next.2",
"description": "Visualizes the Backstage app structure",
"backstage": {
"role": "frontend-plugin",
+14
View File
@@ -1,5 +1,19 @@
# @backstage/plugin-app
## 0.1.7-next.2
### Patch Changes
- 0aa9d82: Added implementation of the new `DialogApi`.
- Updated dependencies
- @backstage/frontend-plugin-api@0.10.0-next.2
- @backstage/core-components@0.16.5-next.1
- @backstage/core-plugin-api@1.10.4
- @backstage/integration-react@1.2.5-next.0
- @backstage/theme@0.6.4
- @backstage/types@1.2.1
- @backstage/plugin-permission-react@0.4.31
## 0.1.7-next.1
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-app",
"version": "0.1.7-next.1",
"version": "0.1.7-next.2",
"backstage": {
"role": "frontend-plugin",
"pluginId": "app",
@@ -1,5 +1,15 @@
# @backstage/plugin-auth-backend-module-aws-alb-provider
## 0.4.1-next.2
### Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.2.1-next.1
- @backstage/errors@1.2.7
- @backstage/plugin-auth-backend@0.24.4-next.2
- @backstage/plugin-auth-node@0.6.1-next.1
## 0.4.1-next.1
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-auth-backend-module-aws-alb-provider",
"version": "0.4.1-next.1",
"version": "0.4.1-next.2",
"description": "The aws-alb provider module for the Backstage auth backend.",
"backstage": {
"role": "backend-plugin-module",
@@ -1,5 +1,14 @@
# @backstage/plugin-auth-backend-module-oauth2-provider
## 0.4.1-next.2
### Patch Changes
- ce15e30: Fixed repository url in `README.md`
- Updated dependencies
- @backstage/backend-plugin-api@1.2.1-next.1
- @backstage/plugin-auth-node@0.6.1-next.1
## 0.4.1-next.1
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-auth-backend-module-oauth2-provider",
"version": "0.4.1-next.1",
"version": "0.4.1-next.2",
"description": "The oauth2-provider backend module for the auth plugin.",
"backstage": {
"role": "backend-plugin-module",
@@ -1,5 +1,15 @@
# @backstage/plugin-auth-backend-module-oidc-provider
## 0.4.1-next.2
### Patch Changes
- ce15e30: Fixed repository url in `README.md`
- Updated dependencies
- @backstage/backend-plugin-api@1.2.1-next.1
- @backstage/plugin-auth-backend@0.24.4-next.2
- @backstage/plugin-auth-node@0.6.1-next.1
## 0.4.1-next.1
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-auth-backend-module-oidc-provider",
"version": "0.4.1-next.1",
"version": "0.4.1-next.2",
"description": "The oidc-provider backend module for the auth plugin.",
"backstage": {
"role": "backend-plugin-module",
@@ -1,5 +1,14 @@
# @backstage/plugin-auth-backend-module-okta-provider
## 0.2.1-next.2
### Patch Changes
- ce15e30: Fixed repository url in `README.md`
- Updated dependencies
- @backstage/backend-plugin-api@1.2.1-next.1
- @backstage/plugin-auth-node@0.6.1-next.1
## 0.2.1-next.1
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-auth-backend-module-okta-provider",
"version": "0.2.1-next.1",
"version": "0.2.1-next.2",
"description": "The okta-provider backend module for the auth plugin.",
"backstage": {
"role": "backend-plugin-module",
+31
View File
@@ -1,5 +1,36 @@
# @backstage/plugin-auth-backend
## 0.24.4-next.2
### Patch Changes
- Updated dependencies
- @backstage/plugin-auth-backend-module-oauth2-provider@0.4.1-next.2
- @backstage/plugin-auth-backend-module-oidc-provider@0.4.1-next.2
- @backstage/plugin-auth-backend-module-okta-provider@0.2.1-next.2
- @backstage/backend-plugin-api@1.2.1-next.1
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/plugin-auth-backend-module-atlassian-provider@0.4.1-next.1
- @backstage/plugin-auth-backend-module-auth0-provider@0.2.1-next.1
- @backstage/plugin-auth-backend-module-aws-alb-provider@0.4.1-next.2
- @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.6-next.1
- @backstage/plugin-auth-backend-module-bitbucket-provider@0.3.1-next.1
- @backstage/plugin-auth-backend-module-bitbucket-server-provider@0.2.1-next.1
- @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.4.1-next.1
- @backstage/plugin-auth-backend-module-gcp-iap-provider@0.4.1-next.1
- @backstage/plugin-auth-backend-module-github-provider@0.3.1-next.1
- @backstage/plugin-auth-backend-module-gitlab-provider@0.3.1-next.1
- @backstage/plugin-auth-backend-module-google-provider@0.3.1-next.1
- @backstage/plugin-auth-backend-module-microsoft-provider@0.3.1-next.1
- @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.6-next.1
- @backstage/plugin-auth-backend-module-onelogin-provider@0.3.1-next.1
- @backstage/plugin-auth-node@0.6.1-next.1
- @backstage/plugin-catalog-node@1.16.1-next.1
## 0.24.4-next.1
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-auth-backend",
"version": "0.24.4-next.1",
"version": "0.24.4-next.2",
"description": "A Backstage backend plugin that handles authentication",
"backstage": {
"role": "backend-plugin",
+9
View File
@@ -1,5 +1,14 @@
# @backstage/plugin-auth-react
## 0.1.13-next.1
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.16.5-next.1
- @backstage/core-plugin-api@1.10.4
- @backstage/errors@1.2.7
## 0.1.13-next.0
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-auth-react",
"version": "0.1.13-next.0",
"version": "0.1.13-next.1",
"description": "Web library for the auth plugin",
"backstage": {
"role": "web-library",
@@ -1,5 +1,12 @@
# @backstage/plugin-bitbucket-cloud-common
## 0.2.28-next.0
### Patch Changes
- Updated dependencies
- @backstage/integration@1.16.2-next.0
## 0.2.27
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-bitbucket-cloud-common",
"version": "0.2.27",
"version": "0.2.28-next.0",
"description": "Common functionalities for bitbucket-cloud plugins",
"backstage": {
"role": "common-library",
@@ -1,5 +1,21 @@
# @backstage/plugin-catalog-backend-module-aws
## 0.4.9-next.2
### Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.8.2-next.2
- @backstage/integration@1.16.2-next.0
- @backstage/backend-plugin-api@1.2.1-next.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/integration-aws-node@0.1.15
- @backstage/plugin-catalog-common@1.1.3
- @backstage/plugin-catalog-node@1.16.1-next.1
- @backstage/plugin-kubernetes-common@0.9.4-next.0
## 0.4.9-next.1
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-catalog-backend-module-aws",
"version": "0.4.9-next.1",
"version": "0.4.9-next.2",
"description": "A Backstage catalog backend module that helps integrate towards AWS",
"backstage": {
"role": "backend-plugin-module",
@@ -1,5 +1,16 @@
# @backstage/plugin-catalog-backend-module-azure
## 0.3.3-next.2
### Patch Changes
- Updated dependencies
- @backstage/integration@1.16.2-next.0
- @backstage/backend-plugin-api@1.2.1-next.1
- @backstage/config@1.3.2
- @backstage/plugin-catalog-common@1.1.3
- @backstage/plugin-catalog-node@1.16.1-next.1
## 0.3.3-next.1
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-catalog-backend-module-azure",
"version": "0.3.3-next.1",
"version": "0.3.3-next.2",
"description": "A Backstage catalog backend module that helps integrate towards Azure",
"backstage": {
"role": "backend-plugin-module",
@@ -1,5 +1,20 @@
# @backstage/plugin-catalog-backend-module-bitbucket-cloud
## 0.4.6-next.2
### Patch Changes
- Updated dependencies
- @backstage/integration@1.16.2-next.0
- @backstage/plugin-events-node@0.4.9-next.2
- @backstage/backend-plugin-api@1.2.1-next.1
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/plugin-bitbucket-cloud-common@0.2.28-next.0
- @backstage/plugin-catalog-common@1.1.3
- @backstage/plugin-catalog-node@1.16.1-next.1
## 0.4.6-next.1
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-catalog-backend-module-bitbucket-cloud",
"version": "0.4.6-next.1",
"version": "0.4.6-next.2",
"description": "A Backstage catalog backend module that helps integrate towards Bitbucket Cloud",
"backstage": {
"role": "backend-plugin-module",
@@ -1,5 +1,17 @@
# @backstage/plugin-catalog-backend-module-bitbucket-server
## 0.3.3-next.2
### Patch Changes
- Updated dependencies
- @backstage/integration@1.16.2-next.0
- @backstage/backend-plugin-api@1.2.1-next.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/plugin-catalog-node@1.16.1-next.1
## 0.3.3-next.1
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-catalog-backend-module-bitbucket-server",
"version": "0.3.3-next.1",
"version": "0.3.3-next.2",
"backstage": {
"role": "backend-plugin-module",
"pluginId": "catalog",
@@ -1,5 +1,16 @@
# @backstage/plugin-catalog-backend-module-gerrit
## 0.2.8-next.2
### Patch Changes
- Updated dependencies
- @backstage/integration@1.16.2-next.0
- @backstage/backend-plugin-api@1.2.1-next.1
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/plugin-catalog-node@1.16.1-next.1
## 0.2.8-next.1
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-catalog-backend-module-gerrit",
"version": "0.2.8-next.1",
"version": "0.2.8-next.2",
"backstage": {
"role": "backend-plugin-module",
"pluginId": "catalog",
@@ -1,5 +1,16 @@
# @backstage/plugin-catalog-backend-module-github-org
## 0.3.8-next.2
### Patch Changes
- Updated dependencies
- @backstage/plugin-events-node@0.4.9-next.2
- @backstage/backend-plugin-api@1.2.1-next.1
- @backstage/config@1.3.2
- @backstage/plugin-catalog-backend-module-github@0.7.11-next.2
- @backstage/plugin-catalog-node@1.16.1-next.1
## 0.3.8-next.1
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-catalog-backend-module-github-org",
"version": "0.3.8-next.1",
"version": "0.3.8-next.2",
"description": "The github-org backend module for the catalog plugin.",
"backstage": {
"role": "backend-plugin-module",
@@ -1,5 +1,20 @@
# @backstage/plugin-catalog-backend-module-github
## 0.7.11-next.2
### Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-backend@1.32.0-next.2
- @backstage/integration@1.16.2-next.0
- @backstage/plugin-events-node@0.4.9-next.2
- @backstage/backend-plugin-api@1.2.1-next.1
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/plugin-catalog-common@1.1.3
- @backstage/plugin-catalog-node@1.16.1-next.1
## 0.7.11-next.1
### Patch Changes

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