Version Packages

This commit is contained in:
github-actions[bot]
2024-08-20 08:56:34 +00:00
parent a0d830645a
commit 2a2c84ba68
538 changed files with 6372 additions and 2322 deletions
+20
View File
@@ -1,5 +1,25 @@
# @backstage/plugin-api-docs
## 0.11.8
### Patch Changes
- 770ba02: `ConsumingComponentsCard` and `ProvidingComponentsCard` will now optionally accept `columns` to override which table columns are displayed
- fe1fbb2: Migrating usages of the deprecated `createExtension` `v1` format to the newer `v2` format, and old `create*Extension` extension creators to blueprints.
- ebfeb40: Added `resolvers` prop to `AsyncApiDefinitionWidget`. This allows to override the default http/https resolvers, for example to add authentication to requests to internal schema registries.
- 4b6d2cb: Updated dependency `@graphiql/react` to `^0.23.0`.
- 6582799: Add `tableOptions` to all tables and additionally `title` to API tables.
- Updated dependencies
- @backstage/plugin-catalog@1.22.0
- @backstage/frontend-plugin-api@0.7.0
- @backstage/plugin-catalog-react@1.12.3
- @backstage/core-components@0.14.10
- @backstage/core-compat-api@0.2.8
- @backstage/catalog-model@1.6.0
- @backstage/core-plugin-api@1.9.3
- @backstage/plugin-catalog-common@1.0.26
- @backstage/plugin-permission-react@0.4.25
## 0.11.8-next.3
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-api-docs",
"version": "0.11.8-next.3",
"version": "0.11.8",
"description": "A Backstage plugin that helps represent API entities in the frontend",
"backstage": {
"role": "frontend-plugin",
+16
View File
@@ -1,5 +1,21 @@
# @backstage/plugin-app-backend
## 0.3.72
### Patch Changes
- 93095ee: Make sure node-fetch is version 2.7.0 or greater
- 6bd6fda: Deprecate `createRouter` and its options in favour of the new backend system.
- Updated dependencies
- @backstage/backend-plugin-api@0.8.0
- @backstage/backend-common@0.24.0
- @backstage/config-loader@1.9.0
- @backstage/plugin-auth-node@0.5.0
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/types@1.1.1
- @backstage/plugin-app-node@0.1.23
## 0.3.72-next.3
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-app-backend",
"version": "0.3.72-next.3",
"version": "0.3.72",
"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.23
### Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.8.0
- @backstage/config-loader@1.9.0
## 0.1.23-next.3
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-app-node",
"version": "0.1.23-next.3",
"version": "0.1.23",
"description": "Node.js library for the app plugin",
"backstage": {
"role": "node-library",
+12
View File
@@ -1,5 +1,17 @@
# @backstage/plugin-app-visualizer
## 0.1.9
### Patch Changes
- 72754db: Updated usage of `useRouteRef`, which can now always return `undefined`.
- c7603e8: Deprecate the old pattern of `create*Extension`, and replace it with the equivalent Blueprint implementation instead
- e493020: Fixing issue with the visualizer crashing when clicking on the detailed view because of `routeRef` parameters
- Updated dependencies
- @backstage/frontend-plugin-api@0.7.0
- @backstage/core-components@0.14.10
- @backstage/core-plugin-api@1.9.3
## 0.1.9-next.3
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-app-visualizer",
"version": "0.1.9-next.3",
"version": "0.1.9",
"description": "Visualizes the Backstage app structure",
"backstage": {
"role": "frontend-plugin",
@@ -1,5 +1,14 @@
# @backstage/plugin-auth-backend-module-atlassian-provider
## 0.2.4
### Patch Changes
- c8f1cae: Add `signIn` to authentication provider configuration schema
- Updated dependencies
- @backstage/backend-plugin-api@0.8.0
- @backstage/plugin-auth-node@0.5.0
## 0.2.4-next.3
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-auth-backend-module-atlassian-provider",
"version": "0.2.4-next.3",
"version": "0.2.4",
"description": "The atlassian-provider backend module for the auth plugin.",
"backstage": {
"role": "backend-plugin-module",
@@ -1,5 +1,39 @@
# @backstage/plugin-auth-backend-module-aws-alb-provider
## 0.1.15
### Patch Changes
- c8f1cae: Add `signIn` to authentication provider configuration schema
- 4ea354f: Added a `signer` configuration option to validate against the token claims. We strongly recommend that you set this value (typically on the format `arn:aws:elasticloadbalancing:us-east-2:123456789012:loadbalancer/app/my-load-balancer/1234567890123456`) to ensure that the auth provider can safely check the authenticity of any incoming tokens.
Example:
```diff
auth:
providers:
awsalb:
# this is the URL of the IdP you configured
issuer: 'https://example.okta.com/oauth2/default'
# this is the ARN of your ALB instance
+ signer: 'arn:aws:elasticloadbalancing:us-east-2:123456789012:loadbalancer/app/my-load-balancer/1234567890123456'
# this is the region where your ALB instance resides
region: 'us-west-2'
signIn:
resolvers:
# typically you would pick one of these
- resolver: emailMatchingUserEntityProfileEmail
- resolver: emailLocalPartMatchingUserEntityName
```
- 93095ee: Make sure node-fetch is version 2.7.0 or greater
- Updated dependencies
- @backstage/backend-plugin-api@0.8.0
- @backstage/backend-common@0.24.0
- @backstage/plugin-auth-backend@0.22.10
- @backstage/plugin-auth-node@0.5.0
- @backstage/errors@1.2.4
## 0.1.15-next.3
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-auth-backend-module-aws-alb-provider",
"version": "0.1.15-next.3",
"version": "0.1.15",
"description": "The aws-alb provider module for the Backstage auth backend.",
"backstage": {
"role": "backend-plugin-module",
@@ -1,5 +1,15 @@
# @backstage/plugin-auth-backend-module-azure-easyauth-provider
## 0.1.6
### Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.8.0
- @backstage/plugin-auth-node@0.5.0
- @backstage/catalog-model@1.6.0
- @backstage/errors@1.2.4
## 0.1.6-next.3
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-auth-backend-module-azure-easyauth-provider",
"version": "0.1.6-next.3",
"version": "0.1.6",
"description": "The azure-easyauth-provider backend module for the auth plugin.",
"backstage": {
"role": "backend-plugin-module",
@@ -1,5 +1,14 @@
# @backstage/plugin-auth-backend-module-bitbucket-provider
## 0.1.6
### Patch Changes
- c8f1cae: Add `signIn` to authentication provider configuration schema
- Updated dependencies
- @backstage/backend-plugin-api@0.8.0
- @backstage/plugin-auth-node@0.5.0
## 0.1.6-next.3
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-auth-backend-module-bitbucket-provider",
"version": "0.1.6-next.3",
"version": "0.1.6",
"description": "The bitbucket-provider backend module for the auth plugin.",
"backstage": {
"role": "backend-plugin-module",
@@ -1,5 +1,21 @@
# @backstage/plugin-auth-backend-module-cloudflare-access-provider
## 0.2.0
### Minor Changes
- 75d026a: Support for Cloudflare Custom Headers and Custom Cookie Auth Name
### Patch Changes
- c8f1cae: Add `signIn` to authentication provider configuration schema
- 93095ee: Make sure node-fetch is version 2.7.0 or greater
- Updated dependencies
- @backstage/backend-plugin-api@0.8.0
- @backstage/plugin-auth-node@0.5.0
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
## 0.2.0-next.3
### Minor Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-auth-backend-module-cloudflare-access-provider",
"version": "0.2.0-next.3",
"version": "0.2.0",
"description": "The cloudflare-access-provider backend module for the auth plugin.",
"backstage": {
"role": "backend-plugin-module",
@@ -1,5 +1,17 @@
# @backstage/plugin-auth-backend-module-gcp-iap-provider
## 0.2.18
### Patch Changes
- c8f1cae: Add `signIn` to authentication provider configuration schema
- 13a9c63: Corrected the documentation for the GCP IAP auth module and updated the configuration to follow proxy configuration conventions by ignoring authEnv
- Updated dependencies
- @backstage/backend-plugin-api@0.8.0
- @backstage/plugin-auth-node@0.5.0
- @backstage/errors@1.2.4
- @backstage/types@1.1.1
## 0.2.18-next.3
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-auth-backend-module-gcp-iap-provider",
"version": "0.2.18-next.3",
"version": "0.2.18",
"description": "A GCP IAP auth provider module for the Backstage auth backend",
"backstage": {
"role": "backend-plugin-module",
@@ -1,5 +1,14 @@
# @backstage/plugin-auth-backend-module-github-provider
## 0.1.20
### Patch Changes
- c8f1cae: Add `signIn` to authentication provider configuration schema
- Updated dependencies
- @backstage/backend-plugin-api@0.8.0
- @backstage/plugin-auth-node@0.5.0
## 0.1.20-next.3
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-auth-backend-module-github-provider",
"version": "0.1.20-next.3",
"version": "0.1.20",
"description": "The github-provider backend module for the auth plugin.",
"backstage": {
"role": "backend-plugin-module",
@@ -1,5 +1,14 @@
# @backstage/plugin-auth-backend-module-gitlab-provider
## 0.1.20
### Patch Changes
- c8f1cae: Add `signIn` to authentication provider configuration schema
- Updated dependencies
- @backstage/backend-plugin-api@0.8.0
- @backstage/plugin-auth-node@0.5.0
## 0.1.20-next.3
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-auth-backend-module-gitlab-provider",
"version": "0.1.20-next.3",
"version": "0.1.20",
"description": "The gitlab-provider backend module for the auth plugin.",
"backstage": {
"role": "backend-plugin-module",
@@ -1,5 +1,14 @@
# @backstage/plugin-auth-backend-module-google-provider
## 0.1.20
### Patch Changes
- c8f1cae: Add `signIn` to authentication provider configuration schema
- Updated dependencies
- @backstage/backend-plugin-api@0.8.0
- @backstage/plugin-auth-node@0.5.0
## 0.1.20-next.3
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-auth-backend-module-google-provider",
"version": "0.1.20-next.3",
"version": "0.1.20",
"description": "A Google auth provider module for the Backstage auth backend",
"backstage": {
"role": "backend-plugin-module",
@@ -1,5 +1,16 @@
# @backstage/plugin-auth-backend-module-guest-provider
## 0.1.9
### Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.8.0
- @backstage/backend-common@0.24.0
- @backstage/plugin-auth-node@0.5.0
- @backstage/catalog-model@1.6.0
- @backstage/errors@1.2.4
## 0.1.9-next.3
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-auth-backend-module-guest-provider",
"version": "0.1.9-next.3",
"version": "0.1.9",
"description": "The guest-provider backend module for the auth plugin.",
"backstage": {
"role": "backend-plugin-module",
@@ -1,5 +1,16 @@
# @backstage/plugin-auth-backend-module-microsoft-provider
## 0.1.18
### Patch Changes
- c8f1cae: Add `signIn` to authentication provider configuration schema
- 93095ee: Make sure node-fetch is version 2.7.0 or greater
- 39f36a9: Updated the Microsoft authenticator to accurately define required scopes, but to also omit the required and additional scopes when requesting resource scopes.
- Updated dependencies
- @backstage/backend-plugin-api@0.8.0
- @backstage/plugin-auth-node@0.5.0
## 0.1.18-next.3
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-auth-backend-module-microsoft-provider",
"version": "0.1.18-next.3",
"version": "0.1.18",
"description": "The microsoft-provider backend module for the auth plugin.",
"backstage": {
"role": "backend-plugin-module",
@@ -1,5 +1,14 @@
# @backstage/plugin-auth-backend-module-oauth2-provider
## 0.2.4
### Patch Changes
- c8f1cae: Add `signIn` to authentication provider configuration schema
- Updated dependencies
- @backstage/backend-plugin-api@0.8.0
- @backstage/plugin-auth-node@0.5.0
## 0.2.4-next.3
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-auth-backend-module-oauth2-provider",
"version": "0.2.4-next.3",
"version": "0.2.4",
"description": "The oauth2-provider backend module for the auth plugin.",
"backstage": {
"role": "backend-plugin-module",
@@ -1,5 +1,14 @@
# @backstage/plugin-auth-backend-module-oauth2-proxy-provider
## 0.1.16
### Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.8.0
- @backstage/plugin-auth-node@0.5.0
- @backstage/errors@1.2.4
## 0.1.16-next.3
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-auth-backend-module-oauth2-proxy-provider",
"version": "0.1.16-next.3",
"version": "0.1.16",
"description": "The oauth2-proxy-provider backend module for the auth plugin.",
"backstage": {
"role": "backend-plugin-module",
@@ -1,5 +1,16 @@
# @backstage/plugin-auth-backend-module-oidc-provider
## 0.2.4
### Patch Changes
- c8f1cae: Add `signIn` to authentication provider configuration schema
- Updated dependencies
- @backstage/backend-plugin-api@0.8.0
- @backstage/backend-common@0.24.0
- @backstage/plugin-auth-backend@0.22.10
- @backstage/plugin-auth-node@0.5.0
## 0.2.4-next.3
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-auth-backend-module-oidc-provider",
"version": "0.2.4-next.3",
"version": "0.2.4",
"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.0.16
### Patch Changes
- c8f1cae: Add `signIn` to authentication provider configuration schema
- Updated dependencies
- @backstage/backend-plugin-api@0.8.0
- @backstage/plugin-auth-node@0.5.0
## 0.0.16-next.3
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-auth-backend-module-okta-provider",
"version": "0.0.16-next.3",
"version": "0.0.16",
"description": "The okta-provider backend module for the auth plugin.",
"backstage": {
"role": "backend-plugin-module",
@@ -1,5 +1,14 @@
# @backstage/plugin-auth-backend-module-onelogin-provider
## 0.1.4
### Patch Changes
- c8f1cae: Add `signIn` to authentication provider configuration schema
- Updated dependencies
- @backstage/backend-plugin-api@0.8.0
- @backstage/plugin-auth-node@0.5.0
## 0.1.4-next.3
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-auth-backend-module-onelogin-provider",
"version": "0.1.4-next.3",
"version": "0.1.4",
"description": "The onelogin-provider backend module for the auth plugin.",
"backstage": {
"role": "backend-plugin-module",
@@ -1,5 +1,14 @@
# @backstage/plugin-auth-backend-module-pinniped-provider
## 0.1.17
### Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.8.0
- @backstage/plugin-auth-node@0.5.0
- @backstage/config@1.2.0
## 0.1.17-next.3
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-auth-backend-module-pinniped-provider",
"version": "0.1.17-next.3",
"version": "0.1.17",
"description": "The pinniped-provider backend module for the auth plugin.",
"backstage": {
"role": "backend-plugin-module",
@@ -1,5 +1,15 @@
# @backstage/plugin-auth-backend-module-vmware-cloud-provider
## 0.2.4
### Patch Changes
- c8f1cae: Add `signIn` to authentication provider configuration schema
- Updated dependencies
- @backstage/backend-plugin-api@0.8.0
- @backstage/plugin-auth-node@0.5.0
- @backstage/catalog-model@1.6.0
## 0.2.4-next.3
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-auth-backend-module-vmware-cloud-provider",
"version": "0.2.4-next.3",
"version": "0.2.4",
"description": "The vmware-cloud-provider backend module for the auth plugin.",
"backstage": {
"role": "backend-plugin-module",
+32
View File
@@ -1,5 +1,37 @@
# @backstage/plugin-auth-backend
## 0.22.10
### Patch Changes
- 93095ee: Make sure node-fetch is version 2.7.0 or greater
- cc9a7a5: Deprecated `createRouter` and its router options in favour of the new backend system.
- Updated dependencies
- @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.2.0
- @backstage/plugin-auth-backend-module-atlassian-provider@0.2.4
- @backstage/plugin-auth-backend-module-bitbucket-provider@0.1.6
- @backstage/plugin-auth-backend-module-microsoft-provider@0.1.18
- @backstage/plugin-auth-backend-module-onelogin-provider@0.1.4
- @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.15
- @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.18
- @backstage/plugin-auth-backend-module-github-provider@0.1.20
- @backstage/plugin-auth-backend-module-gitlab-provider@0.1.20
- @backstage/plugin-auth-backend-module-google-provider@0.1.20
- @backstage/plugin-auth-backend-module-oauth2-provider@0.2.4
- @backstage/plugin-auth-backend-module-oidc-provider@0.2.4
- @backstage/plugin-auth-backend-module-okta-provider@0.0.16
- @backstage/backend-plugin-api@0.8.0
- @backstage/backend-common@0.24.0
- @backstage/plugin-auth-node@0.5.0
- @backstage/plugin-catalog-node@1.12.5
- @backstage/catalog-model@1.6.0
- @backstage/catalog-client@1.6.6
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/types@1.1.1
- @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.1.6
- @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.16
## 0.22.10-next.3
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-auth-backend",
"version": "0.22.10-next.3",
"version": "0.22.10",
"description": "A Backstage backend plugin that handles authentication",
"backstage": {
"role": "backend-plugin",
+18
View File
@@ -1,5 +1,23 @@
# @backstage/plugin-auth-node
## 0.5.0
### Minor Changes
- 579afd0: **BREAKING**: Sign-in resolvers configured via `.signIn.resolvers` now take precedence over sign-in resolvers passed to `signInResolver` option of `createOAuthProviderFactory`. This effectively makes sign-in resolvers passed via the `signInResolver` the default one, which you can then override through configuration.
### Patch Changes
- 93095ee: Make sure node-fetch is version 2.7.0 or greater
- Updated dependencies
- @backstage/backend-plugin-api@0.8.0
- @backstage/backend-common@0.24.0
- @backstage/catalog-model@1.6.0
- @backstage/catalog-client@1.6.6
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/types@1.1.1
## 0.5.0-next.3
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-auth-node",
"version": "0.5.0-next.3",
"version": "0.5.0",
"backstage": {
"role": "node-library",
"pluginId": "auth",
+10
View File
@@ -1,5 +1,15 @@
# @backstage/plugin-auth-react
## 0.1.5
### Patch Changes
- aeac3e9: feat: Hide visibility of CookieAuthRedirect
- Updated dependencies
- @backstage/core-components@0.14.10
- @backstage/core-plugin-api@1.9.3
- @backstage/errors@1.2.4
## 0.1.5-next.0
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-auth-react",
"version": "0.1.5-next.0",
"version": "0.1.5",
"description": "Web library for the auth plugin",
"backstage": {
"role": "web-library",
@@ -1,5 +1,13 @@
# @backstage/plugin-bitbucket-cloud-common
## 0.2.22
### Patch Changes
- 3fca643: Added method `listBranchesByRepository` to `BitbucketCloudClient`
- Updated dependencies
- @backstage/integration@1.14.0
## 0.2.22-next.1
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-bitbucket-cloud-common",
"version": "0.2.22-next.1",
"version": "0.2.22",
"description": "Common functionalities for bitbucket-cloud plugins",
"backstage": {
"role": "common-library",
@@ -1,5 +1,29 @@
# @backstage/plugin-catalog-backend-module-aws
## 0.4.0
### Minor Changes
- fc24d9e: Stop using `@backstage/backend-tasks` as it will be deleted in near future.
### Patch Changes
- ba8571e: Setup user agent header for AWS sdk clients, this enables users to better track API calls made from Backstage to AWS APIs through things like CloudTrail.
- 9342ac8: Removed unused dependency
- 389f5a4: Update deprecated url-reader-related imports.
- 90a7340: `AwsOrganizationCloudAccountProcessor` configuration field `roleArn` is deprecated in favor of new field `accountId`
- Updated dependencies
- @backstage/backend-defaults@0.4.2
- @backstage/backend-plugin-api@0.8.0
- @backstage/plugin-catalog-node@1.12.5
- @backstage/integration@1.14.0
- @backstage/catalog-model@1.6.0
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/integration-aws-node@0.1.12
- @backstage/plugin-catalog-common@1.0.26
- @backstage/plugin-kubernetes-common@0.8.2
## 0.3.18-next.3
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-catalog-backend-module-aws",
"version": "0.3.18-next.3",
"version": "0.4.0",
"description": "A Backstage catalog backend module that helps integrate towards AWS",
"backstage": {
"role": "backend-plugin-module",
@@ -1,5 +1,22 @@
# @backstage/plugin-catalog-backend-module-azure
## 0.2.0
### Minor Changes
- fc24d9e: Stop using `@backstage/backend-tasks` as it will be deleted in near future.
### Patch Changes
- 9342ac8: Removed unused dependency
- 93095ee: Make sure node-fetch is version 2.7.0 or greater
- Updated dependencies
- @backstage/backend-plugin-api@0.8.0
- @backstage/plugin-catalog-node@1.12.5
- @backstage/integration@1.14.0
- @backstage/config@1.2.0
- @backstage/plugin-catalog-common@1.0.26
## 0.1.43-next.3
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-catalog-backend-module-azure",
"version": "0.1.43-next.3",
"version": "0.2.0",
"description": "A Backstage catalog backend module that helps integrate towards Azure",
"backstage": {
"role": "backend-plugin-module",
@@ -1,5 +1,21 @@
# @backstage/plugin-catalog-backend-module-backstage-openapi
## 0.3.0
### Minor Changes
- fc24d9e: Stop using `@backstage/backend-tasks` as it will be deleted in near future.
### Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.8.0
- @backstage/plugin-catalog-node@1.12.5
- @backstage/catalog-model@1.6.0
- @backstage/backend-openapi-utils@0.1.16
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
## 0.2.6-next.3
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-catalog-backend-module-backstage-openapi",
"version": "0.2.6-next.3",
"version": "0.3.0",
"backstage": {
"role": "backend-plugin-module",
"pluginId": "catalog",
@@ -1,5 +1,25 @@
# @backstage/plugin-catalog-backend-module-bitbucket-cloud
## 0.3.0
### Minor Changes
- fc24d9e: Stop using `@backstage/backend-tasks` as it will be deleted in near future.
### Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.8.0
- @backstage/backend-common@0.24.0
- @backstage/plugin-catalog-node@1.12.5
- @backstage/integration@1.14.0
- @backstage/plugin-bitbucket-cloud-common@0.2.22
- @backstage/catalog-model@1.6.0
- @backstage/catalog-client@1.6.6
- @backstage/config@1.2.0
- @backstage/plugin-catalog-common@1.0.26
- @backstage/plugin-events-node@0.3.9
## 0.2.10-next.3
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-catalog-backend-module-bitbucket-cloud",
"version": "0.2.10-next.3",
"version": "0.3.0",
"description": "A Backstage catalog backend module that helps integrate towards Bitbucket Cloud",
"backstage": {
"role": "backend-plugin-module",
@@ -1,5 +1,23 @@
# @backstage/plugin-catalog-backend-module-bitbucket-server
## 0.2.0
### Minor Changes
- fc24d9e: Stop using `@backstage/backend-tasks` as it will be deleted in near future.
### Patch Changes
- 9342ac8: Removed unused dependency
- 93095ee: Make sure node-fetch is version 2.7.0 or greater
- Updated dependencies
- @backstage/backend-plugin-api@0.8.0
- @backstage/plugin-catalog-node@1.12.5
- @backstage/integration@1.14.0
- @backstage/catalog-model@1.6.0
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
## 0.1.37-next.3
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-catalog-backend-module-bitbucket-server",
"version": "0.1.37-next.3",
"version": "0.2.0",
"backstage": {
"role": "backend-plugin-module",
"pluginId": "catalog",
@@ -1,5 +1,21 @@
# @backstage/plugin-catalog-backend-module-gcp
## 0.2.0
### Minor Changes
- fc24d9e: Stop using `@backstage/backend-tasks` as it will be deleted in near future.
### Patch Changes
- 9342ac8: Removed unused dependency
- Updated dependencies
- @backstage/backend-plugin-api@0.8.0
- @backstage/plugin-catalog-node@1.12.5
- @backstage/catalog-model@1.6.0
- @backstage/config@1.2.0
- @backstage/plugin-kubernetes-common@0.8.2
## 0.1.24-next.3
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-catalog-backend-module-gcp",
"version": "0.1.24-next.3",
"version": "0.2.0",
"description": "A Backstage catalog backend module that helps integrate towards GCP",
"backstage": {
"role": "backend-plugin-module",
@@ -1,5 +1,22 @@
# @backstage/plugin-catalog-backend-module-gerrit
## 0.2.0
### Minor Changes
- fc24d9e: Stop using `@backstage/backend-tasks` as it will be deleted in near future.
### Patch Changes
- 9342ac8: Removed unused dependency
- 93095ee: Make sure node-fetch is version 2.7.0 or greater
- Updated dependencies
- @backstage/backend-plugin-api@0.8.0
- @backstage/plugin-catalog-node@1.12.5
- @backstage/integration@1.14.0
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
## 0.1.40-next.3
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-catalog-backend-module-gerrit",
"version": "0.1.40-next.3",
"version": "0.2.0",
"backstage": {
"role": "backend-plugin-module",
"pluginId": "catalog",
@@ -1,5 +1,21 @@
# @backstage/plugin-catalog-backend-module-github-org
## 0.2.0
### Minor Changes
- fc24d9e: Stop using `@backstage/backend-tasks` as it will be deleted in near future.
### Patch Changes
- 9342ac8: Removed unused dependency
- Updated dependencies
- @backstage/backend-plugin-api@0.8.0
- @backstage/plugin-catalog-backend-module-github@0.7.0
- @backstage/plugin-catalog-node@1.12.5
- @backstage/config@1.2.0
- @backstage/plugin-events-node@0.3.9
## 0.1.18-next.3
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-catalog-backend-module-github-org",
"version": "0.1.18-next.3",
"version": "0.2.0",
"description": "The github-org backend module for the catalog plugin.",
"backstage": {
"role": "backend-plugin-module",
@@ -1,5 +1,31 @@
# @backstage/plugin-catalog-backend-module-github
## 0.7.0
### Minor Changes
- fc24d9e: Stop using `@backstage/backend-tasks` as it will be deleted in near future.
### Patch Changes
- 93095ee: Make sure node-fetch is version 2.7.0 or greater
- c1eb809: Fix GitHub `repository` event support.
- `$.repository.organization` is only provided for `push` events. Switched to `$.organization.login` instead.
- `$.repository.url` is not always returning the expected and required value. Use `$.repository.html_url` instead.
- Updated dependencies
- @backstage/backend-plugin-api@0.8.0
- @backstage/backend-common@0.24.0
- @backstage/plugin-catalog-backend@1.25.0
- @backstage/plugin-catalog-node@1.12.5
- @backstage/integration@1.14.0
- @backstage/catalog-model@1.6.0
- @backstage/catalog-client@1.6.6
- @backstage/config@1.2.0
- @backstage/plugin-catalog-common@1.0.26
- @backstage/plugin-events-node@0.3.9
## 0.6.6-next.3
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-catalog-backend-module-github",
"version": "0.6.6-next.3",
"version": "0.7.0",
"description": "A Backstage catalog backend module that helps integrate towards GitHub",
"backstage": {
"role": "backend-plugin-module",
@@ -1,5 +1,20 @@
# @backstage/plugin-catalog-backend-module-gitlab-org
## 0.1.0
### Minor Changes
- fc24d9e: Stop using `@backstage/backend-tasks` as it will be deleted in near future.
### Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.8.0
- @backstage/backend-common@0.24.0
- @backstage/plugin-catalog-backend-module-gitlab@0.4.0
- @backstage/plugin-catalog-node@1.12.5
- @backstage/plugin-events-node@0.3.9
## 0.0.6-next.3
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-catalog-backend-module-gitlab-org",
"version": "0.0.6-next.3",
"version": "0.1.0",
"description": "The gitlab-org backend module for the catalog plugin.",
"backstage": {
"role": "backend-plugin-module",
@@ -1,5 +1,25 @@
# @backstage/plugin-catalog-backend-module-gitlab
## 0.4.0
### Minor Changes
- fc24d9e: Stop using `@backstage/backend-tasks` as it will be deleted in near future.
### Patch Changes
- 93095ee: Make sure node-fetch is version 2.7.0 or greater
- c7b14ed: Adds new optional `excludeRepos` configuration option to the Gitlab catalog provider.
- Updated dependencies
- @backstage/backend-plugin-api@0.8.0
- @backstage/backend-common@0.24.0
- @backstage/plugin-catalog-node@1.12.5
- @backstage/integration@1.14.0
- @backstage/catalog-model@1.6.0
- @backstage/config@1.2.0
- @backstage/plugin-catalog-common@1.0.26
- @backstage/plugin-events-node@0.3.9
## 0.3.22-next.3
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-catalog-backend-module-gitlab",
"version": "0.3.22-next.3",
"version": "0.4.0",
"description": "A Backstage catalog backend module that helps integrate towards GitLab",
"backstage": {
"role": "backend-plugin-module",
@@ -1,5 +1,25 @@
# @backstage/plugin-catalog-backend-module-incremental-ingestion
## 0.5.0
### Minor Changes
- fc24d9e: Stop using `@backstage/backend-tasks` as it will be deleted in near future.
### Patch Changes
- 389f5a4: Update deprecated url-reader-related imports.
- Updated dependencies
- @backstage/backend-plugin-api@0.8.0
- @backstage/backend-common@0.24.0
- @backstage/plugin-catalog-backend@1.25.0
- @backstage/plugin-permission-common@0.8.1
- @backstage/plugin-catalog-node@1.12.5
- @backstage/catalog-model@1.6.0
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/plugin-events-node@0.3.9
## 0.4.28-next.3
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-catalog-backend-module-incremental-ingestion",
"version": "0.4.28-next.3",
"version": "0.5.0",
"description": "An entity provider for streaming large asset sources into the catalog",
"backstage": {
"role": "backend-plugin-module",
@@ -1,5 +1,22 @@
# @backstage/plugin-catalog-backend-module-ldap
## 0.8.0
### Minor Changes
- fc24d9e: Stop using `@backstage/backend-tasks` as it will be deleted in near future.
### Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.8.0
- @backstage/plugin-catalog-node@1.12.5
- @backstage/catalog-model@1.6.0
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/types@1.1.1
- @backstage/plugin-catalog-common@1.0.26
## 0.7.1-next.3
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-catalog-backend-module-ldap",
"version": "0.7.1-next.3",
"version": "0.8.0",
"description": "A Backstage catalog backend module that helps integrate towards LDAP",
"backstage": {
"role": "backend-plugin-module",
@@ -1,5 +1,14 @@
# @backstage/plugin-catalog-backend-module-logs
## 0.0.2
### Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.8.0
- @backstage/plugin-catalog-backend@1.25.0
- @backstage/plugin-events-node@0.3.9
## 0.0.2-next.3
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-catalog-backend-module-logs",
"version": "0.0.2-next.3",
"version": "0.0.2",
"description": "A module that subscribes to catalog releated events and logs them.",
"backstage": {
"role": "backend-plugin-module",
@@ -1,5 +1,23 @@
# @backstage/plugin-catalog-backend-module-msgraph
## 0.6.0
### Minor Changes
- fc24d9e: Stop using `@backstage/backend-tasks` as it will be deleted in near future.
### Patch Changes
- 9342ac8: Removed unused dependency
- 93095ee: Make sure node-fetch is version 2.7.0 or greater
- 58dff4d: Added option to ingest groups based on their group membership in Azure Entra ID
- Updated dependencies
- @backstage/backend-plugin-api@0.8.0
- @backstage/plugin-catalog-node@1.12.5
- @backstage/catalog-model@1.6.0
- @backstage/config@1.2.0
- @backstage/plugin-catalog-common@1.0.26
## 0.5.31-next.3
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-catalog-backend-module-msgraph",
"version": "0.5.31-next.3",
"version": "0.6.0",
"description": "A Backstage catalog backend module that helps integrate towards Microsoft Graph",
"backstage": {
"role": "backend-plugin-module",
@@ -1,5 +1,21 @@
# @backstage/plugin-catalog-backend-module-openapi
## 0.1.41
### Patch Changes
- 389f5a4: Update deprecated url-reader-related imports.
- Updated dependencies
- @backstage/backend-plugin-api@0.8.0
- @backstage/backend-common@0.24.0
- @backstage/plugin-catalog-backend@1.25.0
- @backstage/plugin-catalog-node@1.12.5
- @backstage/integration@1.14.0
- @backstage/catalog-model@1.6.0
- @backstage/config@1.2.0
- @backstage/types@1.1.1
- @backstage/plugin-catalog-common@1.0.26
## 0.1.41-next.3
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-catalog-backend-module-openapi",
"version": "0.1.41-next.3",
"version": "0.1.41",
"description": "A Backstage catalog backend module that helps with OpenAPI specifications",
"backstage": {
"role": "backend-plugin-module",
@@ -1,5 +1,23 @@
# @backstage/plugin-catalog-backend-module-puppetdb
## 0.2.0
### Minor Changes
- fc24d9e: Stop using `@backstage/backend-tasks` as it will be deleted in near future.
### Patch Changes
- 9342ac8: Removed unused dependency
- 93095ee: Make sure node-fetch is version 2.7.0 or greater
- Updated dependencies
- @backstage/backend-plugin-api@0.8.0
- @backstage/plugin-catalog-node@1.12.5
- @backstage/catalog-model@1.6.0
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/types@1.1.1
## 0.1.29-next.3
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-catalog-backend-module-puppetdb",
"version": "0.1.29-next.3",
"version": "0.2.0",
"description": "A Backstage catalog backend module that helps integrate towards PuppetDB",
"backstage": {
"role": "backend-plugin-module",
@@ -1,5 +1,16 @@
# @backstage/plugin-catalog-backend-module-scaffolder-entity-model
## 0.1.21
### Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.8.0
- @backstage/plugin-catalog-node@1.12.5
- @backstage/catalog-model@1.6.0
- @backstage/plugin-catalog-common@1.0.26
- @backstage/plugin-scaffolder-common@1.5.5
## 0.1.21-next.3
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-catalog-backend-module-scaffolder-entity-model",
"version": "0.1.21-next.3",
"version": "0.1.21",
"description": "Adds support for the scaffolder specific entity model (e.g. the Template kind) to the catalog backend plugin.",
"backstage": {
"role": "backend-plugin-module",
@@ -1,5 +1,19 @@
# @backstage/plugin-catalog-backend-module-unprocessed
## 0.4.10
### Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.8.0
- @backstage/backend-common@0.24.0
- @backstage/plugin-permission-common@0.8.1
- @backstage/plugin-auth-node@0.5.0
- @backstage/plugin-catalog-node@1.12.5
- @backstage/catalog-model@1.6.0
- @backstage/errors@1.2.4
- @backstage/plugin-catalog-unprocessed-entities-common@0.0.4
## 0.4.10-next.3
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-catalog-backend-module-unprocessed",
"version": "0.4.10-next.3",
"version": "0.4.10",
"description": "Backstage Catalog module to view unprocessed entities",
"backstage": {
"role": "backend-plugin-module",
+34
View File
@@ -1,5 +1,39 @@
# @backstage/plugin-catalog-backend
## 1.25.0
### Minor Changes
- 163ba08: Deprecated `RouterOptions`, `CatalogBuilder`, and `CatalogEnvironment`. Please make sure to upgrade to the new backend system.
- fc24d9e: Stop using `@backstage/backend-tasks` as it will be deleted in near future.
### Patch Changes
- 776eb56: `ProcessorOutputCollector` returns an error when receiving deferred entities that have an invalid `metadata.annotations` format.
This allows to return an error on an actual validation issue instead of reporting that the location annotations are missing afterwards, which is misleading for the users.
- 389f5a4: Update deprecated url-reader-related imports.
- 93095ee: Make sure node-fetch is version 2.7.0 or greater
- a629fb2: Added setAllowedLocationTypes while introducing a new extension point called CatalogLocationsExtensionPoint
- 51240ee: Preserve default `allowedLocationTypes` when `setAllowedLocationTypes()` of `CatalogLocationsExtensionPoint` is not called.
- Updated dependencies
- @backstage/backend-plugin-api@0.8.0
- @backstage/backend-common@0.24.0
- @backstage/plugin-permission-common@0.8.1
- @backstage/plugin-permission-node@0.8.1
- @backstage/plugin-search-backend-module-catalog@0.2.0
- @backstage/plugin-catalog-node@1.12.5
- @backstage/integration@1.14.0
- @backstage/catalog-model@1.6.0
- @backstage/backend-openapi-utils@0.1.16
- @backstage/catalog-client@1.6.6
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/types@1.1.1
- @backstage/plugin-catalog-common@1.0.26
- @backstage/plugin-events-node@0.3.9
## 1.24.1-next.3
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-catalog-backend",
"version": "1.24.1-next.3",
"version": "1.25.0",
"description": "The Backstage backend plugin that provides the Backstage catalog",
"backstage": {
"role": "backend-plugin",
+9
View File
@@ -1,5 +1,14 @@
# @backstage/plugin-catalog-common
## 1.0.26
### Patch Changes
- Updated dependencies
- @backstage/plugin-permission-common@0.8.1
- @backstage/plugin-search-common@1.2.14
- @backstage/catalog-model@1.6.0
## 1.0.26-next.2
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-catalog-common",
"version": "1.0.26-next.2",
"version": "1.0.26",
"description": "Common functionalities for the catalog plugin",
"backstage": {
"role": "common-library",
+17
View File
@@ -1,5 +1,22 @@
# @backstage/plugin-catalog-graph
## 0.4.8
### Patch Changes
- c7603e8: Deprecate the old pattern of `create*Extension`, and replace it with the equivalent Blueprint implementation instead
- fba7537: Memoize entity graph nodes when applying an `entityFilter` to prevent repeated redraws
- 4a529c2: Use `entityPresentationApi` for the node title and the icon.
- Updated dependencies
- @backstage/frontend-plugin-api@0.7.0
- @backstage/plugin-catalog-react@1.12.3
- @backstage/core-components@0.14.10
- @backstage/core-compat-api@0.2.8
- @backstage/catalog-model@1.6.0
- @backstage/catalog-client@1.6.6
- @backstage/core-plugin-api@1.9.3
- @backstage/types@1.1.1
## 0.4.8-next.4
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-catalog-graph",
"version": "0.4.8-next.4",
"version": "0.4.8",
"backstage": {
"role": "frontend-plugin",
"pluginId": "catalog-graph",
+19
View File
@@ -1,5 +1,24 @@
# @backstage/plugin-catalog-import
## 0.12.2
### Patch Changes
- c7603e8: Deprecate the old pattern of `create*Extension`, and replace it with the equivalent Blueprint implementation instead
- Updated dependencies
- @backstage/frontend-plugin-api@0.7.0
- @backstage/plugin-catalog-react@1.12.3
- @backstage/core-components@0.14.10
- @backstage/core-compat-api@0.2.8
- @backstage/integration@1.14.0
- @backstage/catalog-model@1.6.0
- @backstage/catalog-client@1.6.6
- @backstage/config@1.2.0
- @backstage/core-plugin-api@1.9.3
- @backstage/errors@1.2.4
- @backstage/integration-react@1.1.30
- @backstage/plugin-catalog-common@1.0.26
## 0.12.2-next.3
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-catalog-import",
"version": "0.12.2-next.3",
"version": "0.12.2",
"description": "A Backstage plugin the helps you import entities into your catalog",
"backstage": {
"role": "frontend-plugin",
+16
View File
@@ -1,5 +1,21 @@
# @backstage/plugin-catalog-node
## 1.12.5
### Patch Changes
- a629fb2: Added setAllowedLocationTypes while introducing a new extension point called CatalogLocationsExtensionPoint
- 7c5f3b0: Explicit declare if the service ref accepts `single` or `multiple` implementations.
- Updated dependencies
- @backstage/backend-plugin-api@0.8.0
- @backstage/plugin-permission-common@0.8.1
- @backstage/plugin-permission-node@0.8.1
- @backstage/catalog-model@1.6.0
- @backstage/catalog-client@1.6.6
- @backstage/errors@1.2.4
- @backstage/types@1.1.1
- @backstage/plugin-catalog-common@1.0.26
## 1.12.5-next.3
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-catalog-node",
"version": "1.12.5-next.3",
"version": "1.12.5",
"description": "The plugin-catalog-node module for @backstage/plugin-catalog-backend",
"backstage": {
"role": "node-library",

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