diff --git a/workspaces/linkerd/.changeset/version-bump-1-38-1.md b/workspaces/linkerd/.changeset/version-bump-1-38-1.md new file mode 100644 index 000000000..344c354ec --- /dev/null +++ b/workspaces/linkerd/.changeset/version-bump-1-38-1.md @@ -0,0 +1,6 @@ +--- +'@backstage-community/plugin-linkerd': minor +'@backstage-community/plugin-linkerd-backend': minor +--- + +Backstage version bump to v1.38.1 diff --git a/workspaces/linkerd/backstage.json b/workspaces/linkerd/backstage.json index c04471792..c6aea75b5 100644 --- a/workspaces/linkerd/backstage.json +++ b/workspaces/linkerd/backstage.json @@ -1,3 +1,3 @@ { - "version": "1.37.0" + "version": "1.38.1" } diff --git a/workspaces/linkerd/package.json b/workspaces/linkerd/package.json index e30923b42..7430ea0d4 100644 --- a/workspaces/linkerd/package.json +++ b/workspaces/linkerd/package.json @@ -6,6 +6,7 @@ "node": "20 || 22" }, "scripts": { + "start": "backstage-cli repo start", "tsc": "tsc", "tsc:full": "tsc --skipLibCheck false --incremental false", "build:all": "backstage-cli repo build --all", @@ -34,9 +35,9 @@ "directory": "workspaces/linkerd" }, "devDependencies": { - "@backstage/cli": "^0.31.0", + "@backstage/cli": "^0.32.0", "@backstage/e2e-test-utils": "^0.1.1", - "@backstage/repo-tools": "^0.13.1", + "@backstage/repo-tools": "^0.13.2", "@changesets/cli": "^2.27.1", "knip": "^5.27.4", "node-gyp": "^9.0.0", diff --git a/workspaces/linkerd/packages/app/package.json b/workspaces/linkerd/packages/app/package.json index 04e4ec3e3..f20a5c117 100644 --- a/workspaces/linkerd/packages/app/package.json +++ b/workspaces/linkerd/packages/app/package.json @@ -20,23 +20,23 @@ }, "dependencies": { "@backstage-community/plugin-linkerd": "workspace:^", - "@backstage/app-defaults": "^1.6.0", + "@backstage/app-defaults": "^1.6.1", "@backstage/catalog-model": "^1.7.3", - "@backstage/cli": "^0.31.0", - "@backstage/core-app-api": "^1.16.0", - "@backstage/core-components": "^0.17.0", - "@backstage/core-plugin-api": "^1.10.5", - "@backstage/integration-react": "^1.2.5", - "@backstage/plugin-api-docs": "^0.12.5", - "@backstage/plugin-catalog": "^1.28.0", + "@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.17", - "@backstage/plugin-catalog-react": "^1.16.0", - "@backstage/plugin-kubernetes": "^0.12.5", - "@backstage/plugin-permission-react": "^0.4.32", - "@backstage/plugin-search-react": "^1.8.7", - "@backstage/plugin-user-settings": "^0.8.20", - "@backstage/theme": "^0.6.4", + "@backstage/plugin-catalog-graph": "^0.4.18", + "@backstage/plugin-catalog-react": "^1.17.0", + "@backstage/plugin-kubernetes": "^0.12.6", + "@backstage/plugin-permission-react": "^0.4.33", + "@backstage/plugin-search-react": "^1.8.8", + "@backstage/plugin-user-settings": "^0.8.21", + "@backstage/theme": "^0.6.5", "@material-ui/core": "^4.12.2", "@material-ui/icons": "^4.9.1", "history": "^5.0.0", @@ -47,7 +47,7 @@ "react-use": "^17.2.4" }, "devDependencies": { - "@backstage/test-utils": "^1.7.6", + "@backstage/test-utils": "^1.7.7", "@playwright/test": "^1.32.3", "@testing-library/dom": "^9.0.0", "@testing-library/jest-dom": "^6.0.0", diff --git a/workspaces/linkerd/packages/app/src/App.test.tsx b/workspaces/linkerd/packages/app/src/App.test.tsx index 1f5b24568..c6a60149b 100644 --- a/workspaces/linkerd/packages/app/src/App.test.tsx +++ b/workspaces/linkerd/packages/app/src/App.test.tsx @@ -13,7 +13,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -import React from 'react'; import { render, waitFor } from '@testing-library/react'; import App from './App'; diff --git a/workspaces/linkerd/packages/app/src/App.tsx b/workspaces/linkerd/packages/app/src/App.tsx index f6dee1818..f5d69b307 100644 --- a/workspaces/linkerd/packages/app/src/App.tsx +++ b/workspaces/linkerd/packages/app/src/App.tsx @@ -13,7 +13,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -import React from 'react'; import { Navigate, Route } from 'react-router-dom'; import { ApiExplorerPage } from '@backstage/plugin-api-docs'; import { CatalogEntityPage, CatalogIndexPage } from '@backstage/plugin-catalog'; diff --git a/workspaces/linkerd/packages/app/src/components/Root/LogoFull.tsx b/workspaces/linkerd/packages/app/src/components/Root/LogoFull.tsx index 4c4513755..68cc912e8 100644 --- a/workspaces/linkerd/packages/app/src/components/Root/LogoFull.tsx +++ b/workspaces/linkerd/packages/app/src/components/Root/LogoFull.tsx @@ -13,7 +13,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -import React from 'react'; import { makeStyles } from '@material-ui/core'; const useStyles = makeStyles({ diff --git a/workspaces/linkerd/packages/app/src/components/Root/LogoIcon.tsx b/workspaces/linkerd/packages/app/src/components/Root/LogoIcon.tsx index b53cf5f01..bf6a8b32c 100644 --- a/workspaces/linkerd/packages/app/src/components/Root/LogoIcon.tsx +++ b/workspaces/linkerd/packages/app/src/components/Root/LogoIcon.tsx @@ -13,7 +13,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -import React from 'react'; import { makeStyles } from '@material-ui/core'; const useStyles = makeStyles({ diff --git a/workspaces/linkerd/packages/app/src/components/Root/Root.tsx b/workspaces/linkerd/packages/app/src/components/Root/Root.tsx index e7ef86762..0467e8913 100644 --- a/workspaces/linkerd/packages/app/src/components/Root/Root.tsx +++ b/workspaces/linkerd/packages/app/src/components/Root/Root.tsx @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -import React, { PropsWithChildren } from 'react'; +import { PropsWithChildren } from 'react'; import { makeStyles } from '@material-ui/core'; import HomeIcon from '@material-ui/icons/Home'; import ExtensionIcon from '@material-ui/icons/Extension'; diff --git a/workspaces/linkerd/packages/app/src/components/catalog/EntityPage.tsx b/workspaces/linkerd/packages/app/src/components/catalog/EntityPage.tsx index b7c2f28a8..f3263d36b 100644 --- a/workspaces/linkerd/packages/app/src/components/catalog/EntityPage.tsx +++ b/workspaces/linkerd/packages/app/src/components/catalog/EntityPage.tsx @@ -13,7 +13,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -import React from 'react'; import { Grid, Button } from '@material-ui/core'; import { EntityApiDefinitionCard, diff --git a/workspaces/linkerd/packages/app/src/components/search/SearchPage.tsx b/workspaces/linkerd/packages/app/src/components/search/SearchPage.tsx index ded243586..90475ff6c 100644 --- a/workspaces/linkerd/packages/app/src/components/search/SearchPage.tsx +++ b/workspaces/linkerd/packages/app/src/components/search/SearchPage.tsx @@ -13,7 +13,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -import React from 'react'; import { makeStyles, Theme, Grid, Paper } from '@material-ui/core'; import { CatalogSearchResultListItem } from '@backstage/plugin-catalog'; diff --git a/workspaces/linkerd/packages/app/src/index.tsx b/workspaces/linkerd/packages/app/src/index.tsx index 233899123..ea13d30f0 100644 --- a/workspaces/linkerd/packages/app/src/index.tsx +++ b/workspaces/linkerd/packages/app/src/index.tsx @@ -14,7 +14,6 @@ * limitations under the License. */ import '@backstage/cli/asset-types'; -import React from 'react'; import ReactDOM from 'react-dom/client'; import App from './App'; diff --git a/workspaces/linkerd/packages/backend/package.json b/workspaces/linkerd/packages/backend/package.json index 31dce1c0c..eabdf167f 100644 --- a/workspaces/linkerd/packages/backend/package.json +++ b/workspaces/linkerd/packages/backend/package.json @@ -22,23 +22,23 @@ }, "dependencies": { "@backstage-community/plugin-linkerd-backend": "workspace:^", - "@backstage/backend-defaults": "^0.8.2", + "@backstage/backend-defaults": "^0.9.0", "@backstage/config": "^1.3.2", - "@backstage/plugin-app-backend": "^0.5.0", - "@backstage/plugin-auth-backend": "^0.24.4", - "@backstage/plugin-auth-backend-module-github-provider": "^0.3.1", - "@backstage/plugin-auth-backend-module-guest-provider": "^0.2.6", - "@backstage/plugin-auth-node": "^0.6.1", - "@backstage/plugin-catalog-backend": "^1.32.0", - "@backstage/plugin-catalog-backend-module-scaffolder-entity-model": "^0.2.6", - "@backstage/plugin-kubernetes-backend": "^0.19.4", - "@backstage/plugin-permission-backend": "^0.5.55", - "@backstage/plugin-permission-backend-module-allow-all-policy": "^0.2.6", + "@backstage/plugin-app-backend": "^0.5.1", + "@backstage/plugin-auth-backend": "^0.24.5", + "@backstage/plugin-auth-backend-module-github-provider": "^0.3.2", + "@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-scaffolder-entity-model": "^0.2.7", + "@backstage/plugin-kubernetes-backend": "^0.19.5", + "@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.0", - "@backstage/plugin-search-backend-module-catalog": "^0.3.2", - "@backstage/plugin-search-backend-module-techdocs": "^0.4.0", - "@backstage/plugin-techdocs-backend": "^2.0.0", + "@backstage/plugin-permission-node": "^0.9.1", + "@backstage/plugin-search-backend-module-catalog": "^0.3.3", + "@backstage/plugin-search-backend-module-techdocs": "^0.4.1", + "@backstage/plugin-techdocs-backend": "^2.0.1", "app": "link:../app", "better-sqlite3": "^9.0.0", "dockerode": "^3.3.1", @@ -47,7 +47,7 @@ "winston": "^3.2.1" }, "devDependencies": { - "@backstage/cli": "^0.31.0", + "@backstage/cli": "^0.32.0", "@types/dockerode": "^3.3.0", "@types/express": "^4.17.6", "@types/express-serve-static-core": "^4.17.5", diff --git a/workspaces/linkerd/plugins/linkerd-backend/package.json b/workspaces/linkerd/plugins/linkerd-backend/package.json index 3a0abbc16..dbc4b9a6b 100644 --- a/workspaces/linkerd/plugins/linkerd-backend/package.json +++ b/workspaces/linkerd/plugins/linkerd-backend/package.json @@ -32,8 +32,8 @@ "postpack": "backstage-cli package postpack" }, "dependencies": { - "@backstage/backend-defaults": "^0.8.2", - "@backstage/backend-plugin-api": "^1.2.1", + "@backstage/backend-defaults": "^0.9.0", + "@backstage/backend-plugin-api": "^1.3.0", "@backstage/config": "^1.3.2", "@backstage/errors": "^1.2.7", "@types/express": "*", @@ -47,10 +47,10 @@ "yn": "^4.0.0" }, "devDependencies": { - "@backstage/backend-test-utils": "^1.3.1", - "@backstage/cli": "^0.31.0", - "@backstage/plugin-auth-backend": "^0.24.4", - "@backstage/plugin-auth-backend-module-guest-provider": "^0.2.6", + "@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", "@types/parse-duration": "^0.3.0", "@types/qs": "^6", "@types/supertest": "^6.0.0", diff --git a/workspaces/linkerd/plugins/linkerd/package.json b/workspaces/linkerd/plugins/linkerd/package.json index 85d4dbc60..55f58ec4c 100644 --- a/workspaces/linkerd/plugins/linkerd/package.json +++ b/workspaces/linkerd/plugins/linkerd/package.json @@ -47,11 +47,11 @@ }, "dependencies": { "@backstage/catalog-model": "^1.7.3", - "@backstage/core-plugin-api": "^1.10.5", + "@backstage/core-plugin-api": "^1.10.6", "@backstage/errors": "^1.2.7", - "@backstage/frontend-plugin-api": "^0.10.0", - "@backstage/plugin-catalog-react": "^1.16.0", - "@backstage/theme": "^0.6.4", + "@backstage/frontend-plugin-api": "^0.10.1", + "@backstage/plugin-catalog-react": "^1.17.0", + "@backstage/theme": "^0.6.5", "@material-ui/core": "^4.12.2", "@material-ui/icons": "^4.9.1", "@material-ui/lab": "^4.0.0-alpha.61", @@ -60,14 +60,14 @@ "reactflow": "^11.11.0" }, "peerDependencies": { - "@backstage/plugin-kubernetes": "^0.12.5", + "@backstage/plugin-kubernetes": "^0.12.6", "react": "^16.13.1 || ^17.0.0 || ^18.0.0" }, "devDependencies": { - "@backstage/cli": "^0.31.0", - "@backstage/core-app-api": "^1.16.0", - "@backstage/dev-utils": "^1.1.8", - "@backstage/test-utils": "^1.7.6", + "@backstage/cli": "^0.32.0", + "@backstage/core-app-api": "^1.16.1", + "@backstage/dev-utils": "^1.1.9", + "@backstage/test-utils": "^1.7.7", "@testing-library/jest-dom": "^6.0.0", "@testing-library/react": "^14.0.0", "@testing-library/user-event": "^14.0.0", diff --git a/workspaces/linkerd/plugins/linkerd/report-alpha.api.md b/workspaces/linkerd/plugins/linkerd/report-alpha.api.md index 0e846f3cd..440e9641b 100644 --- a/workspaces/linkerd/plugins/linkerd/report-alpha.api.md +++ b/workspaces/linkerd/plugins/linkerd/report-alpha.api.md @@ -5,7 +5,7 @@ ```ts /// -import { AnyApiFactory } from '@backstage/core-plugin-api/*'; +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'; @@ -178,7 +178,9 @@ const plugin: FrontendPlugin< | (string & {}) | 'development' | 'deployment' + | 'overview' | 'documentation' + | 'operation' | 'observability' | undefined; routeRef?: RouteRef | undefined; diff --git a/workspaces/linkerd/plugins/linkerd/report.api.md b/workspaces/linkerd/plugins/linkerd/report.api.md index 10770b9aa..3912a89e5 100644 --- a/workspaces/linkerd/plugins/linkerd/report.api.md +++ b/workspaces/linkerd/plugins/linkerd/report.api.md @@ -3,10 +3,8 @@ > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/). ```ts -/// - import { BackstagePlugin } from '@backstage/core-plugin-api'; -import { JSX as JSX_2 } from 'react'; +import { JSX as JSX_2 } from 'react/jsx-runtime'; import { RouteRef } from '@backstage/core-plugin-api'; // @public diff --git a/workspaces/linkerd/plugins/linkerd/src/alpha/extensions.tsx b/workspaces/linkerd/plugins/linkerd/src/alpha/extensions.tsx index 7c0373301..b9f4dae03 100644 --- a/workspaces/linkerd/plugins/linkerd/src/alpha/extensions.tsx +++ b/workspaces/linkerd/plugins/linkerd/src/alpha/extensions.tsx @@ -13,7 +13,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -import React from 'react'; import { EntityCardBlueprint, EntityContentBlueprint, diff --git a/workspaces/linkerd/plugins/linkerd/src/components/DependenciesCard.tsx b/workspaces/linkerd/plugins/linkerd/src/components/DependenciesCard.tsx index d6123ffec..39c248ece 100644 --- a/workspaces/linkerd/plugins/linkerd/src/components/DependenciesCard.tsx +++ b/workspaces/linkerd/plugins/linkerd/src/components/DependenciesCard.tsx @@ -13,8 +13,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -import React from 'react'; - import { useEntity } from '@backstage/plugin-catalog-react'; import { OctopusGraph } from './OctopusGraph/OctopusGraph'; diff --git a/workspaces/linkerd/plugins/linkerd/src/components/EdgesTable.tsx b/workspaces/linkerd/plugins/linkerd/src/components/EdgesTable.tsx index c82a890be..6716a2622 100644 --- a/workspaces/linkerd/plugins/linkerd/src/components/EdgesTable.tsx +++ b/workspaces/linkerd/plugins/linkerd/src/components/EdgesTable.tsx @@ -13,7 +13,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -import React from 'react'; import { EntityRefLink, useEntity } from '@backstage/plugin-catalog-react'; import { useStatsForEntity } from '../hooks/useStatsForEntity'; import { diff --git a/workspaces/linkerd/plugins/linkerd/src/components/IsMeshedBanner.tsx b/workspaces/linkerd/plugins/linkerd/src/components/IsMeshedBanner.tsx index a486583f0..e9e222494 100644 --- a/workspaces/linkerd/plugins/linkerd/src/components/IsMeshedBanner.tsx +++ b/workspaces/linkerd/plugins/linkerd/src/components/IsMeshedBanner.tsx @@ -13,8 +13,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -import React from 'react'; - import { useEntity } from '@backstage/plugin-catalog-react'; import { Grid } from '@material-ui/core'; import Alert from '@material-ui/lab/Alert'; diff --git a/workspaces/linkerd/plugins/linkerd/src/components/OctopusGraph/MetricCounter.tsx b/workspaces/linkerd/plugins/linkerd/src/components/OctopusGraph/MetricCounter.tsx index b3daede94..4e0e9c78c 100644 --- a/workspaces/linkerd/plugins/linkerd/src/components/OctopusGraph/MetricCounter.tsx +++ b/workspaces/linkerd/plugins/linkerd/src/components/OctopusGraph/MetricCounter.tsx @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -import React, { useState, useEffect } from 'react'; +import { useState, useEffect } from 'react'; import { Theme, makeStyles } from '@material-ui/core/styles'; import Typography from '@material-ui/core/Typography'; diff --git a/workspaces/linkerd/plugins/linkerd/src/components/OctopusGraph/OctopusGraph.tsx b/workspaces/linkerd/plugins/linkerd/src/components/OctopusGraph/OctopusGraph.tsx index 6833f5dd5..5c33cad68 100644 --- a/workspaces/linkerd/plugins/linkerd/src/components/OctopusGraph/OctopusGraph.tsx +++ b/workspaces/linkerd/plugins/linkerd/src/components/OctopusGraph/OctopusGraph.tsx @@ -16,7 +16,7 @@ import { DeploymentResponse } from '../../api/types'; import { Entity } from '@backstage/catalog-model'; import 'reactflow/dist/style.css'; -import React, { useCallback } from 'react'; +import { useCallback } from 'react'; import ReactFlow, { useNodesState, useEdgesState, diff --git a/workspaces/linkerd/tsconfig.json b/workspaces/linkerd/tsconfig.json index aed5129a4..d346b34ac 100644 --- a/workspaces/linkerd/tsconfig.json +++ b/workspaces/linkerd/tsconfig.json @@ -13,6 +13,7 @@ "rootDir": ".", "lib": ["DOM", "DOM.Iterable", "ScriptHost", "ES2022"], "target": "ES2022", - "useUnknownInCatchVariables": false + "useUnknownInCatchVariables": false, + "jsx": "react-jsx" } } diff --git a/workspaces/linkerd/yarn.lock b/workspaces/linkerd/yarn.lock index 4a0c73a1d..86bc81799 100644 --- a/workspaces/linkerd/yarn.lock +++ b/workspaces/linkerd/yarn.lock @@ -2862,14 +2862,14 @@ __metadata: version: 0.0.0-use.local resolution: "@backstage-community/plugin-linkerd-backend@workspace:plugins/linkerd-backend" dependencies: - "@backstage/backend-defaults": "npm:^0.8.2" - "@backstage/backend-plugin-api": "npm:^1.2.1" - "@backstage/backend-test-utils": "npm:^1.3.1" - "@backstage/cli": "npm:^0.31.0" + "@backstage/backend-defaults": "npm:^0.9.0" + "@backstage/backend-plugin-api": "npm:^1.3.0" + "@backstage/backend-test-utils": "npm:^1.4.0" + "@backstage/cli": "npm:^0.32.0" "@backstage/config": "npm:^1.3.2" "@backstage/errors": "npm:^1.2.7" - "@backstage/plugin-auth-backend": "npm:^0.24.4" - "@backstage/plugin-auth-backend-module-guest-provider": "npm:^0.2.6" + "@backstage/plugin-auth-backend": "npm:^0.24.5" + "@backstage/plugin-auth-backend-module-guest-provider": "npm:^0.2.7" "@types/express": "npm:*" "@types/parse-duration": "npm:^0.3.0" "@types/qs": "npm:^6" @@ -2892,15 +2892,15 @@ __metadata: resolution: "@backstage-community/plugin-linkerd@workspace:plugins/linkerd" dependencies: "@backstage/catalog-model": "npm:^1.7.3" - "@backstage/cli": "npm:^0.31.0" - "@backstage/core-app-api": "npm:^1.16.0" - "@backstage/core-plugin-api": "npm:^1.10.5" - "@backstage/dev-utils": "npm:^1.1.8" + "@backstage/cli": "npm:^0.32.0" + "@backstage/core-app-api": "npm:^1.16.1" + "@backstage/core-plugin-api": "npm:^1.10.6" + "@backstage/dev-utils": "npm:^1.1.9" "@backstage/errors": "npm:^1.2.7" - "@backstage/frontend-plugin-api": "npm:^0.10.0" - "@backstage/plugin-catalog-react": "npm:^1.16.0" - "@backstage/test-utils": "npm:^1.7.6" - "@backstage/theme": "npm:^0.6.4" + "@backstage/frontend-plugin-api": "npm:^0.10.1" + "@backstage/plugin-catalog-react": "npm:^1.17.0" + "@backstage/test-utils": "npm:^1.7.7" + "@backstage/theme": "npm:^0.6.5" "@material-ui/core": "npm:^4.12.2" "@material-ui/icons": "npm:^4.9.1" "@material-ui/lab": "npm:^4.0.0-alpha.61" @@ -2913,20 +2913,20 @@ __metadata: react-use: "npm:^17.2.4" reactflow: "npm:^11.11.0" peerDependencies: - "@backstage/plugin-kubernetes": ^0.12.5 + "@backstage/plugin-kubernetes": ^0.12.6 react: ^16.13.1 || ^17.0.0 || ^18.0.0 languageName: unknown linkType: soft -"@backstage/app-defaults@npm:^1.6.0": - version: 1.6.0 - resolution: "@backstage/app-defaults@npm:1.6.0" +"@backstage/app-defaults@npm:^1.6.1": + version: 1.6.1 + resolution: "@backstage/app-defaults@npm:1.6.1" dependencies: - "@backstage/core-app-api": "npm:^1.16.0" - "@backstage/core-components": "npm:^0.17.0" - "@backstage/core-plugin-api": "npm:^1.10.5" - "@backstage/plugin-permission-react": "npm:^0.4.32" - "@backstage/theme": "npm:^0.6.4" + "@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" "@material-ui/core": "npm:^4.12.2" "@material-ui/icons": "npm:^4.9.1" peerDependencies: @@ -2937,18 +2937,18 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10/9d4def43db372d57ee18c4d48a09bd6f7088429b1e7a0c4cb21308d0171d4d32fc166867557522671aa09a028b8b75decf5ff94a293865ed66863b1edcd0e043 + checksum: 10/9367d24422d3bc4738d163fe5e4b4c500741ddbfc71aaa111815c162ad9be807f96617e13043c9ebb4f98fd3ec971de8a83199d534364542ed591b9ad9f3516a languageName: node linkType: hard -"@backstage/backend-app-api@npm:^1.2.1": - version: 1.2.1 - resolution: "@backstage/backend-app-api@npm:1.2.1" +"@backstage/backend-app-api@npm:^1.2.2": + version: 1.2.2 + resolution: "@backstage/backend-app-api@npm:1.2.2" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/config": "npm:^1.3.2" "@backstage/errors": "npm:^1.2.7" - checksum: 10/5b39e7d209db2f722158ab494e4b87004e9451ca103c9f5f291aa5673e43d22dc16eb3b346e9d9c1870437aba7b9f252d821bcc2257cf432b7b55da758e2504e + checksum: 10/eda1a4feedb8141ec22de17cb19bfb5ef4858639e19696a9e6ed8dadad7ef171b82ef33f26b53339beb8aa29de454244ea32bb39a21b0c2ae23c688f3a9451d4 languageName: node linkType: hard @@ -3029,9 +3029,9 @@ __metadata: languageName: node linkType: hard -"@backstage/backend-defaults@npm:^0.8.2": - version: 0.8.2 - resolution: "@backstage/backend-defaults@npm:0.8.2" +"@backstage/backend-defaults@npm:^0.9.0": + version: 0.9.0 + resolution: "@backstage/backend-defaults@npm:0.9.0" dependencies: "@aws-sdk/abort-controller": "npm:^3.347.0" "@aws-sdk/client-codecommit": "npm:^3.350.0" @@ -3039,18 +3039,18 @@ __metadata: "@aws-sdk/credential-providers": "npm:^3.350.0" "@aws-sdk/types": "npm:^3.347.0" "@azure/storage-blob": "npm:^12.5.0" - "@backstage/backend-app-api": "npm:^1.2.1" + "@backstage/backend-app-api": "npm:^1.2.2" "@backstage/backend-dev-utils": "npm:^0.1.5" - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/cli-node": "npm:^0.2.13" "@backstage/config": "npm:^1.3.2" "@backstage/config-loader": "npm:^1.10.0" "@backstage/errors": "npm:^1.2.7" - "@backstage/integration": "npm:^1.16.2" + "@backstage/integration": "npm:^1.16.3" "@backstage/integration-aws-node": "npm:^0.1.15" - "@backstage/plugin-auth-node": "npm:^0.6.1" - "@backstage/plugin-events-node": "npm:^0.4.9" - "@backstage/plugin-permission-node": "npm:^0.9.0" + "@backstage/plugin-auth-node": "npm:^0.6.2" + "@backstage/plugin-events-node": "npm:^0.4.10" + "@backstage/plugin-permission-node": "npm:^0.9.1" "@backstage/types": "npm:^1.2.1" "@google-cloud/storage": "npm:^7.0.0" "@keyv/memcache": "npm:^2.0.1" @@ -3084,7 +3084,6 @@ __metadata: node-fetch: "npm:^2.7.0" node-forge: "npm:^1.3.1" p-limit: "npm:^3.1.0" - p-throttle: "npm:^4.1.1" path-to-regexp: "npm:^8.0.0" pg: "npm:^8.11.3" pg-connection-string: "npm:^2.3.0" @@ -3104,7 +3103,7 @@ __metadata: peerDependenciesMeta: "@google-cloud/cloud-sql-connector": optional: true - checksum: 10/f77dbb5f8813c812c2ab41b80cbfc0be414602f5ac2b19782daf68a95670a269969a777da3207e03ffea655f03c7fd2911cd2d22850d871fab7bd4431be8b89a + checksum: 10/fb70d38ac0ec951c1825a6ee15be67548683c00d48931e05399f2623c37d5fc8dd42557d026a33dfb6a1de4a262241495c7ff3d9c2a0dcad4c91773dda64e739 languageName: node linkType: hard @@ -3115,12 +3114,12 @@ __metadata: languageName: node linkType: hard -"@backstage/backend-openapi-utils@npm:^0.5.1": - version: 0.5.1 - resolution: "@backstage/backend-openapi-utils@npm:0.5.1" +"@backstage/backend-openapi-utils@npm:^0.5.2": + version: 0.5.2 + resolution: "@backstage/backend-openapi-utils@npm:0.5.2" dependencies: "@apidevtools/swagger-parser": "npm:^10.1.0" - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/errors": "npm:^1.2.7" "@backstage/types": "npm:^1.2.1" "@types/express": "npm:^4.17.6" @@ -3135,40 +3134,40 @@ __metadata: mockttp: "npm:^3.13.0" openapi-merge: "npm:^1.3.2" openapi3-ts: "npm:^3.1.2" - checksum: 10/1141e7bb346791573216031d48a55d48dbe555718007d813ad9855312d2405833675efd794a927c9596baeb3b3e3d8a5f683ae0767db45642f63b1b86d94045d + checksum: 10/dceeb3cc283ccd61debb979c214f8680b3cd708ba1f63a92939fed8be1d6fa482320f50159f09d39f860e564bb2376c187be26895b2a2607f94f85e11777b196 languageName: node linkType: hard -"@backstage/backend-plugin-api@npm:^1.0.0, @backstage/backend-plugin-api@npm:^1.1.1, @backstage/backend-plugin-api@npm:^1.2.1": - version: 1.2.1 - resolution: "@backstage/backend-plugin-api@npm:1.2.1" +"@backstage/backend-plugin-api@npm:^1.0.0, @backstage/backend-plugin-api@npm:^1.1.1, @backstage/backend-plugin-api@npm:^1.3.0": + version: 1.3.0 + resolution: "@backstage/backend-plugin-api@npm:1.3.0" 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.1" + "@backstage/plugin-auth-node": "npm:^0.6.2" "@backstage/plugin-permission-common": "npm:^0.8.4" - "@backstage/plugin-permission-node": "npm:^0.9.0" + "@backstage/plugin-permission-node": "npm:^0.9.1" "@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/79a1a0f062436e382a5221a7c8bbde610d1d278bff13fc8e02bc1bbd3e8782e3ebc2ef691c1f359ef80386726c41342c64e7e3e0093853f48acedc421122b6c9 + checksum: 10/0c657159bf2d988a09fe066dba811fa1c9237162dffdbbded09a108d906ea580099343b86d1d5e675bf5f59ee09e292f23dd44c6a594c2f70ead8035f512b8b0 languageName: node linkType: hard -"@backstage/backend-test-utils@npm:^1.3.1": - version: 1.3.1 - resolution: "@backstage/backend-test-utils@npm:1.3.1" +"@backstage/backend-test-utils@npm:^1.4.0": + version: 1.4.0 + resolution: "@backstage/backend-test-utils@npm:1.4.0" dependencies: - "@backstage/backend-app-api": "npm:^1.2.1" - "@backstage/backend-defaults": "npm:^0.8.2" - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-app-api": "npm:^1.2.2" + "@backstage/backend-defaults": "npm:^0.9.0" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/config": "npm:^1.3.2" "@backstage/errors": "npm:^1.2.7" - "@backstage/plugin-auth-node": "npm:^0.6.1" - "@backstage/plugin-events-node": "npm:^0.4.9" + "@backstage/plugin-auth-node": "npm:^0.6.2" + "@backstage/plugin-events-node": "npm:^0.4.10" "@backstage/types": "npm:^1.2.1" "@keyv/memcache": "npm:^2.0.1" "@keyv/redis": "npm:^4.0.1" @@ -3189,7 +3188,7 @@ __metadata: textextensions: "npm:^5.16.0" uuid: "npm:^11.0.0" yn: "npm:^4.0.0" - checksum: 10/c1c01d2383c647f92a5731ed8549f14a2c62d02f2ae0c2c3a7be26065dfa722d4c4a112bdb95c9b11cd636b8c7d2b2065b862262a568debf95cdfd74329b6022 + checksum: 10/2f23950f73c5846caee57f50cd8456f038fd92d1043e3ab4b3e5df8e75d5c27d5ed02e5e7485c75231f41ba16331ccf38c7f9e64b6d2c45d8f4bbfd7d8476a63 languageName: node linkType: hard @@ -3240,9 +3239,9 @@ __metadata: languageName: node linkType: hard -"@backstage/cli@npm:^0.31.0": - version: 0.31.0 - resolution: "@backstage/cli@npm:0.31.0" +"@backstage/cli@npm:^0.32.0": + version: 0.32.0 + resolution: "@backstage/cli@npm:0.32.0" dependencies: "@backstage/catalog-model": "npm:^1.7.3" "@backstage/cli-common": "npm:^0.1.15" @@ -3251,11 +3250,11 @@ __metadata: "@backstage/config-loader": "npm:^1.10.0" "@backstage/errors": "npm:^1.2.7" "@backstage/eslint-plugin": "npm:^0.1.10" - "@backstage/integration": "npm:^1.16.2" + "@backstage/integration": "npm:^1.16.3" "@backstage/release-manifests": "npm:^0.0.12" "@backstage/types": "npm:^1.2.1" "@manypkg/get-packages": "npm:^1.1.3" - "@module-federation/enhanced": "npm:^0.8.0" + "@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" @@ -3371,7 +3370,8 @@ __metadata: optional: true bin: backstage-cli: bin/backstage-cli - checksum: 10/3bcc5f025def72654c0c808d44b9b4c6ab48e321c6e7b4013b4ff7291059d1991f754977eb56538a5d6d314df081c99e53935026d29cbd6a5342a74a2e2caf78 + backstage-cli-alpha: bin/backstage-cli-alpha + checksum: 10/c9bec5d95e1958f01c6492ef9bdba2262fd1ea3d269e9b0d03f78a7bf91b41363a7fbf59f6f1a08db3e30ced4e7bed030d8bc4a6c59fb0be4d27efc53ed16d9b languageName: node linkType: hard @@ -3409,12 +3409,12 @@ __metadata: languageName: node linkType: hard -"@backstage/core-app-api@npm:^1.16.0": - version: 1.16.0 - resolution: "@backstage/core-app-api@npm:1.16.0" +"@backstage/core-app-api@npm:^1.16.1": + version: 1.16.1 + resolution: "@backstage/core-app-api@npm:1.16.1" dependencies: "@backstage/config": "npm:^1.3.2" - "@backstage/core-plugin-api": "npm:^1.10.5" + "@backstage/core-plugin-api": "npm:^1.10.6" "@backstage/types": "npm:^1.2.1" "@backstage/version-bridge": "npm:^1.0.11" "@types/prop-types": "npm:^15.7.3" @@ -3433,17 +3433,17 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10/f1dbba87aabf1cc92bc53a6a50dd92c4a0d50776015d39c0189125d3f818d3e83cb594270a461a80c58fdd07af464c6b4245906febced91d5805aefd73077a4f + checksum: 10/fae37fa5c4598dc1c2a4f82356d4039633cc7323f44f369ad1ca4151e1e27f668b2929f759e7a4843e273979a5aae1b473809e8add23cbd788fc48329bdf51fd languageName: node linkType: hard -"@backstage/core-compat-api@npm:^0.4.0": - version: 0.4.0 - resolution: "@backstage/core-compat-api@npm:0.4.0" +"@backstage/core-compat-api@npm:^0.4.1": + version: 0.4.1 + resolution: "@backstage/core-compat-api@npm:0.4.1" dependencies: - "@backstage/core-plugin-api": "npm:^1.10.5" - "@backstage/frontend-plugin-api": "npm:^0.10.0" - "@backstage/plugin-catalog-react": "npm:^1.16.0" + "@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/version-bridge": "npm:^1.0.11" lodash: "npm:^4.17.21" peerDependencies: @@ -3454,18 +3454,18 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10/6b29f14dadc5dd5c055d063cb12ff901e2ff4458eb606489fc917e029afc3bb81b5292cf701227cedf35c3df25dc85ad1c60ca20ef3b8f75aa41d40a7f5580ee + checksum: 10/4c91cc4f4a06d6420a4bed63e540e46a34a7a1ecb831fd503960c9e9ae8817f015a0b6d39d37ac4588233caf2a21a93c9acadbe15d11b59706275166567a4581 languageName: node linkType: hard -"@backstage/core-components@npm:^0.17.0": - version: 0.17.0 - resolution: "@backstage/core-components@npm:0.17.0" +"@backstage/core-components@npm:^0.17.1": + version: 0.17.1 + resolution: "@backstage/core-components@npm:0.17.1" dependencies: "@backstage/config": "npm:^1.3.2" - "@backstage/core-plugin-api": "npm:^1.10.5" + "@backstage/core-plugin-api": "npm:^1.10.6" "@backstage/errors": "npm:^1.2.7" - "@backstage/theme": "npm:^0.6.4" + "@backstage/theme": "npm:^0.6.5" "@backstage/version-bridge": "npm:^1.0.11" "@dagrejs/dagre": "npm:^1.1.4" "@date-io/core": "npm:^1.3.13" @@ -3508,13 +3508,13 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10/b48f7a3a6df469f26eb033f2f59da36dcf56bb52ba7298b7dba05d9132c90f8ab5b58dd247a8f9c1b652b91138358fbae482654465550c74780a32fe04bf6e7e + checksum: 10/12e8f0675c2dd6bb871d77ceb833d2078cac41278d4122139669ffaadea09df7b3c8ca53c166e2c664c275e381f9c96f8383a5a1faaeb956ab0f1e4ee72ec1b7 languageName: node linkType: hard -"@backstage/core-plugin-api@npm:^1.10.5": - version: 1.10.5 - resolution: "@backstage/core-plugin-api@npm:1.10.5" +"@backstage/core-plugin-api@npm:^1.10.6": + version: 1.10.6 + resolution: "@backstage/core-plugin-api@npm:1.10.6" dependencies: "@backstage/config": "npm:^1.3.2" "@backstage/errors": "npm:^1.2.7" @@ -3529,22 +3529,22 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10/438d0dd80335e1b51842899f3e6bd1039fe29f0ae65e8ee827b8fcfce1599b63a3bdc36e87acce0168c59499f623a6285da7eaf0577567ebbad2900954e2f955 + checksum: 10/1359bb2dc294c6eb0b8de6aa4a0788561c5d43ef2a4464d4f7600c382126398a42724e8ba894925ab02f1d332ef9b87b0eeee31e56a9e9223f8d6504a283d896 languageName: node linkType: hard -"@backstage/dev-utils@npm:^1.1.8": - version: 1.1.8 - resolution: "@backstage/dev-utils@npm:1.1.8" +"@backstage/dev-utils@npm:^1.1.9": + version: 1.1.9 + resolution: "@backstage/dev-utils@npm:1.1.9" dependencies: - "@backstage/app-defaults": "npm:^1.6.0" + "@backstage/app-defaults": "npm:^1.6.1" "@backstage/catalog-model": "npm:^1.7.3" - "@backstage/core-app-api": "npm:^1.16.0" - "@backstage/core-components": "npm:^0.17.0" - "@backstage/core-plugin-api": "npm:^1.10.5" - "@backstage/integration-react": "npm:^1.2.5" - "@backstage/plugin-catalog-react": "npm:^1.16.0" - "@backstage/theme": "npm:^0.6.4" + "@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" "@material-ui/core": "npm:^4.12.2" "@material-ui/icons": "npm:^4.9.1" react-use: "npm:^17.2.4" @@ -3556,7 +3556,7 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10/3f507c912d9abbbb466dc997c989b23c9eefa1d4bc80fb38b6bea86ec51225f5d39185313ebd0d1f3a55adf773d2a4875130da296e6d2ee39d83985efef15b36 + checksum: 10/078ece28986bf3997560bd8441f6414079264fc88e10172e90be9525393ef0f2b2577fa5c2ef67d9f7a0997eb0578a19a24b51502524070ab6f0d94f069ea949 languageName: node linkType: hard @@ -3595,16 +3595,16 @@ __metadata: languageName: node linkType: hard -"@backstage/frontend-app-api@npm:^0.11.0": - version: 0.11.0 - resolution: "@backstage/frontend-app-api@npm:0.11.0" +"@backstage/frontend-app-api@npm:^0.11.1": + version: 0.11.1 + resolution: "@backstage/frontend-app-api@npm:0.11.1" dependencies: "@backstage/config": "npm:^1.3.2" - "@backstage/core-app-api": "npm:^1.16.0" - "@backstage/core-plugin-api": "npm:^1.10.5" + "@backstage/core-app-api": "npm:^1.16.1" + "@backstage/core-plugin-api": "npm:^1.10.6" "@backstage/errors": "npm:^1.2.7" - "@backstage/frontend-defaults": "npm:^0.2.0" - "@backstage/frontend-plugin-api": "npm:^0.10.0" + "@backstage/frontend-defaults": "npm:^0.2.1" + "@backstage/frontend-plugin-api": "npm:^0.10.1" "@backstage/types": "npm:^1.2.1" "@backstage/version-bridge": "npm:^1.0.11" lodash: "npm:^4.17.21" @@ -3617,19 +3617,19 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10/5522ddd487766ea44288d5626f269e42ad7d84902a5a257fd3962d2b2409743cf1b5de135e15915ba568bf2b12ec25c814ece077c87e1436c67e63998b1b9652 + checksum: 10/fdf5b7dddeba9320e8ec54751396a3e81897605c26520af60eb61a76f17dd78b6b786f5cfa9f4bad3beef0d3408868bfe8331f6773b54034d11dc170a35e60e7 languageName: node linkType: hard -"@backstage/frontend-defaults@npm:^0.2.0": - version: 0.2.0 - resolution: "@backstage/frontend-defaults@npm:0.2.0" +"@backstage/frontend-defaults@npm:^0.2.1": + version: 0.2.1 + resolution: "@backstage/frontend-defaults@npm:0.2.1" dependencies: "@backstage/config": "npm:^1.3.2" "@backstage/errors": "npm:^1.2.7" - "@backstage/frontend-app-api": "npm:^0.11.0" - "@backstage/frontend-plugin-api": "npm:^0.10.0" - "@backstage/plugin-app": "npm:^0.1.7" + "@backstage/frontend-app-api": "npm:^0.11.1" + "@backstage/frontend-plugin-api": "npm:^0.10.1" + "@backstage/plugin-app": "npm:^0.1.8" "@react-hookz/web": "npm:^24.0.0" peerDependencies: "@types/react": ^17.0.0 || ^18.0.0 @@ -3639,16 +3639,16 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10/65decef0c603ededc36791db771f82c35f6b8c283a65d6b81ad098175290ce8d125d22127968820d29dcbc69c4241b7e703013c5091a1c433bfaf86eaad482ea + checksum: 10/3bd178ca78db5d467378272025d7a3fa7995a37063f39c2ec2c9a81b2bb6aa4890f888e99f1e5c4abb442614b978a490d8dbcaa09e54a94e47364caab618725c languageName: node linkType: hard -"@backstage/frontend-plugin-api@npm:^0.10.0": - version: 0.10.0 - resolution: "@backstage/frontend-plugin-api@npm:0.10.0" +"@backstage/frontend-plugin-api@npm:^0.10.1": + version: 0.10.1 + resolution: "@backstage/frontend-plugin-api@npm:0.10.1" dependencies: - "@backstage/core-components": "npm:^0.17.0" - "@backstage/core-plugin-api": "npm:^1.10.5" + "@backstage/core-components": "npm:^0.17.1" + "@backstage/core-plugin-api": "npm:^1.10.6" "@backstage/types": "npm:^1.2.1" "@backstage/version-bridge": "npm:^1.0.11" "@material-ui/core": "npm:^4.12.4" @@ -3663,19 +3663,19 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10/9f52031e65d38087da1ad8d3117fdb2c54dbde20326f32c7cfebd755af6d28d881c9e57b5f9c17f4920fb40eea90b3b5b48b4cfc95f7dd2a3359866544ad5411 + checksum: 10/5a1b69d7a1b1db584f4f0c4934ac98dc678f53730c250959da47e20479032b02b1f02785bcb51989af899e8b1166599e23e03ce024469e5efb5b49f8c792e315 languageName: node linkType: hard -"@backstage/frontend-test-utils@npm:^0.3.0": - version: 0.3.0 - resolution: "@backstage/frontend-test-utils@npm:0.3.0" +"@backstage/frontend-test-utils@npm:^0.3.1": + version: 0.3.1 + resolution: "@backstage/frontend-test-utils@npm:0.3.1" dependencies: "@backstage/config": "npm:^1.3.2" - "@backstage/frontend-app-api": "npm:^0.11.0" - "@backstage/frontend-plugin-api": "npm:^0.10.0" - "@backstage/plugin-app": "npm:^0.1.7" - "@backstage/test-utils": "npm:^1.7.6" + "@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/types": "npm:^1.2.1" "@backstage/version-bridge": "npm:^1.0.11" zod: "npm:^3.22.4" @@ -3688,7 +3688,7 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10/d141510fd32dc585677e1e1d7e0962b7656fd3ba7c214ef6341da39771e6fc41f5a1ca593ccfe660017fab15c90e7f7166c501618cb4c21d076ea98f101039dc + checksum: 10/b46c7e660ffbfecae9d0dd9fbc471c0c6324550d768f2749ff5726b4acd737aef4075290f1c2e8b73ce967b664997cc1f47f933254209d41d2fb080799c3dba9 languageName: node linkType: hard @@ -3707,13 +3707,13 @@ __metadata: languageName: node linkType: hard -"@backstage/integration-react@npm:^1.2.5": - version: 1.2.5 - resolution: "@backstage/integration-react@npm:1.2.5" +"@backstage/integration-react@npm:^1.2.6": + version: 1.2.6 + resolution: "@backstage/integration-react@npm:1.2.6" dependencies: "@backstage/config": "npm:^1.3.2" - "@backstage/core-plugin-api": "npm:^1.10.5" - "@backstage/integration": "npm:^1.16.2" + "@backstage/core-plugin-api": "npm:^1.10.6" + "@backstage/integration": "npm:^1.16.3" "@material-ui/core": "npm:^4.12.2" "@material-ui/icons": "npm:^4.9.1" peerDependencies: @@ -3724,13 +3724,13 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10/e41677549a09452470f653962faeacb16aa3cc4b5eb2449f8521ea4a630c0468a079e1a91bce22ebed4c7421329a547de3084ff7c3d9f5113659559ba28ae07e + checksum: 10/7a3a13d277e03c5a95131b99a50210e4bd7bdcba133ef5ee1549d625fc373072669a52e9317bc1b29f27f7a3d99eb89d2dc6469ff7bd87de10eb1d19a03a51bb languageName: node linkType: hard -"@backstage/integration@npm:^1.15.0, @backstage/integration@npm:^1.16.2": - version: 1.16.2 - resolution: "@backstage/integration@npm:1.16.2" +"@backstage/integration@npm:^1.15.0, @backstage/integration@npm:^1.16.3": + version: 1.16.3 + resolution: "@backstage/integration@npm:1.16.3" dependencies: "@azure/identity": "npm:^4.0.0" "@azure/storage-blob": "npm:^12.5.0" @@ -3742,24 +3742,24 @@ __metadata: git-url-parse: "npm:^15.0.0" lodash: "npm:^4.17.21" luxon: "npm:^3.0.0" - checksum: 10/fe7733dd24002931449fbe198254f2fd578bd63183141fe9194a8488e8c18dff23f9ada12af76e69e1cfb91fee5b4737fe404dd354eb6f27d1a8dcc601356c52 + checksum: 10/ce27919bee116725b1cd0749388dacace62746eba46772343cdd95d93c0261d673b7feac62ff74a024e6a8b455b33f231ceb987c23ecf34804643eda6bed2821 languageName: node linkType: hard -"@backstage/plugin-api-docs@npm:^0.12.5": - version: 0.12.5 - resolution: "@backstage/plugin-api-docs@npm:0.12.5" +"@backstage/plugin-api-docs@npm:^0.12.6": + version: 0.12.6 + resolution: "@backstage/plugin-api-docs@npm:0.12.6" dependencies: "@asyncapi/react-component": "npm:^2.3.3" "@backstage/catalog-model": "npm:^1.7.3" - "@backstage/core-compat-api": "npm:^0.4.0" - "@backstage/core-components": "npm:^0.17.0" - "@backstage/core-plugin-api": "npm:^1.10.5" - "@backstage/frontend-plugin-api": "npm:^0.10.0" - "@backstage/plugin-catalog": "npm:^1.28.0" + "@backstage/core-compat-api": "npm:^0.4.1" + "@backstage/core-components": "npm:^0.17.1" + "@backstage/core-plugin-api": "npm:^1.10.6" + "@backstage/frontend-plugin-api": "npm:^0.10.1" + "@backstage/plugin-catalog": "npm:^1.29.0" "@backstage/plugin-catalog-common": "npm:^1.1.3" - "@backstage/plugin-catalog-react": "npm:^1.16.0" - "@backstage/plugin-permission-react": "npm:^0.4.32" + "@backstage/plugin-catalog-react": "npm:^1.17.0" + "@backstage/plugin-permission-react": "npm:^0.4.33" "@graphiql/react": "npm:^0.23.0" "@material-ui/core": "npm:^4.12.2" "@material-ui/icons": "npm:^4.9.1" @@ -3778,20 +3778,20 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10/660ba14afad2ae4663fc85010c50b2d1759406da58c7bc12288d74acef6578d66e6a27b1038399fdd6968b83aa639428200c22964897cfc928023dcddcd0ff71 + checksum: 10/3f33b66fdfd38075fcdbc05c22f3e705c94202a61a0ba48ad134ebd0720a28e16584c7237581329d4f9960d5077e86229934ae620a66641841568ecb1bd59f50 languageName: node linkType: hard -"@backstage/plugin-app-backend@npm:^0.5.0": - version: 0.5.0 - resolution: "@backstage/plugin-app-backend@npm:0.5.0" +"@backstage/plugin-app-backend@npm:^0.5.1": + version: 0.5.1 + resolution: "@backstage/plugin-app-backend@npm:0.5.1" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/config": "npm:^1.3.2" "@backstage/config-loader": "npm:^1.10.0" "@backstage/errors": "npm:^1.2.7" - "@backstage/plugin-app-node": "npm:^0.1.31" - "@backstage/plugin-auth-node": "npm:^0.6.1" + "@backstage/plugin-app-node": "npm:^0.1.32" + "@backstage/plugin-auth-node": "npm:^0.6.2" "@backstage/types": "npm:^1.2.1" express: "npm:^4.17.1" express-promise-router: "npm:^4.1.0" @@ -3802,33 +3802,33 @@ __metadata: lodash: "npm:^4.17.21" luxon: "npm:^3.0.0" yn: "npm:^4.0.0" - checksum: 10/c33fca456318126dc9e5c72ead52a8370348fbe0ea18fc7b9828eb2329f1b97017b30cf7925f930606a1bbe59ac9de5bf85a6ffcf8077339aefeb908ba6b12cd + checksum: 10/c243cfe87c8aed05f7089f0b74214ef1167ad0fecb196238ca76ee198c2f7bffe8288cc66f588c41fea750e7345f905e79a8e5d1b5fb7c5b9b27026614d8476b languageName: node linkType: hard -"@backstage/plugin-app-node@npm:^0.1.31": - version: 0.1.31 - resolution: "@backstage/plugin-app-node@npm:0.1.31" +"@backstage/plugin-app-node@npm:^0.1.32": + version: 0.1.32 + resolution: "@backstage/plugin-app-node@npm:0.1.32" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/config-loader": "npm:^1.10.0" "@types/express": "npm:^4.17.6" express: "npm:^4.17.1" fs-extra: "npm:^11.2.0" - checksum: 10/198fbf707f5e0707a47e949001bd59303fab4098a09fe1c3b366a883c4690fddf59300336bfd82d60a90c06ce0ec1e9f33cdcda14887ee70b8e2f8dd9435adfb + checksum: 10/b351f41b10d581c320c47dd92f9ba42365a09099a9e97444d3192e6fa7cad2c0d99369bfd442d3aad2ff55c9c6377d1cadb3c3305aa03d3d960485bee52047d9 languageName: node linkType: hard -"@backstage/plugin-app@npm:^0.1.7": - version: 0.1.7 - resolution: "@backstage/plugin-app@npm:0.1.7" +"@backstage/plugin-app@npm:^0.1.8": + version: 0.1.8 + resolution: "@backstage/plugin-app@npm:0.1.8" dependencies: - "@backstage/core-components": "npm:^0.17.0" - "@backstage/core-plugin-api": "npm:^1.10.5" - "@backstage/frontend-plugin-api": "npm:^0.10.0" - "@backstage/integration-react": "npm:^1.2.5" - "@backstage/plugin-permission-react": "npm:^0.4.32" - "@backstage/theme": "npm:^0.6.4" + "@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/types": "npm:^1.2.1" "@material-ui/core": "npm:^4.9.13" "@material-ui/icons": "npm:^4.9.1" @@ -3842,273 +3842,275 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10/29819de2c81dbeb787e485d43b8ccb475d42fb4e071ce2eab6e0a814e35f5d6f14deb1266082326dd3b07005136a34b780a14af3aed7efae6f0fff4ae28bc9cb + checksum: 10/3634ce0bb0ac0f86050c45a4d24f728975232dcd04106b48b1ffdaec4e2ce9ef1ad17220afd0351fb75d6e10bfaacd45289064397332b5c08dc1c046d21466cf languageName: node linkType: hard -"@backstage/plugin-auth-backend-module-atlassian-provider@npm:^0.4.1": - version: 0.4.1 - resolution: "@backstage/plugin-auth-backend-module-atlassian-provider@npm:0.4.1" +"@backstage/plugin-auth-backend-module-atlassian-provider@npm:^0.4.2": + version: 0.4.2 + resolution: "@backstage/plugin-auth-backend-module-atlassian-provider@npm:0.4.2" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" - "@backstage/plugin-auth-node": "npm:^0.6.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" + "@backstage/plugin-auth-node": "npm:^0.6.2" express: "npm:^4.18.2" passport: "npm:^0.7.0" passport-atlassian-oauth2: "npm:^2.1.0" - checksum: 10/0afd331d07eced77837f3ca445dc20386662399d6ba1413687bba3e70eba22ca9e9056a39bd6748a08a9f4cc3f971378117522489cda35e7fdd64291f422dc36 + checksum: 10/f0ba4e1ee7a95b4eb1884f4338473855a2761548a75486370ccb58ec381d77680abf280f1a1059dead78292dbdd6a1590ac91e7bc41c20b4f0847c50dc6e5fa4 languageName: node linkType: hard -"@backstage/plugin-auth-backend-module-auth0-provider@npm:^0.2.1": - version: 0.2.1 - resolution: "@backstage/plugin-auth-backend-module-auth0-provider@npm:0.2.1" +"@backstage/plugin-auth-backend-module-auth0-provider@npm:^0.2.2": + version: 0.2.2 + resolution: "@backstage/plugin-auth-backend-module-auth0-provider@npm:0.2.2" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" - "@backstage/plugin-auth-node": "npm:^0.6.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" + "@backstage/plugin-auth-node": "npm:^0.6.2" express: "npm:^4.17.1" passport-auth0: "npm:^1.4.3" passport-oauth2: "npm:^1.6.1" - checksum: 10/d7f96c098592e0aa681a2c53fe105196bd47edf2fd52c1aa821fba6be17746c1abfbfaa2ce7065bbc2e66041a1d56e79fcd5b408492a84c6809d3188fb0e949a + checksum: 10/0d5970a80f4ae0817e9b50984aa8a6573a9040221fc69879ea503cba626aa8f25293549e3c19bcc5731c7ef8d753e4d2df4c84dc8f875b887b78c18c5f243dca languageName: node linkType: hard -"@backstage/plugin-auth-backend-module-aws-alb-provider@npm:^0.4.1": - version: 0.4.1 - resolution: "@backstage/plugin-auth-backend-module-aws-alb-provider@npm:0.4.1" +"@backstage/plugin-auth-backend-module-aws-alb-provider@npm:^0.4.2": + version: 0.4.2 + resolution: "@backstage/plugin-auth-backend-module-aws-alb-provider@npm:0.4.2" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/errors": "npm:^1.2.7" - "@backstage/plugin-auth-backend": "npm:^0.24.4" - "@backstage/plugin-auth-node": "npm:^0.6.1" + "@backstage/plugin-auth-backend": "npm:^0.24.5" + "@backstage/plugin-auth-node": "npm:^0.6.2" jose: "npm:^5.0.0" node-cache: "npm:^5.1.2" - checksum: 10/d03f618067ec8f92d2eef59b21016ca1a675f0cd02a1dc993b88776c66df943617d600d6ef6308de464d7dff1e7d5f896dc5d7b9c3d7cd5371067f085337ba41 + checksum: 10/e35bfea7935c6f59f2a10cc55d7960b680f786f2fdd95720320079a1dc9a47450ef2ccb7cd301d9d1760678b3132c19a447d82e9827e71cff80d03ad10c55aa2 languageName: node linkType: hard -"@backstage/plugin-auth-backend-module-azure-easyauth-provider@npm:^0.2.6": - version: 0.2.6 - resolution: "@backstage/plugin-auth-backend-module-azure-easyauth-provider@npm:0.2.6" +"@backstage/plugin-auth-backend-module-azure-easyauth-provider@npm:^0.2.7": + version: 0.2.7 + resolution: "@backstage/plugin-auth-backend-module-azure-easyauth-provider@npm:0.2.7" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/catalog-model": "npm:^1.7.3" "@backstage/errors": "npm:^1.2.7" - "@backstage/plugin-auth-node": "npm:^0.6.1" + "@backstage/plugin-auth-node": "npm:^0.6.2" "@types/passport": "npm:^1.0.16" express: "npm:^4.19.2" jose: "npm:^5.0.0" passport: "npm:^0.7.0" - checksum: 10/fd38e9f3b8ef0f03a7454e2115db9496ce548e97fa7005ebc7cab5a76f93a7752d818d96735a6e653110c35cb90ba0fc78552304c59a1e5a47b3c35a509f77a6 + checksum: 10/a5523de480d0b3cb993f5de5143dd5bf78100fbc3480299df06667f3e1d16458fbd7fc24a31335cb790f6546686b2cc978a7a05d5ed9e3865d2b11d45db4fb35 languageName: node linkType: hard -"@backstage/plugin-auth-backend-module-bitbucket-provider@npm:^0.3.1": - version: 0.3.1 - resolution: "@backstage/plugin-auth-backend-module-bitbucket-provider@npm:0.3.1" +"@backstage/plugin-auth-backend-module-bitbucket-provider@npm:^0.3.2": + version: 0.3.2 + resolution: "@backstage/plugin-auth-backend-module-bitbucket-provider@npm:0.3.2" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" - "@backstage/plugin-auth-node": "npm:^0.6.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" + "@backstage/plugin-auth-node": "npm:^0.6.2" express: "npm:^4.18.2" passport: "npm:^0.7.0" passport-bitbucket-oauth2: "npm:^0.1.2" - checksum: 10/2298316ddf74ed782d7f9201ae2ad5176d290e1bc369e56cfe8c966c0b0ebe056557a7e7e6d5b1f7dbc3c8b34f4315bbf17415c572b6e1d2c0ddf55d91ec5351 + checksum: 10/79a60bf7f8182baab6a216f3c1550569733515b0c0a96304728447bd61d8e859fcfe3fa837b9143315ea47671fb2c4455b75f8a191b56de729c9451123f09191 languageName: node linkType: hard -"@backstage/plugin-auth-backend-module-bitbucket-server-provider@npm:^0.2.1": - version: 0.2.1 - resolution: "@backstage/plugin-auth-backend-module-bitbucket-server-provider@npm:0.2.1" +"@backstage/plugin-auth-backend-module-bitbucket-server-provider@npm:^0.2.2": + version: 0.2.2 + resolution: "@backstage/plugin-auth-backend-module-bitbucket-server-provider@npm:0.2.2" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" - "@backstage/plugin-auth-node": "npm:^0.6.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" + "@backstage/plugin-auth-node": "npm:^0.6.2" passport: "npm:^0.7.0" passport-oauth2: "npm:^1.6.1" - checksum: 10/8dd451deb08a6aea0524f2dde19b9c6381bc6c7216e42daa06dc8d88c56e1e27831d3d29b88df76b6847771726e46f024f4c738c5f91206615976790137982bf + checksum: 10/94e60e76eeebb0b5d0b6f6630ee21dcdea2f1316ba3089e2c04babcf5538971489ecfc3c2390136d15d239b4fc9e478063dea57e733f452475f57a901e3dc6f3 languageName: node linkType: hard -"@backstage/plugin-auth-backend-module-cloudflare-access-provider@npm:^0.4.1": - version: 0.4.1 - resolution: "@backstage/plugin-auth-backend-module-cloudflare-access-provider@npm:0.4.1" +"@backstage/plugin-auth-backend-module-cloudflare-access-provider@npm:^0.4.2": + version: 0.4.2 + resolution: "@backstage/plugin-auth-backend-module-cloudflare-access-provider@npm:0.4.2" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/config": "npm:^1.3.2" "@backstage/errors": "npm:^1.2.7" - "@backstage/plugin-auth-node": "npm:^0.6.1" + "@backstage/plugin-auth-node": "npm:^0.6.2" express: "npm:^4.18.2" jose: "npm:^5.0.0" - checksum: 10/efe2f1bab401877fb83e1a631f29901cfbac5246bb54b6ac251ccbb9073248611565c5e6764f9390eeddbbdb76c0f1dacb81d7610a3da89593b11359d29ea363 + checksum: 10/f8f45384a9b27bc255a1a9307c0a5706c07c7db411a4540d15d7dcedaaad96df1bf6bb3f0daa1a785f7c58f59f7c884b160c525b7e8f636ced578e1fc24a6a6b languageName: node linkType: hard -"@backstage/plugin-auth-backend-module-gcp-iap-provider@npm:^0.4.1": - version: 0.4.1 - resolution: "@backstage/plugin-auth-backend-module-gcp-iap-provider@npm:0.4.1" +"@backstage/plugin-auth-backend-module-gcp-iap-provider@npm:^0.4.2": + version: 0.4.2 + resolution: "@backstage/plugin-auth-backend-module-gcp-iap-provider@npm:0.4.2" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/errors": "npm:^1.2.7" - "@backstage/plugin-auth-node": "npm:^0.6.1" + "@backstage/plugin-auth-node": "npm:^0.6.2" "@backstage/types": "npm:^1.2.1" google-auth-library: "npm:^9.0.0" - checksum: 10/b13d60cca911f0102a3a93fc93dce7f08b4a9b8ee70b6c566c63eb6ede0054a532b0250e9ef9199e1059ea1d7e7472caf0d27bc2e91caa4b800eaa875f32cd9d + checksum: 10/001a7566904e4832c3c9b7f8f42966e4919fa368265792fd8ceb39b302dd3a64925d64330490699846496cd657d420ab79fb2353aff875572be71e5de9b39a15 languageName: node linkType: hard -"@backstage/plugin-auth-backend-module-github-provider@npm:^0.3.1": - version: 0.3.1 - resolution: "@backstage/plugin-auth-backend-module-github-provider@npm:0.3.1" +"@backstage/plugin-auth-backend-module-github-provider@npm:^0.3.2": + version: 0.3.2 + resolution: "@backstage/plugin-auth-backend-module-github-provider@npm:0.3.2" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" - "@backstage/plugin-auth-node": "npm:^0.6.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" + "@backstage/plugin-auth-node": "npm:^0.6.2" passport-github2: "npm:^0.1.12" - checksum: 10/1d216aaa16af1298a08359762c809148a096469d7718bc918b07a8ccbd21d3aa6d1dad713f95427b7b324ca37d6e380ace24c299f3bd75fae7e603ea2d1b18ae + checksum: 10/9c0d0251f0ff5fdd4dd173c8af4656756771ad28fb5ed4ff5f461cc96368da414243305cd43d80658121cfc30e8efa555a1b13c60d331e8d7ec4a6dc22a80b2a languageName: node linkType: hard -"@backstage/plugin-auth-backend-module-gitlab-provider@npm:^0.3.1": - version: 0.3.1 - resolution: "@backstage/plugin-auth-backend-module-gitlab-provider@npm:0.3.1" +"@backstage/plugin-auth-backend-module-gitlab-provider@npm:^0.3.2": + version: 0.3.2 + resolution: "@backstage/plugin-auth-backend-module-gitlab-provider@npm:0.3.2" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" - "@backstage/plugin-auth-node": "npm:^0.6.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" + "@backstage/plugin-auth-node": "npm:^0.6.2" express: "npm:^4.18.2" passport: "npm:^0.7.0" passport-gitlab2: "npm:^5.0.0" - checksum: 10/15c2b5a83056aa6efebca35cb998dd10dd66d0e4e351b7677ba87f78f53d68bc24d6fe67bbdedd4c319605e98a2365736ea75d4aa8c556accfeb6ea99d98b4a5 + checksum: 10/438d90159827fbbd3808d0a2339b88de60a64b05ef51e21ebdd15993602e826c11221e53ef8b09c5d47eb7127485d539e1385a0b1a20389bb584c95637e1ebaf languageName: node linkType: hard -"@backstage/plugin-auth-backend-module-google-provider@npm:^0.3.1": - version: 0.3.1 - resolution: "@backstage/plugin-auth-backend-module-google-provider@npm:0.3.1" +"@backstage/plugin-auth-backend-module-google-provider@npm:^0.3.2": + version: 0.3.2 + resolution: "@backstage/plugin-auth-backend-module-google-provider@npm:0.3.2" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" - "@backstage/plugin-auth-node": "npm:^0.6.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" + "@backstage/plugin-auth-node": "npm:^0.6.2" google-auth-library: "npm:^9.0.0" passport-google-oauth20: "npm:^2.0.0" - checksum: 10/760dc72fabc4cfe1dfd2fd3f34fe20569ed41207bd9e2b80032f6bcf506eec93f2a43058733ea6d985c5818d829872ee3efdc9e389cecee168a2c489ac08efe6 + checksum: 10/0d9c26016e8bd878c8c04a68b072a598b003e1434dcc565f52d1e90217dbacf2533ab3564e398d2a115971c34cd4a1434fff7fe0e26c85f21702e3192db9c361 languageName: node linkType: hard -"@backstage/plugin-auth-backend-module-guest-provider@npm:^0.2.6": - version: 0.2.6 - resolution: "@backstage/plugin-auth-backend-module-guest-provider@npm:0.2.6" +"@backstage/plugin-auth-backend-module-guest-provider@npm:^0.2.7": + version: 0.2.7 + resolution: "@backstage/plugin-auth-backend-module-guest-provider@npm:0.2.7" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/catalog-model": "npm:^1.7.3" "@backstage/errors": "npm:^1.2.7" - "@backstage/plugin-auth-node": "npm:^0.6.1" + "@backstage/plugin-auth-node": "npm:^0.6.2" passport-oauth2: "npm:^1.7.0" - checksum: 10/e5a228355bd3a25f153aa2f601adc69d3c12f113514f51519e92f00161279b56fd2b77c0e421c5b1a8d718346917d3f9e47dc9007ace7521f98f40fb36796e0d + checksum: 10/429f8df57fecb66a99ed8ce7f35d3cb275e81251dc9b39a2fb9531aa8e62904b3096afffb92a1a395b32dcdc9a91458acd432692c72b59026b4b6ad450186b45 languageName: node linkType: hard -"@backstage/plugin-auth-backend-module-microsoft-provider@npm:^0.3.1": - version: 0.3.1 - resolution: "@backstage/plugin-auth-backend-module-microsoft-provider@npm:0.3.1" +"@backstage/plugin-auth-backend-module-microsoft-provider@npm:^0.3.2": + version: 0.3.2 + resolution: "@backstage/plugin-auth-backend-module-microsoft-provider@npm:0.3.2" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" - "@backstage/plugin-auth-node": "npm:^0.6.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" + "@backstage/plugin-auth-node": "npm:^0.6.2" express: "npm:^4.18.2" jose: "npm:^5.0.0" passport-microsoft: "npm:^1.0.0" - checksum: 10/83020469cd3e855746870e3d6bcfb73307e83076aafb230735eba6cc607505ee84f3a1fe817da95cb6af0c46541919e4fb97d670ad4214da3471002ba2711e50 + checksum: 10/550f030234bdd30528320075c1a84879a37220d21fe9030c3a71a8822fce442c85d3c8083ac4a17b2bc6764742e7713c95687b8ee75279e5f2863c496576156e languageName: node linkType: hard -"@backstage/plugin-auth-backend-module-oauth2-provider@npm:^0.4.1": - version: 0.4.1 - resolution: "@backstage/plugin-auth-backend-module-oauth2-provider@npm:0.4.1" +"@backstage/plugin-auth-backend-module-oauth2-provider@npm:^0.4.2": + version: 0.4.2 + resolution: "@backstage/plugin-auth-backend-module-oauth2-provider@npm:0.4.2" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" - "@backstage/plugin-auth-node": "npm:^0.6.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" + "@backstage/plugin-auth-node": "npm:^0.6.2" passport: "npm:^0.7.0" passport-oauth2: "npm:^1.6.1" - checksum: 10/a4882c73ca7adb72b6c2c4b0c47094a73ff8cb15d08e7b221e9a938163c158be73d5c42985f95c45aaf9f77bfba149f2d53bd25966cb8dcf11e92f69f81d71a8 + checksum: 10/42fe758b8fa5765f40d4cffe110309cd15b00add3d58ad0ad80c788798059cd4c6c493690a012b2728c55fbec7454c259a6f5630a07f5664a397481184200f55 languageName: node linkType: hard -"@backstage/plugin-auth-backend-module-oauth2-proxy-provider@npm:^0.2.6": - version: 0.2.6 - resolution: "@backstage/plugin-auth-backend-module-oauth2-proxy-provider@npm:0.2.6" +"@backstage/plugin-auth-backend-module-oauth2-proxy-provider@npm:^0.2.7": + version: 0.2.7 + resolution: "@backstage/plugin-auth-backend-module-oauth2-proxy-provider@npm:0.2.7" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/errors": "npm:^1.2.7" - "@backstage/plugin-auth-node": "npm:^0.6.1" + "@backstage/plugin-auth-node": "npm:^0.6.2" jose: "npm:^5.0.0" - checksum: 10/7f271f4754b5b35cea6fa513f9c8101fbaf8eba8edc8e66b57287a589c0ce5b1cc57bb4df117d89abf53c0b636aec163971ebb006dc46daed0e452f0bfbbac19 + checksum: 10/b2c99037cb7d03fd6ffd638b1cb316014b72ee88b7643c37a055d4b652a33fec11d8e599f2a0afc319fb644cdd3ae3de39ae21a579abfff2c90f0ff1bdb6cd9b languageName: node linkType: hard -"@backstage/plugin-auth-backend-module-oidc-provider@npm:^0.4.1": - version: 0.4.1 - resolution: "@backstage/plugin-auth-backend-module-oidc-provider@npm:0.4.1" +"@backstage/plugin-auth-backend-module-oidc-provider@npm:^0.4.2": + version: 0.4.2 + resolution: "@backstage/plugin-auth-backend-module-oidc-provider@npm:0.4.2" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" - "@backstage/plugin-auth-backend": "npm:^0.24.4" - "@backstage/plugin-auth-node": "npm:^0.6.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" + "@backstage/config": "npm:^1.3.2" + "@backstage/plugin-auth-backend": "npm:^0.24.5" + "@backstage/plugin-auth-node": "npm:^0.6.2" + "@backstage/types": "npm:^1.2.1" express: "npm:^4.18.2" openid-client: "npm:^5.5.0" passport: "npm:^0.7.0" - checksum: 10/0bf111c8d4bbe32d4d84a4a459ae620651c805596e80e79689b01bda292bf6af3273e16849885d00f29325ad5723a282e82face0422a17b70f94897dc676f911 + checksum: 10/a3f0c26d9e90a380a7a4ff18e9786ac1f1964f7e9c4fdd8bd120d408193cf3091fb371cc57d54ca134c8e87da17566f68d37cf5a98051d5d88d7ee96a3f6000f languageName: node linkType: hard -"@backstage/plugin-auth-backend-module-okta-provider@npm:^0.2.1": - version: 0.2.1 - resolution: "@backstage/plugin-auth-backend-module-okta-provider@npm:0.2.1" +"@backstage/plugin-auth-backend-module-okta-provider@npm:^0.2.2": + version: 0.2.2 + resolution: "@backstage/plugin-auth-backend-module-okta-provider@npm:0.2.2" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" - "@backstage/plugin-auth-node": "npm:^0.6.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" + "@backstage/plugin-auth-node": "npm:^0.6.2" "@davidzemon/passport-okta-oauth": "npm:^0.0.5" express: "npm:^4.18.2" passport: "npm:^0.7.0" - checksum: 10/718c1233982541dff50e9fde2a86bb92cf2dc4d3f593ddbeef6c1333511694a07b6fdec55dbed68f76078fc82953595ba770ea5ea88d1ceb733b92546a0e86aa + checksum: 10/bfd42580f091b838efd4976ee2b0548d4db3ed0810edf41fc65f939636281171217e96c6cebc6c22ac849f1f2c83a780be0b676418825ddd0112938602125686 languageName: node linkType: hard -"@backstage/plugin-auth-backend-module-onelogin-provider@npm:^0.3.1": - version: 0.3.1 - resolution: "@backstage/plugin-auth-backend-module-onelogin-provider@npm:0.3.1" +"@backstage/plugin-auth-backend-module-onelogin-provider@npm:^0.3.2": + version: 0.3.2 + resolution: "@backstage/plugin-auth-backend-module-onelogin-provider@npm:0.3.2" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" - "@backstage/plugin-auth-node": "npm:^0.6.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" + "@backstage/plugin-auth-node": "npm:^0.6.2" express: "npm:^4.18.2" passport: "npm:^0.7.0" passport-onelogin-oauth: "npm:^0.0.1" - checksum: 10/f8a5b118028de7978d9083e1f35b99fb4e06b2c6f85fb6073e3c2090db9a8261339d9d8601030e040c934fcd39afa3b03b2e48731919186cd31fbd04b14bee0e + checksum: 10/820dcd772be85f0a482a18d3146064c48df164b7a8be7817187170d842bb9dc3a3eead7e6cfcbbcaccd41deeb65703169cc3bcc9f16b83a79fae5f18ba9b06d2 languageName: node linkType: hard -"@backstage/plugin-auth-backend@npm:^0.24.4": - version: 0.24.4 - resolution: "@backstage/plugin-auth-backend@npm:0.24.4" +"@backstage/plugin-auth-backend@npm:^0.24.5": + version: 0.24.5 + resolution: "@backstage/plugin-auth-backend@npm:0.24.5" dependencies: "@backstage/backend-common": "npm:^0.25.0" - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/catalog-client": "npm:^1.9.1" "@backstage/catalog-model": "npm:^1.7.3" "@backstage/config": "npm:^1.3.2" "@backstage/errors": "npm:^1.2.7" - "@backstage/plugin-auth-backend-module-atlassian-provider": "npm:^0.4.1" - "@backstage/plugin-auth-backend-module-auth0-provider": "npm:^0.2.1" - "@backstage/plugin-auth-backend-module-aws-alb-provider": "npm:^0.4.1" - "@backstage/plugin-auth-backend-module-azure-easyauth-provider": "npm:^0.2.6" - "@backstage/plugin-auth-backend-module-bitbucket-provider": "npm:^0.3.1" - "@backstage/plugin-auth-backend-module-bitbucket-server-provider": "npm:^0.2.1" - "@backstage/plugin-auth-backend-module-cloudflare-access-provider": "npm:^0.4.1" - "@backstage/plugin-auth-backend-module-gcp-iap-provider": "npm:^0.4.1" - "@backstage/plugin-auth-backend-module-github-provider": "npm:^0.3.1" - "@backstage/plugin-auth-backend-module-gitlab-provider": "npm:^0.3.1" - "@backstage/plugin-auth-backend-module-google-provider": "npm:^0.3.1" - "@backstage/plugin-auth-backend-module-microsoft-provider": "npm:^0.3.1" - "@backstage/plugin-auth-backend-module-oauth2-provider": "npm:^0.4.1" - "@backstage/plugin-auth-backend-module-oauth2-proxy-provider": "npm:^0.2.6" - "@backstage/plugin-auth-backend-module-oidc-provider": "npm:^0.4.1" - "@backstage/plugin-auth-backend-module-okta-provider": "npm:^0.2.1" - "@backstage/plugin-auth-backend-module-onelogin-provider": "npm:^0.3.1" - "@backstage/plugin-auth-node": "npm:^0.6.1" - "@backstage/plugin-catalog-node": "npm:^1.16.1" + "@backstage/plugin-auth-backend-module-atlassian-provider": "npm:^0.4.2" + "@backstage/plugin-auth-backend-module-auth0-provider": "npm:^0.2.2" + "@backstage/plugin-auth-backend-module-aws-alb-provider": "npm:^0.4.2" + "@backstage/plugin-auth-backend-module-azure-easyauth-provider": "npm:^0.2.7" + "@backstage/plugin-auth-backend-module-bitbucket-provider": "npm:^0.3.2" + "@backstage/plugin-auth-backend-module-bitbucket-server-provider": "npm:^0.2.2" + "@backstage/plugin-auth-backend-module-cloudflare-access-provider": "npm:^0.4.2" + "@backstage/plugin-auth-backend-module-gcp-iap-provider": "npm:^0.4.2" + "@backstage/plugin-auth-backend-module-github-provider": "npm:^0.3.2" + "@backstage/plugin-auth-backend-module-gitlab-provider": "npm:^0.3.2" + "@backstage/plugin-auth-backend-module-google-provider": "npm:^0.3.2" + "@backstage/plugin-auth-backend-module-microsoft-provider": "npm:^0.3.2" + "@backstage/plugin-auth-backend-module-oauth2-provider": "npm:^0.4.2" + "@backstage/plugin-auth-backend-module-oauth2-proxy-provider": "npm:^0.2.7" + "@backstage/plugin-auth-backend-module-oidc-provider": "npm:^0.4.2" + "@backstage/plugin-auth-backend-module-okta-provider": "npm:^0.2.2" + "@backstage/plugin-auth-backend-module-onelogin-provider": "npm:^0.3.2" + "@backstage/plugin-auth-node": "npm:^0.6.2" + "@backstage/plugin-catalog-node": "npm:^1.16.3" "@backstage/types": "npm:^1.2.1" "@google-cloud/firestore": "npm:^7.0.0" "@node-saml/passport-saml": "npm:^5.0.0" @@ -4141,7 +4143,7 @@ __metadata: uuid: "npm:^11.0.0" winston: "npm:^3.2.1" yn: "npm:^4.0.0" - checksum: 10/5de61e515118e1ad10c10afbe5a173b218d59ab51263623e55b2bf8a133295c000184e8be223482515aaea83bf1c9ed4400b033a608a90c28749c5bcae4426c3 + checksum: 10/1c66b4748f919df5184a7e3169fbcb2d06c09ea043027032ba88581453f5fcba86bb03777c6d89471d41b9a25a98ce81d958fa1b1b24364a6bbf92564a839b8a languageName: node linkType: hard @@ -4170,11 +4172,11 @@ __metadata: languageName: node linkType: hard -"@backstage/plugin-auth-node@npm:^0.6.1": - version: 0.6.1 - resolution: "@backstage/plugin-auth-node@npm:0.6.1" +"@backstage/plugin-auth-node@npm:^0.6.2": + version: 0.6.2 + resolution: "@backstage/plugin-auth-node@npm:0.6.2" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/catalog-client": "npm:^1.9.1" "@backstage/catalog-model": "npm:^1.7.3" "@backstage/config": "npm:^1.3.2" @@ -4189,41 +4191,41 @@ __metadata: zod: "npm:^3.22.4" zod-to-json-schema: "npm:^3.21.4" zod-validation-error: "npm:^3.4.0" - checksum: 10/b16ec60691e584acc138e8fb7fcadbded16e06bb5deb3dfaf7b458880cf4a2fa917045ef4091e13cb1c9dbf49035ea01e6948cf5d826d60ec9fefa529f0bc3d4 + checksum: 10/831b07fa41df68855f9a107a78c70d34986ddc7e12eac70cd3cdecb42b1297a65f0e6061549b12653704966887a5cd0199c7d69588e48a461dd74559d890aaa7 languageName: node linkType: hard -"@backstage/plugin-catalog-backend-module-scaffolder-entity-model@npm:^0.2.6": - version: 0.2.6 - resolution: "@backstage/plugin-catalog-backend-module-scaffolder-entity-model@npm:0.2.6" +"@backstage/plugin-catalog-backend-module-scaffolder-entity-model@npm:^0.2.7": + version: 0.2.7 + resolution: "@backstage/plugin-catalog-backend-module-scaffolder-entity-model@npm:0.2.7" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/catalog-model": "npm:^1.7.3" "@backstage/plugin-catalog-common": "npm:^1.1.3" - "@backstage/plugin-catalog-node": "npm:^1.16.1" + "@backstage/plugin-catalog-node": "npm:^1.16.3" "@backstage/plugin-scaffolder-common": "npm:^1.5.10" - checksum: 10/d05b9083031968b7e703dba61ae426ae2b0aeb955021e5b477645b2ab864d9f3697c21e2aded77d428e490fa832ddd6df4a8ff270d527a3edcc82a6454fcbd8e + checksum: 10/43cee9c8a64167cb81ede86ecabdd1894e7d49330ac703f119a83006889fb44619b07e13c880507196919382285c3752dc63c4c226fd6ea941747f05e79c5596 languageName: node linkType: hard -"@backstage/plugin-catalog-backend@npm:^1.32.0": - version: 1.32.0 - resolution: "@backstage/plugin-catalog-backend@npm:1.32.0" +"@backstage/plugin-catalog-backend@npm:^1.32.1": + version: 1.32.1 + resolution: "@backstage/plugin-catalog-backend@npm:1.32.1" dependencies: "@backstage/backend-common": "npm:^0.25.0" - "@backstage/backend-openapi-utils": "npm:^0.5.1" - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-openapi-utils": "npm:^0.5.2" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/catalog-client": "npm:^1.9.1" "@backstage/catalog-model": "npm:^1.7.3" "@backstage/config": "npm:^1.3.2" "@backstage/errors": "npm:^1.2.7" - "@backstage/integration": "npm:^1.16.2" + "@backstage/integration": "npm:^1.16.3" "@backstage/plugin-catalog-common": "npm:^1.1.3" - "@backstage/plugin-catalog-node": "npm:^1.16.1" - "@backstage/plugin-events-node": "npm:^0.4.9" + "@backstage/plugin-catalog-node": "npm:^1.16.3" + "@backstage/plugin-events-node": "npm:^0.4.10" "@backstage/plugin-permission-common": "npm:^0.8.4" - "@backstage/plugin-permission-node": "npm:^0.9.0" - "@backstage/plugin-search-backend-module-catalog": "npm:^0.3.2" + "@backstage/plugin-permission-node": "npm:^0.9.1" + "@backstage/plugin-search-backend-module-catalog": "npm:^0.3.3" "@backstage/plugin-search-common": "npm:^1.2.17" "@backstage/types": "npm:^1.2.1" "@opentelemetry/api": "npm:^1.9.0" @@ -4245,7 +4247,7 @@ __metadata: yaml: "npm:^2.0.0" yn: "npm:^4.0.0" zod: "npm:^3.22.4" - checksum: 10/4acde1d7fc6c4940547f74fdd1332e0dcdcfb27f1799db135ac217be5cb467455eaa5efaf806e9ea51dc430d825b45c8cab53e9a61b056fc5c0a868a4ebfe17e + checksum: 10/1afb7ea76ea22b1ef90a3e8d550b38e6f9e836357a0f9f41ac0adacb2e1b14ebe7bffa8aad7226519b859b440c5f17e78358d0b129847e4532364789c92fe3f3 languageName: node linkType: hard @@ -4260,17 +4262,17 @@ __metadata: languageName: node linkType: hard -"@backstage/plugin-catalog-graph@npm:^0.4.17": - version: 0.4.17 - resolution: "@backstage/plugin-catalog-graph@npm:0.4.17" +"@backstage/plugin-catalog-graph@npm:^0.4.18": + version: 0.4.18 + resolution: "@backstage/plugin-catalog-graph@npm:0.4.18" dependencies: "@backstage/catalog-client": "npm:^1.9.1" "@backstage/catalog-model": "npm:^1.7.3" - "@backstage/core-compat-api": "npm:^0.4.0" - "@backstage/core-components": "npm:^0.17.0" - "@backstage/core-plugin-api": "npm:^1.10.5" - "@backstage/frontend-plugin-api": "npm:^0.10.0" - "@backstage/plugin-catalog-react": "npm:^1.16.0" + "@backstage/core-compat-api": "npm:^0.4.1" + "@backstage/core-components": "npm:^0.17.1" + "@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/types": "npm:^1.2.1" "@material-ui/core": "npm:^4.12.2" "@material-ui/icons": "npm:^4.9.1" @@ -4288,42 +4290,42 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10/1c3149e10e565ac1661d3dbdd927ea3e85b83e6368761981f5270caaa7787ad2e606754a2e227afd8d70959ea33d5602f36efe2a02939dd485e4890e51ea4b7c + checksum: 10/1045bf9dcf835da7b04c1a6bdf409ec46a3ad1723670cb8b278872fa071897e2e217e44c178c6f10cae2dfd715ede189d04db29fbcb878f32a0cd10d7e2d41b6 languageName: node linkType: hard -"@backstage/plugin-catalog-node@npm:^1.16.1": - version: 1.16.1 - resolution: "@backstage/plugin-catalog-node@npm:1.16.1" +"@backstage/plugin-catalog-node@npm:^1.16.3": + version: 1.16.3 + resolution: "@backstage/plugin-catalog-node@npm:1.16.3" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/catalog-client": "npm:^1.9.1" "@backstage/catalog-model": "npm:^1.7.3" "@backstage/errors": "npm:^1.2.7" "@backstage/plugin-catalog-common": "npm:^1.1.3" "@backstage/plugin-permission-common": "npm:^0.8.4" - "@backstage/plugin-permission-node": "npm:^0.9.0" + "@backstage/plugin-permission-node": "npm:^0.9.1" "@backstage/types": "npm:^1.2.1" - checksum: 10/b0331b54fbec6411d3d8fbe26eb0da46392031f2486799dc7a69f60d7dcb15c9431fe7fa914564fda4647314751fd86af4bbe7a7d3e7cf438b1b79ae1dc65554 + checksum: 10/c25cc0737b5daafa1a92aebbd766bdfd5a32347023b221f92fd70f8d3f3246a3a59c129d17750f39ebb6d77676f851cfa8e062c9c12f2b44585563cef5907f34 languageName: node linkType: hard -"@backstage/plugin-catalog-react@npm:^1.16.0": - version: 1.16.0 - resolution: "@backstage/plugin-catalog-react@npm:1.16.0" +"@backstage/plugin-catalog-react@npm:^1.17.0": + version: 1.17.0 + resolution: "@backstage/plugin-catalog-react@npm:1.17.0" dependencies: "@backstage/catalog-client": "npm:^1.9.1" "@backstage/catalog-model": "npm:^1.7.3" - "@backstage/core-compat-api": "npm:^0.4.0" - "@backstage/core-components": "npm:^0.17.0" - "@backstage/core-plugin-api": "npm:^1.10.5" + "@backstage/core-compat-api": "npm:^0.4.1" + "@backstage/core-components": "npm:^0.17.1" + "@backstage/core-plugin-api": "npm:^1.10.6" "@backstage/errors": "npm:^1.2.7" - "@backstage/frontend-plugin-api": "npm:^0.10.0" - "@backstage/frontend-test-utils": "npm:^0.3.0" - "@backstage/integration-react": "npm:^1.2.5" + "@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.32" + "@backstage/plugin-permission-react": "npm:^0.4.33" "@backstage/types": "npm:^1.2.1" "@backstage/version-bridge": "npm:^1.0.11" "@material-ui/core": "npm:^4.12.2" @@ -4345,29 +4347,30 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10/0149b99ede5d563cd81dfa1d657cf332af2cbb3e6ff2e88244c4b3c59e2109264c62e3a6903ee471596a3c709294b81fe2da83513d79690704fb37f6cf67d305 + checksum: 10/025ed43087462b021c13eac7fc762ad7d52d8ebb593da0093130e6379a79ac1b428fa9024eb21ace9bdf1d43ecafcab39226dbbf2b44ba35a6c93a9ddb04f1da languageName: node linkType: hard -"@backstage/plugin-catalog@npm:^1.28.0": - version: 1.28.0 - resolution: "@backstage/plugin-catalog@npm:1.28.0" +"@backstage/plugin-catalog@npm:^1.29.0": + version: 1.29.0 + resolution: "@backstage/plugin-catalog@npm:1.29.0" dependencies: "@backstage/catalog-client": "npm:^1.9.1" "@backstage/catalog-model": "npm:^1.7.3" - "@backstage/core-compat-api": "npm:^0.4.0" - "@backstage/core-components": "npm:^0.17.0" - "@backstage/core-plugin-api": "npm:^1.10.5" + "@backstage/core-compat-api": "npm:^0.4.1" + "@backstage/core-components": "npm:^0.17.1" + "@backstage/core-plugin-api": "npm:^1.10.6" "@backstage/errors": "npm:^1.2.7" - "@backstage/frontend-plugin-api": "npm:^0.10.0" - "@backstage/integration-react": "npm:^1.2.5" + "@backstage/frontend-plugin-api": "npm:^0.10.1" + "@backstage/integration-react": "npm:^1.2.6" "@backstage/plugin-catalog-common": "npm:^1.1.3" - "@backstage/plugin-catalog-react": "npm:^1.16.0" - "@backstage/plugin-permission-react": "npm:^0.4.32" + "@backstage/plugin-catalog-react": "npm:^1.17.0" + "@backstage/plugin-permission-react": "npm:^0.4.33" "@backstage/plugin-scaffolder-common": "npm:^1.5.10" "@backstage/plugin-search-common": "npm:^1.2.17" - "@backstage/plugin-search-react": "npm:^1.8.7" + "@backstage/plugin-search-react": "npm:^1.8.8" "@backstage/types": "npm:^1.2.1" + "@backstage/version-bridge": "npm:^1.0.11" "@material-ui/core": "npm:^4.12.2" "@material-ui/icons": "npm:^4.9.1" "@material-ui/lab": "npm:4.0.0-alpha.61" @@ -4388,15 +4391,15 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10/9f6f9c6261f6e1767b9bb39dbc29bcae4a56778f9ee06fdc6d9abcd406424d6412508ba5f9b9db544fad53320c16bd2f99d3a53fe7f7e169ead683730d288ba8 + checksum: 10/636b31d62ea033f97cc02459aaa7b6939dde8e419908423497c7865cba734002de8d1647a7a45a6533dfc6e9564390cf9275d8b00ba7dfb1767193b2d5ae663b languageName: node linkType: hard -"@backstage/plugin-events-node@npm:^0.4.9": - version: 0.4.9 - resolution: "@backstage/plugin-events-node@npm:0.4.9" +"@backstage/plugin-events-node@npm:^0.4.10": + version: 0.4.10 + resolution: "@backstage/plugin-events-node@npm:0.4.10" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/errors": "npm:^1.2.7" "@backstage/types": "npm:^1.2.1" "@types/content-type": "npm:^1.1.8" @@ -4405,31 +4408,31 @@ __metadata: cross-fetch: "npm:^4.0.0" express: "npm:^4.17.1" uri-template: "npm:^2.0.0" - checksum: 10/5df184b0473a095c32f5f53416efb5f20cc40f40af67816a88fec816a48ccce55942d10e8624c37b3198f2289906308050b2cdd7c31e1a8eefbf20e926ef6746 + checksum: 10/c2e556198def33a2f1eb99d181ac9c268b76b56f63a0793c8041d3603eb881102debb1ac6b97b23b9c4e6f4c7aa45e319a8fa6ea5821912c8ced5552bd56a94b languageName: node linkType: hard -"@backstage/plugin-kubernetes-backend@npm:^0.19.4": - version: 0.19.4 - resolution: "@backstage/plugin-kubernetes-backend@npm:0.19.4" +"@backstage/plugin-kubernetes-backend@npm:^0.19.5": + version: 0.19.5 + resolution: "@backstage/plugin-kubernetes-backend@npm:0.19.5" dependencies: "@aws-crypto/sha256-js": "npm:^5.0.0" "@aws-sdk/credential-providers": "npm:^3.350.0" "@aws-sdk/signature-v4": "npm:^3.347.0" "@azure/identity": "npm:^4.0.0" "@backstage/backend-common": "npm:^0.25.0" - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/catalog-client": "npm:^1.9.1" "@backstage/catalog-model": "npm:^1.7.3" "@backstage/config": "npm:^1.3.2" "@backstage/errors": "npm:^1.2.7" "@backstage/integration-aws-node": "npm:^0.1.15" - "@backstage/plugin-auth-node": "npm:^0.6.1" - "@backstage/plugin-catalog-node": "npm:^1.16.1" + "@backstage/plugin-auth-node": "npm:^0.6.2" + "@backstage/plugin-catalog-node": "npm:^1.16.3" "@backstage/plugin-kubernetes-common": "npm:^0.9.4" - "@backstage/plugin-kubernetes-node": "npm:^0.2.4" + "@backstage/plugin-kubernetes-node": "npm:^0.2.5" "@backstage/plugin-permission-common": "npm:^0.8.4" - "@backstage/plugin-permission-node": "npm:^0.9.0" + "@backstage/plugin-permission-node": "npm:^0.9.1" "@backstage/types": "npm:^1.2.1" "@google-cloud/container": "npm:^5.0.0" "@jest-mock/express": "npm:^2.0.1" @@ -4451,7 +4454,7 @@ __metadata: stream-buffers: "npm:^3.0.2" winston: "npm:^3.2.1" yn: "npm:^4.0.0" - checksum: 10/ae349541299c8f66a4d93600c7fb1346c88b484f6890b2264b956160e3e323a31147a7c3bd05f07fb5232a89b90d34db1bb80141a9dea7472fd29df5d04f0672 + checksum: 10/e6d94ef1b91fd1d4143a1d410cd360cca4a2dc70839ec5bfb29230a2ab777375ed1feb6df88944a6db6a4073bc90191c06c73352baf02a53a7c3fb0b7cf26b93 languageName: node linkType: hard @@ -4470,28 +4473,28 @@ __metadata: languageName: node linkType: hard -"@backstage/plugin-kubernetes-node@npm:^0.2.4": - version: 0.2.4 - resolution: "@backstage/plugin-kubernetes-node@npm:0.2.4" +"@backstage/plugin-kubernetes-node@npm:^0.2.5": + version: 0.2.5 + resolution: "@backstage/plugin-kubernetes-node@npm:0.2.5" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/catalog-model": "npm:^1.7.3" "@backstage/plugin-kubernetes-common": "npm:^0.9.4" "@backstage/types": "npm:^1.2.1" "@kubernetes/client-node": "npm:1.0.0-rc7" node-fetch: "npm:^2.7.0" winston: "npm:^3.2.1" - checksum: 10/03291567c52ca4334727624a86d6e3526ad121ca3c1981be26e917605f7069ae1eab4c36b42a53411af60b9dc6baf1c37cc90ca1608a0f8afe19bc49400eb5c3 + checksum: 10/054816badc47b2b8e2711179b6bd839a856e1b53904575f2f57d8eabfecc3749f44a885b50b19c1944c6a64a56f661fab8d68c1d2f5c47864a7370c61818095d languageName: node linkType: hard -"@backstage/plugin-kubernetes-react@npm:^0.5.5": - version: 0.5.5 - resolution: "@backstage/plugin-kubernetes-react@npm:0.5.5" +"@backstage/plugin-kubernetes-react@npm:^0.5.6": + version: 0.5.6 + resolution: "@backstage/plugin-kubernetes-react@npm:0.5.6" dependencies: "@backstage/catalog-model": "npm:^1.7.3" - "@backstage/core-components": "npm:^0.17.0" - "@backstage/core-plugin-api": "npm:^1.10.5" + "@backstage/core-components": "npm:^0.17.1" + "@backstage/core-plugin-api": "npm:^1.10.6" "@backstage/errors": "npm:^1.2.7" "@backstage/plugin-kubernetes-common": "npm:^0.9.4" "@backstage/types": "npm:^1.2.1" @@ -4518,23 +4521,23 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10/ca7404149063af67533f0a2b2a2b0063efb065b9362e73248aeeddad8f7c88824d19dc26ffb75c2b767d063cd667b04de596f0fb672c47366c1973a68332ca66 + checksum: 10/63ede985abefc84e31f747873936794dc9f76cc18505848b516528c2f0b585a9c41b9a10c0f93d4414a4d78a01dab7a5c0b8e6cf262d0fcea85adc1f9a4cf379 languageName: node linkType: hard -"@backstage/plugin-kubernetes@npm:^0.12.5": - version: 0.12.5 - resolution: "@backstage/plugin-kubernetes@npm:0.12.5" +"@backstage/plugin-kubernetes@npm:^0.12.6": + version: 0.12.6 + resolution: "@backstage/plugin-kubernetes@npm:0.12.6" dependencies: "@backstage/catalog-model": "npm:^1.7.3" - "@backstage/core-compat-api": "npm:^0.4.0" - "@backstage/core-components": "npm:^0.17.0" - "@backstage/core-plugin-api": "npm:^1.10.5" - "@backstage/frontend-plugin-api": "npm:^0.10.0" - "@backstage/plugin-catalog-react": "npm:^1.16.0" + "@backstage/core-compat-api": "npm:^0.4.1" + "@backstage/core-components": "npm:^0.17.1" + "@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/plugin-kubernetes-common": "npm:^0.9.4" - "@backstage/plugin-kubernetes-react": "npm:^0.5.5" - "@backstage/plugin-permission-react": "npm:^0.4.32" + "@backstage/plugin-kubernetes-react": "npm:^0.5.6" + "@backstage/plugin-permission-react": "npm:^0.4.33" "@kubernetes-models/apimachinery": "npm:^2.0.0" "@kubernetes-models/base": "npm:^5.0.0" "@kubernetes/client-node": "npm:1.0.0-rc7" @@ -4555,33 +4558,33 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10/f899d8e8ca7046821a858e4de23b6a58646bc78577c97eba292a1f01a112b890d7c5ffa09e7b890123de2bf25dd210d2622e35da8ddb7acaa32376b0fe8ed95e + checksum: 10/0d7f460ef168cf78c315591f8f9a8ebbb50f7b5b6941c78e26070dd90a3f931d058872604fdaab018b82ace83a0bbaef51e613f87df40bc0783f940f3d39b418 languageName: node linkType: hard -"@backstage/plugin-permission-backend-module-allow-all-policy@npm:^0.2.6": - version: 0.2.6 - resolution: "@backstage/plugin-permission-backend-module-allow-all-policy@npm:0.2.6" +"@backstage/plugin-permission-backend-module-allow-all-policy@npm:^0.2.7": + version: 0.2.7 + resolution: "@backstage/plugin-permission-backend-module-allow-all-policy@npm:0.2.7" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" - "@backstage/plugin-auth-node": "npm:^0.6.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" + "@backstage/plugin-auth-node": "npm:^0.6.2" "@backstage/plugin-permission-common": "npm:^0.8.4" - "@backstage/plugin-permission-node": "npm:^0.9.0" - checksum: 10/66d068fbb51a83653a28cbe5a0c1e3a33e97016cd9800471c7ea6d02441d5c4c6ef612c6a6c46e8f2557a99b7702994a34e9bac3aec83e24d0c602fcc1844b30 + "@backstage/plugin-permission-node": "npm:^0.9.1" + checksum: 10/78e70a8edd1deee4b27d9718f6e57e7371292d540f6c6b8dbebe5c79704ec386f6eddc6fa3b6e04098ed6a7ec88c2d45065c5cc65ce698ddd8afce7ca7d6e763 languageName: node linkType: hard -"@backstage/plugin-permission-backend@npm:^0.5.55": - version: 0.5.55 - resolution: "@backstage/plugin-permission-backend@npm:0.5.55" +"@backstage/plugin-permission-backend@npm:^0.6.0": + version: 0.6.0 + resolution: "@backstage/plugin-permission-backend@npm:0.6.0" dependencies: "@backstage/backend-common": "npm:^0.25.0" - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/config": "npm:^1.3.2" "@backstage/errors": "npm:^1.2.7" - "@backstage/plugin-auth-node": "npm:^0.6.1" + "@backstage/plugin-auth-node": "npm:^0.6.2" "@backstage/plugin-permission-common": "npm:^0.8.4" - "@backstage/plugin-permission-node": "npm:^0.9.0" + "@backstage/plugin-permission-node": "npm:^0.9.1" "@types/express": "npm:^4.17.6" dataloader: "npm:^2.0.0" express: "npm:^4.17.1" @@ -4589,7 +4592,7 @@ __metadata: lodash: "npm:^4.17.21" yn: "npm:^4.0.0" zod: "npm:^3.22.4" - checksum: 10/6a1bf0268cfeb2b80b603eb292e207cb1b572cc238d6dcff21e420dbab9c124c88c2896bb40afcff6395939ef9c0cfc10f5800bc05873a4a035e6358ba75abbc + checksum: 10/00698984f9d86aa162f916a08543c504f74de2d44dc6a60d5f8194bb8d634a13e071e151b9e733daf8873a5abb6a9a0f736396880dd1a68a57185b713d06b943 languageName: node linkType: hard @@ -4608,30 +4611,30 @@ __metadata: languageName: node linkType: hard -"@backstage/plugin-permission-node@npm:^0.9.0": - version: 0.9.0 - resolution: "@backstage/plugin-permission-node@npm:0.9.0" +"@backstage/plugin-permission-node@npm:^0.9.1": + version: 0.9.1 + resolution: "@backstage/plugin-permission-node@npm:0.9.1" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/config": "npm:^1.3.2" "@backstage/errors": "npm:^1.2.7" - "@backstage/plugin-auth-node": "npm:^0.6.1" + "@backstage/plugin-auth-node": "npm:^0.6.2" "@backstage/plugin-permission-common": "npm:^0.8.4" "@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/677e09c440c0661f8554bf244fc1e8396a6a36473a602a221546c496730e05d80987ba4ca463a8e0a60ce99ada8a5fc8df9a8f9434599c64ff872ab50552c783 + checksum: 10/3292951e8cdcc4341ba53e67bcc580d77da14e1e3224b9323671704b7329a3a9e45905e3cc5afb8bff33462178ddf7c3a510392c048ce125f374910622e91bd4 languageName: node linkType: hard -"@backstage/plugin-permission-react@npm:^0.4.32": - version: 0.4.32 - resolution: "@backstage/plugin-permission-react@npm:0.4.32" +"@backstage/plugin-permission-react@npm:^0.4.33": + version: 0.4.33 + resolution: "@backstage/plugin-permission-react@npm:0.4.33" dependencies: "@backstage/config": "npm:^1.3.2" - "@backstage/core-plugin-api": "npm:^1.10.5" + "@backstage/core-plugin-api": "npm:^1.10.6" "@backstage/plugin-permission-common": "npm:^0.8.4" swr: "npm:^2.0.0" peerDependencies: @@ -4642,7 +4645,7 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10/c3e145b8a7817962daac1be78a733b943fe530484182ed83201d260af7027dc649222c625d3c8fb5861c64200152afa1b41d57d3b4602ef8d7619d6c740207c7 + checksum: 10/552bba79e3876ec48faf40df1c7f05f5b183130b3b214101b1dd48f519b6846867457ae458daeb20e74b8d8c805f4615c8a1c2d670e2f69f463cb484a408f16b languageName: node linkType: hard @@ -4657,49 +4660,49 @@ __metadata: languageName: node linkType: hard -"@backstage/plugin-search-backend-module-catalog@npm:^0.3.2": - version: 0.3.2 - resolution: "@backstage/plugin-search-backend-module-catalog@npm:0.3.2" +"@backstage/plugin-search-backend-module-catalog@npm:^0.3.3": + version: 0.3.3 + resolution: "@backstage/plugin-search-backend-module-catalog@npm:0.3.3" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/catalog-client": "npm:^1.9.1" "@backstage/catalog-model": "npm:^1.7.3" "@backstage/config": "npm:^1.3.2" "@backstage/errors": "npm:^1.2.7" "@backstage/plugin-catalog-common": "npm:^1.1.3" - "@backstage/plugin-catalog-node": "npm:^1.16.1" + "@backstage/plugin-catalog-node": "npm:^1.16.3" "@backstage/plugin-permission-common": "npm:^0.8.4" - "@backstage/plugin-search-backend-node": "npm:^1.3.9" + "@backstage/plugin-search-backend-node": "npm:^1.3.10" "@backstage/plugin-search-common": "npm:^1.2.17" - checksum: 10/3222d2dc2b64f1342daae3c8e2ea80f37a1fc8a141dddddc1b366ca63a0e10053ad4fea71e975b434ff3e8453652053c0b0ff74e8bbd972f3908936b365e2dda + checksum: 10/b467a1894538a9047d321575aa76ba10393b0c168bbf2e94d6b6df63fa6e348b8b7e2525109aa7bebdb6b8a514c92b60e0903febf40ea22b28cc53cda21acd95 languageName: node linkType: hard -"@backstage/plugin-search-backend-module-techdocs@npm:^0.4.0": - version: 0.4.0 - resolution: "@backstage/plugin-search-backend-module-techdocs@npm:0.4.0" +"@backstage/plugin-search-backend-module-techdocs@npm:^0.4.1": + version: 0.4.1 + resolution: "@backstage/plugin-search-backend-module-techdocs@npm:0.4.1" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/catalog-client": "npm:^1.9.1" "@backstage/catalog-model": "npm:^1.7.3" "@backstage/config": "npm:^1.3.2" "@backstage/plugin-catalog-common": "npm:^1.1.3" - "@backstage/plugin-catalog-node": "npm:^1.16.1" + "@backstage/plugin-catalog-node": "npm:^1.16.3" "@backstage/plugin-permission-common": "npm:^0.8.4" - "@backstage/plugin-search-backend-node": "npm:^1.3.9" + "@backstage/plugin-search-backend-node": "npm:^1.3.10" "@backstage/plugin-search-common": "npm:^1.2.17" - "@backstage/plugin-techdocs-node": "npm:^1.13.1" + "@backstage/plugin-techdocs-node": "npm:^1.13.2" lodash: "npm:^4.17.21" p-limit: "npm:^3.1.0" - checksum: 10/2bde8e31a5c418db6e557d42b2a4ae555924104a32ebac2607987c285d1756019db261664efe2ebb5351da305460742a7e4b1a12c16131c89522ef3a024075c6 + checksum: 10/039a8942875e4ca51097bd0676c0b562d348d7b4c980b040be00acbd62a7037a63acf54e9c3c45633f8e22c487e3a75dd2fa80354faa1da4c80e9cb0279b91b6 languageName: node linkType: hard -"@backstage/plugin-search-backend-node@npm:^1.3.9": - version: 1.3.9 - resolution: "@backstage/plugin-search-backend-node@npm:1.3.9" +"@backstage/plugin-search-backend-node@npm:^1.3.10": + version: 1.3.10 + resolution: "@backstage/plugin-search-backend-node@npm:1.3.10" dependencies: - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/config": "npm:^1.3.2" "@backstage/errors": "npm:^1.2.7" "@backstage/plugin-permission-common": "npm:^0.8.4" @@ -4709,7 +4712,7 @@ __metadata: lunr: "npm:^2.3.9" ndjson: "npm:^2.0.0" uuid: "npm:^11.0.0" - checksum: 10/4b244aa1ae61c9941b18eff32484256a2a8153c3551df149ef1067c935e7dc8e67267546dc03e0061af5ff4ff1596ca041ee0c5c93defbb8eb5ab0050bacfbf9 + checksum: 10/4904620378d45153f069934a63f5a596e844f30e6a089a903508a65e939b1f0d265bc256a3ec71d4ae94d01b021785821952f682d10af32d6fddbcc83f352e9e languageName: node linkType: hard @@ -4723,15 +4726,15 @@ __metadata: languageName: node linkType: hard -"@backstage/plugin-search-react@npm:^1.8.7": - version: 1.8.7 - resolution: "@backstage/plugin-search-react@npm:1.8.7" +"@backstage/plugin-search-react@npm:^1.8.8": + version: 1.8.8 + resolution: "@backstage/plugin-search-react@npm:1.8.8" dependencies: - "@backstage/core-components": "npm:^0.17.0" - "@backstage/core-plugin-api": "npm:^1.10.5" - "@backstage/frontend-plugin-api": "npm:^0.10.0" + "@backstage/core-components": "npm:^0.17.1" + "@backstage/core-plugin-api": "npm:^1.10.6" + "@backstage/frontend-plugin-api": "npm:^0.10.1" "@backstage/plugin-search-common": "npm:^1.2.17" - "@backstage/theme": "npm:^0.6.4" + "@backstage/theme": "npm:^0.6.5" "@backstage/types": "npm:^1.2.1" "@backstage/version-bridge": "npm:^1.0.11" "@material-ui/core": "npm:^4.12.2" @@ -4749,15 +4752,15 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10/e28ded817f02679f04dcd74536579f94f71d2617f7cbab69fbace0eb34d502359e3f1a7edba947bfd82b8a3f0f51a552453c9ef1eb670800c6d698d90760eafb + checksum: 10/8ed0979eb113225c1de21c14c16d808c6f5fba1148f4b16689fb4288744b605036fd8c21cadc38837f90be53afcd2482a577a4f33af77b5a4e929840b96680b7 languageName: node linkType: hard -"@backstage/plugin-signals-react@npm:^0.0.11": - version: 0.0.11 - resolution: "@backstage/plugin-signals-react@npm:0.0.11" +"@backstage/plugin-signals-react@npm:^0.0.12": + version: 0.0.12 + resolution: "@backstage/plugin-signals-react@npm:0.0.12" dependencies: - "@backstage/core-plugin-api": "npm:^1.10.5" + "@backstage/core-plugin-api": "npm:^1.10.6" "@backstage/types": "npm:^1.2.1" "@material-ui/core": "npm:^4.12.4" peerDependencies: @@ -4768,27 +4771,27 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10/9b67c36bb1db75088d24b95a4f6c26a8bca25c92a1152136e7a03d64604363f7085580190af9acc8aaa741e793119918752e3d9057e734da422273f2667fe15c + checksum: 10/ec2793ad36ed11f06a62ac86c84e347a446ae550c47888a79e266b35445a2f89b40b9dc1392d382d1ce772bd2ee7d7e00b6040580bccaea1a63804437c0ea28e languageName: node linkType: hard -"@backstage/plugin-techdocs-backend@npm:^2.0.0": - version: 2.0.0 - resolution: "@backstage/plugin-techdocs-backend@npm:2.0.0" +"@backstage/plugin-techdocs-backend@npm:^2.0.1": + version: 2.0.1 + resolution: "@backstage/plugin-techdocs-backend@npm:2.0.1" dependencies: - "@backstage/backend-defaults": "npm:^0.8.2" - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-defaults": "npm:^0.9.0" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/catalog-client": "npm:^1.9.1" "@backstage/catalog-model": "npm:^1.7.3" "@backstage/config": "npm:^1.3.2" "@backstage/errors": "npm:^1.2.7" - "@backstage/integration": "npm:^1.16.2" + "@backstage/integration": "npm:^1.16.3" "@backstage/plugin-catalog-common": "npm:^1.1.3" - "@backstage/plugin-catalog-node": "npm:^1.16.1" + "@backstage/plugin-catalog-node": "npm:^1.16.3" "@backstage/plugin-permission-common": "npm:^0.8.4" - "@backstage/plugin-search-backend-module-techdocs": "npm:^0.4.0" + "@backstage/plugin-search-backend-module-techdocs": "npm:^0.4.1" "@backstage/plugin-techdocs-common": "npm:^0.1.0" - "@backstage/plugin-techdocs-node": "npm:^1.13.1" + "@backstage/plugin-techdocs-node": "npm:^1.13.2" express: "npm:^4.17.1" express-promise-router: "npm:^4.1.0" fs-extra: "npm:^11.2.0" @@ -4796,7 +4799,7 @@ __metadata: lodash: "npm:^4.17.21" p-limit: "npm:^3.1.0" winston: "npm:^3.2.1" - checksum: 10/ec5ce0d2d29d4811e1eab13e38e4d041b294fed4cfde2084630d5f20d0b289d34423e2c1ba6384414d0b092a24734546a8fe55f827b10dc5ecf9a1320bcaafaa + checksum: 10/6e7072e3ac892fb77dd65bd9e1df9cdf03dc6d1b63ff65d73e69030cde594d9c495a16ac9ebffdbab3537d65b348d9a2ec428122b2d36378d3fb7fb9bd81c106 languageName: node linkType: hard @@ -4807,9 +4810,9 @@ __metadata: languageName: node linkType: hard -"@backstage/plugin-techdocs-node@npm:^1.13.1": - version: 1.13.1 - resolution: "@backstage/plugin-techdocs-node@npm:1.13.1" +"@backstage/plugin-techdocs-node@npm:^1.13.2": + version: 1.13.2 + resolution: "@backstage/plugin-techdocs-node@npm:1.13.2" dependencies: "@aws-sdk/client-s3": "npm:^3.350.0" "@aws-sdk/credential-providers": "npm:^3.350.0" @@ -4817,11 +4820,11 @@ __metadata: "@aws-sdk/types": "npm:^3.347.0" "@azure/identity": "npm:^4.0.0" "@azure/storage-blob": "npm:^12.5.0" - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/catalog-model": "npm:^1.7.3" "@backstage/config": "npm:^1.3.2" "@backstage/errors": "npm:^1.2.7" - "@backstage/integration": "npm:^1.16.2" + "@backstage/integration": "npm:^1.16.3" "@backstage/integration-aws-node": "npm:^0.1.15" "@backstage/plugin-search-common": "npm:^1.2.17" "@backstage/plugin-techdocs-common": "npm:^0.1.0" @@ -4840,7 +4843,7 @@ __metadata: p-limit: "npm:^3.1.0" recursive-readdir: "npm:^2.2.2" winston: "npm:^3.2.1" - checksum: 10/63a6d45a3bd04ec130a4782895c7bfea18a7773e34eacf6489478823b86e07ff0922a3311bf27343de2d3a850e3ec986ebfd649093a64c7ad78dfcd112c307a7 + checksum: 10/4cee3000473748cf6839d04432d056341e7b85140f2fac10b2056c38a6cbe30e754912028b09d8420c6063ce26b61656221ef8b234e7ed506d5fe848c1c76408 languageName: node linkType: hard @@ -4851,21 +4854,21 @@ __metadata: languageName: node linkType: hard -"@backstage/plugin-user-settings@npm:^0.8.20": - version: 0.8.20 - resolution: "@backstage/plugin-user-settings@npm:0.8.20" +"@backstage/plugin-user-settings@npm:^0.8.21": + version: 0.8.21 + resolution: "@backstage/plugin-user-settings@npm:0.8.21" dependencies: "@backstage/catalog-model": "npm:^1.7.3" - "@backstage/core-app-api": "npm:^1.16.0" - "@backstage/core-compat-api": "npm:^0.4.0" - "@backstage/core-components": "npm:^0.17.0" - "@backstage/core-plugin-api": "npm:^1.10.5" + "@backstage/core-app-api": "npm:^1.16.1" + "@backstage/core-compat-api": "npm:^0.4.1" + "@backstage/core-components": "npm:^0.17.1" + "@backstage/core-plugin-api": "npm:^1.10.6" "@backstage/errors": "npm:^1.2.7" - "@backstage/frontend-plugin-api": "npm:^0.10.0" - "@backstage/plugin-catalog-react": "npm:^1.16.0" - "@backstage/plugin-signals-react": "npm:^0.0.11" + "@backstage/frontend-plugin-api": "npm:^0.10.1" + "@backstage/plugin-catalog-react": "npm:^1.17.0" + "@backstage/plugin-signals-react": "npm:^0.0.12" "@backstage/plugin-user-settings-common": "npm:^0.0.1" - "@backstage/theme": "npm:^0.6.4" + "@backstage/theme": "npm:^0.6.5" "@backstage/types": "npm:^1.2.1" "@material-ui/core": "npm:^4.12.2" "@material-ui/icons": "npm:^4.9.1" @@ -4880,7 +4883,7 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10/de4c38b75880e4f6cbe65fe1068bf23e4a1a206ef14b4c1f146690d4164fec71f884f1a7d3381b66c29ba4d9c926e4cc67c60fd23edd2ede979894e4c2b30635 + checksum: 10/a71ecf83590a3c6bc36246757649b7c13cb712a721f8e3372352f88ad02c7e150e9c9e448c6c4974784fd06efded338d9fa703a51b2d1c6bd61d21c0ff0ed7b1 languageName: node linkType: hard @@ -4891,13 +4894,13 @@ __metadata: languageName: node linkType: hard -"@backstage/repo-tools@npm:^0.13.1": - version: 0.13.1 - resolution: "@backstage/repo-tools@npm:0.13.1" +"@backstage/repo-tools@npm:^0.13.2": + version: 0.13.2 + resolution: "@backstage/repo-tools@npm:0.13.2" dependencies: "@apidevtools/swagger-parser": "npm:^10.1.0" "@apisyouwonthate/style-guide": "npm:^1.4.0" - "@backstage/backend-plugin-api": "npm:^1.2.1" + "@backstage/backend-plugin-api": "npm:^1.3.0" "@backstage/catalog-model": "npm:^1.7.3" "@backstage/cli-common": "npm:^0.1.15" "@backstage/cli-node": "npm:^0.2.13" @@ -4951,20 +4954,20 @@ __metadata: optional: true bin: backstage-repo-tools: bin/backstage-repo-tools - checksum: 10/a47da2133c1a2ab1f0d290dde629440bec1d29256cadd3bb7e645679e3e7b39e878d92cdb07116f2dc66149f85244d9e7cce177e1d918c7a1b3f5b092a985bbc + checksum: 10/d51b6d065c5481a71641d8a11a8e041b0d02e40b058a09a5caf4e3a131ca04c334707dd51c72d39e34062efd6c0a7c21eb919400ae8fdabc266dc41201807c96 languageName: node linkType: hard -"@backstage/test-utils@npm:^1.7.6": - version: 1.7.6 - resolution: "@backstage/test-utils@npm:1.7.6" +"@backstage/test-utils@npm:^1.7.7": + version: 1.7.7 + resolution: "@backstage/test-utils@npm:1.7.7" dependencies: "@backstage/config": "npm:^1.3.2" - "@backstage/core-app-api": "npm:^1.16.0" - "@backstage/core-plugin-api": "npm:^1.10.5" + "@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.32" - "@backstage/theme": "npm:^0.6.4" + "@backstage/plugin-permission-react": "npm:^0.4.33" + "@backstage/theme": "npm:^0.6.5" "@backstage/types": "npm:^1.2.1" "@material-ui/core": "npm:^4.12.2" "@material-ui/icons": "npm:^4.9.1" @@ -4980,13 +4983,13 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10/527f44b032e526da1c0262835ae9077a1fc96e7f55ba76337583296c9b91fa7ab442399c101720e03f8c939220ff012bee9ecd8048fe25eae1afcee1e7c8abbd + checksum: 10/2ffc4957e84b4c0e1328e43e05c88051026edbf8e2c9fd04f873176ecd636bc11269f36fa72933defc60d0d869986e9a2d46bba1f57e50811671d81c330bf1b1 languageName: node linkType: hard -"@backstage/theme@npm:^0.6.4": - version: 0.6.4 - resolution: "@backstage/theme@npm:0.6.4" +"@backstage/theme@npm:^0.6.5": + version: 0.6.5 + resolution: "@backstage/theme@npm:0.6.5" dependencies: "@emotion/react": "npm:^11.10.5" "@emotion/styled": "npm:^11.10.5" @@ -5000,7 +5003,7 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10/afa4a94a60136b48da5f3e994017e5a65248fa22942034831f83df0dffb4759e80c5aa9690606a8913e35a7d093747a3e50e56b5bdf2a58cb8f77d3d25ff8c70 + checksum: 10/242ccb2af6e2d1c64d4084c568c31d696d6abfdbbbd0ba35b2a9dabaae9c196b4610e2124f2c23fff16de082701901627f85b180f8a3ea2a8bcb865beb982829 languageName: node linkType: hard @@ -6482,9 +6485,9 @@ __metadata: version: 0.0.0-use.local resolution: "@internal/linkerd@workspace:." dependencies: - "@backstage/cli": "npm:^0.31.0" + "@backstage/cli": "npm:^0.32.0" "@backstage/e2e-test-utils": "npm:^0.1.1" - "@backstage/repo-tools": "npm:^0.13.1" + "@backstage/repo-tools": "npm:^0.13.2" "@changesets/cli": "npm:^2.27.1" knip: "npm:^5.27.4" node-gyp: "npm:^9.0.0" @@ -7425,46 +7428,46 @@ __metadata: languageName: node linkType: hard -"@module-federation/bridge-react-webpack-plugin@npm:0.8.5": - version: 0.8.5 - resolution: "@module-federation/bridge-react-webpack-plugin@npm:0.8.5" +"@module-federation/bridge-react-webpack-plugin@npm:0.9.1": + version: 0.9.1 + resolution: "@module-federation/bridge-react-webpack-plugin@npm:0.9.1" dependencies: - "@module-federation/sdk": "npm:0.8.5" + "@module-federation/sdk": "npm:0.9.1" "@types/semver": "npm:7.5.8" semver: "npm:7.6.3" - checksum: 10/c33e10831e18130e2a44e00eaf10a7dc81fad73f28b70316c0a2c84adb015c775c6dc5cbe8370b0f8f6c4736969acc45991c50d079740c99acefe88f12f5ed8b + checksum: 10/4ff197741b1bdccf8f9e2236781e5ce3ef434e4207c5462b4b95b044c4c57a3ab3dd4dce48490d9fde5bd06fb855b9918841c7d04306726ee224d3e288074091 languageName: node linkType: hard -"@module-federation/data-prefetch@npm:0.8.5": - version: 0.8.5 - resolution: "@module-federation/data-prefetch@npm:0.8.5" +"@module-federation/data-prefetch@npm:0.9.1": + version: 0.9.1 + resolution: "@module-federation/data-prefetch@npm:0.9.1" dependencies: - "@module-federation/runtime": "npm:0.8.5" - "@module-federation/sdk": "npm:0.8.5" + "@module-federation/runtime": "npm:0.9.1" + "@module-federation/sdk": "npm:0.9.1" fs-extra: "npm:9.1.0" peerDependencies: react: ">=16.9.0" react-dom: ">=16.9.0" - checksum: 10/34b911943b16f402e206392ac346715725b1589427310eccfabf619a32c2153ac8a6f610f984a7a5b0bae0a0ca7ed58844c39597b2db01028a98039906eca3ec + checksum: 10/a3c0e8d77f4d06e3851d041175ef3f55d47ff4069a526b9ac773c8aba71a520a0490653c87cdcf3761e96f9eb9ea16d45026f3aafdf0851c34ff4db6d71ec113 languageName: node linkType: hard -"@module-federation/dts-plugin@npm:0.8.5": - version: 0.8.5 - resolution: "@module-federation/dts-plugin@npm:0.8.5" +"@module-federation/dts-plugin@npm:0.9.1": + version: 0.9.1 + resolution: "@module-federation/dts-plugin@npm:0.9.1" dependencies: - "@module-federation/error-codes": "npm:0.8.5" - "@module-federation/managers": "npm:0.8.5" - "@module-federation/sdk": "npm:0.8.5" - "@module-federation/third-party-dts-extractor": "npm:0.8.5" + "@module-federation/error-codes": "npm:0.9.1" + "@module-federation/managers": "npm:0.9.1" + "@module-federation/sdk": "npm:0.9.1" + "@module-federation/third-party-dts-extractor": "npm:0.9.1" adm-zip: "npm:^0.5.10" ansi-colors: "npm:^4.1.3" axios: "npm:^1.7.4" chalk: "npm:3.0.0" fs-extra: "npm:9.1.0" isomorphic-ws: "npm:5.0.0" - koa: "npm:2.15.3" + koa: "npm:2.15.4" lodash.clonedeepwith: "npm:4.5.0" log4js: "npm:6.9.1" node-schedule: "npm:2.1.1" @@ -7476,22 +7479,24 @@ __metadata: peerDependenciesMeta: vue-tsc: optional: true - checksum: 10/4269a32f81ca5c4f509134acd26b499e6f69985ed9d50bf6a6888338eceb78e7c3c715e956791b9680863e14b5b2f82ea6f2c663e3c7fc3bb4acd072a51d0739 + checksum: 10/e9fd11b150456f2621636587d181f6456fe5cd60a0720843fe1310e350c3ff8ebef02ea87d1bf40dc04a4b4cd65cfb2e9007ca1c20e4e5664142b7c670c4a57d languageName: node linkType: hard -"@module-federation/enhanced@npm:^0.8.0": - version: 0.8.5 - resolution: "@module-federation/enhanced@npm:0.8.5" +"@module-federation/enhanced@npm:^0.9.0": + version: 0.9.1 + resolution: "@module-federation/enhanced@npm:0.9.1" dependencies: - "@module-federation/bridge-react-webpack-plugin": "npm:0.8.5" - "@module-federation/data-prefetch": "npm:0.8.5" - "@module-federation/dts-plugin": "npm:0.8.5" - "@module-federation/managers": "npm:0.8.5" - "@module-federation/manifest": "npm:0.8.5" - "@module-federation/rspack": "npm:0.8.5" - "@module-federation/runtime-tools": "npm:0.8.5" - "@module-federation/sdk": "npm:0.8.5" + "@module-federation/bridge-react-webpack-plugin": "npm:0.9.1" + "@module-federation/data-prefetch": "npm:0.9.1" + "@module-federation/dts-plugin": "npm:0.9.1" + "@module-federation/error-codes": "npm:0.9.1" + "@module-federation/inject-external-runtime-core-plugin": "npm:0.9.1" + "@module-federation/managers": "npm:0.9.1" + "@module-federation/manifest": "npm:0.9.1" + "@module-federation/rspack": "npm:0.9.1" + "@module-federation/runtime-tools": "npm:0.9.1" + "@module-federation/sdk": "npm:0.9.1" btoa: "npm:^1.2.1" upath: "npm:2.0.1" peerDependencies: @@ -7505,51 +7510,61 @@ __metadata: optional: true webpack: optional: true - checksum: 10/a2ca858723e8a1f611f61262901b15b0ce8973b26dafeb872b2d053a6ac2993a1e80198de34770d340a6b6deb74fe4806ddeb73735c0b016ee4eb17bca3e9e15 + checksum: 10/a7955711f37ba02a18f3570289dfd8fbed30511b82fcf593e56808559cfd49d8852028aa67950db5e45617d0917536d067d85847892e62c20b68ba6ab40e17c4 languageName: node linkType: hard -"@module-federation/error-codes@npm:0.8.5": - version: 0.8.5 - resolution: "@module-federation/error-codes@npm:0.8.5" - checksum: 10/7274b7453c200013826e0d10fbc334084a01360bd1b8f62213a062ae2b08952edfc9f58b2a3253dbd0a01ab90c78df12816b04802736f9c5ce2ca4e7a09f0fc1 +"@module-federation/error-codes@npm:0.9.1": + version: 0.9.1 + resolution: "@module-federation/error-codes@npm:0.9.1" + checksum: 10/545aecc606a506ee47f061835e0eaa41b8d1b02f6bf71b36ec9ae85a1b0370af1f7b7cf92a8f52c3c4b35da858653244316de5ab06bea5dac5b92995467631cc languageName: node linkType: hard -"@module-federation/managers@npm:0.8.5": - version: 0.8.5 - resolution: "@module-federation/managers@npm:0.8.5" +"@module-federation/inject-external-runtime-core-plugin@npm:0.9.1": + version: 0.9.1 + resolution: "@module-federation/inject-external-runtime-core-plugin@npm:0.9.1" + peerDependencies: + "@module-federation/runtime-tools": 0.9.1 + checksum: 10/931eef6292c278450fc8cdb017073fa0b721796461eee12a254fc60a88a2f17e91395b12371f2c8b3b25b4056fc2dd2b76d1022e679be7353947c3d797e75ea5 + languageName: node + linkType: hard + +"@module-federation/managers@npm:0.9.1": + version: 0.9.1 + resolution: "@module-federation/managers@npm:0.9.1" dependencies: - "@module-federation/sdk": "npm:0.8.5" + "@module-federation/sdk": "npm:0.9.1" find-pkg: "npm:2.0.0" fs-extra: "npm:9.1.0" - checksum: 10/83d008c7098e0b14fe15b966bb3344479e17593d04fb6a1f061440b92f4a337fd5f56835be3a71ae4a1adf87145dd7d7d5b7b3b0d942e56c2de0b758458ac569 + checksum: 10/32c1666244ba98644ab6eccdc844415d1aece1c105f6ba2ff17a3836866e7cdb2f61e556cb5a2b506b898ec709951f318d397f4d153efeff377067237968462f languageName: node linkType: hard -"@module-federation/manifest@npm:0.8.5": - version: 0.8.5 - resolution: "@module-federation/manifest@npm:0.8.5" +"@module-federation/manifest@npm:0.9.1": + version: 0.9.1 + resolution: "@module-federation/manifest@npm:0.9.1" dependencies: - "@module-federation/dts-plugin": "npm:0.8.5" - "@module-federation/managers": "npm:0.8.5" - "@module-federation/sdk": "npm:0.8.5" + "@module-federation/dts-plugin": "npm:0.9.1" + "@module-federation/managers": "npm:0.9.1" + "@module-federation/sdk": "npm:0.9.1" chalk: "npm:3.0.0" find-pkg: "npm:2.0.0" - checksum: 10/7c58ddd05492b6721c9848934ae98dec1cd21dcf1282753112bdc7f6a1a79c80e31e7aed041ccb580f181834780c4234adcfe96b829d5cf5609df0f5b2cf4c80 + checksum: 10/539b86bd5388296fb35a34c7b732b92788600ab6625d53f11588ad67c3a603ac3c1974541d9cf04db2d24635be1610414c29388e849d96bbb812cad3b1c79425 languageName: node linkType: hard -"@module-federation/rspack@npm:0.8.5": - version: 0.8.5 - resolution: "@module-federation/rspack@npm:0.8.5" +"@module-federation/rspack@npm:0.9.1": + version: 0.9.1 + resolution: "@module-federation/rspack@npm:0.9.1" dependencies: - "@module-federation/bridge-react-webpack-plugin": "npm:0.8.5" - "@module-federation/dts-plugin": "npm:0.8.5" - "@module-federation/managers": "npm:0.8.5" - "@module-federation/manifest": "npm:0.8.5" - "@module-federation/runtime-tools": "npm:0.8.5" - "@module-federation/sdk": "npm:0.8.5" + "@module-federation/bridge-react-webpack-plugin": "npm:0.9.1" + "@module-federation/dts-plugin": "npm:0.9.1" + "@module-federation/inject-external-runtime-core-plugin": "npm:0.9.1" + "@module-federation/managers": "npm:0.9.1" + "@module-federation/manifest": "npm:0.9.1" + "@module-federation/runtime-tools": "npm:0.9.1" + "@module-federation/sdk": "npm:0.9.1" peerDependencies: "@rspack/core": ">=0.7" typescript: ^4.9.0 || ^5.0.0 @@ -7559,57 +7574,66 @@ __metadata: optional: true vue-tsc: optional: true - checksum: 10/0e2d7fde81baef9485c068bcc1c5e24c530850e377106e0484db58d220806162d9ddbc911f180163d9a5100aea6190c71fb2db9191e2cd51d082a1455384e4b6 + checksum: 10/e6deb7236ccc66d7f0475a09916ec714c9855847bfd3d3ec6cdbee991016a222a22f6ae3fd14d71351d55e22e8949140f37ce9ce79dece5416731c6698726096 languageName: node linkType: hard -"@module-federation/runtime-tools@npm:0.8.5": - version: 0.8.5 - resolution: "@module-federation/runtime-tools@npm:0.8.5" +"@module-federation/runtime-core@npm:0.9.1": + version: 0.9.1 + resolution: "@module-federation/runtime-core@npm:0.9.1" dependencies: - "@module-federation/runtime": "npm:0.8.5" - "@module-federation/webpack-bundler-runtime": "npm:0.8.5" - checksum: 10/79572d10be0d5755df9ba0a2b24868e41b735bbc388e94c010fc5623f3129c9b5e16ba1ea5529f5d4eac401a00cec540d3283f227c6838abdc05139b1e8e9be5 + "@module-federation/error-codes": "npm:0.9.1" + "@module-federation/sdk": "npm:0.9.1" + checksum: 10/6f9edbe23013395d7896fc2a24cb4055bc78df5a335f090e079df951835c1cf91c567228f19879eee3fddb0b34128abd0b50feaca1cf3fb2828c7b9bacc22169 languageName: node linkType: hard -"@module-federation/runtime@npm:0.8.5": - version: 0.8.5 - resolution: "@module-federation/runtime@npm:0.8.5" +"@module-federation/runtime-tools@npm:0.9.1": + version: 0.9.1 + resolution: "@module-federation/runtime-tools@npm:0.9.1" dependencies: - "@module-federation/error-codes": "npm:0.8.5" - "@module-federation/sdk": "npm:0.8.5" - checksum: 10/fae7368c9bc71b0d51b6a92b42aa3ad2e16863c3bd19c232644d2cee0cb9722a1e400111e558eeeab24ad884eacc3aa5e2e265383c9287ace5cc6d0d4cfe3237 + "@module-federation/runtime": "npm:0.9.1" + "@module-federation/webpack-bundler-runtime": "npm:0.9.1" + checksum: 10/9436e814a4ab72839b8aed1aa097f32cf7d4d49728dd863c9ce6dc4fb149fe49da6dc9cdeb97814f0023cc91489c9aca06cbfdf9fb4e43d20498ab6ee78c95dd languageName: node linkType: hard -"@module-federation/sdk@npm:0.8.5": - version: 0.8.5 - resolution: "@module-federation/sdk@npm:0.8.5" +"@module-federation/runtime@npm:0.9.1": + version: 0.9.1 + resolution: "@module-federation/runtime@npm:0.9.1" dependencies: - isomorphic-rslog: "npm:0.0.6" - checksum: 10/a5e0687d61be3c4a4832ab72bb66d5883ef3e9d1472fe425be5df48cf621ff1e48ca0e3298660bdcbded24b535b0066c6d9aa4a0fa7637051a5c47ee69ccc52c + "@module-federation/error-codes": "npm:0.9.1" + "@module-federation/runtime-core": "npm:0.9.1" + "@module-federation/sdk": "npm:0.9.1" + checksum: 10/71eb1c3e81b307ebfe06c43ce70bfa56b217e9dfbed27f0b4235d3d0d05cc0fe2eb1dc57fffb3260ed9e0239257ef117ae13924c642b5ff97d9c65bdf48206fe languageName: node linkType: hard -"@module-federation/third-party-dts-extractor@npm:0.8.5": - version: 0.8.5 - resolution: "@module-federation/third-party-dts-extractor@npm:0.8.5" +"@module-federation/sdk@npm:0.9.1": + version: 0.9.1 + resolution: "@module-federation/sdk@npm:0.9.1" + checksum: 10/ea0320feff328a05405e65503d1df28e46a9ad17ef99b77f1428db5c89efbadd2a76ec82d99a54ac1d21286cee6d9ddbba881a9c46748dfe8abdb11e9afef7da + languageName: node + linkType: hard + +"@module-federation/third-party-dts-extractor@npm:0.9.1": + version: 0.9.1 + resolution: "@module-federation/third-party-dts-extractor@npm:0.9.1" dependencies: find-pkg: "npm:2.0.0" fs-extra: "npm:9.1.0" resolve: "npm:1.22.8" - checksum: 10/c967d0a892b9b28a64860e4446001a8310cbad26215ec5c45eea1e3871aca31667aadb60508fcddaf91e4262cf2f202033cfd4546a60171334b74994ed94a990 + checksum: 10/68c70c79573cd927212d95879aa7b35490519d0ec9f58dd264c9d61e22fea8d452e45a52a94155128d8378e5cdcaecb229707b5b0f4e4c0d53ae96e2fbac366a languageName: node linkType: hard -"@module-federation/webpack-bundler-runtime@npm:0.8.5": - version: 0.8.5 - resolution: "@module-federation/webpack-bundler-runtime@npm:0.8.5" +"@module-federation/webpack-bundler-runtime@npm:0.9.1": + version: 0.9.1 + resolution: "@module-federation/webpack-bundler-runtime@npm:0.9.1" dependencies: - "@module-federation/runtime": "npm:0.8.5" - "@module-federation/sdk": "npm:0.8.5" - checksum: 10/dc33b438acb127c564a7787c543817cd9e0a7852c78feb9c9dcf535ed44484c0c4eff33bebc4fda8b2ef560365f28acb8f9d35dd2b91b2b928d5e26e4ba3aba3 + "@module-federation/runtime": "npm:0.9.1" + "@module-federation/sdk": "npm:0.9.1" + checksum: 10/430cac0a770b3c46bc195088eb4c1892e1e29a69238dbe72423d64b2b67050afeca2b5026b1a30659b4fe8d9faa038ff97cceba7e2ddf6193b93763f270d9df6 languageName: node linkType: hard @@ -13642,24 +13666,24 @@ __metadata: resolution: "app@workspace:packages/app" dependencies: "@backstage-community/plugin-linkerd": "workspace:^" - "@backstage/app-defaults": "npm:^1.6.0" + "@backstage/app-defaults": "npm:^1.6.1" "@backstage/catalog-model": "npm:^1.7.3" - "@backstage/cli": "npm:^0.31.0" - "@backstage/core-app-api": "npm:^1.16.0" - "@backstage/core-components": "npm:^0.17.0" - "@backstage/core-plugin-api": "npm:^1.10.5" - "@backstage/integration-react": "npm:^1.2.5" - "@backstage/plugin-api-docs": "npm:^0.12.5" - "@backstage/plugin-catalog": "npm:^1.28.0" + "@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/integration-react": "npm:^1.2.6" + "@backstage/plugin-api-docs": "npm:^0.12.6" + "@backstage/plugin-catalog": "npm:^1.29.0" "@backstage/plugin-catalog-common": "npm:^1.1.3" - "@backstage/plugin-catalog-graph": "npm:^0.4.17" - "@backstage/plugin-catalog-react": "npm:^1.16.0" - "@backstage/plugin-kubernetes": "npm:^0.12.5" - "@backstage/plugin-permission-react": "npm:^0.4.32" - "@backstage/plugin-search-react": "npm:^1.8.7" - "@backstage/plugin-user-settings": "npm:^0.8.20" - "@backstage/test-utils": "npm:^1.7.6" - "@backstage/theme": "npm:^0.6.4" + "@backstage/plugin-catalog-graph": "npm:^0.4.18" + "@backstage/plugin-catalog-react": "npm:^1.17.0" + "@backstage/plugin-kubernetes": "npm:^0.12.6" + "@backstage/plugin-permission-react": "npm:^0.4.33" + "@backstage/plugin-search-react": "npm:^1.8.8" + "@backstage/plugin-user-settings": "npm:^0.8.21" + "@backstage/test-utils": "npm:^1.7.7" + "@backstage/theme": "npm:^0.6.5" "@material-ui/core": "npm:^4.12.2" "@material-ui/icons": "npm:^4.9.1" "@playwright/test": "npm:^1.32.3" @@ -14364,24 +14388,24 @@ __metadata: resolution: "backend@workspace:packages/backend" dependencies: "@backstage-community/plugin-linkerd-backend": "workspace:^" - "@backstage/backend-defaults": "npm:^0.8.2" - "@backstage/cli": "npm:^0.31.0" + "@backstage/backend-defaults": "npm:^0.9.0" + "@backstage/cli": "npm:^0.32.0" "@backstage/config": "npm:^1.3.2" - "@backstage/plugin-app-backend": "npm:^0.5.0" - "@backstage/plugin-auth-backend": "npm:^0.24.4" - "@backstage/plugin-auth-backend-module-github-provider": "npm:^0.3.1" - "@backstage/plugin-auth-backend-module-guest-provider": "npm:^0.2.6" - "@backstage/plugin-auth-node": "npm:^0.6.1" - "@backstage/plugin-catalog-backend": "npm:^1.32.0" - "@backstage/plugin-catalog-backend-module-scaffolder-entity-model": "npm:^0.2.6" - "@backstage/plugin-kubernetes-backend": "npm:^0.19.4" - "@backstage/plugin-permission-backend": "npm:^0.5.55" - "@backstage/plugin-permission-backend-module-allow-all-policy": "npm:^0.2.6" + "@backstage/plugin-app-backend": "npm:^0.5.1" + "@backstage/plugin-auth-backend": "npm:^0.24.5" + "@backstage/plugin-auth-backend-module-github-provider": "npm:^0.3.2" + "@backstage/plugin-auth-backend-module-guest-provider": "npm:^0.2.7" + "@backstage/plugin-auth-node": "npm:^0.6.2" + "@backstage/plugin-catalog-backend": "npm:^1.32.1" + "@backstage/plugin-catalog-backend-module-scaffolder-entity-model": "npm:^0.2.7" + "@backstage/plugin-kubernetes-backend": "npm:^0.19.5" + "@backstage/plugin-permission-backend": "npm:^0.6.0" + "@backstage/plugin-permission-backend-module-allow-all-policy": "npm:^0.2.7" "@backstage/plugin-permission-common": "npm:^0.8.4" - "@backstage/plugin-permission-node": "npm:^0.9.0" - "@backstage/plugin-search-backend-module-catalog": "npm:^0.3.2" - "@backstage/plugin-search-backend-module-techdocs": "npm:^0.4.0" - "@backstage/plugin-techdocs-backend": "npm:^2.0.0" + "@backstage/plugin-permission-node": "npm:^0.9.1" + "@backstage/plugin-search-backend-module-catalog": "npm:^0.3.3" + "@backstage/plugin-search-backend-module-techdocs": "npm:^0.4.1" + "@backstage/plugin-techdocs-backend": "npm:^2.0.1" "@types/dockerode": "npm:^3.3.0" "@types/express": "npm:^4.17.6" "@types/express-serve-static-core": "npm:^4.17.5" @@ -21665,13 +21689,6 @@ __metadata: languageName: node linkType: hard -"isomorphic-rslog@npm:0.0.6": - version: 0.0.6 - resolution: "isomorphic-rslog@npm:0.0.6" - checksum: 10/3845525005054dde6876e844a2a499eb715628e57d7389ff6a5dac21a482e643b8e0e3abfbb0e6ed7613720e321d17befade4b42e1c2d62fbb76103a530c9c8f - languageName: node - linkType: hard - "isomorphic-timers-promises@npm:^1.0.1": version: 1.0.1 resolution: "isomorphic-timers-promises@npm:1.0.1" @@ -23046,9 +23063,9 @@ __metadata: languageName: node linkType: hard -"koa@npm:2.15.3": - version: 2.15.3 - resolution: "koa@npm:2.15.3" +"koa@npm:2.15.4": + version: 2.15.4 + resolution: "koa@npm:2.15.4" dependencies: accepts: "npm:^1.3.5" cache-content-type: "npm:^1.0.0" @@ -23073,7 +23090,7 @@ __metadata: statuses: "npm:^1.5.0" type-is: "npm:^1.6.16" vary: "npm:^1.1.2" - checksum: 10/b2c2771a4ee5268f9d039ce025b9c3798a0baba8c3cf3895a6fc2d286363e0cd2c98c02a5b87f14100baa2bc17d854eed6ed80f9bd41afda1d056f803b206514 + checksum: 10/98de77173822f0a28c0f5d1ebd261ab02f3f905d40602e51957a0c7202122647a60c5b6c59be03361dd24bf6a5685eac97af84b306914efd057751e71f93cb0f languageName: node linkType: hard @@ -25985,13 +26002,6 @@ __metadata: languageName: node linkType: hard -"p-throttle@npm:^4.1.1": - version: 4.1.1 - resolution: "p-throttle@npm:4.1.1" - checksum: 10/fe8709f3c3b1da7c033479375c2c302e80c1a5d86449013afa7cd46d1dc210bc824a7e4a9d088e66d31987d00878c2b5491bb2fe76246d4d2fc9a1636f5f8298 - languageName: node - linkType: hard - "p-timeout@npm:^3.2.0": version: 3.2.0 resolution: "p-timeout@npm:3.2.0"