Merge branch 'main' of github.com:backstage/community-plugins into update-to-1.39.0

This commit is contained in:
punkle 2025-06-04 10:06:57 +01:00
commit a0c254b7fb
586 changed files with 22305 additions and 35780 deletions

View File

@ -33,7 +33,7 @@ jobs:
- name: Delay batches (5 min between)
if: ${{ strategy.job-index != 0 }}
run: |
delay=$(( strategy.job-index * 300 ))
delay=$(( ${{ strategy.job-index }} * 300 ))
echo "Sleeping $delay seconds before triggering batch ${{ strategy.job-index }}..."
sleep $delay

View File

@ -92,6 +92,24 @@ jobs:
- name: prettier
run: yarn prettier:check
- name: read knip-reports flag from bcp.json
id: bcp
run: |
echo "Checking for bcp.json in workspace: workspaces/${{ matrix.workspace }}"
if [ -f bcp.json ]; then
echo "Reading knip-reports flag..."
KNIP_REPORTS=$(jq -r '.["knip-reports"]' bcp.json)
echo "knip-reports value: $KNIP_REPORTS"
echo "knip_reports=$KNIP_REPORTS" >> $GITHUB_OUTPUT
else
echo "bcp.json not found. Defaulting knip_reports to false."
echo "knip_reports=false" >> $GITHUB_OUTPUT
fi
- name: check knip reports
if: ${{ steps.bcp.outputs.knip_reports == 'true' }}
run: yarn build:knip-reports --ci
- name: check api reports and generate API reference
run: yarn build:api-reports:only --ci

View File

@ -8,6 +8,7 @@
- [PR Reviews \& Merging](#pr-reviews--merging)
- [Issue Triage](#issue-triage)
- [Version Bumping](#version-bumping)
- [Opt-in to Automatic Version Bump PRs](#opt-in-to-automatic-version-bump-prs)
- [Maintaining and patching an older release line](#maintaining-and-patching-an-older-release-line)
- [Patching an older release](#patching-an-older-release)
@ -31,6 +32,16 @@ Plugin owners should triage issues related to their plugin as needed. The `@back
Plugin owners are expected to run the Version Bump script for their workspace. The process follows the guidance outlined in the [Version Bumping Documentation](https://github.com/backstage/community-plugins/blob/main/docs/version-bump.md).
# Opt-in to Automatic Version Bump PRs
Plugin owners can opt in to automatic version bump PRs by creating an empty .auto-version-bump file in the root of their workspace (`workspaces/${WORKSPACE}/.auto-version-bump`). This signals that your plugin should be included in the batch version bump workflow, which is triggered manually by one of the `@backstage/community-plugins-maintainers` .
These automated PRs are intended as a convenience to open the version bump for you. As the plugin maintainer, you would still be required to:
- Review the PR
- Make any necessary patches to adopt the upgrade
- Merge the PR once it's ready
## Maintaining and patching an older release line
It may be necessary to patch a prior release line of a plugin when users depend on an older, but stable version and while a newer, incompatible, major version of the plugin exists. Typically for these older releases, only major bugs and security issues will need to be remediated. Not every plugin will need this workflow.

View File

@ -1,5 +1,11 @@
## @janus-idp/backstage-plugin-3scale-backend [1.8.0](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/backstage-plugin-3scale-backend@1.7.1...@janus-idp/backstage-plugin-3scale-backend@1.8.0) (2024-07-25)
## 3.5.0
### Minor Changes
- 321413c: Use the existing config values systemLabel and ownerLabel to ingest entities correctly
## 3.4.0
### Minor Changes

View File

@ -27,6 +27,8 @@ yarn workspace backend add @backstage-community/plugin-3scale-backend
dev:
baseUrl: https://<TENANT>-admin.3scale.net
accessToken: <ACCESS_TOKEN>
systemLabel: 3scale # optional; default is "3scale"; used to apply a custom system label to api entities
ownerLabel: 3scale # optional; default is "3scale"; used to apply a custom owner label to api entities
schedule: # optional; same options as in TaskScheduleDefinition
# supports cron, ISO duration, "human duration" as used in code
frequency: { minutes: 30 }

View File

@ -1,6 +1,6 @@
{
"name": "@backstage-community/plugin-3scale-backend",
"version": "3.4.0",
"version": "3.5.0",
"license": "Apache-2.0",
"main": "src/index.ts",
"types": "src/index.ts",

View File

@ -65,6 +65,7 @@ describe('ThreeScaleApiEntityProvider', () => {
test: {
baseUrl: 'test',
accessToken: 'test',
ownerLabel: 'test',
},
},
},
@ -321,7 +322,7 @@ function createExpectedEntity(
type: 'openapi',
lifecycle: 'test',
system: '3scale',
owner: '3scale',
owner: 'test',
definition: JSON.stringify(
readTestJSONFile(fileWithExpectedOpenAPISpec),
null,

View File

@ -34,11 +34,7 @@ import {
EntityProviderConnection,
} from '@backstage/plugin-catalog-node';
import {
getProxyConfig,
listApiDocs,
listServices,
} from '../clients/ThreeScaleAPIConnector';
import { getProxyConfig, listApiDocs, listServices } from '../clients';
import type {
APIDocElement,
APIDocs,
@ -64,6 +60,8 @@ export class ThreeScaleApiEntityProvider implements EntityProvider {
private readonly env: string;
private readonly baseUrl: string;
private readonly accessToken: string;
private readonly ownerLabel: string;
private readonly systemLabel: string;
private readonly logger: LoggerService;
private readonly scheduleFn: () => Promise<void>;
private readonly openApiMerger: OpenAPIMergerAndConverter;
@ -123,6 +121,8 @@ export class ThreeScaleApiEntityProvider implements EntityProvider {
this.env = config.id;
this.baseUrl = config.baseUrl;
this.accessToken = config.accessToken;
this.ownerLabel = config.ownerLabel || '3scale';
this.systemLabel = config.systemLabel || '3scale';
this.logger = logger.child({
target: this.getProviderName(),
});
@ -334,8 +334,8 @@ export class ThreeScaleApiEntityProvider implements EntityProvider {
spec: {
type: 'openapi',
lifecycle: this.env,
system: '3scale',
owner: '3scale',
system: this.systemLabel,
owner: this.ownerLabel,
definition: JSON.stringify(swaggerDocJSON, null, 2),
},
};

View File

@ -18,6 +18,7 @@
"build:all": "backstage-cli repo build --all",
"build:api-reports": "yarn build:api-reports:only",
"build:api-reports:only": "backstage-repo-tools api-reports -o ae-wrong-input-file-type,ae-undocumented --validate-release-tags",
"build:knip-reports": "backstage-repo-tools knip-reports",
"clean": "backstage-cli repo clean",
"test": "backstage-cli repo test",
"test:all": "backstage-cli repo test --coverage",

View File

@ -14,6 +14,7 @@
"build-image": "yarn workspace backend build-image",
"build:api-reports": "yarn build:api-reports:only",
"build:api-reports:only": "backstage-repo-tools api-reports -o ae-wrong-input-file-type,ae-undocumented --validate-release-tags",
"build:knip-reports": "backstage-repo-tools knip-reports",
"tsc": "tsc",
"tsc:full": "tsc --skipLibCheck false --incremental false",
"clean": "backstage-cli repo clean",

View File

@ -1,3 +1,3 @@
{
"version": "1.38.1"
"version": "1.39.0"
}

View File

@ -20,6 +20,7 @@
"new": "backstage-cli new --scope @backstage-community",
"build:api-reports": "yarn build:api-reports:only --tsc",
"build:api-reports:only": "backstage-repo-tools api-reports -o ae-wrong-input-file-type,ae-undocumented --validate-release-tags",
"build:knip-reports": "backstage-repo-tools knip-reports",
"postinstall": "cd ../../ && yarn install"
},
"workspaces": {
@ -34,9 +35,9 @@
"directory": "workspaces/adr"
},
"devDependencies": {
"@backstage/cli": "^0.32.0",
"@backstage/cli": "^0.32.1",
"@backstage/e2e-test-utils": "^0.1.1",
"@backstage/repo-tools": "^0.13.2",
"@backstage/repo-tools": "^0.13.3",
"@changesets/cli": "^2.27.1",
"knip": "^5.27.4",
"node-gyp": "^10.0.0",

View File

@ -1,5 +1,17 @@
# @backstage-community/plugin-adr-backend
## 0.10.0
### Minor Changes
- fc4fa2c: Backstage version bump to v1.39.0
### Patch Changes
- Updated dependencies [fc4fa2c]
- @backstage-community/plugin-adr-common@0.8.0
- @backstage-community/search-backend-module-adr@0.7.0
## 0.9.0
### Minor Changes

View File

@ -1,6 +1,6 @@
{
"name": "@backstage-community/plugin-adr-backend",
"version": "0.9.0",
"version": "0.10.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@ -36,13 +36,13 @@
"dependencies": {
"@backstage-community/plugin-adr-common": "workspace:^",
"@backstage-community/search-backend-module-adr": "workspace:^",
"@backstage/backend-plugin-api": "^1.3.0",
"@backstage/catalog-client": "^1.9.1",
"@backstage/catalog-model": "^1.7.3",
"@backstage/backend-plugin-api": "^1.3.1",
"@backstage/catalog-client": "^1.10.0",
"@backstage/catalog-model": "^1.7.4",
"@backstage/config": "^1.3.2",
"@backstage/errors": "^1.2.7",
"@backstage/integration": "^1.16.3",
"@backstage/plugin-search-common": "^1.2.17",
"@backstage/integration": "^1.17.0",
"@backstage/plugin-search-common": "^1.2.18",
"@types/express": "^4.17.6",
"express": "^4.17.1",
"express-promise-router": "^4.1.0",
@ -51,7 +51,7 @@
"yn": "^4.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.32.0",
"@backstage/cli": "^0.32.1",
"@types/node-fetch": "^2.5.12",
"@types/supertest": "^6.0.0",
"supertest": "^7.0.0"

View File

@ -1,5 +1,11 @@
# @backstage-community/plugin-adr-common
## 0.8.0
### Minor Changes
- fc4fa2c: Backstage version bump to v1.39.0
## 0.7.0
### Minor Changes

View File

@ -1,6 +1,6 @@
{
"name": "@backstage-community/plugin-adr-common",
"version": "0.7.0",
"version": "0.8.0",
"description": "Common functionalities for the adr plugin",
"backstage": {
"role": "common-library",
@ -39,14 +39,14 @@
"test": "backstage-cli package test"
},
"dependencies": {
"@backstage/catalog-model": "^1.7.3",
"@backstage/integration": "^1.16.3",
"@backstage/plugin-search-common": "^1.2.17",
"@backstage/catalog-model": "^1.7.4",
"@backstage/integration": "^1.17.0",
"@backstage/plugin-search-common": "^1.2.18",
"front-matter": "^4.0.2",
"luxon": "^3.0.0",
"marked": "^12.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.32.0"
"@backstage/cli": "^0.32.1"
}
}

View File

@ -1,5 +1,16 @@
# @backstage-community/plugin-adr
## 0.11.0
### Minor Changes
- fc4fa2c: Backstage version bump to v1.39.0
### Patch Changes
- Updated dependencies [fc4fa2c]
- @backstage-community/plugin-adr-common@0.8.0
## 0.10.0
### Minor Changes

View File

@ -1,6 +1,6 @@
{
"name": "@backstage-community/plugin-adr",
"version": "0.10.0",
"version": "0.11.0",
"backstage": {
"role": "frontend-plugin",
"pluginId": "adr",
@ -52,16 +52,16 @@
},
"dependencies": {
"@backstage-community/plugin-adr-common": "workspace:^",
"@backstage/catalog-model": "^1.7.3",
"@backstage/core-compat-api": "^0.4.1",
"@backstage/core-components": "^0.17.1",
"@backstage/core-plugin-api": "^1.10.6",
"@backstage/frontend-plugin-api": "^0.10.1",
"@backstage/integration-react": "^1.2.6",
"@backstage/plugin-auth-react": "^0.1.14",
"@backstage/plugin-catalog-react": "^1.17.0",
"@backstage/plugin-search-common": "^1.2.17",
"@backstage/plugin-search-react": "^1.8.8",
"@backstage/catalog-model": "^1.7.4",
"@backstage/core-compat-api": "^0.4.2",
"@backstage/core-components": "^0.17.2",
"@backstage/core-plugin-api": "^1.10.7",
"@backstage/frontend-plugin-api": "^0.10.2",
"@backstage/integration-react": "^1.2.7",
"@backstage/plugin-auth-react": "^0.1.15",
"@backstage/plugin-catalog-react": "^1.18.0",
"@backstage/plugin-search-common": "^1.2.18",
"@backstage/plugin-search-react": "^1.9.0",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
"@types/react": "^16.13.1 || ^17.0.0 || ^18.0.0",
@ -69,7 +69,7 @@
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/cli": "^0.32.0",
"@backstage/cli": "^0.32.1",
"@testing-library/dom": "^10.0.0",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^15.0.0",

View File

@ -9,7 +9,7 @@ import { AnyApiFactory } from '@backstage/core-plugin-api';
import { AnyExtensionDataRef } from '@backstage/frontend-plugin-api';
import { AnyRouteRefParams } from '@backstage/frontend-plugin-api';
import { ConfigurableExtensionDataRef } from '@backstage/frontend-plugin-api';
import { Entity } from '@backstage/catalog-model/index';
import { Entity } from '@backstage/catalog-model';
import { EntityPredicate } from '@backstage/plugin-catalog-react/alpha';
import { ExtensionDefinition } from '@backstage/frontend-plugin-api';
import { ExtensionInput } from '@backstage/frontend-plugin-api';
@ -150,7 +150,7 @@ const _default: FrontendPlugin<
{},
{},
{
'api:adr/adr-api': ExtensionDefinition<{
[x: `api:${string}/adr-api`]: ExtensionDefinition<{
kind: 'api';
name: 'adr-api';
config: {};
@ -165,7 +165,7 @@ const _default: FrontendPlugin<
factory: AnyApiFactory;
};
}>;
'entity-content:adr/entity': ExtensionDefinition<{
[x: `entity-content:${string}/entity`]: ExtensionDefinition<{
kind: 'entity-content';
name: 'entity';
config: {
@ -234,7 +234,7 @@ const _default: FrontendPlugin<
filter?: EntityPredicate | ((entity: Entity) => boolean) | undefined;
};
}>;
'search-result-list-item:adr': ExtensionDefinition<{
[x: `search-result-list-item:${string}`]: ExtensionDefinition<{
config: {
lineClamp: number;
} & {

View File

@ -1,5 +1,16 @@
# @backstage-community/search-backend-module-adr
## 0.7.0
### Minor Changes
- fc4fa2c: Backstage version bump to v1.39.0
### Patch Changes
- Updated dependencies [fc4fa2c]
- @backstage-community/plugin-adr-common@0.8.0
## 0.6.0
### Minor Changes

View File

@ -1,7 +1,7 @@
{
"name": "@backstage-community/search-backend-module-adr",
"description": "The adr backend module for the search plugin.",
"version": "0.6.0",
"version": "0.7.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@ -31,21 +31,21 @@
},
"dependencies": {
"@backstage-community/plugin-adr-common": "workspace:^",
"@backstage/backend-plugin-api": "^1.3.0",
"@backstage/catalog-client": "^1.9.1",
"@backstage/catalog-model": "^1.7.3",
"@backstage/backend-plugin-api": "^1.3.1",
"@backstage/catalog-client": "^1.10.0",
"@backstage/catalog-model": "^1.7.4",
"@backstage/config": "^1.3.2",
"@backstage/errors": "^1.2.7",
"@backstage/integration": "^1.16.3",
"@backstage/plugin-catalog-node": "^1.16.3",
"@backstage/plugin-search-backend-node": "^1.3.10",
"@backstage/plugin-search-common": "^1.2.17",
"@backstage/integration": "^1.17.0",
"@backstage/plugin-catalog-node": "^1.17.0",
"@backstage/plugin-search-backend-node": "^1.3.11",
"@backstage/plugin-search-common": "^1.2.18",
"luxon": "^3.0.0",
"marked": "^12.0.0"
},
"devDependencies": {
"@backstage/backend-test-utils": "^1.4.0",
"@backstage/cli": "^0.32.0"
"@backstage/backend-test-utils": "^1.5.0",
"@backstage/cli": "^0.32.1"
},
"files": [
"dist",

File diff suppressed because it is too large Load Diff

View File

View File

@ -1,3 +1,3 @@
{
"version": "1.38.1"
"version": "1.39.0"
}

View File

@ -20,6 +20,7 @@
"new": "backstage-cli new --scope @backstage-community",
"build:api-reports": "yarn build:api-reports:only --tsc",
"build:api-reports:only": "backstage-repo-tools api-reports -o ae-wrong-input-file-type,ae-undocumented --validate-release-tags",
"build:knip-reports": "backstage-repo-tools knip-reports",
"postinstall": "cd ../../ && yarn install"
},
"workspaces": {
@ -34,9 +35,9 @@
"directory": "workspaces/airbrake"
},
"devDependencies": {
"@backstage/cli": "^0.32.0",
"@backstage/cli": "^0.32.1",
"@backstage/e2e-test-utils": "^0.1.1",
"@backstage/repo-tools": "^0.13.2",
"@backstage/repo-tools": "^0.13.3",
"@changesets/cli": "^2.27.1",
"knip": "^5.27.4",
"node-gyp": "^10.0.0",

View File

@ -1,5 +1,11 @@
# @backstage-community/plugin-airbrake-backend
## 0.10.0
### Minor Changes
- 56bc30a: Backstage version bump to v1.39.0
## 0.9.0
### Minor Changes

View File

@ -1,6 +1,6 @@
{
"name": "@backstage-community/plugin-airbrake-backend",
"version": "0.9.0",
"version": "0.10.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@ -33,8 +33,8 @@
"clean": "backstage-cli package clean"
},
"dependencies": {
"@backstage/backend-defaults": "^0.9.0",
"@backstage/backend-plugin-api": "^1.3.0",
"@backstage/backend-defaults": "^0.10.0",
"@backstage/backend-plugin-api": "^1.3.1",
"@backstage/config": "^1.3.2",
"@types/express": "*",
"express": "^4.17.1",
@ -43,10 +43,10 @@
"yn": "^4.0.0"
},
"devDependencies": {
"@backstage/backend-test-utils": "^1.4.0",
"@backstage/cli": "^0.32.0",
"@backstage/plugin-auth-backend": "^0.24.5",
"@backstage/plugin-auth-backend-module-guest-provider": "^0.2.7",
"@backstage/backend-test-utils": "^1.5.0",
"@backstage/cli": "^0.32.1",
"@backstage/plugin-auth-backend": "^0.25.0",
"@backstage/plugin-auth-backend-module-guest-provider": "^0.2.8",
"@types/http-proxy-middleware": "^1.0.0",
"@types/supertest": "^6.0.0",
"supertest": "^7.0.0"

View File

@ -1,5 +1,11 @@
# @backstage-community/plugin-airbrake
## 0.9.0
### Minor Changes
- 56bc30a: Backstage version bump to v1.39.0
## 0.8.0
### Minor Changes

View File

@ -1,6 +1,6 @@
{
"name": "@backstage-community/plugin-airbrake",
"version": "0.8.0",
"version": "0.9.0",
"backstage": {
"role": "frontend-plugin",
"pluginId": "airbrake",
@ -37,22 +37,22 @@
"test": "backstage-cli package test"
},
"dependencies": {
"@backstage/catalog-model": "^1.7.3",
"@backstage/core-components": "^0.17.1",
"@backstage/core-plugin-api": "^1.10.6",
"@backstage/dev-utils": "^1.1.9",
"@backstage/plugin-catalog-react": "^1.17.0",
"@backstage/test-utils": "^1.7.7",
"@backstage/catalog-model": "^1.7.4",
"@backstage/core-components": "^0.17.2",
"@backstage/core-plugin-api": "^1.10.7",
"@backstage/dev-utils": "^1.1.10",
"@backstage/plugin-catalog-react": "^1.18.0",
"@backstage/test-utils": "^1.7.8",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
"@types/react": "^16.13.1 || ^17.0.0 || ^18.0.0",
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/app-defaults": "^1.6.1",
"@backstage/cli": "^0.32.0",
"@backstage/dev-utils": "^1.1.9",
"@backstage/test-utils": "^1.7.7",
"@backstage/app-defaults": "^1.6.2",
"@backstage/cli": "^0.32.1",
"@backstage/dev-utils": "^1.1.10",
"@backstage/test-utils": "^1.7.8",
"@testing-library/dom": "^10.0.0",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^15.0.0",

File diff suppressed because it is too large Load Diff

View File

View File

@ -1,3 +1,3 @@
{
"version": "1.38.1"
"version": "1.39.0"
}

View File

@ -20,6 +20,7 @@
"new": "backstage-cli new --scope @backstage-community",
"build:api-reports": "yarn build:api-reports:only --tsc",
"build:api-reports:only": "backstage-repo-tools api-reports -o ae-wrong-input-file-type,ae-undocumented --validate-release-tags",
"build:knip-reports": "backstage-repo-tools knip-reports",
"postinstall": "cd ../../ && yarn install"
},
"workspaces": {
@ -34,9 +35,9 @@
"directory": "workspaces/allure"
},
"devDependencies": {
"@backstage/cli": "^0.32.0",
"@backstage/cli": "^0.32.1",
"@backstage/e2e-test-utils": "^0.1.1",
"@backstage/repo-tools": "^0.13.2",
"@backstage/repo-tools": "^0.13.3",
"@changesets/cli": "^2.27.1",
"knip": "^5.27.4",
"node-gyp": "^10.0.0",

View File

@ -1,5 +1,11 @@
# @backstage-community/plugin-allure
## 0.7.0
### Minor Changes
- 60bc2a2: Backstage version bump to v1.39.0
## 0.6.0
### Minor Changes

View File

@ -1,6 +1,6 @@
{
"name": "@backstage-community/plugin-allure",
"version": "0.6.0",
"version": "0.7.0",
"description": "A Backstage plugin that integrates with Allure",
"backstage": {
"role": "frontend-plugin",
@ -37,17 +37,17 @@
"test": "backstage-cli package test"
},
"dependencies": {
"@backstage/catalog-model": "^1.7.3",
"@backstage/core-components": "^0.17.1",
"@backstage/core-plugin-api": "^1.10.6",
"@backstage/plugin-catalog-react": "^1.17.0",
"@backstage/catalog-model": "^1.7.4",
"@backstage/core-components": "^0.17.2",
"@backstage/core-plugin-api": "^1.10.7",
"@backstage/plugin-catalog-react": "^1.18.0",
"@types/react": "^16.13.1 || ^17.0.0 || ^18.0.0",
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/cli": "^0.32.0",
"@backstage/dev-utils": "^1.1.9",
"@backstage/test-utils": "^1.7.7",
"@backstage/cli": "^0.32.1",
"@backstage/dev-utils": "^1.1.10",
"@backstage/test-utils": "^1.7.8",
"@testing-library/dom": "^10.0.0",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^15.0.0",

View File

@ -1733,13 +1733,13 @@ __metadata:
version: 0.0.0-use.local
resolution: "@backstage-community/plugin-allure@workspace:plugins/allure"
dependencies:
"@backstage/catalog-model": "npm:^1.7.3"
"@backstage/cli": "npm:^0.32.0"
"@backstage/core-components": "npm:^0.17.1"
"@backstage/core-plugin-api": "npm:^1.10.6"
"@backstage/dev-utils": "npm:^1.1.9"
"@backstage/plugin-catalog-react": "npm:^1.17.0"
"@backstage/test-utils": "npm:^1.7.7"
"@backstage/catalog-model": "npm:^1.7.4"
"@backstage/cli": "npm:^0.32.1"
"@backstage/core-components": "npm:^0.17.2"
"@backstage/core-plugin-api": "npm:^1.10.7"
"@backstage/dev-utils": "npm:^1.1.10"
"@backstage/plugin-catalog-react": "npm:^1.18.0"
"@backstage/test-utils": "npm:^1.7.8"
"@testing-library/dom": "npm:^10.0.0"
"@testing-library/jest-dom": "npm:^6.0.0"
"@testing-library/react": "npm:^15.0.0"
@ -1757,15 +1757,15 @@ __metadata:
languageName: unknown
linkType: soft
"@backstage/app-defaults@npm:^1.6.1":
version: 1.6.1
resolution: "@backstage/app-defaults@npm:1.6.1"
"@backstage/app-defaults@npm:^1.6.2":
version: 1.6.2
resolution: "@backstage/app-defaults@npm:1.6.2"
dependencies:
"@backstage/core-app-api": "npm:^1.16.1"
"@backstage/core-components": "npm:^0.17.1"
"@backstage/core-plugin-api": "npm:^1.10.6"
"@backstage/plugin-permission-react": "npm:^0.4.33"
"@backstage/theme": "npm:^0.6.5"
"@backstage/core-app-api": "npm:^1.17.0"
"@backstage/core-components": "npm:^0.17.2"
"@backstage/core-plugin-api": "npm:^1.10.7"
"@backstage/plugin-permission-react": "npm:^0.4.34"
"@backstage/theme": "npm:^0.6.6"
"@material-ui/core": "npm:^4.12.2"
"@material-ui/icons": "npm:^4.9.1"
peerDependencies:
@ -1776,50 +1776,50 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/9367d24422d3bc4738d163fe5e4b4c500741ddbfc71aaa111815c162ad9be807f96617e13043c9ebb4f98fd3ec971de8a83199d534364542ed591b9ad9f3516a
checksum: 10/0a555df27dbf75e92949dadf57f1764825d25d89b25fc0bf01bb1a4f0546787d94001dbb8beb65d444ad1801c7cb52236240fa42a2aeb0a51d39d2b41949033d
languageName: node
linkType: hard
"@backstage/backend-plugin-api@npm:^1.3.0":
version: 1.3.0
resolution: "@backstage/backend-plugin-api@npm:1.3.0"
"@backstage/backend-plugin-api@npm:^1.3.1":
version: 1.3.1
resolution: "@backstage/backend-plugin-api@npm:1.3.1"
dependencies:
"@backstage/cli-common": "npm:^0.1.15"
"@backstage/config": "npm:^1.3.2"
"@backstage/errors": "npm:^1.2.7"
"@backstage/plugin-auth-node": "npm:^0.6.2"
"@backstage/plugin-permission-common": "npm:^0.8.4"
"@backstage/plugin-permission-node": "npm:^0.9.1"
"@backstage/plugin-auth-node": "npm:^0.6.3"
"@backstage/plugin-permission-common": "npm:^0.9.0"
"@backstage/plugin-permission-node": "npm:^0.10.0"
"@backstage/types": "npm:^1.2.1"
"@types/express": "npm:^4.17.6"
"@types/luxon": "npm:^3.0.0"
knex: "npm:^3.0.0"
luxon: "npm:^3.0.0"
checksum: 10/0c657159bf2d988a09fe066dba811fa1c9237162dffdbbded09a108d906ea580099343b86d1d5e675bf5f59ee09e292f23dd44c6a594c2f70ead8035f512b8b0
checksum: 10/c78a0cd73c9e2ab3f611e62b1570b83fd496f501616caf00877c5191a7c431671f66f77d6e7fd2a35982915f8cb1b69a85cf7d26e3f236a28f709a6ae7af8eaf
languageName: node
linkType: hard
"@backstage/catalog-client@npm:^1.9.1":
version: 1.9.1
resolution: "@backstage/catalog-client@npm:1.9.1"
"@backstage/catalog-client@npm:^1.10.0":
version: 1.10.0
resolution: "@backstage/catalog-client@npm:1.10.0"
dependencies:
"@backstage/catalog-model": "npm:^1.7.3"
"@backstage/catalog-model": "npm:^1.7.4"
"@backstage/errors": "npm:^1.2.7"
cross-fetch: "npm:^4.0.0"
uri-template: "npm:^2.0.0"
checksum: 10/4e29bb4b6addf4330e298e08500efda6d7e9a416102abdd65dfbedb5e139d8911449f6bb91a90b2d571ddca53cb908c77a4a894fd34689f740e779e66020e13f
checksum: 10/565512931ef340c272ebbffcac7c5f54348ed67a73be80cdecb8768c547a1da41c72b02c0830f3036a06edbc8c77b9720ee5f1f498b2308f799fd409bb4bbbe1
languageName: node
linkType: hard
"@backstage/catalog-model@npm:^1.7.3":
version: 1.7.3
resolution: "@backstage/catalog-model@npm:1.7.3"
"@backstage/catalog-model@npm:^1.7.4":
version: 1.7.4
resolution: "@backstage/catalog-model@npm:1.7.4"
dependencies:
"@backstage/errors": "npm:^1.2.7"
"@backstage/types": "npm:^1.2.1"
ajv: "npm:^8.10.0"
lodash: "npm:^4.17.21"
checksum: 10/5c58e19cf30f392c6a9e49edd623fc0a5677d36a2f7ab1e09dadf54fff110e4c2bf3f967061ed7279a106526cd05cae8ac9bedfc03742773e7499807ed9f19c8
checksum: 10/48c2db2a8144e891319879cec6cae1980088165a910a757b8ebc07dc337b4d8d5c743fbaa3fa916cdd1b5e06635b3a3edbd1e7d8519ac135824f1ba37c5e3ce2
languageName: node
linkType: hard
@ -1846,26 +1846,26 @@ __metadata:
languageName: node
linkType: hard
"@backstage/cli@npm:^0.32.0":
version: 0.32.0
resolution: "@backstage/cli@npm:0.32.0"
"@backstage/cli@npm:^0.32.1":
version: 0.32.1
resolution: "@backstage/cli@npm:0.32.1"
dependencies:
"@backstage/catalog-model": "npm:^1.7.3"
"@backstage/catalog-model": "npm:^1.7.4"
"@backstage/cli-common": "npm:^0.1.15"
"@backstage/cli-node": "npm:^0.2.13"
"@backstage/config": "npm:^1.3.2"
"@backstage/config-loader": "npm:^1.10.0"
"@backstage/config-loader": "npm:^1.10.1"
"@backstage/errors": "npm:^1.2.7"
"@backstage/eslint-plugin": "npm:^0.1.10"
"@backstage/integration": "npm:^1.16.3"
"@backstage/release-manifests": "npm:^0.0.12"
"@backstage/integration": "npm:^1.17.0"
"@backstage/release-manifests": "npm:^0.0.13"
"@backstage/types": "npm:^1.2.1"
"@manypkg/get-packages": "npm:^1.1.3"
"@module-federation/enhanced": "npm:^0.9.0"
"@octokit/graphql": "npm:^5.0.0"
"@octokit/graphql-schema": "npm:^13.7.0"
"@octokit/oauth-app": "npm:^4.2.0"
"@octokit/request": "npm:^6.0.0"
"@octokit/request": "npm:^8.0.0"
"@pmmmwh/react-refresh-webpack-plugin": "npm:^0.5.7"
"@rollup/plugin-commonjs": "npm:^26.0.0"
"@rollup/plugin-json": "npm:^6.0.0"
@ -1939,7 +1939,7 @@ __metadata:
process: "npm:^0.11.10"
raw-loader: "npm:^4.0.2"
react-dev-utils: "npm:^12.0.0-next.60"
react-refresh: "npm:^0.14.0"
react-refresh: "npm:^0.17.0"
recursive-readdir: "npm:^2.2.2"
replace-in-file: "npm:^7.1.0"
rollup: "npm:^4.27.3"
@ -1965,7 +1965,7 @@ __metadata:
zod: "npm:^3.22.4"
zod-validation-error: "npm:^3.4.0"
peerDependencies:
"@rspack/core": ^1.0.10
"@rspack/core": ^1.2.8
"@rspack/dev-server": ^1.0.9
"@rspack/plugin-react-refresh": ^1.0.0
peerDependenciesMeta:
@ -1978,13 +1978,13 @@ __metadata:
bin:
backstage-cli: bin/backstage-cli
backstage-cli-alpha: bin/backstage-cli-alpha
checksum: 10/c9bec5d95e1958f01c6492ef9bdba2262fd1ea3d269e9b0d03f78a7bf91b41363a7fbf59f6f1a08db3e30ced4e7bed030d8bc4a6c59fb0be4d27efc53ed16d9b
checksum: 10/8675aaf0a33d10d3f7620ca89f6a2a7f2c7e35e86c49bf3e8d56ff71ddc7e888e53a1e99c8bd476c9d67c911ae6552d674b4944a93ab120e32d910fe36db6c1d
languageName: node
linkType: hard
"@backstage/config-loader@npm:^1.10.0":
version: 1.10.0
resolution: "@backstage/config-loader@npm:1.10.0"
"@backstage/config-loader@npm:^1.10.1":
version: 1.10.1
resolution: "@backstage/config-loader@npm:1.10.1"
dependencies:
"@backstage/cli-common": "npm:^0.1.15"
"@backstage/config": "npm:^1.3.2"
@ -2001,7 +2001,7 @@ __metadata:
minimist: "npm:^1.2.5"
typescript-json-schema: "npm:^0.65.0"
yaml: "npm:^2.0.0"
checksum: 10/dc8f78282648e50bc25608fce4699045cdf1bc8d2ed03d2635d0c9afce3e01f052f6d4dde82f12bdb606c73a04ce1217eb3f79401d668061e40e794184535e44
checksum: 10/61f66e65bf747b07f72c3475a3875c5409442087ca541c749a1ecff6668cb0564294f6b760a2e76e135871bdaf61f2b8bcb2e62d4786d12693400c57422f3b85
languageName: node
linkType: hard
@ -2016,12 +2016,12 @@ __metadata:
languageName: node
linkType: hard
"@backstage/core-app-api@npm:^1.16.1":
version: 1.16.1
resolution: "@backstage/core-app-api@npm:1.16.1"
"@backstage/core-app-api@npm:^1.17.0":
version: 1.17.0
resolution: "@backstage/core-app-api@npm:1.17.0"
dependencies:
"@backstage/config": "npm:^1.3.2"
"@backstage/core-plugin-api": "npm:^1.10.6"
"@backstage/core-plugin-api": "npm:^1.10.7"
"@backstage/types": "npm:^1.2.1"
"@backstage/version-bridge": "npm:^1.0.11"
"@types/prop-types": "npm:^15.7.3"
@ -2040,17 +2040,17 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/fae37fa5c4598dc1c2a4f82356d4039633cc7323f44f369ad1ca4151e1e27f668b2929f759e7a4843e273979a5aae1b473809e8add23cbd788fc48329bdf51fd
checksum: 10/04939b5d59a2473cc95ec170a11f0c82d924f436d1f40598f6a571a21c37c38e2d86f84ed6ec0b1cf91b3ac02aff2aed608184f41017535e55096466a63c4f29
languageName: node
linkType: hard
"@backstage/core-compat-api@npm:^0.4.1":
version: 0.4.1
resolution: "@backstage/core-compat-api@npm:0.4.1"
"@backstage/core-compat-api@npm:^0.4.2":
version: 0.4.2
resolution: "@backstage/core-compat-api@npm:0.4.2"
dependencies:
"@backstage/core-plugin-api": "npm:^1.10.6"
"@backstage/frontend-plugin-api": "npm:^0.10.1"
"@backstage/plugin-catalog-react": "npm:^1.17.0"
"@backstage/core-plugin-api": "npm:^1.10.7"
"@backstage/frontend-plugin-api": "npm:^0.10.2"
"@backstage/plugin-catalog-react": "npm:^1.18.0"
"@backstage/version-bridge": "npm:^1.0.11"
lodash: "npm:^4.17.21"
peerDependencies:
@ -2061,18 +2061,18 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/4c91cc4f4a06d6420a4bed63e540e46a34a7a1ecb831fd503960c9e9ae8817f015a0b6d39d37ac4588233caf2a21a93c9acadbe15d11b59706275166567a4581
checksum: 10/7e93c3ff7a9979ee8cb0ab582e66bd0febb5995c91cc0545473e9e86fc75c1ebbb0a24a901e120d7e4ecf122bbb31de1b4f8fc78c7da5f6d84daa9d6b9194035
languageName: node
linkType: hard
"@backstage/core-components@npm:^0.17.1":
version: 0.17.1
resolution: "@backstage/core-components@npm:0.17.1"
"@backstage/core-components@npm:^0.17.2":
version: 0.17.2
resolution: "@backstage/core-components@npm:0.17.2"
dependencies:
"@backstage/config": "npm:^1.3.2"
"@backstage/core-plugin-api": "npm:^1.10.6"
"@backstage/core-plugin-api": "npm:^1.10.7"
"@backstage/errors": "npm:^1.2.7"
"@backstage/theme": "npm:^0.6.5"
"@backstage/theme": "npm:^0.6.6"
"@backstage/version-bridge": "npm:^1.0.11"
"@dagrejs/dagre": "npm:^1.1.4"
"@date-io/core": "npm:^1.3.13"
@ -2115,13 +2115,13 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/12e8f0675c2dd6bb871d77ceb833d2078cac41278d4122139669ffaadea09df7b3c8ca53c166e2c664c275e381f9c96f8383a5a1faaeb956ab0f1e4ee72ec1b7
checksum: 10/0b790f3448001e571e50a89c6bbcd08d0d08b7e098b262e09ad19e475ffdf12f4b0c31b0880e64a61a1096b5091d6767e06e32874a2dc6ebc98d79bc0b82107f
languageName: node
linkType: hard
"@backstage/core-plugin-api@npm:^1.10.6":
version: 1.10.6
resolution: "@backstage/core-plugin-api@npm:1.10.6"
"@backstage/core-plugin-api@npm:^1.10.7":
version: 1.10.7
resolution: "@backstage/core-plugin-api@npm:1.10.7"
dependencies:
"@backstage/config": "npm:^1.3.2"
"@backstage/errors": "npm:^1.2.7"
@ -2136,22 +2136,22 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/1359bb2dc294c6eb0b8de6aa4a0788561c5d43ef2a4464d4f7600c382126398a42724e8ba894925ab02f1d332ef9b87b0eeee31e56a9e9223f8d6504a283d896
checksum: 10/1a8865e41f38b514936275dea23c595e5c07523a68081d8207f99a18ee049c81b92b33a606478b7f7881597bc71f9b14d9aba7cbc453645ced6317648ab75826
languageName: node
linkType: hard
"@backstage/dev-utils@npm:^1.1.9":
version: 1.1.9
resolution: "@backstage/dev-utils@npm:1.1.9"
"@backstage/dev-utils@npm:^1.1.10":
version: 1.1.10
resolution: "@backstage/dev-utils@npm:1.1.10"
dependencies:
"@backstage/app-defaults": "npm:^1.6.1"
"@backstage/catalog-model": "npm:^1.7.3"
"@backstage/core-app-api": "npm:^1.16.1"
"@backstage/core-components": "npm:^0.17.1"
"@backstage/core-plugin-api": "npm:^1.10.6"
"@backstage/integration-react": "npm:^1.2.6"
"@backstage/plugin-catalog-react": "npm:^1.17.0"
"@backstage/theme": "npm:^0.6.5"
"@backstage/app-defaults": "npm:^1.6.2"
"@backstage/catalog-model": "npm:^1.7.4"
"@backstage/core-app-api": "npm:^1.17.0"
"@backstage/core-components": "npm:^0.17.2"
"@backstage/core-plugin-api": "npm:^1.10.7"
"@backstage/integration-react": "npm:^1.2.7"
"@backstage/plugin-catalog-react": "npm:^1.18.0"
"@backstage/theme": "npm:^0.6.6"
"@material-ui/core": "npm:^4.12.2"
"@material-ui/icons": "npm:^4.9.1"
react-use: "npm:^17.2.4"
@ -2163,7 +2163,7 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/078ece28986bf3997560bd8441f6414079264fc88e10172e90be9525393ef0f2b2577fa5c2ef67d9f7a0997eb0578a19a24b51502524070ab6f0d94f069ea949
checksum: 10/2f4c4c41f4e0fcb7cbc5f2e4acdc2c49b312e5ce95e6fbdb849f71f1f3451ad471dd2d1063da789bd3187b797af2826fda8c9147edb5fdaf1fd8bdbd55b5d911
languageName: node
linkType: hard
@ -2202,16 +2202,16 @@ __metadata:
languageName: node
linkType: hard
"@backstage/frontend-app-api@npm:^0.11.1":
version: 0.11.1
resolution: "@backstage/frontend-app-api@npm:0.11.1"
"@backstage/frontend-app-api@npm:^0.11.2":
version: 0.11.2
resolution: "@backstage/frontend-app-api@npm:0.11.2"
dependencies:
"@backstage/config": "npm:^1.3.2"
"@backstage/core-app-api": "npm:^1.16.1"
"@backstage/core-plugin-api": "npm:^1.10.6"
"@backstage/core-app-api": "npm:^1.17.0"
"@backstage/core-plugin-api": "npm:^1.10.7"
"@backstage/errors": "npm:^1.2.7"
"@backstage/frontend-defaults": "npm:^0.2.1"
"@backstage/frontend-plugin-api": "npm:^0.10.1"
"@backstage/frontend-defaults": "npm:^0.2.2"
"@backstage/frontend-plugin-api": "npm:^0.10.2"
"@backstage/types": "npm:^1.2.1"
"@backstage/version-bridge": "npm:^1.0.11"
lodash: "npm:^4.17.21"
@ -2224,19 +2224,19 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/fdf5b7dddeba9320e8ec54751396a3e81897605c26520af60eb61a76f17dd78b6b786f5cfa9f4bad3beef0d3408868bfe8331f6773b54034d11dc170a35e60e7
checksum: 10/06cf128df60b0322c07c14853146da5096625d58a344555571a65ead221f03dc1f4e2fe7da364b2afec010be13a4d4a4574060a3f65c023bdcdc93d20d09c33d
languageName: node
linkType: hard
"@backstage/frontend-defaults@npm:^0.2.1":
version: 0.2.1
resolution: "@backstage/frontend-defaults@npm:0.2.1"
"@backstage/frontend-defaults@npm:^0.2.2":
version: 0.2.2
resolution: "@backstage/frontend-defaults@npm:0.2.2"
dependencies:
"@backstage/config": "npm:^1.3.2"
"@backstage/errors": "npm:^1.2.7"
"@backstage/frontend-app-api": "npm:^0.11.1"
"@backstage/frontend-plugin-api": "npm:^0.10.1"
"@backstage/plugin-app": "npm:^0.1.8"
"@backstage/frontend-app-api": "npm:^0.11.2"
"@backstage/frontend-plugin-api": "npm:^0.10.2"
"@backstage/plugin-app": "npm:^0.1.9"
"@react-hookz/web": "npm:^24.0.0"
peerDependencies:
"@types/react": ^17.0.0 || ^18.0.0
@ -2246,16 +2246,16 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/3bd178ca78db5d467378272025d7a3fa7995a37063f39c2ec2c9a81b2bb6aa4890f888e99f1e5c4abb442614b978a490d8dbcaa09e54a94e47364caab618725c
checksum: 10/23e6156314cb80d9cc1128ee3ad2d3afee3e2a6e88c049853b19133fc95e75f4361e735f26903e44fa62b29d39df5381c53200799a8cc3b3fd0943682a5e51f5
languageName: node
linkType: hard
"@backstage/frontend-plugin-api@npm:^0.10.1":
version: 0.10.1
resolution: "@backstage/frontend-plugin-api@npm:0.10.1"
"@backstage/frontend-plugin-api@npm:^0.10.2":
version: 0.10.2
resolution: "@backstage/frontend-plugin-api@npm:0.10.2"
dependencies:
"@backstage/core-components": "npm:^0.17.1"
"@backstage/core-plugin-api": "npm:^1.10.6"
"@backstage/core-components": "npm:^0.17.2"
"@backstage/core-plugin-api": "npm:^1.10.7"
"@backstage/types": "npm:^1.2.1"
"@backstage/version-bridge": "npm:^1.0.11"
"@material-ui/core": "npm:^4.12.4"
@ -2270,19 +2270,19 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/5a1b69d7a1b1db584f4f0c4934ac98dc678f53730c250959da47e20479032b02b1f02785bcb51989af899e8b1166599e23e03ce024469e5efb5b49f8c792e315
checksum: 10/4f01cf2ae8352dd8b5f7ff66a97739c6f9f8b19b182ae7cb05db542d02fa0cdee805712c0d355068de3c7cd851404fe6e424c5b7a0ffbcec686c42bc78030510
languageName: node
linkType: hard
"@backstage/frontend-test-utils@npm:^0.3.1":
version: 0.3.1
resolution: "@backstage/frontend-test-utils@npm:0.3.1"
"@backstage/frontend-test-utils@npm:^0.3.2":
version: 0.3.2
resolution: "@backstage/frontend-test-utils@npm:0.3.2"
dependencies:
"@backstage/config": "npm:^1.3.2"
"@backstage/frontend-app-api": "npm:^0.11.1"
"@backstage/frontend-plugin-api": "npm:^0.10.1"
"@backstage/plugin-app": "npm:^0.1.8"
"@backstage/test-utils": "npm:^1.7.7"
"@backstage/frontend-app-api": "npm:^0.11.2"
"@backstage/frontend-plugin-api": "npm:^0.10.2"
"@backstage/plugin-app": "npm:^0.1.9"
"@backstage/test-utils": "npm:^1.7.8"
"@backstage/types": "npm:^1.2.1"
"@backstage/version-bridge": "npm:^1.0.11"
zod: "npm:^3.22.4"
@ -2295,17 +2295,17 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/b46c7e660ffbfecae9d0dd9fbc471c0c6324550d768f2749ff5726b4acd737aef4075290f1c2e8b73ce967b664997cc1f47f933254209d41d2fb080799c3dba9
checksum: 10/3b33d0165e2bda8460e433649fec04d7594c7d987b7cdc59b46a955208266481d15df0f6d529a0bfbece7050d6510c0e320bf77fc81296579747e9a469d8e7d0
languageName: node
linkType: hard
"@backstage/integration-react@npm:^1.2.6":
version: 1.2.6
resolution: "@backstage/integration-react@npm:1.2.6"
"@backstage/integration-react@npm:^1.2.7":
version: 1.2.7
resolution: "@backstage/integration-react@npm:1.2.7"
dependencies:
"@backstage/config": "npm:^1.3.2"
"@backstage/core-plugin-api": "npm:^1.10.6"
"@backstage/integration": "npm:^1.16.3"
"@backstage/core-plugin-api": "npm:^1.10.7"
"@backstage/integration": "npm:^1.17.0"
"@material-ui/core": "npm:^4.12.2"
"@material-ui/icons": "npm:^4.9.1"
peerDependencies:
@ -2316,13 +2316,13 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/7a3a13d277e03c5a95131b99a50210e4bd7bdcba133ef5ee1549d625fc373072669a52e9317bc1b29f27f7a3d99eb89d2dc6469ff7bd87de10eb1d19a03a51bb
checksum: 10/a954cdd17caebd6a768892884dea34249b6f502de5e7dcb9da8fc18f591bc15be7bb37e91d6f56c0c3783121a69e54f305ae6279a7647f42f15f355affa5cebe
languageName: node
linkType: hard
"@backstage/integration@npm:^1.16.3":
version: 1.16.3
resolution: "@backstage/integration@npm:1.16.3"
"@backstage/integration@npm:^1.17.0":
version: 1.17.0
resolution: "@backstage/integration@npm:1.17.0"
dependencies:
"@azure/identity": "npm:^4.0.0"
"@azure/storage-blob": "npm:^12.5.0"
@ -2334,20 +2334,20 @@ __metadata:
git-url-parse: "npm:^15.0.0"
lodash: "npm:^4.17.21"
luxon: "npm:^3.0.0"
checksum: 10/ce27919bee116725b1cd0749388dacace62746eba46772343cdd95d93c0261d673b7feac62ff74a024e6a8b455b33f231ceb987c23ecf34804643eda6bed2821
checksum: 10/651a717a2268be73f6b1d34072585641cf3ad0e8e5122fc4cca249e773fda4dcde904588331d352ae455a420120fb1ef7847cd859d8d9132203eec63c8c6b01a
languageName: node
linkType: hard
"@backstage/plugin-app@npm:^0.1.8":
version: 0.1.8
resolution: "@backstage/plugin-app@npm:0.1.8"
"@backstage/plugin-app@npm:^0.1.9":
version: 0.1.9
resolution: "@backstage/plugin-app@npm:0.1.9"
dependencies:
"@backstage/core-components": "npm:^0.17.1"
"@backstage/core-plugin-api": "npm:^1.10.6"
"@backstage/frontend-plugin-api": "npm:^0.10.1"
"@backstage/integration-react": "npm:^1.2.6"
"@backstage/plugin-permission-react": "npm:^0.4.33"
"@backstage/theme": "npm:^0.6.5"
"@backstage/core-components": "npm:^0.17.2"
"@backstage/core-plugin-api": "npm:^1.10.7"
"@backstage/frontend-plugin-api": "npm:^0.10.2"
"@backstage/integration-react": "npm:^1.2.7"
"@backstage/plugin-permission-react": "npm:^0.4.34"
"@backstage/theme": "npm:^0.6.6"
"@backstage/types": "npm:^1.2.1"
"@material-ui/core": "npm:^4.9.13"
"@material-ui/icons": "npm:^4.9.1"
@ -2361,17 +2361,17 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/3634ce0bb0ac0f86050c45a4d24f728975232dcd04106b48b1ffdaec4e2ce9ef1ad17220afd0351fb75d6e10bfaacd45289064397332b5c08dc1c046d21466cf
checksum: 10/9c357605a8427f8bf5099968c612f90015d34d757a9494ea22d487bec20593cd80a7a50326e46344fc877ed163a14f2675d33530c1d756411316b0d373096aab
languageName: node
linkType: hard
"@backstage/plugin-auth-node@npm:^0.6.2":
version: 0.6.2
resolution: "@backstage/plugin-auth-node@npm:0.6.2"
"@backstage/plugin-auth-node@npm:^0.6.3":
version: 0.6.3
resolution: "@backstage/plugin-auth-node@npm:0.6.3"
dependencies:
"@backstage/backend-plugin-api": "npm:^1.3.0"
"@backstage/catalog-client": "npm:^1.9.1"
"@backstage/catalog-model": "npm:^1.7.3"
"@backstage/backend-plugin-api": "npm:^1.3.1"
"@backstage/catalog-client": "npm:^1.10.0"
"@backstage/catalog-model": "npm:^1.7.4"
"@backstage/config": "npm:^1.3.2"
"@backstage/errors": "npm:^1.2.7"
"@backstage/types": "npm:^1.2.1"
@ -2384,37 +2384,37 @@ __metadata:
zod: "npm:^3.22.4"
zod-to-json-schema: "npm:^3.21.4"
zod-validation-error: "npm:^3.4.0"
checksum: 10/831b07fa41df68855f9a107a78c70d34986ddc7e12eac70cd3cdecb42b1297a65f0e6061549b12653704966887a5cd0199c7d69588e48a461dd74559d890aaa7
checksum: 10/7f7fd4c1072512c8db6902e7a3e75319f73e2e487da0d202f3fde446eb340a34e7b1c0ce92d16f4dc2a5525aecd1df78979cdcfc650a48a41b2441f221fc0579
languageName: node
linkType: hard
"@backstage/plugin-catalog-common@npm:^1.1.3":
version: 1.1.3
resolution: "@backstage/plugin-catalog-common@npm:1.1.3"
"@backstage/plugin-catalog-common@npm:^1.1.4":
version: 1.1.4
resolution: "@backstage/plugin-catalog-common@npm:1.1.4"
dependencies:
"@backstage/catalog-model": "npm:^1.7.3"
"@backstage/plugin-permission-common": "npm:^0.8.4"
"@backstage/plugin-search-common": "npm:^1.2.17"
checksum: 10/60c0624603576bcf12bf99e6ac1c921e0847ad72f8ac89ed4315b88f128b738e00eab8c6fc1da6e9830dac93b9b0acd2e3cb1ee21667c48a98ac7b79b546a560
"@backstage/catalog-model": "npm:^1.7.4"
"@backstage/plugin-permission-common": "npm:^0.9.0"
"@backstage/plugin-search-common": "npm:^1.2.18"
checksum: 10/e65331add32185a54de3c0bae4187824bd0b2d4a729cf4cd659bda54d3dd1cb94a9aeaf4553ee08ae44439742cc45149767329b3ef07bc39ed014433a62d7bd0
languageName: node
linkType: hard
"@backstage/plugin-catalog-react@npm:^1.17.0":
version: 1.17.0
resolution: "@backstage/plugin-catalog-react@npm:1.17.0"
"@backstage/plugin-catalog-react@npm:^1.18.0":
version: 1.18.0
resolution: "@backstage/plugin-catalog-react@npm:1.18.0"
dependencies:
"@backstage/catalog-client": "npm:^1.9.1"
"@backstage/catalog-model": "npm:^1.7.3"
"@backstage/core-compat-api": "npm:^0.4.1"
"@backstage/core-components": "npm:^0.17.1"
"@backstage/core-plugin-api": "npm:^1.10.6"
"@backstage/catalog-client": "npm:^1.10.0"
"@backstage/catalog-model": "npm:^1.7.4"
"@backstage/core-compat-api": "npm:^0.4.2"
"@backstage/core-components": "npm:^0.17.2"
"@backstage/core-plugin-api": "npm:^1.10.7"
"@backstage/errors": "npm:^1.2.7"
"@backstage/frontend-plugin-api": "npm:^0.10.1"
"@backstage/frontend-test-utils": "npm:^0.3.1"
"@backstage/integration-react": "npm:^1.2.6"
"@backstage/plugin-catalog-common": "npm:^1.1.3"
"@backstage/plugin-permission-common": "npm:^0.8.4"
"@backstage/plugin-permission-react": "npm:^0.4.33"
"@backstage/frontend-plugin-api": "npm:^0.10.2"
"@backstage/frontend-test-utils": "npm:^0.3.2"
"@backstage/integration-react": "npm:^1.2.7"
"@backstage/plugin-catalog-common": "npm:^1.1.4"
"@backstage/plugin-permission-common": "npm:^0.9.0"
"@backstage/plugin-permission-react": "npm:^0.4.34"
"@backstage/types": "npm:^1.2.1"
"@backstage/version-bridge": "npm:^1.0.11"
"@material-ui/core": "npm:^4.12.2"
@ -2436,13 +2436,13 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/025ed43087462b021c13eac7fc762ad7d52d8ebb593da0093130e6379a79ac1b428fa9024eb21ace9bdf1d43ecafcab39226dbbf2b44ba35a6c93a9ddb04f1da
checksum: 10/1dec452c7bb1bd3538839a3a99943f5a5b50e5f414e31c679461e4810e5ea0e623cd41de6f08922fe577f3855459903f999c0ee0635982e1dd6bffbb46eceb08
languageName: node
linkType: hard
"@backstage/plugin-permission-common@npm:^0.8.4":
version: 0.8.4
resolution: "@backstage/plugin-permission-common@npm:0.8.4"
"@backstage/plugin-permission-common@npm:^0.9.0":
version: 0.9.0
resolution: "@backstage/plugin-permission-common@npm:0.9.0"
dependencies:
"@backstage/config": "npm:^1.3.2"
"@backstage/errors": "npm:^1.2.7"
@ -2451,35 +2451,35 @@ __metadata:
uuid: "npm:^11.0.0"
zod: "npm:^3.22.4"
zod-to-json-schema: "npm:^3.20.4"
checksum: 10/c850ff17d4f97a77064a296a3b53b112906f7483e72d6e48008b17846d3fa2578ce532722844f1761eb81687155f7f58634fd6ea22313733174903fda90860be
checksum: 10/f165e3018cf5010a5c6ce8ec9778f2ed0024810c38e2b02f9cca637f7c37b26b23822ba5341794e4dc18a8e153ac21b9fde456dddc19150d328b5f20a4668017
languageName: node
linkType: hard
"@backstage/plugin-permission-node@npm:^0.9.1":
version: 0.9.1
resolution: "@backstage/plugin-permission-node@npm:0.9.1"
"@backstage/plugin-permission-node@npm:^0.10.0":
version: 0.10.0
resolution: "@backstage/plugin-permission-node@npm:0.10.0"
dependencies:
"@backstage/backend-plugin-api": "npm:^1.3.0"
"@backstage/backend-plugin-api": "npm:^1.3.1"
"@backstage/config": "npm:^1.3.2"
"@backstage/errors": "npm:^1.2.7"
"@backstage/plugin-auth-node": "npm:^0.6.2"
"@backstage/plugin-permission-common": "npm:^0.8.4"
"@backstage/plugin-auth-node": "npm:^0.6.3"
"@backstage/plugin-permission-common": "npm:^0.9.0"
"@types/express": "npm:^4.17.6"
express: "npm:^4.17.1"
express-promise-router: "npm:^4.1.0"
zod: "npm:^3.22.4"
zod-to-json-schema: "npm:^3.20.4"
checksum: 10/3292951e8cdcc4341ba53e67bcc580d77da14e1e3224b9323671704b7329a3a9e45905e3cc5afb8bff33462178ddf7c3a510392c048ce125f374910622e91bd4
checksum: 10/ffd6efc8625c36c5afbde08cf31aeac56a64c3b05547c8b2ba77b6301044652d2c5c4145f8445694ec8b1155173100472f21df1a4ec80b95d454485feb35231b
languageName: node
linkType: hard
"@backstage/plugin-permission-react@npm:^0.4.33":
version: 0.4.33
resolution: "@backstage/plugin-permission-react@npm:0.4.33"
"@backstage/plugin-permission-react@npm:^0.4.34":
version: 0.4.34
resolution: "@backstage/plugin-permission-react@npm:0.4.34"
dependencies:
"@backstage/config": "npm:^1.3.2"
"@backstage/core-plugin-api": "npm:^1.10.6"
"@backstage/plugin-permission-common": "npm:^0.8.4"
"@backstage/core-plugin-api": "npm:^1.10.7"
"@backstage/plugin-permission-common": "npm:^0.9.0"
swr: "npm:^2.0.0"
peerDependencies:
"@types/react": ^17.0.0 || ^18.0.0
@ -2489,38 +2489,38 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/552bba79e3876ec48faf40df1c7f05f5b183130b3b214101b1dd48f519b6846867457ae458daeb20e74b8d8c805f4615c8a1c2d670e2f69f463cb484a408f16b
checksum: 10/55c0e8c8d250d524c77b0de0eb9ea488d1193b5059131692401c127eedda1d0553b5d8848df7587e255856b8f7d8b76176914d2fb3c89fca7a62656748ea3dec
languageName: node
linkType: hard
"@backstage/plugin-search-common@npm:^1.2.17":
version: 1.2.17
resolution: "@backstage/plugin-search-common@npm:1.2.17"
"@backstage/plugin-search-common@npm:^1.2.18":
version: 1.2.18
resolution: "@backstage/plugin-search-common@npm:1.2.18"
dependencies:
"@backstage/plugin-permission-common": "npm:^0.8.4"
"@backstage/plugin-permission-common": "npm:^0.9.0"
"@backstage/types": "npm:^1.2.1"
checksum: 10/30cfcb164940b7eb70d8163766cca981536372d0cb5c6e006837e044d91a60be16b83534a2887b0a7cf90a51bed35cd7b188e62598e7340cbf79e371a8bfd0e6
checksum: 10/9a7c262a5e1fc2d1bc40a9738d6e29ba215867a10efa22c1c3e3b7847d2b6f7566fde4c22f6989933a47d2f1928ee7544ade4f88fb2e0956f4dde7cf02cb85a6
languageName: node
linkType: hard
"@backstage/release-manifests@npm:^0.0.12":
version: 0.0.12
resolution: "@backstage/release-manifests@npm:0.0.12"
checksum: 10/482108faf39bd4095dfda34d00007065bff54a5aff836ef7c935a7a583baa6ae9d25e9d0c58a419e4d7d65eeb4f50357da47ab4d9cbd2d79da331fa426f64a3c
"@backstage/release-manifests@npm:^0.0.13":
version: 0.0.13
resolution: "@backstage/release-manifests@npm:0.0.13"
checksum: 10/b8c71e22dbc7d78fca93f9ed83c614e403a8bb103a2aceae4c799898af3aba976370e2255fd9e32b25f5dac3f80e1f37379d8c72a9d9c199cabbf111e70fe873
languageName: node
linkType: hard
"@backstage/repo-tools@npm:^0.13.2":
version: 0.13.2
resolution: "@backstage/repo-tools@npm:0.13.2"
"@backstage/repo-tools@npm:^0.13.3":
version: 0.13.3
resolution: "@backstage/repo-tools@npm:0.13.3"
dependencies:
"@apidevtools/swagger-parser": "npm:^10.1.0"
"@apisyouwonthate/style-guide": "npm:^1.4.0"
"@backstage/backend-plugin-api": "npm:^1.3.0"
"@backstage/catalog-model": "npm:^1.7.3"
"@backstage/backend-plugin-api": "npm:^1.3.1"
"@backstage/catalog-model": "npm:^1.7.4"
"@backstage/cli-common": "npm:^0.1.15"
"@backstage/cli-node": "npm:^0.2.13"
"@backstage/config-loader": "npm:^1.10.0"
"@backstage/config-loader": "npm:^1.10.1"
"@backstage/errors": "npm:^1.2.7"
"@electric-sql/pglite": "npm:^0.2.15"
"@manypkg/get-packages": "npm:^1.1.3"
@ -2561,7 +2561,7 @@ __metadata:
"@microsoft/tsdoc-config": "*"
"@useoptic/optic": ^1.0.0
prettier: ^2.8.1
typedoc: ^0.27.0
typedoc: ^0.28.0
typescript: "> 3.0.0"
peerDependenciesMeta:
prettier:
@ -2570,20 +2570,20 @@ __metadata:
optional: true
bin:
backstage-repo-tools: bin/backstage-repo-tools
checksum: 10/d51b6d065c5481a71641d8a11a8e041b0d02e40b058a09a5caf4e3a131ca04c334707dd51c72d39e34062efd6c0a7c21eb919400ae8fdabc266dc41201807c96
checksum: 10/f27aa2753859ebfb7adcc9642b7e3d06f1beebe89b5f7519d99a07f4fe7e53f6a8e4eace668c04b35555028bc5a452efd3277a828952450b24cdb428d365b640
languageName: node
linkType: hard
"@backstage/test-utils@npm:^1.7.7":
version: 1.7.7
resolution: "@backstage/test-utils@npm:1.7.7"
"@backstage/test-utils@npm:^1.7.8":
version: 1.7.8
resolution: "@backstage/test-utils@npm:1.7.8"
dependencies:
"@backstage/config": "npm:^1.3.2"
"@backstage/core-app-api": "npm:^1.16.1"
"@backstage/core-plugin-api": "npm:^1.10.6"
"@backstage/plugin-permission-common": "npm:^0.8.4"
"@backstage/plugin-permission-react": "npm:^0.4.33"
"@backstage/theme": "npm:^0.6.5"
"@backstage/core-app-api": "npm:^1.17.0"
"@backstage/core-plugin-api": "npm:^1.10.7"
"@backstage/plugin-permission-common": "npm:^0.9.0"
"@backstage/plugin-permission-react": "npm:^0.4.34"
"@backstage/theme": "npm:^0.6.6"
"@backstage/types": "npm:^1.2.1"
"@material-ui/core": "npm:^4.12.2"
"@material-ui/icons": "npm:^4.9.1"
@ -2599,13 +2599,13 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/2ffc4957e84b4c0e1328e43e05c88051026edbf8e2c9fd04f873176ecd636bc11269f36fa72933defc60d0d869986e9a2d46bba1f57e50811671d81c330bf1b1
checksum: 10/6d61fdfdf00b72d3c8ddb9120edc221085b634d39419f00610e40387715f4e5bfdf48f4d2762695d7f30d50c6d2e0f875bcb7d299265adb58fa19a76120b6ae9
languageName: node
linkType: hard
"@backstage/theme@npm:^0.6.5":
version: 0.6.5
resolution: "@backstage/theme@npm:0.6.5"
"@backstage/theme@npm:^0.6.6":
version: 0.6.6
resolution: "@backstage/theme@npm:0.6.6"
dependencies:
"@emotion/react": "npm:^11.10.5"
"@emotion/styled": "npm:^11.10.5"
@ -2619,7 +2619,7 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/242ccb2af6e2d1c64d4084c568c31d696d6abfdbbbd0ba35b2a9dabaae9c196b4610e2124f2c23fff16de082701901627f85b180f8a3ea2a8bcb865beb982829
checksum: 10/80297d992e853b3882fd158d192844a85738e89da6db7b6b47d27744129f04ea3c9ec946cb08fe226627f5e882670464d14bd07234e65debe98b3572eccbee15
languageName: node
linkType: hard
@ -3535,9 +3535,9 @@ __metadata:
version: 0.0.0-use.local
resolution: "@internal/allure@workspace:."
dependencies:
"@backstage/cli": "npm:^0.32.0"
"@backstage/cli": "npm:^0.32.1"
"@backstage/e2e-test-utils": "npm:^0.1.1"
"@backstage/repo-tools": "npm:^0.13.2"
"@backstage/repo-tools": "npm:^0.13.3"
"@changesets/cli": "npm:^2.27.1"
knip: "npm:^5.27.4"
node-gyp: "npm:^10.0.0"
@ -4882,6 +4882,16 @@ __metadata:
languageName: node
linkType: hard
"@octokit/endpoint@npm:^9.0.6":
version: 9.0.6
resolution: "@octokit/endpoint@npm:9.0.6"
dependencies:
"@octokit/types": "npm:^13.1.0"
universal-user-agent: "npm:^6.0.0"
checksum: 10/2bf776423365ee926bf3f722a664e52f1070758eff4a176279fb132103fd0c76e3541f83ace49bbad9a64f9c9b8de453be565ca8d6136989e9514dea65380ecf
languageName: node
linkType: hard
"@octokit/graphql-schema@npm:^13.7.0":
version: 13.10.0
resolution: "@octokit/graphql-schema@npm:13.10.0"
@ -4981,6 +4991,13 @@ __metadata:
languageName: node
linkType: hard
"@octokit/openapi-types@npm:^24.2.0":
version: 24.2.0
resolution: "@octokit/openapi-types@npm:24.2.0"
checksum: 10/000897ebc6e247c2591049d6081e95eb5636f73798dadd695ee6048496772b58065df88823e74a760201828545a7ac601dd3c1bcd2e00079a62a9ee9d389409c
languageName: node
linkType: hard
"@octokit/plugin-paginate-rest@npm:^6.1.2":
version: 6.1.2
resolution: "@octokit/plugin-paginate-rest@npm:6.1.2"
@ -5036,6 +5053,17 @@ __metadata:
languageName: node
linkType: hard
"@octokit/request-error@npm:^5.1.1":
version: 5.1.1
resolution: "@octokit/request-error@npm:5.1.1"
dependencies:
"@octokit/types": "npm:^13.1.0"
deprecation: "npm:^2.0.0"
once: "npm:^1.4.0"
checksum: 10/6ad98626407ba57bb33fa197611be74bee1dd9abc8d5d845648d6a2a04aa6840c0eb7f4be341d55dfcab5bc19181ad5fd25194869a7aaac6245f74b3a14d9662
languageName: node
linkType: hard
"@octokit/request@npm:^5.4.14, @octokit/request@npm:^5.6.3":
version: 5.6.3
resolution: "@octokit/request@npm:5.6.3"
@ -5064,6 +5092,18 @@ __metadata:
languageName: node
linkType: hard
"@octokit/request@npm:^8.0.0":
version: 8.4.1
resolution: "@octokit/request@npm:8.4.1"
dependencies:
"@octokit/endpoint": "npm:^9.0.6"
"@octokit/request-error": "npm:^5.1.1"
"@octokit/types": "npm:^13.1.0"
universal-user-agent: "npm:^6.0.0"
checksum: 10/2b2c9131cc9b608baeeef8ce2943768cc9db5fbe36a665f734a099bd921561c760e4391fbdf39d5aefb725db26742db1488c65624940ef7cec522e10863caa5e
languageName: node
linkType: hard
"@octokit/rest@npm:^19.0.3":
version: 19.0.13
resolution: "@octokit/rest@npm:19.0.13"
@ -5083,6 +5123,15 @@ __metadata:
languageName: node
linkType: hard
"@octokit/types@npm:^13.1.0":
version: 13.10.0
resolution: "@octokit/types@npm:13.10.0"
dependencies:
"@octokit/openapi-types": "npm:^24.2.0"
checksum: 10/32f8f5010d7faae128b0cdd0c221f0ca8c3781fe44483ecd87162b3da507db667f7369acda81340f6e2c9c374d9a938803409c6085c2c01d98210b6c58efb99a
languageName: node
linkType: hard
"@octokit/types@npm:^6.0.3, @octokit/types@npm:^6.10.0, @octokit/types@npm:^6.12.2, @octokit/types@npm:^6.16.1":
version: 6.41.0
resolution: "@octokit/types@npm:6.41.0"
@ -18341,10 +18390,10 @@ __metadata:
languageName: node
linkType: hard
"react-refresh@npm:^0.14.0":
version: 0.14.0
resolution: "react-refresh@npm:0.14.0"
checksum: 10/75941262ce3ed4fc79b52492943fd59692f29b84f30f3822713b7e920f28e85c62a4386f85cbfbaea95ed62d3e74209f0a0bb065904b7ab2f166a74ac3812e2a
"react-refresh@npm:^0.17.0":
version: 0.17.0
resolution: "react-refresh@npm:0.17.0"
checksum: 10/5e94f07d43bb1cfdc9b0c6e0c8c73e754005489950dcff1edb53aa8451d1d69a47b740b195c7c80fb4eb511c56a3585dc55eddd83f0097fb5e015116a1460467
languageName: node
linkType: hard

View File

@ -11,6 +11,7 @@
"build:all": "backstage-cli repo build --all",
"build:api-reports": "yarn build:api-reports:only --tsc",
"build:api-reports:only": "backstage-repo-tools api-reports -o ae-wrong-input-file-type,ae-undocumented --validate-release-tags",
"build:knip-reports": "backstage-repo-tools knip-reports",
"clean": "backstage-cli repo clean",
"test": "backstage-cli repo test",
"test:all": "backstage-cli repo test --coverage",

View File

@ -3,4 +3,4 @@
'@backstage-community/plugin-analytics-provider-segment': patch
---
Updated dependency `@types/node` to `18.19.103`.
Updated dependency `@types/node` to `22.15.29`.

View File

@ -1,6 +0,0 @@
---
'@backstage-community/plugin-analytics-module-matomo': patch
'@backstage-community/plugin-analytics-provider-segment': patch
---
Updated dependency `@types/node` to `18.19.100`.

View File

@ -1,6 +0,0 @@
---
'@backstage-community/plugin-analytics-module-matomo': patch
'@backstage-community/plugin-analytics-provider-segment': patch
---
Updated dependency `@types/node` to `18.19.100`.

View File

@ -1,9 +0,0 @@
---
'@backstage-community/plugin-analytics-module-ga': minor
'@backstage-community/plugin-analytics-module-ga4': minor
'@backstage-community/plugin-analytics-module-matomo': minor
'@backstage-community/plugin-analytics-module-newrelic-browser': minor
'@backstage-community/plugin-analytics-provider-segment': minor
---
Backstage version bump to v1.38.1

View File

@ -19,6 +19,7 @@
"new": "backstage-cli new --scope @backstage-community",
"build:api-reports": "yarn build:api-reports:only --tsc",
"build:api-reports:only": "backstage-repo-tools api-reports -o ae-wrong-input-file-type,ae-undocumented --validate-release-tags",
"build:knip-reports": "backstage-repo-tools knip-reports",
"postinstall": "cd ../../ && yarn install"
},
"workspaces": {

View File

@ -1,5 +1,11 @@
# @backstage-community/plugin-analytics-module-ga
## 0.7.0
### Minor Changes
- 8b665f9: Backstage version bump to v1.38.1
## 0.6.1
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@backstage-community/plugin-analytics-module-ga",
"version": "0.6.1",
"version": "0.7.0",
"backstage": {
"role": "frontend-plugin-module",
"pluginId": "app",

View File

@ -1,5 +1,11 @@
# @backstage-community/plugin-analytics-module-ga4
## 0.7.0
### Minor Changes
- 8b665f9: Backstage version bump to v1.38.1
## 0.6.1
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@backstage-community/plugin-analytics-module-ga4",
"version": "0.6.1",
"version": "0.7.0",
"backstage": {
"role": "frontend-plugin-module",
"pluginId": "app",

View File

@ -1,5 +1,17 @@
### Dependencies
## 1.15.0
### Minor Changes
- 8b665f9: Backstage version bump to v1.38.1
### Patch Changes
- df57926: Updated dependency `@types/node` to `18.19.103`.
- 66db576: Updated dependency `@types/node` to `18.19.100`.
- 66db576: Updated dependency `@types/node` to `18.19.100`.
## 1.14.0
### Minor Changes

View File

@ -1,6 +1,6 @@
{
"name": "@backstage-community/plugin-analytics-module-matomo",
"version": "1.14.0",
"version": "1.15.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@ -46,7 +46,7 @@
"@backstage/dev-utils": "^1.1.9",
"@redhat-developer/red-hat-developer-hub-theme": "0.4.0",
"@testing-library/jest-dom": "6.6.3",
"@types/node": "18.19.103",
"@types/node": "22.15.29",
"cross-fetch": "4.0.0",
"msw": "1.3.5"
},

View File

@ -1,5 +1,11 @@
# @backstage-community/plugin-analytics-module-newrelic-browser
## 0.6.0
### Minor Changes
- 8b665f9: Backstage version bump to v1.38.1
## 0.5.1
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@backstage-community/plugin-analytics-module-newrelic-browser",
"version": "0.5.1",
"version": "0.6.0",
"backstage": {
"role": "frontend-plugin-module",
"pluginId": "app",

View File

@ -1,5 +1,18 @@
### Dependencies
## 1.15.0
### Minor Changes
- 8b665f9: Backstage version bump to v1.38.1
### Patch Changes
- df57926: Updated dependency `@types/node` to `18.19.103`.
- 66db576: Updated dependency `@types/node` to `18.19.100`.
- 66db576: Updated dependency `@types/node` to `18.19.100`.
- 9d260e1: Updated dependency `@types/react` to `18.3.23`.
## 1.14.4
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@backstage-community/plugin-analytics-provider-segment",
"version": "1.14.4",
"version": "1.15.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@ -59,8 +59,8 @@
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "14.3.1",
"@testing-library/user-event": "14.6.1",
"@types/node": "18.19.103",
"@types/react": "18.3.20",
"@types/node": "22.15.29",
"@types/react": "18.3.23",
"cross-fetch": "4.0.0",
"msw": "1.3.5",
"react": "^16.13.1 || ^17.0.0 || ^18.0.0",

View File

@ -1793,7 +1793,7 @@ __metadata:
"@backstage/dev-utils": "npm:^1.1.9"
"@redhat-developer/red-hat-developer-hub-theme": "npm:0.4.0"
"@testing-library/jest-dom": "npm:6.6.3"
"@types/node": "npm:18.19.103"
"@types/node": "npm:22.15.29"
cross-fetch: "npm:4.0.0"
msw: "npm:1.3.5"
peerDependencies:
@ -1843,8 +1843,8 @@ __metadata:
"@testing-library/jest-dom": "npm:6.6.3"
"@testing-library/react": "npm:14.3.1"
"@testing-library/user-event": "npm:14.6.1"
"@types/node": "npm:18.19.103"
"@types/react": "npm:18.3.20"
"@types/node": "npm:22.15.29"
"@types/react": "npm:18.3.23"
cross-fetch: "npm:4.0.0"
msw: "npm:1.3.5"
prop-types: "npm:^15.8.1"
@ -6957,21 +6957,12 @@ __metadata:
languageName: node
linkType: hard
"@types/node@npm:*":
version: 20.12.7
resolution: "@types/node@npm:20.12.7"
"@types/node@npm:*, @types/node@npm:22.15.29":
version: 22.15.29
resolution: "@types/node@npm:22.15.29"
dependencies:
undici-types: "npm:~5.26.4"
checksum: 10/b4a28a3b593a9bdca5650880b6a9acef46911d58cf7cfa57268f048e9a7157a7c3196421b96cea576850ddb732e3b54bc982c8eb5e1e5ef0635d4424c2fce801
languageName: node
linkType: hard
"@types/node@npm:18.19.103, @types/node@npm:^18.11.9":
version: 18.19.103
resolution: "@types/node@npm:18.19.103"
dependencies:
undici-types: "npm:~5.26.4"
checksum: 10/12c9abc9c467fd59771d7f9297797b8361aeb364653cde575e5bfba57d8a42dcbcab1b520807ab774f36d6adc2e90774cf533e1376a749e9e4155855e4df7e48
undici-types: "npm:~6.21.0"
checksum: 10/3426790c5aa22df445213d7f37e57ea261cf3013030fe9b3025d87c302097799a9db3b848e2a9bdb07cab8ec6c7e9947ac770cf11e12e420148296b63d63e7db
languageName: node
linkType: hard
@ -6982,6 +6973,15 @@ __metadata:
languageName: node
linkType: hard
"@types/node@npm:^18.11.9":
version: 18.19.103
resolution: "@types/node@npm:18.19.103"
dependencies:
undici-types: "npm:~5.26.4"
checksum: 10/12c9abc9c467fd59771d7f9297797b8361aeb364653cde575e5bfba57d8a42dcbcab1b520807ab774f36d6adc2e90774cf533e1376a749e9e4155855e4df7e48
languageName: node
linkType: hard
"@types/normalize-package-data@npm:^2.4.0":
version: 2.4.1
resolution: "@types/normalize-package-data@npm:2.4.1"
@ -21617,6 +21617,13 @@ __metadata:
languageName: node
linkType: hard
"undici-types@npm:~6.21.0":
version: 6.21.0
resolution: "undici-types@npm:6.21.0"
checksum: 10/ec8f41aa4359d50f9b59fa61fe3efce3477cc681908c8f84354d8567bb3701fafdddf36ef6bff307024d3feb42c837cf6f670314ba37fc8145e219560e473d14
languageName: node
linkType: hard
"undici@npm:^7.2.3":
version: 7.4.0
resolution: "undici@npm:7.4.0"

View File

@ -1,9 +0,0 @@
---
'@backstage-community/plugin-announcements-backend': minor
'@backstage-community/plugin-announcements-common': minor
'@backstage-community/plugin-announcements-react': minor
'@backstage-community/plugin-announcements': minor
---
Added support for submitting announcements on behalf of a team the user is a member of.
This field is optional. if not specified, the announcement will be submitted using the current publisher user.

View File

@ -11,6 +11,7 @@
"build:all": "backstage-cli repo build --all",
"build:api-reports": "yarn build:api-reports:only --tsc",
"build:api-reports:only": "backstage-repo-tools api-reports -o ae-wrong-input-file-type,ae-undocumented --validate-release-tags",
"build:knip-reports": "backstage-repo-tools knip-reports",
"tsc": "tsc",
"tsc:full": "tsc --skipLibCheck false --incremental false",
"clean": "backstage-cli repo clean",

View File

@ -1,5 +1,18 @@
# @backstage-community/plugin-announcements-backend
## 0.4.0
### Minor Changes
- 9c94358: Added support for submitting announcements on behalf of a team the user is a member of.
This field is optional. if not specified, the announcement will be submitted using the current publisher user.
### Patch Changes
- Updated dependencies [9c94358]
- @backstage-community/plugin-announcements-common@0.4.0
- @backstage-community/plugin-search-backend-module-announcements@0.3.4
## 0.3.3
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@backstage-community/plugin-announcements-backend",
"version": "0.3.3",
"version": "0.4.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",

View File

@ -1,5 +1,12 @@
# @backstage-community/plugin-announcements-common
## 0.4.0
### Minor Changes
- 9c94358: Added support for submitting announcements on behalf of a team the user is a member of.
This field is optional. if not specified, the announcement will be submitted using the current publisher user.
## 0.3.2
### Patch Changes

View File

@ -1,7 +1,7 @@
{
"name": "@backstage-community/plugin-announcements-common",
"description": "Common functionalities for the announcements plugin",
"version": "0.3.2",
"version": "0.4.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",

View File

@ -1,5 +1,12 @@
# @backstage-community/plugin-announcements-node
## 0.3.4
### Patch Changes
- Updated dependencies [9c94358]
- @backstage-community/plugin-announcements-common@0.4.0
## 0.3.3
### Patch Changes

View File

@ -1,7 +1,7 @@
{
"name": "@backstage-community/plugin-announcements-node",
"description": "Node.js library for the announcements plugin",
"version": "0.3.3",
"version": "0.3.4",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",

View File

@ -1,5 +1,17 @@
# @backstage-community/plugin-announcements-react
## 0.5.0
### Minor Changes
- 9c94358: Added support for submitting announcements on behalf of a team the user is a member of.
This field is optional. if not specified, the announcement will be submitted using the current publisher user.
### Patch Changes
- Updated dependencies [9c94358]
- @backstage-community/plugin-announcements-common@0.4.0
## 0.4.4
### Patch Changes

View File

@ -1,7 +1,7 @@
{
"name": "@backstage-community/plugin-announcements-react",
"description": "Web library for the announcements plugin",
"version": "0.4.4",
"version": "0.5.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",

View File

@ -1,5 +1,24 @@
# @backstage-community/plugin-announcements
## 0.6.1
### Patch Changes
- e4bd3e6: remove direct dependency on '@types/node'
## 0.6.0
### Minor Changes
- 9c94358: Added support for submitting announcements on behalf of a team the user is a member of.
This field is optional. if not specified, the announcement will be submitted using the current publisher user.
### Patch Changes
- Updated dependencies [9c94358]
- @backstage-community/plugin-announcements-common@0.4.0
- @backstage-community/plugin-announcements-react@0.5.0
## 0.5.10
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@backstage-community/plugin-announcements",
"version": "0.5.10",
"version": "0.6.1",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@ -90,7 +90,6 @@
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"@types/luxon": "^3.3.3",
"@types/node": "^18.18.7",
"cross-fetch": "^3.1.8",
"msw": "^1.3.2",
"react": "^17.0.0 || ^18.0.0",

View File

@ -1,5 +1,13 @@
# @backstage-community/plugin-search-backend-module-announcements
## 0.3.4
### Patch Changes
- Updated dependencies [9c94358]
- @backstage-community/plugin-announcements-common@0.4.0
- @backstage-community/plugin-announcements-node@0.3.4
## 0.3.3
### Patch Changes

View File

@ -1,7 +1,7 @@
{
"name": "@backstage-community/plugin-search-backend-module-announcements",
"description": "The announcements backend module for the search plugin.",
"version": "0.3.3",
"version": "0.3.4",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",

View File

@ -2749,7 +2749,6 @@ __metadata:
"@testing-library/react": "npm:^14.0.0"
"@testing-library/user-event": "npm:^14.5.1"
"@types/luxon": "npm:^3.3.3"
"@types/node": "npm:^18.18.7"
"@types/react": "npm:^17.0.0 || ^18.0.0"
"@uiw/react-md-editor": "npm:^4.0.3"
add: "npm:^2.0.6"
@ -11909,7 +11908,7 @@ __metadata:
languageName: node
linkType: hard
"@types/node@npm:^18.11.18, @types/node@npm:^18.11.9, @types/node@npm:^18.18.7":
"@types/node@npm:^18.11.18, @types/node@npm:^18.11.9":
version: 18.19.68
resolution: "@types/node@npm:18.19.68"
dependencies:

View File

@ -1,3 +1,3 @@
{
"version": "1.38.1"
"version": "1.39.0"
}

View File

@ -20,6 +20,7 @@
"new": "backstage-cli new --scope @backstage-community",
"build:api-reports": "yarn build:api-reports:only --tsc",
"build:api-reports:only": "backstage-repo-tools api-reports -o ae-wrong-input-file-type,ae-undocumented --validate-release-tags",
"build:knip-reports": "backstage-repo-tools knip-reports",
"postinstall": "cd ../../ && yarn install"
},
"workspaces": {
@ -34,9 +35,9 @@
"directory": "workspaces/apache-airflow"
},
"devDependencies": {
"@backstage/cli": "^0.32.0",
"@backstage/cli": "^0.32.1",
"@backstage/e2e-test-utils": "^0.1.1",
"@backstage/repo-tools": "^0.13.2",
"@backstage/repo-tools": "^0.13.3",
"@changesets/cli": "^2.27.1",
"knip": "^5.27.4",
"node-gyp": "^10.0.0",

View File

@ -1,5 +1,11 @@
# @backstage-community/plugin-apache-airflow
## 0.8.0
### Minor Changes
- a1f7806: Backstage version bump to v1.39.0
## 0.7.0
### Minor Changes

View File

@ -1,6 +1,6 @@
{
"name": "@backstage-community/plugin-apache-airflow",
"version": "0.7.0",
"version": "0.8.0",
"backstage": {
"role": "frontend-plugin",
"pluginId": "apache-airflow",
@ -37,8 +37,8 @@
"test": "backstage-cli package test"
},
"dependencies": {
"@backstage/core-components": "^0.17.1",
"@backstage/core-plugin-api": "^1.10.6",
"@backstage/core-components": "^0.17.2",
"@backstage/core-plugin-api": "^1.10.7",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "4.0.0-alpha.61",
@ -47,10 +47,10 @@
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/cli": "^0.32.0",
"@backstage/core-app-api": "^1.16.1",
"@backstage/dev-utils": "^1.1.9",
"@backstage/test-utils": "^1.7.7",
"@backstage/cli": "^0.32.1",
"@backstage/core-app-api": "^1.17.0",
"@backstage/dev-utils": "^1.1.10",
"@backstage/test-utils": "^1.7.8",
"@testing-library/dom": "^10.0.0",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^15.0.0",

View File

@ -1733,12 +1733,12 @@ __metadata:
version: 0.0.0-use.local
resolution: "@backstage-community/plugin-apache-airflow@workspace:plugins/apache-airflow"
dependencies:
"@backstage/cli": "npm:^0.32.0"
"@backstage/core-app-api": "npm:^1.16.1"
"@backstage/core-components": "npm:^0.17.1"
"@backstage/core-plugin-api": "npm:^1.10.6"
"@backstage/dev-utils": "npm:^1.1.9"
"@backstage/test-utils": "npm:^1.7.7"
"@backstage/cli": "npm:^0.32.1"
"@backstage/core-app-api": "npm:^1.17.0"
"@backstage/core-components": "npm:^0.17.2"
"@backstage/core-plugin-api": "npm:^1.10.7"
"@backstage/dev-utils": "npm:^1.1.10"
"@backstage/test-utils": "npm:^1.7.8"
"@material-ui/core": "npm:^4.12.2"
"@material-ui/icons": "npm:^4.9.1"
"@material-ui/lab": "npm:4.0.0-alpha.61"
@ -1760,15 +1760,15 @@ __metadata:
languageName: unknown
linkType: soft
"@backstage/app-defaults@npm:^1.6.1":
version: 1.6.1
resolution: "@backstage/app-defaults@npm:1.6.1"
"@backstage/app-defaults@npm:^1.6.2":
version: 1.6.2
resolution: "@backstage/app-defaults@npm:1.6.2"
dependencies:
"@backstage/core-app-api": "npm:^1.16.1"
"@backstage/core-components": "npm:^0.17.1"
"@backstage/core-plugin-api": "npm:^1.10.6"
"@backstage/plugin-permission-react": "npm:^0.4.33"
"@backstage/theme": "npm:^0.6.5"
"@backstage/core-app-api": "npm:^1.17.0"
"@backstage/core-components": "npm:^0.17.2"
"@backstage/core-plugin-api": "npm:^1.10.7"
"@backstage/plugin-permission-react": "npm:^0.4.34"
"@backstage/theme": "npm:^0.6.6"
"@material-ui/core": "npm:^4.12.2"
"@material-ui/icons": "npm:^4.9.1"
peerDependencies:
@ -1779,50 +1779,50 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/9367d24422d3bc4738d163fe5e4b4c500741ddbfc71aaa111815c162ad9be807f96617e13043c9ebb4f98fd3ec971de8a83199d534364542ed591b9ad9f3516a
checksum: 10/0a555df27dbf75e92949dadf57f1764825d25d89b25fc0bf01bb1a4f0546787d94001dbb8beb65d444ad1801c7cb52236240fa42a2aeb0a51d39d2b41949033d
languageName: node
linkType: hard
"@backstage/backend-plugin-api@npm:^1.3.0":
version: 1.3.0
resolution: "@backstage/backend-plugin-api@npm:1.3.0"
"@backstage/backend-plugin-api@npm:^1.3.1":
version: 1.3.1
resolution: "@backstage/backend-plugin-api@npm:1.3.1"
dependencies:
"@backstage/cli-common": "npm:^0.1.15"
"@backstage/config": "npm:^1.3.2"
"@backstage/errors": "npm:^1.2.7"
"@backstage/plugin-auth-node": "npm:^0.6.2"
"@backstage/plugin-permission-common": "npm:^0.8.4"
"@backstage/plugin-permission-node": "npm:^0.9.1"
"@backstage/plugin-auth-node": "npm:^0.6.3"
"@backstage/plugin-permission-common": "npm:^0.9.0"
"@backstage/plugin-permission-node": "npm:^0.10.0"
"@backstage/types": "npm:^1.2.1"
"@types/express": "npm:^4.17.6"
"@types/luxon": "npm:^3.0.0"
knex: "npm:^3.0.0"
luxon: "npm:^3.0.0"
checksum: 10/0c657159bf2d988a09fe066dba811fa1c9237162dffdbbded09a108d906ea580099343b86d1d5e675bf5f59ee09e292f23dd44c6a594c2f70ead8035f512b8b0
checksum: 10/c78a0cd73c9e2ab3f611e62b1570b83fd496f501616caf00877c5191a7c431671f66f77d6e7fd2a35982915f8cb1b69a85cf7d26e3f236a28f709a6ae7af8eaf
languageName: node
linkType: hard
"@backstage/catalog-client@npm:^1.9.1":
version: 1.9.1
resolution: "@backstage/catalog-client@npm:1.9.1"
"@backstage/catalog-client@npm:^1.10.0":
version: 1.10.0
resolution: "@backstage/catalog-client@npm:1.10.0"
dependencies:
"@backstage/catalog-model": "npm:^1.7.3"
"@backstage/catalog-model": "npm:^1.7.4"
"@backstage/errors": "npm:^1.2.7"
cross-fetch: "npm:^4.0.0"
uri-template: "npm:^2.0.0"
checksum: 10/4e29bb4b6addf4330e298e08500efda6d7e9a416102abdd65dfbedb5e139d8911449f6bb91a90b2d571ddca53cb908c77a4a894fd34689f740e779e66020e13f
checksum: 10/565512931ef340c272ebbffcac7c5f54348ed67a73be80cdecb8768c547a1da41c72b02c0830f3036a06edbc8c77b9720ee5f1f498b2308f799fd409bb4bbbe1
languageName: node
linkType: hard
"@backstage/catalog-model@npm:^1.7.3":
version: 1.7.3
resolution: "@backstage/catalog-model@npm:1.7.3"
"@backstage/catalog-model@npm:^1.7.4":
version: 1.7.4
resolution: "@backstage/catalog-model@npm:1.7.4"
dependencies:
"@backstage/errors": "npm:^1.2.7"
"@backstage/types": "npm:^1.2.1"
ajv: "npm:^8.10.0"
lodash: "npm:^4.17.21"
checksum: 10/5c58e19cf30f392c6a9e49edd623fc0a5677d36a2f7ab1e09dadf54fff110e4c2bf3f967061ed7279a106526cd05cae8ac9bedfc03742773e7499807ed9f19c8
checksum: 10/48c2db2a8144e891319879cec6cae1980088165a910a757b8ebc07dc337b4d8d5c743fbaa3fa916cdd1b5e06635b3a3edbd1e7d8519ac135824f1ba37c5e3ce2
languageName: node
linkType: hard
@ -1849,26 +1849,26 @@ __metadata:
languageName: node
linkType: hard
"@backstage/cli@npm:^0.32.0":
version: 0.32.0
resolution: "@backstage/cli@npm:0.32.0"
"@backstage/cli@npm:^0.32.1":
version: 0.32.1
resolution: "@backstage/cli@npm:0.32.1"
dependencies:
"@backstage/catalog-model": "npm:^1.7.3"
"@backstage/catalog-model": "npm:^1.7.4"
"@backstage/cli-common": "npm:^0.1.15"
"@backstage/cli-node": "npm:^0.2.13"
"@backstage/config": "npm:^1.3.2"
"@backstage/config-loader": "npm:^1.10.0"
"@backstage/config-loader": "npm:^1.10.1"
"@backstage/errors": "npm:^1.2.7"
"@backstage/eslint-plugin": "npm:^0.1.10"
"@backstage/integration": "npm:^1.16.3"
"@backstage/release-manifests": "npm:^0.0.12"
"@backstage/integration": "npm:^1.17.0"
"@backstage/release-manifests": "npm:^0.0.13"
"@backstage/types": "npm:^1.2.1"
"@manypkg/get-packages": "npm:^1.1.3"
"@module-federation/enhanced": "npm:^0.9.0"
"@octokit/graphql": "npm:^5.0.0"
"@octokit/graphql-schema": "npm:^13.7.0"
"@octokit/oauth-app": "npm:^4.2.0"
"@octokit/request": "npm:^6.0.0"
"@octokit/request": "npm:^8.0.0"
"@pmmmwh/react-refresh-webpack-plugin": "npm:^0.5.7"
"@rollup/plugin-commonjs": "npm:^26.0.0"
"@rollup/plugin-json": "npm:^6.0.0"
@ -1942,7 +1942,7 @@ __metadata:
process: "npm:^0.11.10"
raw-loader: "npm:^4.0.2"
react-dev-utils: "npm:^12.0.0-next.60"
react-refresh: "npm:^0.14.0"
react-refresh: "npm:^0.17.0"
recursive-readdir: "npm:^2.2.2"
replace-in-file: "npm:^7.1.0"
rollup: "npm:^4.27.3"
@ -1968,7 +1968,7 @@ __metadata:
zod: "npm:^3.22.4"
zod-validation-error: "npm:^3.4.0"
peerDependencies:
"@rspack/core": ^1.0.10
"@rspack/core": ^1.2.8
"@rspack/dev-server": ^1.0.9
"@rspack/plugin-react-refresh": ^1.0.0
peerDependenciesMeta:
@ -1981,13 +1981,13 @@ __metadata:
bin:
backstage-cli: bin/backstage-cli
backstage-cli-alpha: bin/backstage-cli-alpha
checksum: 10/c9bec5d95e1958f01c6492ef9bdba2262fd1ea3d269e9b0d03f78a7bf91b41363a7fbf59f6f1a08db3e30ced4e7bed030d8bc4a6c59fb0be4d27efc53ed16d9b
checksum: 10/8675aaf0a33d10d3f7620ca89f6a2a7f2c7e35e86c49bf3e8d56ff71ddc7e888e53a1e99c8bd476c9d67c911ae6552d674b4944a93ab120e32d910fe36db6c1d
languageName: node
linkType: hard
"@backstage/config-loader@npm:^1.10.0":
version: 1.10.0
resolution: "@backstage/config-loader@npm:1.10.0"
"@backstage/config-loader@npm:^1.10.1":
version: 1.10.1
resolution: "@backstage/config-loader@npm:1.10.1"
dependencies:
"@backstage/cli-common": "npm:^0.1.15"
"@backstage/config": "npm:^1.3.2"
@ -2004,7 +2004,7 @@ __metadata:
minimist: "npm:^1.2.5"
typescript-json-schema: "npm:^0.65.0"
yaml: "npm:^2.0.0"
checksum: 10/dc8f78282648e50bc25608fce4699045cdf1bc8d2ed03d2635d0c9afce3e01f052f6d4dde82f12bdb606c73a04ce1217eb3f79401d668061e40e794184535e44
checksum: 10/61f66e65bf747b07f72c3475a3875c5409442087ca541c749a1ecff6668cb0564294f6b760a2e76e135871bdaf61f2b8bcb2e62d4786d12693400c57422f3b85
languageName: node
linkType: hard
@ -2019,12 +2019,12 @@ __metadata:
languageName: node
linkType: hard
"@backstage/core-app-api@npm:^1.16.1":
version: 1.16.1
resolution: "@backstage/core-app-api@npm:1.16.1"
"@backstage/core-app-api@npm:^1.17.0":
version: 1.17.0
resolution: "@backstage/core-app-api@npm:1.17.0"
dependencies:
"@backstage/config": "npm:^1.3.2"
"@backstage/core-plugin-api": "npm:^1.10.6"
"@backstage/core-plugin-api": "npm:^1.10.7"
"@backstage/types": "npm:^1.2.1"
"@backstage/version-bridge": "npm:^1.0.11"
"@types/prop-types": "npm:^15.7.3"
@ -2043,17 +2043,17 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/fae37fa5c4598dc1c2a4f82356d4039633cc7323f44f369ad1ca4151e1e27f668b2929f759e7a4843e273979a5aae1b473809e8add23cbd788fc48329bdf51fd
checksum: 10/04939b5d59a2473cc95ec170a11f0c82d924f436d1f40598f6a571a21c37c38e2d86f84ed6ec0b1cf91b3ac02aff2aed608184f41017535e55096466a63c4f29
languageName: node
linkType: hard
"@backstage/core-compat-api@npm:^0.4.1":
version: 0.4.1
resolution: "@backstage/core-compat-api@npm:0.4.1"
"@backstage/core-compat-api@npm:^0.4.2":
version: 0.4.2
resolution: "@backstage/core-compat-api@npm:0.4.2"
dependencies:
"@backstage/core-plugin-api": "npm:^1.10.6"
"@backstage/frontend-plugin-api": "npm:^0.10.1"
"@backstage/plugin-catalog-react": "npm:^1.17.0"
"@backstage/core-plugin-api": "npm:^1.10.7"
"@backstage/frontend-plugin-api": "npm:^0.10.2"
"@backstage/plugin-catalog-react": "npm:^1.18.0"
"@backstage/version-bridge": "npm:^1.0.11"
lodash: "npm:^4.17.21"
peerDependencies:
@ -2064,18 +2064,18 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/4c91cc4f4a06d6420a4bed63e540e46a34a7a1ecb831fd503960c9e9ae8817f015a0b6d39d37ac4588233caf2a21a93c9acadbe15d11b59706275166567a4581
checksum: 10/7e93c3ff7a9979ee8cb0ab582e66bd0febb5995c91cc0545473e9e86fc75c1ebbb0a24a901e120d7e4ecf122bbb31de1b4f8fc78c7da5f6d84daa9d6b9194035
languageName: node
linkType: hard
"@backstage/core-components@npm:^0.17.1":
version: 0.17.1
resolution: "@backstage/core-components@npm:0.17.1"
"@backstage/core-components@npm:^0.17.2":
version: 0.17.2
resolution: "@backstage/core-components@npm:0.17.2"
dependencies:
"@backstage/config": "npm:^1.3.2"
"@backstage/core-plugin-api": "npm:^1.10.6"
"@backstage/core-plugin-api": "npm:^1.10.7"
"@backstage/errors": "npm:^1.2.7"
"@backstage/theme": "npm:^0.6.5"
"@backstage/theme": "npm:^0.6.6"
"@backstage/version-bridge": "npm:^1.0.11"
"@dagrejs/dagre": "npm:^1.1.4"
"@date-io/core": "npm:^1.3.13"
@ -2118,13 +2118,13 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/12e8f0675c2dd6bb871d77ceb833d2078cac41278d4122139669ffaadea09df7b3c8ca53c166e2c664c275e381f9c96f8383a5a1faaeb956ab0f1e4ee72ec1b7
checksum: 10/0b790f3448001e571e50a89c6bbcd08d0d08b7e098b262e09ad19e475ffdf12f4b0c31b0880e64a61a1096b5091d6767e06e32874a2dc6ebc98d79bc0b82107f
languageName: node
linkType: hard
"@backstage/core-plugin-api@npm:^1.10.6":
version: 1.10.6
resolution: "@backstage/core-plugin-api@npm:1.10.6"
"@backstage/core-plugin-api@npm:^1.10.7":
version: 1.10.7
resolution: "@backstage/core-plugin-api@npm:1.10.7"
dependencies:
"@backstage/config": "npm:^1.3.2"
"@backstage/errors": "npm:^1.2.7"
@ -2139,22 +2139,22 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/1359bb2dc294c6eb0b8de6aa4a0788561c5d43ef2a4464d4f7600c382126398a42724e8ba894925ab02f1d332ef9b87b0eeee31e56a9e9223f8d6504a283d896
checksum: 10/1a8865e41f38b514936275dea23c595e5c07523a68081d8207f99a18ee049c81b92b33a606478b7f7881597bc71f9b14d9aba7cbc453645ced6317648ab75826
languageName: node
linkType: hard
"@backstage/dev-utils@npm:^1.1.9":
version: 1.1.9
resolution: "@backstage/dev-utils@npm:1.1.9"
"@backstage/dev-utils@npm:^1.1.10":
version: 1.1.10
resolution: "@backstage/dev-utils@npm:1.1.10"
dependencies:
"@backstage/app-defaults": "npm:^1.6.1"
"@backstage/catalog-model": "npm:^1.7.3"
"@backstage/core-app-api": "npm:^1.16.1"
"@backstage/core-components": "npm:^0.17.1"
"@backstage/core-plugin-api": "npm:^1.10.6"
"@backstage/integration-react": "npm:^1.2.6"
"@backstage/plugin-catalog-react": "npm:^1.17.0"
"@backstage/theme": "npm:^0.6.5"
"@backstage/app-defaults": "npm:^1.6.2"
"@backstage/catalog-model": "npm:^1.7.4"
"@backstage/core-app-api": "npm:^1.17.0"
"@backstage/core-components": "npm:^0.17.2"
"@backstage/core-plugin-api": "npm:^1.10.7"
"@backstage/integration-react": "npm:^1.2.7"
"@backstage/plugin-catalog-react": "npm:^1.18.0"
"@backstage/theme": "npm:^0.6.6"
"@material-ui/core": "npm:^4.12.2"
"@material-ui/icons": "npm:^4.9.1"
react-use: "npm:^17.2.4"
@ -2166,7 +2166,7 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/078ece28986bf3997560bd8441f6414079264fc88e10172e90be9525393ef0f2b2577fa5c2ef67d9f7a0997eb0578a19a24b51502524070ab6f0d94f069ea949
checksum: 10/2f4c4c41f4e0fcb7cbc5f2e4acdc2c49b312e5ce95e6fbdb849f71f1f3451ad471dd2d1063da789bd3187b797af2826fda8c9147edb5fdaf1fd8bdbd55b5d911
languageName: node
linkType: hard
@ -2205,16 +2205,16 @@ __metadata:
languageName: node
linkType: hard
"@backstage/frontend-app-api@npm:^0.11.1":
version: 0.11.1
resolution: "@backstage/frontend-app-api@npm:0.11.1"
"@backstage/frontend-app-api@npm:^0.11.2":
version: 0.11.2
resolution: "@backstage/frontend-app-api@npm:0.11.2"
dependencies:
"@backstage/config": "npm:^1.3.2"
"@backstage/core-app-api": "npm:^1.16.1"
"@backstage/core-plugin-api": "npm:^1.10.6"
"@backstage/core-app-api": "npm:^1.17.0"
"@backstage/core-plugin-api": "npm:^1.10.7"
"@backstage/errors": "npm:^1.2.7"
"@backstage/frontend-defaults": "npm:^0.2.1"
"@backstage/frontend-plugin-api": "npm:^0.10.1"
"@backstage/frontend-defaults": "npm:^0.2.2"
"@backstage/frontend-plugin-api": "npm:^0.10.2"
"@backstage/types": "npm:^1.2.1"
"@backstage/version-bridge": "npm:^1.0.11"
lodash: "npm:^4.17.21"
@ -2227,19 +2227,19 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/fdf5b7dddeba9320e8ec54751396a3e81897605c26520af60eb61a76f17dd78b6b786f5cfa9f4bad3beef0d3408868bfe8331f6773b54034d11dc170a35e60e7
checksum: 10/06cf128df60b0322c07c14853146da5096625d58a344555571a65ead221f03dc1f4e2fe7da364b2afec010be13a4d4a4574060a3f65c023bdcdc93d20d09c33d
languageName: node
linkType: hard
"@backstage/frontend-defaults@npm:^0.2.1":
version: 0.2.1
resolution: "@backstage/frontend-defaults@npm:0.2.1"
"@backstage/frontend-defaults@npm:^0.2.2":
version: 0.2.2
resolution: "@backstage/frontend-defaults@npm:0.2.2"
dependencies:
"@backstage/config": "npm:^1.3.2"
"@backstage/errors": "npm:^1.2.7"
"@backstage/frontend-app-api": "npm:^0.11.1"
"@backstage/frontend-plugin-api": "npm:^0.10.1"
"@backstage/plugin-app": "npm:^0.1.8"
"@backstage/frontend-app-api": "npm:^0.11.2"
"@backstage/frontend-plugin-api": "npm:^0.10.2"
"@backstage/plugin-app": "npm:^0.1.9"
"@react-hookz/web": "npm:^24.0.0"
peerDependencies:
"@types/react": ^17.0.0 || ^18.0.0
@ -2249,16 +2249,16 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/3bd178ca78db5d467378272025d7a3fa7995a37063f39c2ec2c9a81b2bb6aa4890f888e99f1e5c4abb442614b978a490d8dbcaa09e54a94e47364caab618725c
checksum: 10/23e6156314cb80d9cc1128ee3ad2d3afee3e2a6e88c049853b19133fc95e75f4361e735f26903e44fa62b29d39df5381c53200799a8cc3b3fd0943682a5e51f5
languageName: node
linkType: hard
"@backstage/frontend-plugin-api@npm:^0.10.1":
version: 0.10.1
resolution: "@backstage/frontend-plugin-api@npm:0.10.1"
"@backstage/frontend-plugin-api@npm:^0.10.2":
version: 0.10.2
resolution: "@backstage/frontend-plugin-api@npm:0.10.2"
dependencies:
"@backstage/core-components": "npm:^0.17.1"
"@backstage/core-plugin-api": "npm:^1.10.6"
"@backstage/core-components": "npm:^0.17.2"
"@backstage/core-plugin-api": "npm:^1.10.7"
"@backstage/types": "npm:^1.2.1"
"@backstage/version-bridge": "npm:^1.0.11"
"@material-ui/core": "npm:^4.12.4"
@ -2273,19 +2273,19 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/5a1b69d7a1b1db584f4f0c4934ac98dc678f53730c250959da47e20479032b02b1f02785bcb51989af899e8b1166599e23e03ce024469e5efb5b49f8c792e315
checksum: 10/4f01cf2ae8352dd8b5f7ff66a97739c6f9f8b19b182ae7cb05db542d02fa0cdee805712c0d355068de3c7cd851404fe6e424c5b7a0ffbcec686c42bc78030510
languageName: node
linkType: hard
"@backstage/frontend-test-utils@npm:^0.3.1":
version: 0.3.1
resolution: "@backstage/frontend-test-utils@npm:0.3.1"
"@backstage/frontend-test-utils@npm:^0.3.2":
version: 0.3.2
resolution: "@backstage/frontend-test-utils@npm:0.3.2"
dependencies:
"@backstage/config": "npm:^1.3.2"
"@backstage/frontend-app-api": "npm:^0.11.1"
"@backstage/frontend-plugin-api": "npm:^0.10.1"
"@backstage/plugin-app": "npm:^0.1.8"
"@backstage/test-utils": "npm:^1.7.7"
"@backstage/frontend-app-api": "npm:^0.11.2"
"@backstage/frontend-plugin-api": "npm:^0.10.2"
"@backstage/plugin-app": "npm:^0.1.9"
"@backstage/test-utils": "npm:^1.7.8"
"@backstage/types": "npm:^1.2.1"
"@backstage/version-bridge": "npm:^1.0.11"
zod: "npm:^3.22.4"
@ -2298,17 +2298,17 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/b46c7e660ffbfecae9d0dd9fbc471c0c6324550d768f2749ff5726b4acd737aef4075290f1c2e8b73ce967b664997cc1f47f933254209d41d2fb080799c3dba9
checksum: 10/3b33d0165e2bda8460e433649fec04d7594c7d987b7cdc59b46a955208266481d15df0f6d529a0bfbece7050d6510c0e320bf77fc81296579747e9a469d8e7d0
languageName: node
linkType: hard
"@backstage/integration-react@npm:^1.2.6":
version: 1.2.6
resolution: "@backstage/integration-react@npm:1.2.6"
"@backstage/integration-react@npm:^1.2.7":
version: 1.2.7
resolution: "@backstage/integration-react@npm:1.2.7"
dependencies:
"@backstage/config": "npm:^1.3.2"
"@backstage/core-plugin-api": "npm:^1.10.6"
"@backstage/integration": "npm:^1.16.3"
"@backstage/core-plugin-api": "npm:^1.10.7"
"@backstage/integration": "npm:^1.17.0"
"@material-ui/core": "npm:^4.12.2"
"@material-ui/icons": "npm:^4.9.1"
peerDependencies:
@ -2319,13 +2319,13 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/7a3a13d277e03c5a95131b99a50210e4bd7bdcba133ef5ee1549d625fc373072669a52e9317bc1b29f27f7a3d99eb89d2dc6469ff7bd87de10eb1d19a03a51bb
checksum: 10/a954cdd17caebd6a768892884dea34249b6f502de5e7dcb9da8fc18f591bc15be7bb37e91d6f56c0c3783121a69e54f305ae6279a7647f42f15f355affa5cebe
languageName: node
linkType: hard
"@backstage/integration@npm:^1.16.3":
version: 1.16.3
resolution: "@backstage/integration@npm:1.16.3"
"@backstage/integration@npm:^1.17.0":
version: 1.17.0
resolution: "@backstage/integration@npm:1.17.0"
dependencies:
"@azure/identity": "npm:^4.0.0"
"@azure/storage-blob": "npm:^12.5.0"
@ -2337,20 +2337,20 @@ __metadata:
git-url-parse: "npm:^15.0.0"
lodash: "npm:^4.17.21"
luxon: "npm:^3.0.0"
checksum: 10/ce27919bee116725b1cd0749388dacace62746eba46772343cdd95d93c0261d673b7feac62ff74a024e6a8b455b33f231ceb987c23ecf34804643eda6bed2821
checksum: 10/651a717a2268be73f6b1d34072585641cf3ad0e8e5122fc4cca249e773fda4dcde904588331d352ae455a420120fb1ef7847cd859d8d9132203eec63c8c6b01a
languageName: node
linkType: hard
"@backstage/plugin-app@npm:^0.1.8":
version: 0.1.8
resolution: "@backstage/plugin-app@npm:0.1.8"
"@backstage/plugin-app@npm:^0.1.9":
version: 0.1.9
resolution: "@backstage/plugin-app@npm:0.1.9"
dependencies:
"@backstage/core-components": "npm:^0.17.1"
"@backstage/core-plugin-api": "npm:^1.10.6"
"@backstage/frontend-plugin-api": "npm:^0.10.1"
"@backstage/integration-react": "npm:^1.2.6"
"@backstage/plugin-permission-react": "npm:^0.4.33"
"@backstage/theme": "npm:^0.6.5"
"@backstage/core-components": "npm:^0.17.2"
"@backstage/core-plugin-api": "npm:^1.10.7"
"@backstage/frontend-plugin-api": "npm:^0.10.2"
"@backstage/integration-react": "npm:^1.2.7"
"@backstage/plugin-permission-react": "npm:^0.4.34"
"@backstage/theme": "npm:^0.6.6"
"@backstage/types": "npm:^1.2.1"
"@material-ui/core": "npm:^4.9.13"
"@material-ui/icons": "npm:^4.9.1"
@ -2364,17 +2364,17 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/3634ce0bb0ac0f86050c45a4d24f728975232dcd04106b48b1ffdaec4e2ce9ef1ad17220afd0351fb75d6e10bfaacd45289064397332b5c08dc1c046d21466cf
checksum: 10/9c357605a8427f8bf5099968c612f90015d34d757a9494ea22d487bec20593cd80a7a50326e46344fc877ed163a14f2675d33530c1d756411316b0d373096aab
languageName: node
linkType: hard
"@backstage/plugin-auth-node@npm:^0.6.2":
version: 0.6.2
resolution: "@backstage/plugin-auth-node@npm:0.6.2"
"@backstage/plugin-auth-node@npm:^0.6.3":
version: 0.6.3
resolution: "@backstage/plugin-auth-node@npm:0.6.3"
dependencies:
"@backstage/backend-plugin-api": "npm:^1.3.0"
"@backstage/catalog-client": "npm:^1.9.1"
"@backstage/catalog-model": "npm:^1.7.3"
"@backstage/backend-plugin-api": "npm:^1.3.1"
"@backstage/catalog-client": "npm:^1.10.0"
"@backstage/catalog-model": "npm:^1.7.4"
"@backstage/config": "npm:^1.3.2"
"@backstage/errors": "npm:^1.2.7"
"@backstage/types": "npm:^1.2.1"
@ -2387,37 +2387,37 @@ __metadata:
zod: "npm:^3.22.4"
zod-to-json-schema: "npm:^3.21.4"
zod-validation-error: "npm:^3.4.0"
checksum: 10/831b07fa41df68855f9a107a78c70d34986ddc7e12eac70cd3cdecb42b1297a65f0e6061549b12653704966887a5cd0199c7d69588e48a461dd74559d890aaa7
checksum: 10/7f7fd4c1072512c8db6902e7a3e75319f73e2e487da0d202f3fde446eb340a34e7b1c0ce92d16f4dc2a5525aecd1df78979cdcfc650a48a41b2441f221fc0579
languageName: node
linkType: hard
"@backstage/plugin-catalog-common@npm:^1.1.3":
version: 1.1.3
resolution: "@backstage/plugin-catalog-common@npm:1.1.3"
"@backstage/plugin-catalog-common@npm:^1.1.4":
version: 1.1.4
resolution: "@backstage/plugin-catalog-common@npm:1.1.4"
dependencies:
"@backstage/catalog-model": "npm:^1.7.3"
"@backstage/plugin-permission-common": "npm:^0.8.4"
"@backstage/plugin-search-common": "npm:^1.2.17"
checksum: 10/60c0624603576bcf12bf99e6ac1c921e0847ad72f8ac89ed4315b88f128b738e00eab8c6fc1da6e9830dac93b9b0acd2e3cb1ee21667c48a98ac7b79b546a560
"@backstage/catalog-model": "npm:^1.7.4"
"@backstage/plugin-permission-common": "npm:^0.9.0"
"@backstage/plugin-search-common": "npm:^1.2.18"
checksum: 10/e65331add32185a54de3c0bae4187824bd0b2d4a729cf4cd659bda54d3dd1cb94a9aeaf4553ee08ae44439742cc45149767329b3ef07bc39ed014433a62d7bd0
languageName: node
linkType: hard
"@backstage/plugin-catalog-react@npm:^1.17.0":
version: 1.17.0
resolution: "@backstage/plugin-catalog-react@npm:1.17.0"
"@backstage/plugin-catalog-react@npm:^1.18.0":
version: 1.18.0
resolution: "@backstage/plugin-catalog-react@npm:1.18.0"
dependencies:
"@backstage/catalog-client": "npm:^1.9.1"
"@backstage/catalog-model": "npm:^1.7.3"
"@backstage/core-compat-api": "npm:^0.4.1"
"@backstage/core-components": "npm:^0.17.1"
"@backstage/core-plugin-api": "npm:^1.10.6"
"@backstage/catalog-client": "npm:^1.10.0"
"@backstage/catalog-model": "npm:^1.7.4"
"@backstage/core-compat-api": "npm:^0.4.2"
"@backstage/core-components": "npm:^0.17.2"
"@backstage/core-plugin-api": "npm:^1.10.7"
"@backstage/errors": "npm:^1.2.7"
"@backstage/frontend-plugin-api": "npm:^0.10.1"
"@backstage/frontend-test-utils": "npm:^0.3.1"
"@backstage/integration-react": "npm:^1.2.6"
"@backstage/plugin-catalog-common": "npm:^1.1.3"
"@backstage/plugin-permission-common": "npm:^0.8.4"
"@backstage/plugin-permission-react": "npm:^0.4.33"
"@backstage/frontend-plugin-api": "npm:^0.10.2"
"@backstage/frontend-test-utils": "npm:^0.3.2"
"@backstage/integration-react": "npm:^1.2.7"
"@backstage/plugin-catalog-common": "npm:^1.1.4"
"@backstage/plugin-permission-common": "npm:^0.9.0"
"@backstage/plugin-permission-react": "npm:^0.4.34"
"@backstage/types": "npm:^1.2.1"
"@backstage/version-bridge": "npm:^1.0.11"
"@material-ui/core": "npm:^4.12.2"
@ -2439,13 +2439,13 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/025ed43087462b021c13eac7fc762ad7d52d8ebb593da0093130e6379a79ac1b428fa9024eb21ace9bdf1d43ecafcab39226dbbf2b44ba35a6c93a9ddb04f1da
checksum: 10/1dec452c7bb1bd3538839a3a99943f5a5b50e5f414e31c679461e4810e5ea0e623cd41de6f08922fe577f3855459903f999c0ee0635982e1dd6bffbb46eceb08
languageName: node
linkType: hard
"@backstage/plugin-permission-common@npm:^0.8.4":
version: 0.8.4
resolution: "@backstage/plugin-permission-common@npm:0.8.4"
"@backstage/plugin-permission-common@npm:^0.9.0":
version: 0.9.0
resolution: "@backstage/plugin-permission-common@npm:0.9.0"
dependencies:
"@backstage/config": "npm:^1.3.2"
"@backstage/errors": "npm:^1.2.7"
@ -2454,35 +2454,35 @@ __metadata:
uuid: "npm:^11.0.0"
zod: "npm:^3.22.4"
zod-to-json-schema: "npm:^3.20.4"
checksum: 10/c850ff17d4f97a77064a296a3b53b112906f7483e72d6e48008b17846d3fa2578ce532722844f1761eb81687155f7f58634fd6ea22313733174903fda90860be
checksum: 10/f165e3018cf5010a5c6ce8ec9778f2ed0024810c38e2b02f9cca637f7c37b26b23822ba5341794e4dc18a8e153ac21b9fde456dddc19150d328b5f20a4668017
languageName: node
linkType: hard
"@backstage/plugin-permission-node@npm:^0.9.1":
version: 0.9.1
resolution: "@backstage/plugin-permission-node@npm:0.9.1"
"@backstage/plugin-permission-node@npm:^0.10.0":
version: 0.10.0
resolution: "@backstage/plugin-permission-node@npm:0.10.0"
dependencies:
"@backstage/backend-plugin-api": "npm:^1.3.0"
"@backstage/backend-plugin-api": "npm:^1.3.1"
"@backstage/config": "npm:^1.3.2"
"@backstage/errors": "npm:^1.2.7"
"@backstage/plugin-auth-node": "npm:^0.6.2"
"@backstage/plugin-permission-common": "npm:^0.8.4"
"@backstage/plugin-auth-node": "npm:^0.6.3"
"@backstage/plugin-permission-common": "npm:^0.9.0"
"@types/express": "npm:^4.17.6"
express: "npm:^4.17.1"
express-promise-router: "npm:^4.1.0"
zod: "npm:^3.22.4"
zod-to-json-schema: "npm:^3.20.4"
checksum: 10/3292951e8cdcc4341ba53e67bcc580d77da14e1e3224b9323671704b7329a3a9e45905e3cc5afb8bff33462178ddf7c3a510392c048ce125f374910622e91bd4
checksum: 10/ffd6efc8625c36c5afbde08cf31aeac56a64c3b05547c8b2ba77b6301044652d2c5c4145f8445694ec8b1155173100472f21df1a4ec80b95d454485feb35231b
languageName: node
linkType: hard
"@backstage/plugin-permission-react@npm:^0.4.33":
version: 0.4.33
resolution: "@backstage/plugin-permission-react@npm:0.4.33"
"@backstage/plugin-permission-react@npm:^0.4.34":
version: 0.4.34
resolution: "@backstage/plugin-permission-react@npm:0.4.34"
dependencies:
"@backstage/config": "npm:^1.3.2"
"@backstage/core-plugin-api": "npm:^1.10.6"
"@backstage/plugin-permission-common": "npm:^0.8.4"
"@backstage/core-plugin-api": "npm:^1.10.7"
"@backstage/plugin-permission-common": "npm:^0.9.0"
swr: "npm:^2.0.0"
peerDependencies:
"@types/react": ^17.0.0 || ^18.0.0
@ -2492,38 +2492,38 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/552bba79e3876ec48faf40df1c7f05f5b183130b3b214101b1dd48f519b6846867457ae458daeb20e74b8d8c805f4615c8a1c2d670e2f69f463cb484a408f16b
checksum: 10/55c0e8c8d250d524c77b0de0eb9ea488d1193b5059131692401c127eedda1d0553b5d8848df7587e255856b8f7d8b76176914d2fb3c89fca7a62656748ea3dec
languageName: node
linkType: hard
"@backstage/plugin-search-common@npm:^1.2.17":
version: 1.2.17
resolution: "@backstage/plugin-search-common@npm:1.2.17"
"@backstage/plugin-search-common@npm:^1.2.18":
version: 1.2.18
resolution: "@backstage/plugin-search-common@npm:1.2.18"
dependencies:
"@backstage/plugin-permission-common": "npm:^0.8.4"
"@backstage/plugin-permission-common": "npm:^0.9.0"
"@backstage/types": "npm:^1.2.1"
checksum: 10/30cfcb164940b7eb70d8163766cca981536372d0cb5c6e006837e044d91a60be16b83534a2887b0a7cf90a51bed35cd7b188e62598e7340cbf79e371a8bfd0e6
checksum: 10/9a7c262a5e1fc2d1bc40a9738d6e29ba215867a10efa22c1c3e3b7847d2b6f7566fde4c22f6989933a47d2f1928ee7544ade4f88fb2e0956f4dde7cf02cb85a6
languageName: node
linkType: hard
"@backstage/release-manifests@npm:^0.0.12":
version: 0.0.12
resolution: "@backstage/release-manifests@npm:0.0.12"
checksum: 10/482108faf39bd4095dfda34d00007065bff54a5aff836ef7c935a7a583baa6ae9d25e9d0c58a419e4d7d65eeb4f50357da47ab4d9cbd2d79da331fa426f64a3c
"@backstage/release-manifests@npm:^0.0.13":
version: 0.0.13
resolution: "@backstage/release-manifests@npm:0.0.13"
checksum: 10/b8c71e22dbc7d78fca93f9ed83c614e403a8bb103a2aceae4c799898af3aba976370e2255fd9e32b25f5dac3f80e1f37379d8c72a9d9c199cabbf111e70fe873
languageName: node
linkType: hard
"@backstage/repo-tools@npm:^0.13.2":
version: 0.13.2
resolution: "@backstage/repo-tools@npm:0.13.2"
"@backstage/repo-tools@npm:^0.13.3":
version: 0.13.3
resolution: "@backstage/repo-tools@npm:0.13.3"
dependencies:
"@apidevtools/swagger-parser": "npm:^10.1.0"
"@apisyouwonthate/style-guide": "npm:^1.4.0"
"@backstage/backend-plugin-api": "npm:^1.3.0"
"@backstage/catalog-model": "npm:^1.7.3"
"@backstage/backend-plugin-api": "npm:^1.3.1"
"@backstage/catalog-model": "npm:^1.7.4"
"@backstage/cli-common": "npm:^0.1.15"
"@backstage/cli-node": "npm:^0.2.13"
"@backstage/config-loader": "npm:^1.10.0"
"@backstage/config-loader": "npm:^1.10.1"
"@backstage/errors": "npm:^1.2.7"
"@electric-sql/pglite": "npm:^0.2.15"
"@manypkg/get-packages": "npm:^1.1.3"
@ -2564,7 +2564,7 @@ __metadata:
"@microsoft/tsdoc-config": "*"
"@useoptic/optic": ^1.0.0
prettier: ^2.8.1
typedoc: ^0.27.0
typedoc: ^0.28.0
typescript: "> 3.0.0"
peerDependenciesMeta:
prettier:
@ -2573,20 +2573,20 @@ __metadata:
optional: true
bin:
backstage-repo-tools: bin/backstage-repo-tools
checksum: 10/d51b6d065c5481a71641d8a11a8e041b0d02e40b058a09a5caf4e3a131ca04c334707dd51c72d39e34062efd6c0a7c21eb919400ae8fdabc266dc41201807c96
checksum: 10/f27aa2753859ebfb7adcc9642b7e3d06f1beebe89b5f7519d99a07f4fe7e53f6a8e4eace668c04b35555028bc5a452efd3277a828952450b24cdb428d365b640
languageName: node
linkType: hard
"@backstage/test-utils@npm:^1.7.7":
version: 1.7.7
resolution: "@backstage/test-utils@npm:1.7.7"
"@backstage/test-utils@npm:^1.7.8":
version: 1.7.8
resolution: "@backstage/test-utils@npm:1.7.8"
dependencies:
"@backstage/config": "npm:^1.3.2"
"@backstage/core-app-api": "npm:^1.16.1"
"@backstage/core-plugin-api": "npm:^1.10.6"
"@backstage/plugin-permission-common": "npm:^0.8.4"
"@backstage/plugin-permission-react": "npm:^0.4.33"
"@backstage/theme": "npm:^0.6.5"
"@backstage/core-app-api": "npm:^1.17.0"
"@backstage/core-plugin-api": "npm:^1.10.7"
"@backstage/plugin-permission-common": "npm:^0.9.0"
"@backstage/plugin-permission-react": "npm:^0.4.34"
"@backstage/theme": "npm:^0.6.6"
"@backstage/types": "npm:^1.2.1"
"@material-ui/core": "npm:^4.12.2"
"@material-ui/icons": "npm:^4.9.1"
@ -2602,13 +2602,13 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/2ffc4957e84b4c0e1328e43e05c88051026edbf8e2c9fd04f873176ecd636bc11269f36fa72933defc60d0d869986e9a2d46bba1f57e50811671d81c330bf1b1
checksum: 10/6d61fdfdf00b72d3c8ddb9120edc221085b634d39419f00610e40387715f4e5bfdf48f4d2762695d7f30d50c6d2e0f875bcb7d299265adb58fa19a76120b6ae9
languageName: node
linkType: hard
"@backstage/theme@npm:^0.6.5":
version: 0.6.5
resolution: "@backstage/theme@npm:0.6.5"
"@backstage/theme@npm:^0.6.6":
version: 0.6.6
resolution: "@backstage/theme@npm:0.6.6"
dependencies:
"@emotion/react": "npm:^11.10.5"
"@emotion/styled": "npm:^11.10.5"
@ -2622,7 +2622,7 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/242ccb2af6e2d1c64d4084c568c31d696d6abfdbbbd0ba35b2a9dabaae9c196b4610e2124f2c23fff16de082701901627f85b180f8a3ea2a8bcb865beb982829
checksum: 10/80297d992e853b3882fd158d192844a85738e89da6db7b6b47d27744129f04ea3c9ec946cb08fe226627f5e882670464d14bd07234e65debe98b3572eccbee15
languageName: node
linkType: hard
@ -3538,9 +3538,9 @@ __metadata:
version: 0.0.0-use.local
resolution: "@internal/apache-airflow@workspace:."
dependencies:
"@backstage/cli": "npm:^0.32.0"
"@backstage/cli": "npm:^0.32.1"
"@backstage/e2e-test-utils": "npm:^0.1.1"
"@backstage/repo-tools": "npm:^0.13.2"
"@backstage/repo-tools": "npm:^0.13.3"
"@changesets/cli": "npm:^2.27.1"
knip: "npm:^5.27.4"
node-gyp: "npm:^10.0.0"
@ -4885,6 +4885,16 @@ __metadata:
languageName: node
linkType: hard
"@octokit/endpoint@npm:^9.0.6":
version: 9.0.6
resolution: "@octokit/endpoint@npm:9.0.6"
dependencies:
"@octokit/types": "npm:^13.1.0"
universal-user-agent: "npm:^6.0.0"
checksum: 10/2bf776423365ee926bf3f722a664e52f1070758eff4a176279fb132103fd0c76e3541f83ace49bbad9a64f9c9b8de453be565ca8d6136989e9514dea65380ecf
languageName: node
linkType: hard
"@octokit/graphql-schema@npm:^13.7.0":
version: 13.10.0
resolution: "@octokit/graphql-schema@npm:13.10.0"
@ -4984,6 +4994,13 @@ __metadata:
languageName: node
linkType: hard
"@octokit/openapi-types@npm:^24.2.0":
version: 24.2.0
resolution: "@octokit/openapi-types@npm:24.2.0"
checksum: 10/000897ebc6e247c2591049d6081e95eb5636f73798dadd695ee6048496772b58065df88823e74a760201828545a7ac601dd3c1bcd2e00079a62a9ee9d389409c
languageName: node
linkType: hard
"@octokit/plugin-paginate-rest@npm:^6.1.2":
version: 6.1.2
resolution: "@octokit/plugin-paginate-rest@npm:6.1.2"
@ -5039,6 +5056,17 @@ __metadata:
languageName: node
linkType: hard
"@octokit/request-error@npm:^5.1.1":
version: 5.1.1
resolution: "@octokit/request-error@npm:5.1.1"
dependencies:
"@octokit/types": "npm:^13.1.0"
deprecation: "npm:^2.0.0"
once: "npm:^1.4.0"
checksum: 10/6ad98626407ba57bb33fa197611be74bee1dd9abc8d5d845648d6a2a04aa6840c0eb7f4be341d55dfcab5bc19181ad5fd25194869a7aaac6245f74b3a14d9662
languageName: node
linkType: hard
"@octokit/request@npm:^5.4.14, @octokit/request@npm:^5.6.3":
version: 5.6.3
resolution: "@octokit/request@npm:5.6.3"
@ -5067,6 +5095,18 @@ __metadata:
languageName: node
linkType: hard
"@octokit/request@npm:^8.0.0":
version: 8.4.1
resolution: "@octokit/request@npm:8.4.1"
dependencies:
"@octokit/endpoint": "npm:^9.0.6"
"@octokit/request-error": "npm:^5.1.1"
"@octokit/types": "npm:^13.1.0"
universal-user-agent: "npm:^6.0.0"
checksum: 10/2b2c9131cc9b608baeeef8ce2943768cc9db5fbe36a665f734a099bd921561c760e4391fbdf39d5aefb725db26742db1488c65624940ef7cec522e10863caa5e
languageName: node
linkType: hard
"@octokit/rest@npm:^19.0.3":
version: 19.0.13
resolution: "@octokit/rest@npm:19.0.13"
@ -5086,6 +5126,15 @@ __metadata:
languageName: node
linkType: hard
"@octokit/types@npm:^13.1.0":
version: 13.10.0
resolution: "@octokit/types@npm:13.10.0"
dependencies:
"@octokit/openapi-types": "npm:^24.2.0"
checksum: 10/32f8f5010d7faae128b0cdd0c221f0ca8c3781fe44483ecd87162b3da507db667f7369acda81340f6e2c9c374d9a938803409c6085c2c01d98210b6c58efb99a
languageName: node
linkType: hard
"@octokit/types@npm:^6.0.3, @octokit/types@npm:^6.10.0, @octokit/types@npm:^6.12.2, @octokit/types@npm:^6.16.1":
version: 6.41.0
resolution: "@octokit/types@npm:6.41.0"
@ -18344,10 +18393,10 @@ __metadata:
languageName: node
linkType: hard
"react-refresh@npm:^0.14.0":
version: 0.14.0
resolution: "react-refresh@npm:0.14.0"
checksum: 10/75941262ce3ed4fc79b52492943fd59692f29b84f30f3822713b7e920f28e85c62a4386f85cbfbaea95ed62d3e74209f0a0bb065904b7ab2f166a74ac3812e2a
"react-refresh@npm:^0.17.0":
version: 0.17.0
resolution: "react-refresh@npm:0.17.0"
checksum: 10/5e94f07d43bb1cfdc9b0c6e0c8c73e754005489950dcff1edb53aa8451d1d69a47b740b195c7c80fb4eb511c56a3585dc55eddd83f0097fb5e015116a1460467
languageName: node
linkType: hard

View File

@ -1,3 +1,3 @@
{
"version": "1.38.1"
"version": "1.39.0"
}

View File

@ -20,6 +20,7 @@
"new": "backstage-cli new --scope @backstage-community",
"build:api-reports": "yarn build:api-reports:only --tsc",
"build:api-reports:only": "backstage-repo-tools api-reports -o ae-wrong-input-file-type,ae-undocumented --validate-release-tags",
"build:knip-reports": "backstage-repo-tools knip-reports",
"postinstall": "cd ../../ && yarn install"
},
"workspaces": {
@ -34,9 +35,9 @@
"directory": "workspaces/apollo-explorer"
},
"devDependencies": {
"@backstage/cli": "^0.32.0",
"@backstage/cli": "^0.32.1",
"@backstage/e2e-test-utils": "^0.1.1",
"@backstage/repo-tools": "^0.13.2",
"@backstage/repo-tools": "^0.13.3",
"@changesets/cli": "^2.27.1",
"knip": "^5.27.4",
"node-gyp": "^10.0.0",

View File

@ -1,5 +1,11 @@
# @backstage-community/plugin-apollo-explorer
## 0.8.0
### Minor Changes
- ca428bd: Backstage version bump to v1.39.0
## 0.7.0
### Minor Changes

View File

@ -1,6 +1,6 @@
{
"name": "@backstage-community/plugin-apollo-explorer",
"version": "0.7.0",
"version": "0.8.0",
"backstage": {
"role": "frontend-plugin",
"pluginId": "apollo-explorer",
@ -37,8 +37,8 @@
},
"dependencies": {
"@apollo/explorer": "^3.0.0",
"@backstage/core-components": "^0.17.1",
"@backstage/core-plugin-api": "^1.10.6",
"@backstage/core-components": "^0.17.2",
"@backstage/core-plugin-api": "^1.10.7",
"@material-ui/core": "^4.12.2",
"@material-ui/lab": "^4.0.0-alpha.61",
"@types/react": "^16.13.1 || ^17.0.0 || ^18.0.0",
@ -46,8 +46,8 @@
"use-deep-compare-effect": "^1.8.1"
},
"devDependencies": {
"@backstage/cli": "^0.32.0",
"@backstage/dev-utils": "^1.1.9",
"@backstage/cli": "^0.32.1",
"@backstage/dev-utils": "^1.1.10",
"@testing-library/dom": "^10.0.0",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^15.0.0",

View File

@ -1758,10 +1758,10 @@ __metadata:
resolution: "@backstage-community/plugin-apollo-explorer@workspace:plugins/apollo-explorer"
dependencies:
"@apollo/explorer": "npm:^3.0.0"
"@backstage/cli": "npm:^0.32.0"
"@backstage/core-components": "npm:^0.17.1"
"@backstage/core-plugin-api": "npm:^1.10.6"
"@backstage/dev-utils": "npm:^1.1.9"
"@backstage/cli": "npm:^0.32.1"
"@backstage/core-components": "npm:^0.17.2"
"@backstage/core-plugin-api": "npm:^1.10.7"
"@backstage/dev-utils": "npm:^1.1.10"
"@material-ui/core": "npm:^4.12.2"
"@material-ui/lab": "npm:^4.0.0-alpha.61"
"@testing-library/dom": "npm:^10.0.0"
@ -1781,15 +1781,15 @@ __metadata:
languageName: unknown
linkType: soft
"@backstage/app-defaults@npm:^1.6.1":
version: 1.6.1
resolution: "@backstage/app-defaults@npm:1.6.1"
"@backstage/app-defaults@npm:^1.6.2":
version: 1.6.2
resolution: "@backstage/app-defaults@npm:1.6.2"
dependencies:
"@backstage/core-app-api": "npm:^1.16.1"
"@backstage/core-components": "npm:^0.17.1"
"@backstage/core-plugin-api": "npm:^1.10.6"
"@backstage/plugin-permission-react": "npm:^0.4.33"
"@backstage/theme": "npm:^0.6.5"
"@backstage/core-app-api": "npm:^1.17.0"
"@backstage/core-components": "npm:^0.17.2"
"@backstage/core-plugin-api": "npm:^1.10.7"
"@backstage/plugin-permission-react": "npm:^0.4.34"
"@backstage/theme": "npm:^0.6.6"
"@material-ui/core": "npm:^4.12.2"
"@material-ui/icons": "npm:^4.9.1"
peerDependencies:
@ -1800,50 +1800,50 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/9367d24422d3bc4738d163fe5e4b4c500741ddbfc71aaa111815c162ad9be807f96617e13043c9ebb4f98fd3ec971de8a83199d534364542ed591b9ad9f3516a
checksum: 10/0a555df27dbf75e92949dadf57f1764825d25d89b25fc0bf01bb1a4f0546787d94001dbb8beb65d444ad1801c7cb52236240fa42a2aeb0a51d39d2b41949033d
languageName: node
linkType: hard
"@backstage/backend-plugin-api@npm:^1.3.0":
version: 1.3.0
resolution: "@backstage/backend-plugin-api@npm:1.3.0"
"@backstage/backend-plugin-api@npm:^1.3.1":
version: 1.3.1
resolution: "@backstage/backend-plugin-api@npm:1.3.1"
dependencies:
"@backstage/cli-common": "npm:^0.1.15"
"@backstage/config": "npm:^1.3.2"
"@backstage/errors": "npm:^1.2.7"
"@backstage/plugin-auth-node": "npm:^0.6.2"
"@backstage/plugin-permission-common": "npm:^0.8.4"
"@backstage/plugin-permission-node": "npm:^0.9.1"
"@backstage/plugin-auth-node": "npm:^0.6.3"
"@backstage/plugin-permission-common": "npm:^0.9.0"
"@backstage/plugin-permission-node": "npm:^0.10.0"
"@backstage/types": "npm:^1.2.1"
"@types/express": "npm:^4.17.6"
"@types/luxon": "npm:^3.0.0"
knex: "npm:^3.0.0"
luxon: "npm:^3.0.0"
checksum: 10/0c657159bf2d988a09fe066dba811fa1c9237162dffdbbded09a108d906ea580099343b86d1d5e675bf5f59ee09e292f23dd44c6a594c2f70ead8035f512b8b0
checksum: 10/c78a0cd73c9e2ab3f611e62b1570b83fd496f501616caf00877c5191a7c431671f66f77d6e7fd2a35982915f8cb1b69a85cf7d26e3f236a28f709a6ae7af8eaf
languageName: node
linkType: hard
"@backstage/catalog-client@npm:^1.9.1":
version: 1.9.1
resolution: "@backstage/catalog-client@npm:1.9.1"
"@backstage/catalog-client@npm:^1.10.0":
version: 1.10.0
resolution: "@backstage/catalog-client@npm:1.10.0"
dependencies:
"@backstage/catalog-model": "npm:^1.7.3"
"@backstage/catalog-model": "npm:^1.7.4"
"@backstage/errors": "npm:^1.2.7"
cross-fetch: "npm:^4.0.0"
uri-template: "npm:^2.0.0"
checksum: 10/4e29bb4b6addf4330e298e08500efda6d7e9a416102abdd65dfbedb5e139d8911449f6bb91a90b2d571ddca53cb908c77a4a894fd34689f740e779e66020e13f
checksum: 10/565512931ef340c272ebbffcac7c5f54348ed67a73be80cdecb8768c547a1da41c72b02c0830f3036a06edbc8c77b9720ee5f1f498b2308f799fd409bb4bbbe1
languageName: node
linkType: hard
"@backstage/catalog-model@npm:^1.7.3":
version: 1.7.3
resolution: "@backstage/catalog-model@npm:1.7.3"
"@backstage/catalog-model@npm:^1.7.4":
version: 1.7.4
resolution: "@backstage/catalog-model@npm:1.7.4"
dependencies:
"@backstage/errors": "npm:^1.2.7"
"@backstage/types": "npm:^1.2.1"
ajv: "npm:^8.10.0"
lodash: "npm:^4.17.21"
checksum: 10/5c58e19cf30f392c6a9e49edd623fc0a5677d36a2f7ab1e09dadf54fff110e4c2bf3f967061ed7279a106526cd05cae8ac9bedfc03742773e7499807ed9f19c8
checksum: 10/48c2db2a8144e891319879cec6cae1980088165a910a757b8ebc07dc337b4d8d5c743fbaa3fa916cdd1b5e06635b3a3edbd1e7d8519ac135824f1ba37c5e3ce2
languageName: node
linkType: hard
@ -1870,26 +1870,26 @@ __metadata:
languageName: node
linkType: hard
"@backstage/cli@npm:^0.32.0":
version: 0.32.0
resolution: "@backstage/cli@npm:0.32.0"
"@backstage/cli@npm:^0.32.1":
version: 0.32.1
resolution: "@backstage/cli@npm:0.32.1"
dependencies:
"@backstage/catalog-model": "npm:^1.7.3"
"@backstage/catalog-model": "npm:^1.7.4"
"@backstage/cli-common": "npm:^0.1.15"
"@backstage/cli-node": "npm:^0.2.13"
"@backstage/config": "npm:^1.3.2"
"@backstage/config-loader": "npm:^1.10.0"
"@backstage/config-loader": "npm:^1.10.1"
"@backstage/errors": "npm:^1.2.7"
"@backstage/eslint-plugin": "npm:^0.1.10"
"@backstage/integration": "npm:^1.16.3"
"@backstage/release-manifests": "npm:^0.0.12"
"@backstage/integration": "npm:^1.17.0"
"@backstage/release-manifests": "npm:^0.0.13"
"@backstage/types": "npm:^1.2.1"
"@manypkg/get-packages": "npm:^1.1.3"
"@module-federation/enhanced": "npm:^0.9.0"
"@octokit/graphql": "npm:^5.0.0"
"@octokit/graphql-schema": "npm:^13.7.0"
"@octokit/oauth-app": "npm:^4.2.0"
"@octokit/request": "npm:^6.0.0"
"@octokit/request": "npm:^8.0.0"
"@pmmmwh/react-refresh-webpack-plugin": "npm:^0.5.7"
"@rollup/plugin-commonjs": "npm:^26.0.0"
"@rollup/plugin-json": "npm:^6.0.0"
@ -1963,7 +1963,7 @@ __metadata:
process: "npm:^0.11.10"
raw-loader: "npm:^4.0.2"
react-dev-utils: "npm:^12.0.0-next.60"
react-refresh: "npm:^0.14.0"
react-refresh: "npm:^0.17.0"
recursive-readdir: "npm:^2.2.2"
replace-in-file: "npm:^7.1.0"
rollup: "npm:^4.27.3"
@ -1989,7 +1989,7 @@ __metadata:
zod: "npm:^3.22.4"
zod-validation-error: "npm:^3.4.0"
peerDependencies:
"@rspack/core": ^1.0.10
"@rspack/core": ^1.2.8
"@rspack/dev-server": ^1.0.9
"@rspack/plugin-react-refresh": ^1.0.0
peerDependenciesMeta:
@ -2002,13 +2002,13 @@ __metadata:
bin:
backstage-cli: bin/backstage-cli
backstage-cli-alpha: bin/backstage-cli-alpha
checksum: 10/c9bec5d95e1958f01c6492ef9bdba2262fd1ea3d269e9b0d03f78a7bf91b41363a7fbf59f6f1a08db3e30ced4e7bed030d8bc4a6c59fb0be4d27efc53ed16d9b
checksum: 10/8675aaf0a33d10d3f7620ca89f6a2a7f2c7e35e86c49bf3e8d56ff71ddc7e888e53a1e99c8bd476c9d67c911ae6552d674b4944a93ab120e32d910fe36db6c1d
languageName: node
linkType: hard
"@backstage/config-loader@npm:^1.10.0":
version: 1.10.0
resolution: "@backstage/config-loader@npm:1.10.0"
"@backstage/config-loader@npm:^1.10.1":
version: 1.10.1
resolution: "@backstage/config-loader@npm:1.10.1"
dependencies:
"@backstage/cli-common": "npm:^0.1.15"
"@backstage/config": "npm:^1.3.2"
@ -2025,7 +2025,7 @@ __metadata:
minimist: "npm:^1.2.5"
typescript-json-schema: "npm:^0.65.0"
yaml: "npm:^2.0.0"
checksum: 10/dc8f78282648e50bc25608fce4699045cdf1bc8d2ed03d2635d0c9afce3e01f052f6d4dde82f12bdb606c73a04ce1217eb3f79401d668061e40e794184535e44
checksum: 10/61f66e65bf747b07f72c3475a3875c5409442087ca541c749a1ecff6668cb0564294f6b760a2e76e135871bdaf61f2b8bcb2e62d4786d12693400c57422f3b85
languageName: node
linkType: hard
@ -2040,12 +2040,12 @@ __metadata:
languageName: node
linkType: hard
"@backstage/core-app-api@npm:^1.16.1":
version: 1.16.1
resolution: "@backstage/core-app-api@npm:1.16.1"
"@backstage/core-app-api@npm:^1.17.0":
version: 1.17.0
resolution: "@backstage/core-app-api@npm:1.17.0"
dependencies:
"@backstage/config": "npm:^1.3.2"
"@backstage/core-plugin-api": "npm:^1.10.6"
"@backstage/core-plugin-api": "npm:^1.10.7"
"@backstage/types": "npm:^1.2.1"
"@backstage/version-bridge": "npm:^1.0.11"
"@types/prop-types": "npm:^15.7.3"
@ -2064,17 +2064,17 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/fae37fa5c4598dc1c2a4f82356d4039633cc7323f44f369ad1ca4151e1e27f668b2929f759e7a4843e273979a5aae1b473809e8add23cbd788fc48329bdf51fd
checksum: 10/04939b5d59a2473cc95ec170a11f0c82d924f436d1f40598f6a571a21c37c38e2d86f84ed6ec0b1cf91b3ac02aff2aed608184f41017535e55096466a63c4f29
languageName: node
linkType: hard
"@backstage/core-compat-api@npm:^0.4.1":
version: 0.4.1
resolution: "@backstage/core-compat-api@npm:0.4.1"
"@backstage/core-compat-api@npm:^0.4.2":
version: 0.4.2
resolution: "@backstage/core-compat-api@npm:0.4.2"
dependencies:
"@backstage/core-plugin-api": "npm:^1.10.6"
"@backstage/frontend-plugin-api": "npm:^0.10.1"
"@backstage/plugin-catalog-react": "npm:^1.17.0"
"@backstage/core-plugin-api": "npm:^1.10.7"
"@backstage/frontend-plugin-api": "npm:^0.10.2"
"@backstage/plugin-catalog-react": "npm:^1.18.0"
"@backstage/version-bridge": "npm:^1.0.11"
lodash: "npm:^4.17.21"
peerDependencies:
@ -2085,18 +2085,18 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/4c91cc4f4a06d6420a4bed63e540e46a34a7a1ecb831fd503960c9e9ae8817f015a0b6d39d37ac4588233caf2a21a93c9acadbe15d11b59706275166567a4581
checksum: 10/7e93c3ff7a9979ee8cb0ab582e66bd0febb5995c91cc0545473e9e86fc75c1ebbb0a24a901e120d7e4ecf122bbb31de1b4f8fc78c7da5f6d84daa9d6b9194035
languageName: node
linkType: hard
"@backstage/core-components@npm:^0.17.1":
version: 0.17.1
resolution: "@backstage/core-components@npm:0.17.1"
"@backstage/core-components@npm:^0.17.2":
version: 0.17.2
resolution: "@backstage/core-components@npm:0.17.2"
dependencies:
"@backstage/config": "npm:^1.3.2"
"@backstage/core-plugin-api": "npm:^1.10.6"
"@backstage/core-plugin-api": "npm:^1.10.7"
"@backstage/errors": "npm:^1.2.7"
"@backstage/theme": "npm:^0.6.5"
"@backstage/theme": "npm:^0.6.6"
"@backstage/version-bridge": "npm:^1.0.11"
"@dagrejs/dagre": "npm:^1.1.4"
"@date-io/core": "npm:^1.3.13"
@ -2139,13 +2139,13 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/12e8f0675c2dd6bb871d77ceb833d2078cac41278d4122139669ffaadea09df7b3c8ca53c166e2c664c275e381f9c96f8383a5a1faaeb956ab0f1e4ee72ec1b7
checksum: 10/0b790f3448001e571e50a89c6bbcd08d0d08b7e098b262e09ad19e475ffdf12f4b0c31b0880e64a61a1096b5091d6767e06e32874a2dc6ebc98d79bc0b82107f
languageName: node
linkType: hard
"@backstage/core-plugin-api@npm:^1.10.6":
version: 1.10.6
resolution: "@backstage/core-plugin-api@npm:1.10.6"
"@backstage/core-plugin-api@npm:^1.10.7":
version: 1.10.7
resolution: "@backstage/core-plugin-api@npm:1.10.7"
dependencies:
"@backstage/config": "npm:^1.3.2"
"@backstage/errors": "npm:^1.2.7"
@ -2160,22 +2160,22 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/1359bb2dc294c6eb0b8de6aa4a0788561c5d43ef2a4464d4f7600c382126398a42724e8ba894925ab02f1d332ef9b87b0eeee31e56a9e9223f8d6504a283d896
checksum: 10/1a8865e41f38b514936275dea23c595e5c07523a68081d8207f99a18ee049c81b92b33a606478b7f7881597bc71f9b14d9aba7cbc453645ced6317648ab75826
languageName: node
linkType: hard
"@backstage/dev-utils@npm:^1.1.9":
version: 1.1.9
resolution: "@backstage/dev-utils@npm:1.1.9"
"@backstage/dev-utils@npm:^1.1.10":
version: 1.1.10
resolution: "@backstage/dev-utils@npm:1.1.10"
dependencies:
"@backstage/app-defaults": "npm:^1.6.1"
"@backstage/catalog-model": "npm:^1.7.3"
"@backstage/core-app-api": "npm:^1.16.1"
"@backstage/core-components": "npm:^0.17.1"
"@backstage/core-plugin-api": "npm:^1.10.6"
"@backstage/integration-react": "npm:^1.2.6"
"@backstage/plugin-catalog-react": "npm:^1.17.0"
"@backstage/theme": "npm:^0.6.5"
"@backstage/app-defaults": "npm:^1.6.2"
"@backstage/catalog-model": "npm:^1.7.4"
"@backstage/core-app-api": "npm:^1.17.0"
"@backstage/core-components": "npm:^0.17.2"
"@backstage/core-plugin-api": "npm:^1.10.7"
"@backstage/integration-react": "npm:^1.2.7"
"@backstage/plugin-catalog-react": "npm:^1.18.0"
"@backstage/theme": "npm:^0.6.6"
"@material-ui/core": "npm:^4.12.2"
"@material-ui/icons": "npm:^4.9.1"
react-use: "npm:^17.2.4"
@ -2187,7 +2187,7 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/078ece28986bf3997560bd8441f6414079264fc88e10172e90be9525393ef0f2b2577fa5c2ef67d9f7a0997eb0578a19a24b51502524070ab6f0d94f069ea949
checksum: 10/2f4c4c41f4e0fcb7cbc5f2e4acdc2c49b312e5ce95e6fbdb849f71f1f3451ad471dd2d1063da789bd3187b797af2826fda8c9147edb5fdaf1fd8bdbd55b5d911
languageName: node
linkType: hard
@ -2226,16 +2226,16 @@ __metadata:
languageName: node
linkType: hard
"@backstage/frontend-app-api@npm:^0.11.1":
version: 0.11.1
resolution: "@backstage/frontend-app-api@npm:0.11.1"
"@backstage/frontend-app-api@npm:^0.11.2":
version: 0.11.2
resolution: "@backstage/frontend-app-api@npm:0.11.2"
dependencies:
"@backstage/config": "npm:^1.3.2"
"@backstage/core-app-api": "npm:^1.16.1"
"@backstage/core-plugin-api": "npm:^1.10.6"
"@backstage/core-app-api": "npm:^1.17.0"
"@backstage/core-plugin-api": "npm:^1.10.7"
"@backstage/errors": "npm:^1.2.7"
"@backstage/frontend-defaults": "npm:^0.2.1"
"@backstage/frontend-plugin-api": "npm:^0.10.1"
"@backstage/frontend-defaults": "npm:^0.2.2"
"@backstage/frontend-plugin-api": "npm:^0.10.2"
"@backstage/types": "npm:^1.2.1"
"@backstage/version-bridge": "npm:^1.0.11"
lodash: "npm:^4.17.21"
@ -2248,19 +2248,19 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/fdf5b7dddeba9320e8ec54751396a3e81897605c26520af60eb61a76f17dd78b6b786f5cfa9f4bad3beef0d3408868bfe8331f6773b54034d11dc170a35e60e7
checksum: 10/06cf128df60b0322c07c14853146da5096625d58a344555571a65ead221f03dc1f4e2fe7da364b2afec010be13a4d4a4574060a3f65c023bdcdc93d20d09c33d
languageName: node
linkType: hard
"@backstage/frontend-defaults@npm:^0.2.1":
version: 0.2.1
resolution: "@backstage/frontend-defaults@npm:0.2.1"
"@backstage/frontend-defaults@npm:^0.2.2":
version: 0.2.2
resolution: "@backstage/frontend-defaults@npm:0.2.2"
dependencies:
"@backstage/config": "npm:^1.3.2"
"@backstage/errors": "npm:^1.2.7"
"@backstage/frontend-app-api": "npm:^0.11.1"
"@backstage/frontend-plugin-api": "npm:^0.10.1"
"@backstage/plugin-app": "npm:^0.1.8"
"@backstage/frontend-app-api": "npm:^0.11.2"
"@backstage/frontend-plugin-api": "npm:^0.10.2"
"@backstage/plugin-app": "npm:^0.1.9"
"@react-hookz/web": "npm:^24.0.0"
peerDependencies:
"@types/react": ^17.0.0 || ^18.0.0
@ -2270,16 +2270,16 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/3bd178ca78db5d467378272025d7a3fa7995a37063f39c2ec2c9a81b2bb6aa4890f888e99f1e5c4abb442614b978a490d8dbcaa09e54a94e47364caab618725c
checksum: 10/23e6156314cb80d9cc1128ee3ad2d3afee3e2a6e88c049853b19133fc95e75f4361e735f26903e44fa62b29d39df5381c53200799a8cc3b3fd0943682a5e51f5
languageName: node
linkType: hard
"@backstage/frontend-plugin-api@npm:^0.10.1":
version: 0.10.1
resolution: "@backstage/frontend-plugin-api@npm:0.10.1"
"@backstage/frontend-plugin-api@npm:^0.10.2":
version: 0.10.2
resolution: "@backstage/frontend-plugin-api@npm:0.10.2"
dependencies:
"@backstage/core-components": "npm:^0.17.1"
"@backstage/core-plugin-api": "npm:^1.10.6"
"@backstage/core-components": "npm:^0.17.2"
"@backstage/core-plugin-api": "npm:^1.10.7"
"@backstage/types": "npm:^1.2.1"
"@backstage/version-bridge": "npm:^1.0.11"
"@material-ui/core": "npm:^4.12.4"
@ -2294,19 +2294,19 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/5a1b69d7a1b1db584f4f0c4934ac98dc678f53730c250959da47e20479032b02b1f02785bcb51989af899e8b1166599e23e03ce024469e5efb5b49f8c792e315
checksum: 10/4f01cf2ae8352dd8b5f7ff66a97739c6f9f8b19b182ae7cb05db542d02fa0cdee805712c0d355068de3c7cd851404fe6e424c5b7a0ffbcec686c42bc78030510
languageName: node
linkType: hard
"@backstage/frontend-test-utils@npm:^0.3.1":
version: 0.3.1
resolution: "@backstage/frontend-test-utils@npm:0.3.1"
"@backstage/frontend-test-utils@npm:^0.3.2":
version: 0.3.2
resolution: "@backstage/frontend-test-utils@npm:0.3.2"
dependencies:
"@backstage/config": "npm:^1.3.2"
"@backstage/frontend-app-api": "npm:^0.11.1"
"@backstage/frontend-plugin-api": "npm:^0.10.1"
"@backstage/plugin-app": "npm:^0.1.8"
"@backstage/test-utils": "npm:^1.7.7"
"@backstage/frontend-app-api": "npm:^0.11.2"
"@backstage/frontend-plugin-api": "npm:^0.10.2"
"@backstage/plugin-app": "npm:^0.1.9"
"@backstage/test-utils": "npm:^1.7.8"
"@backstage/types": "npm:^1.2.1"
"@backstage/version-bridge": "npm:^1.0.11"
zod: "npm:^3.22.4"
@ -2319,17 +2319,17 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/b46c7e660ffbfecae9d0dd9fbc471c0c6324550d768f2749ff5726b4acd737aef4075290f1c2e8b73ce967b664997cc1f47f933254209d41d2fb080799c3dba9
checksum: 10/3b33d0165e2bda8460e433649fec04d7594c7d987b7cdc59b46a955208266481d15df0f6d529a0bfbece7050d6510c0e320bf77fc81296579747e9a469d8e7d0
languageName: node
linkType: hard
"@backstage/integration-react@npm:^1.2.6":
version: 1.2.6
resolution: "@backstage/integration-react@npm:1.2.6"
"@backstage/integration-react@npm:^1.2.7":
version: 1.2.7
resolution: "@backstage/integration-react@npm:1.2.7"
dependencies:
"@backstage/config": "npm:^1.3.2"
"@backstage/core-plugin-api": "npm:^1.10.6"
"@backstage/integration": "npm:^1.16.3"
"@backstage/core-plugin-api": "npm:^1.10.7"
"@backstage/integration": "npm:^1.17.0"
"@material-ui/core": "npm:^4.12.2"
"@material-ui/icons": "npm:^4.9.1"
peerDependencies:
@ -2340,13 +2340,13 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/7a3a13d277e03c5a95131b99a50210e4bd7bdcba133ef5ee1549d625fc373072669a52e9317bc1b29f27f7a3d99eb89d2dc6469ff7bd87de10eb1d19a03a51bb
checksum: 10/a954cdd17caebd6a768892884dea34249b6f502de5e7dcb9da8fc18f591bc15be7bb37e91d6f56c0c3783121a69e54f305ae6279a7647f42f15f355affa5cebe
languageName: node
linkType: hard
"@backstage/integration@npm:^1.16.3":
version: 1.16.3
resolution: "@backstage/integration@npm:1.16.3"
"@backstage/integration@npm:^1.17.0":
version: 1.17.0
resolution: "@backstage/integration@npm:1.17.0"
dependencies:
"@azure/identity": "npm:^4.0.0"
"@azure/storage-blob": "npm:^12.5.0"
@ -2358,20 +2358,20 @@ __metadata:
git-url-parse: "npm:^15.0.0"
lodash: "npm:^4.17.21"
luxon: "npm:^3.0.0"
checksum: 10/ce27919bee116725b1cd0749388dacace62746eba46772343cdd95d93c0261d673b7feac62ff74a024e6a8b455b33f231ceb987c23ecf34804643eda6bed2821
checksum: 10/651a717a2268be73f6b1d34072585641cf3ad0e8e5122fc4cca249e773fda4dcde904588331d352ae455a420120fb1ef7847cd859d8d9132203eec63c8c6b01a
languageName: node
linkType: hard
"@backstage/plugin-app@npm:^0.1.8":
version: 0.1.8
resolution: "@backstage/plugin-app@npm:0.1.8"
"@backstage/plugin-app@npm:^0.1.9":
version: 0.1.9
resolution: "@backstage/plugin-app@npm:0.1.9"
dependencies:
"@backstage/core-components": "npm:^0.17.1"
"@backstage/core-plugin-api": "npm:^1.10.6"
"@backstage/frontend-plugin-api": "npm:^0.10.1"
"@backstage/integration-react": "npm:^1.2.6"
"@backstage/plugin-permission-react": "npm:^0.4.33"
"@backstage/theme": "npm:^0.6.5"
"@backstage/core-components": "npm:^0.17.2"
"@backstage/core-plugin-api": "npm:^1.10.7"
"@backstage/frontend-plugin-api": "npm:^0.10.2"
"@backstage/integration-react": "npm:^1.2.7"
"@backstage/plugin-permission-react": "npm:^0.4.34"
"@backstage/theme": "npm:^0.6.6"
"@backstage/types": "npm:^1.2.1"
"@material-ui/core": "npm:^4.9.13"
"@material-ui/icons": "npm:^4.9.1"
@ -2385,17 +2385,17 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/3634ce0bb0ac0f86050c45a4d24f728975232dcd04106b48b1ffdaec4e2ce9ef1ad17220afd0351fb75d6e10bfaacd45289064397332b5c08dc1c046d21466cf
checksum: 10/9c357605a8427f8bf5099968c612f90015d34d757a9494ea22d487bec20593cd80a7a50326e46344fc877ed163a14f2675d33530c1d756411316b0d373096aab
languageName: node
linkType: hard
"@backstage/plugin-auth-node@npm:^0.6.2":
version: 0.6.2
resolution: "@backstage/plugin-auth-node@npm:0.6.2"
"@backstage/plugin-auth-node@npm:^0.6.3":
version: 0.6.3
resolution: "@backstage/plugin-auth-node@npm:0.6.3"
dependencies:
"@backstage/backend-plugin-api": "npm:^1.3.0"
"@backstage/catalog-client": "npm:^1.9.1"
"@backstage/catalog-model": "npm:^1.7.3"
"@backstage/backend-plugin-api": "npm:^1.3.1"
"@backstage/catalog-client": "npm:^1.10.0"
"@backstage/catalog-model": "npm:^1.7.4"
"@backstage/config": "npm:^1.3.2"
"@backstage/errors": "npm:^1.2.7"
"@backstage/types": "npm:^1.2.1"
@ -2408,37 +2408,37 @@ __metadata:
zod: "npm:^3.22.4"
zod-to-json-schema: "npm:^3.21.4"
zod-validation-error: "npm:^3.4.0"
checksum: 10/831b07fa41df68855f9a107a78c70d34986ddc7e12eac70cd3cdecb42b1297a65f0e6061549b12653704966887a5cd0199c7d69588e48a461dd74559d890aaa7
checksum: 10/7f7fd4c1072512c8db6902e7a3e75319f73e2e487da0d202f3fde446eb340a34e7b1c0ce92d16f4dc2a5525aecd1df78979cdcfc650a48a41b2441f221fc0579
languageName: node
linkType: hard
"@backstage/plugin-catalog-common@npm:^1.1.3":
version: 1.1.3
resolution: "@backstage/plugin-catalog-common@npm:1.1.3"
"@backstage/plugin-catalog-common@npm:^1.1.4":
version: 1.1.4
resolution: "@backstage/plugin-catalog-common@npm:1.1.4"
dependencies:
"@backstage/catalog-model": "npm:^1.7.3"
"@backstage/plugin-permission-common": "npm:^0.8.4"
"@backstage/plugin-search-common": "npm:^1.2.17"
checksum: 10/60c0624603576bcf12bf99e6ac1c921e0847ad72f8ac89ed4315b88f128b738e00eab8c6fc1da6e9830dac93b9b0acd2e3cb1ee21667c48a98ac7b79b546a560
"@backstage/catalog-model": "npm:^1.7.4"
"@backstage/plugin-permission-common": "npm:^0.9.0"
"@backstage/plugin-search-common": "npm:^1.2.18"
checksum: 10/e65331add32185a54de3c0bae4187824bd0b2d4a729cf4cd659bda54d3dd1cb94a9aeaf4553ee08ae44439742cc45149767329b3ef07bc39ed014433a62d7bd0
languageName: node
linkType: hard
"@backstage/plugin-catalog-react@npm:^1.17.0":
version: 1.17.0
resolution: "@backstage/plugin-catalog-react@npm:1.17.0"
"@backstage/plugin-catalog-react@npm:^1.18.0":
version: 1.18.0
resolution: "@backstage/plugin-catalog-react@npm:1.18.0"
dependencies:
"@backstage/catalog-client": "npm:^1.9.1"
"@backstage/catalog-model": "npm:^1.7.3"
"@backstage/core-compat-api": "npm:^0.4.1"
"@backstage/core-components": "npm:^0.17.1"
"@backstage/core-plugin-api": "npm:^1.10.6"
"@backstage/catalog-client": "npm:^1.10.0"
"@backstage/catalog-model": "npm:^1.7.4"
"@backstage/core-compat-api": "npm:^0.4.2"
"@backstage/core-components": "npm:^0.17.2"
"@backstage/core-plugin-api": "npm:^1.10.7"
"@backstage/errors": "npm:^1.2.7"
"@backstage/frontend-plugin-api": "npm:^0.10.1"
"@backstage/frontend-test-utils": "npm:^0.3.1"
"@backstage/integration-react": "npm:^1.2.6"
"@backstage/plugin-catalog-common": "npm:^1.1.3"
"@backstage/plugin-permission-common": "npm:^0.8.4"
"@backstage/plugin-permission-react": "npm:^0.4.33"
"@backstage/frontend-plugin-api": "npm:^0.10.2"
"@backstage/frontend-test-utils": "npm:^0.3.2"
"@backstage/integration-react": "npm:^1.2.7"
"@backstage/plugin-catalog-common": "npm:^1.1.4"
"@backstage/plugin-permission-common": "npm:^0.9.0"
"@backstage/plugin-permission-react": "npm:^0.4.34"
"@backstage/types": "npm:^1.2.1"
"@backstage/version-bridge": "npm:^1.0.11"
"@material-ui/core": "npm:^4.12.2"
@ -2460,13 +2460,13 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/025ed43087462b021c13eac7fc762ad7d52d8ebb593da0093130e6379a79ac1b428fa9024eb21ace9bdf1d43ecafcab39226dbbf2b44ba35a6c93a9ddb04f1da
checksum: 10/1dec452c7bb1bd3538839a3a99943f5a5b50e5f414e31c679461e4810e5ea0e623cd41de6f08922fe577f3855459903f999c0ee0635982e1dd6bffbb46eceb08
languageName: node
linkType: hard
"@backstage/plugin-permission-common@npm:^0.8.4":
version: 0.8.4
resolution: "@backstage/plugin-permission-common@npm:0.8.4"
"@backstage/plugin-permission-common@npm:^0.9.0":
version: 0.9.0
resolution: "@backstage/plugin-permission-common@npm:0.9.0"
dependencies:
"@backstage/config": "npm:^1.3.2"
"@backstage/errors": "npm:^1.2.7"
@ -2475,35 +2475,35 @@ __metadata:
uuid: "npm:^11.0.0"
zod: "npm:^3.22.4"
zod-to-json-schema: "npm:^3.20.4"
checksum: 10/c850ff17d4f97a77064a296a3b53b112906f7483e72d6e48008b17846d3fa2578ce532722844f1761eb81687155f7f58634fd6ea22313733174903fda90860be
checksum: 10/f165e3018cf5010a5c6ce8ec9778f2ed0024810c38e2b02f9cca637f7c37b26b23822ba5341794e4dc18a8e153ac21b9fde456dddc19150d328b5f20a4668017
languageName: node
linkType: hard
"@backstage/plugin-permission-node@npm:^0.9.1":
version: 0.9.1
resolution: "@backstage/plugin-permission-node@npm:0.9.1"
"@backstage/plugin-permission-node@npm:^0.10.0":
version: 0.10.0
resolution: "@backstage/plugin-permission-node@npm:0.10.0"
dependencies:
"@backstage/backend-plugin-api": "npm:^1.3.0"
"@backstage/backend-plugin-api": "npm:^1.3.1"
"@backstage/config": "npm:^1.3.2"
"@backstage/errors": "npm:^1.2.7"
"@backstage/plugin-auth-node": "npm:^0.6.2"
"@backstage/plugin-permission-common": "npm:^0.8.4"
"@backstage/plugin-auth-node": "npm:^0.6.3"
"@backstage/plugin-permission-common": "npm:^0.9.0"
"@types/express": "npm:^4.17.6"
express: "npm:^4.17.1"
express-promise-router: "npm:^4.1.0"
zod: "npm:^3.22.4"
zod-to-json-schema: "npm:^3.20.4"
checksum: 10/3292951e8cdcc4341ba53e67bcc580d77da14e1e3224b9323671704b7329a3a9e45905e3cc5afb8bff33462178ddf7c3a510392c048ce125f374910622e91bd4
checksum: 10/ffd6efc8625c36c5afbde08cf31aeac56a64c3b05547c8b2ba77b6301044652d2c5c4145f8445694ec8b1155173100472f21df1a4ec80b95d454485feb35231b
languageName: node
linkType: hard
"@backstage/plugin-permission-react@npm:^0.4.33":
version: 0.4.33
resolution: "@backstage/plugin-permission-react@npm:0.4.33"
"@backstage/plugin-permission-react@npm:^0.4.34":
version: 0.4.34
resolution: "@backstage/plugin-permission-react@npm:0.4.34"
dependencies:
"@backstage/config": "npm:^1.3.2"
"@backstage/core-plugin-api": "npm:^1.10.6"
"@backstage/plugin-permission-common": "npm:^0.8.4"
"@backstage/core-plugin-api": "npm:^1.10.7"
"@backstage/plugin-permission-common": "npm:^0.9.0"
swr: "npm:^2.0.0"
peerDependencies:
"@types/react": ^17.0.0 || ^18.0.0
@ -2513,38 +2513,38 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/552bba79e3876ec48faf40df1c7f05f5b183130b3b214101b1dd48f519b6846867457ae458daeb20e74b8d8c805f4615c8a1c2d670e2f69f463cb484a408f16b
checksum: 10/55c0e8c8d250d524c77b0de0eb9ea488d1193b5059131692401c127eedda1d0553b5d8848df7587e255856b8f7d8b76176914d2fb3c89fca7a62656748ea3dec
languageName: node
linkType: hard
"@backstage/plugin-search-common@npm:^1.2.17":
version: 1.2.17
resolution: "@backstage/plugin-search-common@npm:1.2.17"
"@backstage/plugin-search-common@npm:^1.2.18":
version: 1.2.18
resolution: "@backstage/plugin-search-common@npm:1.2.18"
dependencies:
"@backstage/plugin-permission-common": "npm:^0.8.4"
"@backstage/plugin-permission-common": "npm:^0.9.0"
"@backstage/types": "npm:^1.2.1"
checksum: 10/30cfcb164940b7eb70d8163766cca981536372d0cb5c6e006837e044d91a60be16b83534a2887b0a7cf90a51bed35cd7b188e62598e7340cbf79e371a8bfd0e6
checksum: 10/9a7c262a5e1fc2d1bc40a9738d6e29ba215867a10efa22c1c3e3b7847d2b6f7566fde4c22f6989933a47d2f1928ee7544ade4f88fb2e0956f4dde7cf02cb85a6
languageName: node
linkType: hard
"@backstage/release-manifests@npm:^0.0.12":
version: 0.0.12
resolution: "@backstage/release-manifests@npm:0.0.12"
checksum: 10/482108faf39bd4095dfda34d00007065bff54a5aff836ef7c935a7a583baa6ae9d25e9d0c58a419e4d7d65eeb4f50357da47ab4d9cbd2d79da331fa426f64a3c
"@backstage/release-manifests@npm:^0.0.13":
version: 0.0.13
resolution: "@backstage/release-manifests@npm:0.0.13"
checksum: 10/b8c71e22dbc7d78fca93f9ed83c614e403a8bb103a2aceae4c799898af3aba976370e2255fd9e32b25f5dac3f80e1f37379d8c72a9d9c199cabbf111e70fe873
languageName: node
linkType: hard
"@backstage/repo-tools@npm:^0.13.2":
version: 0.13.2
resolution: "@backstage/repo-tools@npm:0.13.2"
"@backstage/repo-tools@npm:^0.13.3":
version: 0.13.3
resolution: "@backstage/repo-tools@npm:0.13.3"
dependencies:
"@apidevtools/swagger-parser": "npm:^10.1.0"
"@apisyouwonthate/style-guide": "npm:^1.4.0"
"@backstage/backend-plugin-api": "npm:^1.3.0"
"@backstage/catalog-model": "npm:^1.7.3"
"@backstage/backend-plugin-api": "npm:^1.3.1"
"@backstage/catalog-model": "npm:^1.7.4"
"@backstage/cli-common": "npm:^0.1.15"
"@backstage/cli-node": "npm:^0.2.13"
"@backstage/config-loader": "npm:^1.10.0"
"@backstage/config-loader": "npm:^1.10.1"
"@backstage/errors": "npm:^1.2.7"
"@electric-sql/pglite": "npm:^0.2.15"
"@manypkg/get-packages": "npm:^1.1.3"
@ -2585,7 +2585,7 @@ __metadata:
"@microsoft/tsdoc-config": "*"
"@useoptic/optic": ^1.0.0
prettier: ^2.8.1
typedoc: ^0.27.0
typedoc: ^0.28.0
typescript: "> 3.0.0"
peerDependenciesMeta:
prettier:
@ -2594,20 +2594,20 @@ __metadata:
optional: true
bin:
backstage-repo-tools: bin/backstage-repo-tools
checksum: 10/d51b6d065c5481a71641d8a11a8e041b0d02e40b058a09a5caf4e3a131ca04c334707dd51c72d39e34062efd6c0a7c21eb919400ae8fdabc266dc41201807c96
checksum: 10/f27aa2753859ebfb7adcc9642b7e3d06f1beebe89b5f7519d99a07f4fe7e53f6a8e4eace668c04b35555028bc5a452efd3277a828952450b24cdb428d365b640
languageName: node
linkType: hard
"@backstage/test-utils@npm:^1.7.7":
version: 1.7.7
resolution: "@backstage/test-utils@npm:1.7.7"
"@backstage/test-utils@npm:^1.7.8":
version: 1.7.8
resolution: "@backstage/test-utils@npm:1.7.8"
dependencies:
"@backstage/config": "npm:^1.3.2"
"@backstage/core-app-api": "npm:^1.16.1"
"@backstage/core-plugin-api": "npm:^1.10.6"
"@backstage/plugin-permission-common": "npm:^0.8.4"
"@backstage/plugin-permission-react": "npm:^0.4.33"
"@backstage/theme": "npm:^0.6.5"
"@backstage/core-app-api": "npm:^1.17.0"
"@backstage/core-plugin-api": "npm:^1.10.7"
"@backstage/plugin-permission-common": "npm:^0.9.0"
"@backstage/plugin-permission-react": "npm:^0.4.34"
"@backstage/theme": "npm:^0.6.6"
"@backstage/types": "npm:^1.2.1"
"@material-ui/core": "npm:^4.12.2"
"@material-ui/icons": "npm:^4.9.1"
@ -2623,13 +2623,13 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/2ffc4957e84b4c0e1328e43e05c88051026edbf8e2c9fd04f873176ecd636bc11269f36fa72933defc60d0d869986e9a2d46bba1f57e50811671d81c330bf1b1
checksum: 10/6d61fdfdf00b72d3c8ddb9120edc221085b634d39419f00610e40387715f4e5bfdf48f4d2762695d7f30d50c6d2e0f875bcb7d299265adb58fa19a76120b6ae9
languageName: node
linkType: hard
"@backstage/theme@npm:^0.6.5":
version: 0.6.5
resolution: "@backstage/theme@npm:0.6.5"
"@backstage/theme@npm:^0.6.6":
version: 0.6.6
resolution: "@backstage/theme@npm:0.6.6"
dependencies:
"@emotion/react": "npm:^11.10.5"
"@emotion/styled": "npm:^11.10.5"
@ -2643,7 +2643,7 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/242ccb2af6e2d1c64d4084c568c31d696d6abfdbbbd0ba35b2a9dabaae9c196b4610e2124f2c23fff16de082701901627f85b180f8a3ea2a8bcb865beb982829
checksum: 10/80297d992e853b3882fd158d192844a85738e89da6db7b6b47d27744129f04ea3c9ec946cb08fe226627f5e882670464d14bd07234e65debe98b3572eccbee15
languageName: node
linkType: hard
@ -3559,9 +3559,9 @@ __metadata:
version: 0.0.0-use.local
resolution: "@internal/apollo-explorer@workspace:."
dependencies:
"@backstage/cli": "npm:^0.32.0"
"@backstage/cli": "npm:^0.32.1"
"@backstage/e2e-test-utils": "npm:^0.1.1"
"@backstage/repo-tools": "npm:^0.13.2"
"@backstage/repo-tools": "npm:^0.13.3"
"@changesets/cli": "npm:^2.27.1"
knip: "npm:^5.27.4"
node-gyp: "npm:^10.0.0"
@ -4880,6 +4880,16 @@ __metadata:
languageName: node
linkType: hard
"@octokit/endpoint@npm:^9.0.6":
version: 9.0.6
resolution: "@octokit/endpoint@npm:9.0.6"
dependencies:
"@octokit/types": "npm:^13.1.0"
universal-user-agent: "npm:^6.0.0"
checksum: 10/2bf776423365ee926bf3f722a664e52f1070758eff4a176279fb132103fd0c76e3541f83ace49bbad9a64f9c9b8de453be565ca8d6136989e9514dea65380ecf
languageName: node
linkType: hard
"@octokit/graphql-schema@npm:^13.7.0":
version: 13.10.0
resolution: "@octokit/graphql-schema@npm:13.10.0"
@ -4979,6 +4989,13 @@ __metadata:
languageName: node
linkType: hard
"@octokit/openapi-types@npm:^24.2.0":
version: 24.2.0
resolution: "@octokit/openapi-types@npm:24.2.0"
checksum: 10/000897ebc6e247c2591049d6081e95eb5636f73798dadd695ee6048496772b58065df88823e74a760201828545a7ac601dd3c1bcd2e00079a62a9ee9d389409c
languageName: node
linkType: hard
"@octokit/plugin-paginate-rest@npm:^6.1.2":
version: 6.1.2
resolution: "@octokit/plugin-paginate-rest@npm:6.1.2"
@ -5034,6 +5051,17 @@ __metadata:
languageName: node
linkType: hard
"@octokit/request-error@npm:^5.1.1":
version: 5.1.1
resolution: "@octokit/request-error@npm:5.1.1"
dependencies:
"@octokit/types": "npm:^13.1.0"
deprecation: "npm:^2.0.0"
once: "npm:^1.4.0"
checksum: 10/6ad98626407ba57bb33fa197611be74bee1dd9abc8d5d845648d6a2a04aa6840c0eb7f4be341d55dfcab5bc19181ad5fd25194869a7aaac6245f74b3a14d9662
languageName: node
linkType: hard
"@octokit/request@npm:^5.4.14, @octokit/request@npm:^5.6.3":
version: 5.6.3
resolution: "@octokit/request@npm:5.6.3"
@ -5062,6 +5090,18 @@ __metadata:
languageName: node
linkType: hard
"@octokit/request@npm:^8.0.0":
version: 8.4.1
resolution: "@octokit/request@npm:8.4.1"
dependencies:
"@octokit/endpoint": "npm:^9.0.6"
"@octokit/request-error": "npm:^5.1.1"
"@octokit/types": "npm:^13.1.0"
universal-user-agent: "npm:^6.0.0"
checksum: 10/2b2c9131cc9b608baeeef8ce2943768cc9db5fbe36a665f734a099bd921561c760e4391fbdf39d5aefb725db26742db1488c65624940ef7cec522e10863caa5e
languageName: node
linkType: hard
"@octokit/rest@npm:^19.0.3":
version: 19.0.13
resolution: "@octokit/rest@npm:19.0.13"
@ -5081,6 +5121,15 @@ __metadata:
languageName: node
linkType: hard
"@octokit/types@npm:^13.1.0":
version: 13.10.0
resolution: "@octokit/types@npm:13.10.0"
dependencies:
"@octokit/openapi-types": "npm:^24.2.0"
checksum: 10/32f8f5010d7faae128b0cdd0c221f0ca8c3781fe44483ecd87162b3da507db667f7369acda81340f6e2c9c374d9a938803409c6085c2c01d98210b6c58efb99a
languageName: node
linkType: hard
"@octokit/types@npm:^6.0.3, @octokit/types@npm:^6.10.0, @octokit/types@npm:^6.12.2, @octokit/types@npm:^6.16.1":
version: 6.41.0
resolution: "@octokit/types@npm:6.41.0"
@ -18256,10 +18305,10 @@ __metadata:
languageName: node
linkType: hard
"react-refresh@npm:^0.14.0":
version: 0.14.0
resolution: "react-refresh@npm:0.14.0"
checksum: 10/75941262ce3ed4fc79b52492943fd59692f29b84f30f3822713b7e920f28e85c62a4386f85cbfbaea95ed62d3e74209f0a0bb065904b7ab2f166a74ac3812e2a
"react-refresh@npm:^0.17.0":
version: 0.17.0
resolution: "react-refresh@npm:0.17.0"
checksum: 10/5e94f07d43bb1cfdc9b0c6e0c8c73e754005489950dcff1edb53aa8451d1d69a47b740b195c7c80fb4eb511c56a3585dc55eddd83f0097fb5e015116a1460467
languageName: node
linkType: hard

View File

@ -1,3 +1,3 @@
{
"version": "1.38.1"
"version": "1.39.0"
}

View File

@ -36,9 +36,9 @@
"directory": "workspaces/azure-devops"
},
"devDependencies": {
"@backstage/cli": "^0.32.0",
"@backstage/cli": "^0.32.1",
"@backstage/e2e-test-utils": "^0.1.1",
"@backstage/repo-tools": "^0.13.2",
"@backstage/repo-tools": "^0.13.3",
"@changesets/cli": "^2.27.1",
"knip": "^5.27.4",
"node-gyp": "^10.0.0",

View File

@ -20,29 +20,29 @@
},
"dependencies": {
"@backstage-community/plugin-azure-devops": "workspace:^",
"@backstage/app-defaults": "^1.6.1",
"@backstage/catalog-model": "^1.7.3",
"@backstage/cli": "^0.32.0",
"@backstage/core-app-api": "^1.16.1",
"@backstage/core-components": "^0.17.1",
"@backstage/core-plugin-api": "^1.10.6",
"@backstage/integration-react": "^1.2.6",
"@backstage/plugin-api-docs": "^0.12.6",
"@backstage/plugin-catalog": "^1.29.0",
"@backstage/plugin-catalog-common": "^1.1.3",
"@backstage/plugin-catalog-graph": "^0.4.18",
"@backstage/plugin-catalog-import": "^0.12.13",
"@backstage/plugin-catalog-react": "^1.17.0",
"@backstage/plugin-org": "^0.6.38",
"@backstage/plugin-permission-react": "^0.4.33",
"@backstage/plugin-scaffolder": "^1.30.1",
"@backstage/plugin-search": "^1.4.25",
"@backstage/plugin-search-react": "^1.8.8",
"@backstage/plugin-techdocs": "^1.12.5",
"@backstage/plugin-techdocs-module-addons-contrib": "^1.1.23",
"@backstage/plugin-techdocs-react": "^1.2.16",
"@backstage/plugin-user-settings": "^0.8.21",
"@backstage/theme": "^0.6.5",
"@backstage/app-defaults": "^1.6.2",
"@backstage/catalog-model": "^1.7.4",
"@backstage/cli": "^0.32.1",
"@backstage/core-app-api": "^1.17.0",
"@backstage/core-components": "^0.17.2",
"@backstage/core-plugin-api": "^1.10.7",
"@backstage/integration-react": "^1.2.7",
"@backstage/plugin-api-docs": "^0.12.7",
"@backstage/plugin-catalog": "^1.30.0",
"@backstage/plugin-catalog-common": "^1.1.4",
"@backstage/plugin-catalog-graph": "^0.4.19",
"@backstage/plugin-catalog-import": "^0.13.0",
"@backstage/plugin-catalog-react": "^1.18.0",
"@backstage/plugin-org": "^0.6.39",
"@backstage/plugin-permission-react": "^0.4.34",
"@backstage/plugin-scaffolder": "^1.31.0",
"@backstage/plugin-search": "^1.4.26",
"@backstage/plugin-search-react": "^1.9.0",
"@backstage/plugin-techdocs": "^1.12.6",
"@backstage/plugin-techdocs-module-addons-contrib": "^1.1.24",
"@backstage/plugin-techdocs-react": "^1.2.17",
"@backstage/plugin-user-settings": "^0.8.22",
"@backstage/theme": "^0.6.6",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
"react": "^18.0.2",
@ -52,7 +52,7 @@
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/test-utils": "^1.7.7",
"@backstage/test-utils": "^1.7.8",
"@playwright/test": "^1.32.3",
"@testing-library/dom": "^9.0.0",
"@testing-library/jest-dom": "^6.0.0",

View File

@ -25,26 +25,26 @@
"@backstage-community/plugin-catalog-backend-module-azure-devops-annotator-processor": "workspace:^",
"@backstage-community/plugin-scaffolder-backend-module-azure-devops": "workspace:^",
"@backstage-community/plugin-scaffolder-backend-module-dotnet": "workspace:^",
"@backstage/backend-defaults": "^0.9.0",
"@backstage/backend-defaults": "^0.10.0",
"@backstage/config": "^1.3.2",
"@backstage/plugin-app-backend": "^0.5.1",
"@backstage/plugin-auth-backend": "^0.24.5",
"@backstage/plugin-auth-backend-module-guest-provider": "^0.2.7",
"@backstage/plugin-auth-node": "^0.6.2",
"@backstage/plugin-catalog-backend": "^1.32.1",
"@backstage/plugin-catalog-backend-module-logs": "^0.1.9",
"@backstage/plugin-catalog-backend-module-scaffolder-entity-model": "^0.2.7",
"@backstage/plugin-permission-backend": "^0.6.0",
"@backstage/plugin-permission-backend-module-allow-all-policy": "^0.2.7",
"@backstage/plugin-permission-common": "^0.8.4",
"@backstage/plugin-permission-node": "^0.9.1",
"@backstage/plugin-proxy-backend": "^0.6.1",
"@backstage/plugin-scaffolder-backend": "^1.32.1",
"@backstage/plugin-search-backend": "^2.0.1",
"@backstage/plugin-search-backend-module-catalog": "^0.3.3",
"@backstage/plugin-search-backend-module-techdocs": "^0.4.1",
"@backstage/plugin-search-backend-node": "^1.3.10",
"@backstage/plugin-techdocs-backend": "^2.0.1",
"@backstage/plugin-app-backend": "^0.5.2",
"@backstage/plugin-auth-backend": "^0.25.0",
"@backstage/plugin-auth-backend-module-guest-provider": "^0.2.8",
"@backstage/plugin-auth-node": "^0.6.3",
"@backstage/plugin-catalog-backend": "^2.0.0",
"@backstage/plugin-catalog-backend-module-logs": "^0.1.10",
"@backstage/plugin-catalog-backend-module-scaffolder-entity-model": "^0.2.8",
"@backstage/plugin-permission-backend": "^0.7.0",
"@backstage/plugin-permission-backend-module-allow-all-policy": "^0.2.8",
"@backstage/plugin-permission-common": "^0.9.0",
"@backstage/plugin-permission-node": "^0.10.0",
"@backstage/plugin-proxy-backend": "^0.6.2",
"@backstage/plugin-scaffolder-backend": "^1.33.0",
"@backstage/plugin-search-backend": "^2.0.2",
"@backstage/plugin-search-backend-module-catalog": "^0.3.4",
"@backstage/plugin-search-backend-module-techdocs": "^0.4.2",
"@backstage/plugin-search-backend-node": "^1.3.11",
"@backstage/plugin-techdocs-backend": "^2.0.2",
"app": "link:../app",
"better-sqlite3": "^9.0.0",
"dockerode": "^3.3.1",
@ -53,7 +53,7 @@
"winston": "^3.2.1"
},
"devDependencies": {
"@backstage/cli": "^0.32.0"
"@backstage/cli": "^0.32.1"
},
"files": [
"dist"

View File

@ -1,5 +1,16 @@
# @backstage-community/plugin-azure-devops-backend
## 0.17.0
### Minor Changes
- dd67a17: Backstage version bump to v1.39.0
### Patch Changes
- Updated dependencies [dd67a17]
- @backstage-community/plugin-azure-devops-common@0.11.0
## 0.16.0
### Minor Changes

View File

@ -1,6 +1,6 @@
{
"name": "@backstage-community/plugin-azure-devops-backend",
"version": "0.16.0",
"version": "0.17.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@ -35,17 +35,17 @@
},
"dependencies": {
"@backstage-community/plugin-azure-devops-common": "workspace:^",
"@backstage/backend-defaults": "^0.9.0",
"@backstage/backend-plugin-api": "^1.3.0",
"@backstage/catalog-model": "^1.7.3",
"@backstage/backend-defaults": "^0.10.0",
"@backstage/backend-plugin-api": "^1.3.1",
"@backstage/catalog-model": "^1.7.4",
"@backstage/config": "^1.3.2",
"@backstage/errors": "^1.2.7",
"@backstage/integration": "^1.16.3",
"@backstage/plugin-auth-node": "^0.6.2",
"@backstage/plugin-catalog-common": "^1.1.3",
"@backstage/plugin-catalog-node": "^1.16.3",
"@backstage/plugin-permission-common": "^0.8.4",
"@backstage/plugin-permission-node": "^0.9.1",
"@backstage/integration": "^1.17.0",
"@backstage/plugin-auth-node": "^0.6.3",
"@backstage/plugin-catalog-common": "^1.1.4",
"@backstage/plugin-catalog-node": "^1.17.0",
"@backstage/plugin-permission-common": "^0.9.0",
"@backstage/plugin-permission-node": "^0.10.0",
"@types/express": "^4.17.6",
"azure-devops-node-api": "^13.0.0",
"express": "^4.17.1",
@ -54,8 +54,8 @@
"p-limit": "^3.1.0"
},
"devDependencies": {
"@backstage/backend-test-utils": "^1.4.0",
"@backstage/cli": "^0.32.0",
"@backstage/backend-test-utils": "^1.5.0",
"@backstage/cli": "^0.32.1",
"@types/lodash": "^4.14.151",
"@types/mime-types": "^2.1.0",
"@types/supertest": "^6.0.0",

View File

@ -1,5 +1,11 @@
# @backstage-community/plugin-azure-devops-common
## 0.11.0
### Minor Changes
- dd67a17: Backstage version bump to v1.39.0
## 0.10.0
### Minor Changes

View File

@ -1,6 +1,6 @@
{
"name": "@backstage-community/plugin-azure-devops-common",
"version": "0.10.0",
"version": "0.11.0",
"backstage": {
"role": "common-library",
"pluginId": "azure-devops",
@ -41,10 +41,10 @@
"test": "backstage-cli package test"
},
"dependencies": {
"@backstage/plugin-catalog-common": "^1.1.3",
"@backstage/plugin-permission-common": "^0.8.4"
"@backstage/plugin-catalog-common": "^1.1.4",
"@backstage/plugin-permission-common": "^0.9.0"
},
"devDependencies": {
"@backstage/cli": "^0.32.0"
"@backstage/cli": "^0.32.1"
}
}

View File

@ -1,5 +1,16 @@
# @backstage-community/plugin-azure-devops
## 0.16.0
### Minor Changes
- dd67a17: Backstage version bump to v1.39.0
### Patch Changes
- Updated dependencies [dd67a17]
- @backstage-community/plugin-azure-devops-common@0.11.0
## 0.15.0
### Minor Changes

View File

@ -1,6 +1,6 @@
{
"name": "@backstage-community/plugin-azure-devops",
"version": "0.15.0",
"version": "0.16.0",
"backstage": {
"role": "frontend-plugin",
"pluginId": "azure-devops",
@ -52,14 +52,14 @@
},
"dependencies": {
"@backstage-community/plugin-azure-devops-common": "workspace:^",
"@backstage/catalog-model": "^1.7.3",
"@backstage/core-compat-api": "^0.4.1",
"@backstage/core-components": "^0.17.1",
"@backstage/core-plugin-api": "^1.10.6",
"@backstage/catalog-model": "^1.7.4",
"@backstage/core-compat-api": "^0.4.2",
"@backstage/core-components": "^0.17.2",
"@backstage/core-plugin-api": "^1.10.7",
"@backstage/errors": "^1.2.7",
"@backstage/frontend-plugin-api": "^0.10.1",
"@backstage/plugin-catalog-react": "^1.17.0",
"@backstage/plugin-permission-react": "^0.4.33",
"@backstage/frontend-plugin-api": "^0.10.2",
"@backstage/plugin-catalog-react": "^1.18.0",
"@backstage/plugin-permission-react": "^0.4.34",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
"@types/react": "^16.13.1 || ^17.0.0 || ^18.0.0",
@ -68,9 +68,9 @@
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/cli": "^0.32.0",
"@backstage/dev-utils": "^1.1.9",
"@backstage/test-utils": "^1.7.7",
"@backstage/cli": "^0.32.1",
"@backstage/dev-utils": "^1.1.10",
"@backstage/test-utils": "^1.7.8",
"@testing-library/dom": "^10.0.0",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^15.0.0",

View File

@ -8,7 +8,7 @@
import { AnyApiFactory } from '@backstage/core-plugin-api';
import { AnyRouteRefParams } from '@backstage/frontend-plugin-api';
import { ConfigurableExtensionDataRef } from '@backstage/frontend-plugin-api';
import { Entity } from '@backstage/catalog-model/index';
import { Entity } from '@backstage/catalog-model';
import { EntityCardType } from '@backstage/plugin-catalog-react/alpha';
import { EntityPredicate } from '@backstage/plugin-catalog-react/alpha';
import { ExtensionDefinition } from '@backstage/frontend-plugin-api';
@ -21,7 +21,7 @@ const _default: FrontendPlugin<
{},
{},
{
'api:azure-devops': ExtensionDefinition<{
[x: `api:${string}`]: ExtensionDefinition<{
kind: 'api';
name: undefined;
config: {};
@ -36,7 +36,7 @@ const _default: FrontendPlugin<
factory: AnyApiFactory;
};
}>;
'entity-card:azure-devops/readme': ExtensionDefinition<{
[x: `entity-card:${string}/readme`]: ExtensionDefinition<{
kind: 'entity-card';
name: 'readme';
config: {
@ -77,7 +77,7 @@ const _default: FrontendPlugin<
type?: EntityCardType | undefined;
};
}>;
'entity-content:azure-devops/git-tags': ExtensionDefinition<{
[x: `entity-content:${string}/git-tags`]: ExtensionDefinition<{
kind: 'entity-content';
name: 'git-tags';
config: {
@ -146,7 +146,7 @@ const _default: FrontendPlugin<
filter?: EntityPredicate | ((entity: Entity) => boolean) | undefined;
};
}>;
'entity-content:azure-devops/pipelines': ExtensionDefinition<{
[x: `entity-content:${string}/pipelines`]: ExtensionDefinition<{
kind: 'entity-content';
name: 'pipelines';
config: {
@ -215,7 +215,7 @@ const _default: FrontendPlugin<
filter?: EntityPredicate | ((entity: Entity) => boolean) | undefined;
};
}>;
'entity-content:azure-devops/pull-requests': ExtensionDefinition<{
[x: `entity-content:${string}/pull-requests`]: ExtensionDefinition<{
kind: 'entity-content';
name: 'pull-requests';
config: {
@ -284,7 +284,7 @@ const _default: FrontendPlugin<
filter?: EntityPredicate | ((entity: Entity) => boolean) | undefined;
};
}>;
'page:azure-devops': ExtensionDefinition<{
[x: `page:${string}`]: ExtensionDefinition<{
kind: 'page';
name: undefined;
config: {

View File

@ -1,5 +1,16 @@
# @backstage-community/plugin-catalog-backend-module-azure-devops-annotator-processor
## 0.8.0
### Minor Changes
- dd67a17: Backstage version bump to v1.39.0
### Patch Changes
- Updated dependencies [dd67a17]
- @backstage-community/plugin-azure-devops-common@0.11.0
## 0.7.0
### Minor Changes

View File

@ -1,7 +1,7 @@
{
"name": "@backstage-community/plugin-catalog-backend-module-azure-devops-annotator-processor",
"description": "The azure-devops-annotator-processor backend module for the catalog plugin.",
"version": "0.7.0",
"version": "0.8.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@ -31,17 +31,17 @@
},
"dependencies": {
"@backstage-community/plugin-azure-devops-common": "workspace:^",
"@backstage/backend-plugin-api": "^1.3.0",
"@backstage/catalog-model": "^1.7.3",
"@backstage/backend-plugin-api": "^1.3.1",
"@backstage/catalog-model": "^1.7.4",
"@backstage/config": "^1.3.2",
"@backstage/integration": "^1.16.3",
"@backstage/plugin-catalog-common": "^1.1.3",
"@backstage/plugin-catalog-node": "^1.16.3",
"@backstage/integration": "^1.17.0",
"@backstage/plugin-catalog-common": "^1.1.4",
"@backstage/plugin-catalog-node": "^1.17.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@backstage/backend-test-utils": "^1.4.0",
"@backstage/cli": "^0.32.0"
"@backstage/backend-test-utils": "^1.5.0",
"@backstage/cli": "^0.32.1"
},
"files": [
"dist"

View File

@ -1,5 +1,17 @@
# @backstage-community/plugin-scaffolder-backend-module-azure-devops
## 0.10.0
### Minor Changes
- dd67a17: Backstage version bump to v1.39.0
## 0.9.0
### Minor Changes
- 6f19535: Added ability to wait for pipeline to complete and to get output variables
## 0.8.1
### Patch Changes

View File

@ -172,3 +172,24 @@ spec:
projectRepo: ${{ (parameters.repoUrl | parseRepoUrl)['repo'] }}
sampleTemplateParameterKey: sampleTemplateParameterValue
```
### Example running a pipeline, waiting for it to complete, and printing the output using the `azure:pipeline:run` action
```yaml
spec:
steps:
- id: runAzurePipeline
name: Run Pipeline
action: azure:pipeline:run
input:
#[...]
pollingInterval: 10 # Poll for pipeline run status every 10 second
pipelineTimeout: 300 # Timeout after 5 minutes
output:
text:
- title: Pipeline run info
content: |
**pipelineRunStatus:** `${{ steps['runAzurePipeline'].output.pipelineRunStatus }}` }}
**pipelineRunId:** `${{ steps['runAzurePipeline'].output.pipelineRunId }}` }}
**pipeline output:** `${{ steps['runAzurePipeline'].output.pipelineOutput['myOutputVar'].value }}` }}
```

View File

@ -1,7 +1,7 @@
{
"name": "@backstage-community/plugin-scaffolder-backend-module-azure-devops",
"description": "The azure-devops module for @backstage/plugin-scaffolder-backend",
"version": "0.8.1",
"version": "0.10.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@ -39,17 +39,17 @@
"postpack": "backstage-cli package postpack"
},
"dependencies": {
"@backstage/backend-plugin-api": "^1.3.0",
"@backstage/backend-plugin-api": "^1.3.1",
"@backstage/config": "^1.3.2",
"@backstage/errors": "^1.2.7",
"@backstage/integration": "^1.16.3",
"@backstage/plugin-scaffolder-node": "^0.8.1",
"@backstage/integration": "^1.17.0",
"@backstage/plugin-scaffolder-node": "^0.8.2",
"azure-devops-node-api": "^14.1.0",
"yaml": "^2.6.0"
},
"devDependencies": {
"@backstage/cli": "^0.32.0",
"@backstage/plugin-scaffolder-node-test-utils": "^0.2.1"
"@backstage/cli": "^0.32.1",
"@backstage/plugin-scaffolder-node-test-utils": "^0.2.2"
},
"files": [
"dist"

View File

@ -110,4 +110,23 @@ export const examples: TemplateExample[] = [
],
}),
},
{
description: 'Run Azure Pipeline and wait for completion',
example: yaml.stringify({
steps: [
{
id: 'runAzurePipeline',
action: 'azure:pipeline:run',
name: 'Run Azure Devops Pipeline and wait for completion',
input: {
organization: 'organization',
pipelineId: 'pipelineId',
project: 'project',
pollingInterval: 10,
pipelineTimeout: 300,
},
},
],
}),
},
];

View File

@ -36,6 +36,11 @@ import { ScmIntegrations } from '@backstage/integration';
import { ConfigReader } from '@backstage/config';
import { WebApi } from 'azure-devops-node-api';
import { createMockActionContext } from '@backstage/plugin-scaffolder-node-test-utils';
import {
Run,
RunResult,
RunState,
} from 'azure-devops-node-api/interfaces/PipelinesInterfaces';
describe('publish:azure', () => {
const config = new ConfigReader({
@ -65,6 +70,7 @@ describe('publish:azure', () => {
const mockPipelineClient = {
runPipeline: jest.fn(),
getRun: jest.fn(),
};
const mockGitApi = {
@ -96,6 +102,9 @@ describe('publish:azure', () => {
mockPipelineClient.runPipeline.mockImplementation(() => ({
_links: { web: { href: 'http://pipeline-run-url.com' } },
}));
mockPipelineClient.getRun.mockImplementation(() => ({
_links: { web: { href: 'http://pipeline-run-url.com' } },
}));
await action.handler({
...mockContext,
@ -123,6 +132,9 @@ describe('publish:azure', () => {
mockPipelineClient.runPipeline.mockImplementation(() => ({
_links: { web: { href: 'http://pipeline-run-url.com' } },
}));
mockPipelineClient.getRun.mockImplementation(() => ({
_links: { web: { href: 'http://pipeline-run-url.com' } },
}));
const templateParameters = {
templateParameterKey: 'templateParameterValue',
@ -231,6 +243,10 @@ describe('publish:azure', () => {
_links: { web: { href: 'http://pipeline-run-url.com' } },
result: 'InProgress',
}));
mockPipelineClient.getRun.mockImplementation(() => ({
_links: { web: { href: 'http://pipeline-run-url.com' } },
result: 'InProgress',
}));
await action.handler({
...mockContext,
@ -251,4 +267,114 @@ describe('publish:azure', () => {
'InProgress',
);
});
it('should wait when polling is specified', async () => {
mockPipelineClient.runPipeline.mockImplementation(() => ({
_links: { web: { href: 'http://pipeline-run-url.com' } },
}));
let runCount = 0;
mockPipelineClient.getRun.mockImplementation(() => {
runCount++;
if (runCount === 3)
return {
_links: { web: { href: 'http://pipeline-run-url.com' } },
result: RunResult.Succeeded,
state: RunState.Completed,
} as Run;
return {
_links: { web: { href: 'http://pipeline-run-url.com' } },
state: RunState.InProgress,
} as Run;
});
await action.handler({
...mockContext,
input: {
host: 'dev.azure.com',
organization: 'org',
pipelineId: '1',
project: 'project',
token: 'input-token',
branch: 'master',
pollingInterval: 1,
},
});
expect(mockPipelineClient.runPipeline).toHaveBeenCalledTimes(1);
expect(mockPipelineClient.getRun).toHaveBeenCalledTimes(4);
expect(mockContext.output).toHaveBeenCalledWith(
'pipelineTimeoutExceeded',
false,
);
});
it('should timeout when when pipeline timout is reached', async () => {
mockPipelineClient.runPipeline.mockImplementation(() => ({
_links: { web: { href: 'http://pipeline-run-url.com' } },
}));
mockPipelineClient.getRun.mockImplementation(() => {
return {
_links: { web: { href: 'http://pipeline-run-url.com' } },
state: RunState.InProgress,
} as Run;
});
await action.handler({
...mockContext,
input: {
host: 'dev.azure.com',
organization: 'org',
pipelineId: '1',
project: 'project',
token: 'input-token',
branch: 'master',
pollingInterval: 1,
pipelineTimeout: 2,
},
});
expect(mockContext.output).toHaveBeenCalledWith(
'pipelineTimeoutExceeded',
true,
);
expect(mockPipelineClient.runPipeline).toHaveBeenCalledTimes(1);
expect(mockPipelineClient.getRun).toHaveBeenCalledTimes(4);
});
it('should output variables from pipeline if available', async () => {
mockPipelineClient.runPipeline.mockImplementation(() => ({
_links: { web: { href: 'http://pipeline-run-url.com' } },
result: 'InProgress',
}));
mockPipelineClient.getRun.mockImplementation(() => ({
_links: { web: { href: 'http://pipeline-run-url.com' } },
result: 'InProgress',
variables: {
var1: { isSecret: false, value: 'foo' },
var2: { isSecret: true, value: 'bar' },
},
}));
await action.handler({
...mockContext,
input: {
host: 'dev.azure.com',
organization: 'org',
pipelineId: '1',
project: 'project',
},
});
expect(mockContext.output).toHaveBeenCalledWith(
'pipelineOutput',
expect.objectContaining({ var1: { isSecret: false, value: 'foo' } }),
);
expect(mockContext.output).toHaveBeenCalledWith(
'pipelineOutput',
expect.objectContaining({ var2: { isSecret: true, value: 'bar' } }),
);
});
});

View File

@ -44,68 +44,75 @@ export function createAzureDevopsRunPipelineAction(options: {
}) {
const { integrations } = options;
return createTemplateAction<{
host?: string;
organization: string;
pipelineId: string;
project: string;
branch?: string;
token?: string;
templateParameters?: {
[key: string]: string;
};
}>({
return createTemplateAction({
id: 'azure:pipeline:run',
description: '',
examples,
schema: {
input: {
required: ['organization', 'pipelineId', 'project'],
type: 'object',
properties: {
host: {
type: 'string',
title: 'Host',
description: 'The host of Azure DevOps. Defaults to dev.azure.com',
},
organization: {
type: 'string',
title: 'Organization',
description: 'The name of the Azure DevOps organization.',
},
pipelineId: {
type: 'string',
title: 'Pipeline ID',
description: 'The pipeline ID.',
},
project: {
type: 'string',
title: 'Project',
description: 'The name of the Azure project.',
},
branch: {
title: 'Repository Branch',
type: 'string',
description: "The branch of the pipeline's repository.",
},
templateParameters: {
type: 'object',
title: 'Template Parameters',
description:
host: d =>
d
.string()
.describe('The host of Azure DevOps. Defaults to dev.azure.com')
.optional(),
organization: d =>
d.string().describe('The name of the Azure DevOps organization.'),
pipelineId: d => d.string().describe('The pipeline ID.'),
project: d => d.string().describe('The name of the Azure project.'),
branch: d =>
d
.string()
.describe("The branch of the pipeline's repository.")
.optional(),
token: d =>
d.string().describe('Token to use for Ado REST API.').optional(),
pollingInterval: d =>
d
.number()
.describe(
'Seconds between each poll for pipeline update. 0 = no polling.',
)
.optional(),
pipelineTimeout: d =>
d
.number()
.describe(
'Max. seconds to wait for pipeline completion. Only effective if `poolingInterval` is greater than zero.',
)
.optional(),
templateParameters: d =>
d
.record(d.string(), d.string())
.describe(
'Azure DevOps pipeline template parameters in key-value pairs.',
},
},
)
.optional(),
},
output: {
type: 'object',
required: ['pipelineRunUrl'],
properties: {
pipelineRunUrl: {
type: 'string',
},
pipelineRunStatus: {
type: 'string',
},
},
pipelineRunUrl: d => d.string().describe('Url of the pipeline'),
pipelineRunStatus: d =>
d
.enum(['canceled', 'failed', 'succeeded', 'unknown'])
.describe('Pipeline Run status'),
pipelineRunId: d =>
d.number().describe('The pipeline Run ID.').optional(),
pipelineTimeoutExceeded: d =>
d
.boolean()
.describe(
'True if the pipeline did not complete within the defined timespan.',
),
pipelineOutput: d =>
d
.record(
d.string(),
d.object({
isSecret: d.boolean().optional(),
value: d.string().optional(),
}),
)
.describe('Object containing output variables')
.optional(),
},
},
async handler(ctx) {
@ -116,6 +123,8 @@ export function createAzureDevopsRunPipelineAction(options: {
project,
branch,
templateParameters,
pollingInterval,
pipelineTimeout,
} = ctx.input;
const url = `https://${host}/${organization}`;
@ -156,15 +165,16 @@ export function createAzureDevopsRunPipelineAction(options: {
}
// Log the createOptions object in a readable format
ctx.logger.debug(
'Create options for running the pipeline:',
JSON.stringify(createOptions, null, 2),
);
ctx.logger.debug('Create options for running the pipeline:', {
RunPipelineParameters: JSON.stringify(createOptions, null, 2),
});
const pipelineRun = await client.runPipeline(
const pipelineIdAsInt = parseInt(pipelineId, 10);
let pipelineRun = await client.runPipeline(
createOptions,
project,
parseInt(pipelineId, 10),
pipelineIdAsInt,
);
// Log the pipeline run URL
@ -175,6 +185,35 @@ export function createAzureDevopsRunPipelineAction(options: {
ctx.logger.info(`Pipeline run state: ${RunState[pipelineRun.state]}`);
}
let timeoutExceeded = false;
if ((pollingInterval || 0) > 0) {
let totalRunningTime = 0;
const delayInSec = pollingInterval!;
do {
await new Promise(f => setTimeout(f, delayInSec * 1000));
pipelineRun = await client.getRun(
project,
pipelineIdAsInt,
pipelineRun.id!,
);
ctx.logger.info(
`Pipeline run state: ${
pipelineRun.state ? RunState[pipelineRun.state] : RunState.Unknown
}`,
);
totalRunningTime += delayInSec;
timeoutExceeded =
pipelineTimeout !== undefined && totalRunningTime > pipelineTimeout;
} while (pipelineRun.state === RunState.InProgress && !timeoutExceeded);
}
pipelineRun = await client.getRun(
project,
pipelineIdAsInt,
pipelineRun.id!,
);
// Log the pipeline run result if available
if (pipelineRun.result) {
ctx.logger.info(
@ -188,7 +227,10 @@ export function createAzureDevopsRunPipelineAction(options: {
);
ctx.output('pipelineRunUrl', pipelineRun._links.web.href);
ctx.output('pipelineRunId', pipelineRun.id!);
ctx.output('pipelineRunStatus', pipelineRun.result?.toString());
ctx.output('pipelineTimeoutExceeded', timeoutExceeded);
ctx.output('pipelineOutput', pipelineRun.variables);
},
});
}

View File

@ -1,5 +1,11 @@
# @backstage-community/plugin-scaffolder-backend-module-dotnet
## 0.3.0
### Minor Changes
- dd67a17: Backstage version bump to v1.39.0
## 0.2.0
### Minor Changes

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