├── .changeset ├── config.json └── tall-pugs-brush.md ├── .claude └── settings.json ├── .dockerignore ├── .eslintignore ├── .eslintrc.js ├── .github ├── copilot-instructions.md └── workflows │ ├── ci.yaml │ └── release.yaml ├── .gitignore ├── .husky └── pre-commit ├── .prettierignore ├── .yarnrc.yml ├── CONTRIBUTING.md ├── Claude.md ├── LICENSE ├── README.md ├── app-config.production.yaml ├── app-config.yaml ├── backstage.json ├── docker-compose.yaml ├── examples └── entities.yaml ├── package.json ├── packages ├── app │ ├── .eslintignore │ ├── .eslintrc.js │ ├── CHANGELOG.md │ ├── e2e-tests │ │ └── app.test.ts │ ├── package.json │ ├── public │ │ ├── android-chrome-192x192.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── manifest.json │ │ ├── robots.txt │ │ └── safari-pinned-tab.svg │ └── src │ │ ├── App.test.tsx │ │ ├── App.tsx │ │ ├── apis.ts │ │ ├── index.tsx │ │ ├── modules │ │ └── nav │ │ │ ├── LogoFull.tsx │ │ │ ├── LogoIcon.tsx │ │ │ ├── Sidebar.tsx │ │ │ ├── SidebarLogo.tsx │ │ │ └── index.ts │ │ └── setupTests.ts └── backend │ ├── .eslintrc.js │ ├── CHANGELOG.md │ ├── Dockerfile │ ├── README.md │ ├── package.json │ └── src │ └── index.ts ├── playwright.config.ts ├── plugins ├── renovate-backend-module-queue-local │ ├── .eslintrc.js │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ └── src │ │ ├── index.ts │ │ ├── module.ts │ │ ├── queue.test.ts │ │ └── queue.ts ├── renovate-backend-module-queue-redis │ ├── .eslintrc.js │ ├── CHANGELOG.md │ ├── README.md │ ├── config.d.ts │ ├── package.json │ └── src │ │ ├── config.ts │ │ ├── index.ts │ │ ├── module.ts │ │ ├── queue.test.ts │ │ └── queue.ts ├── renovate-backend-module-runtime-direct │ ├── .eslintrc.js │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ └── src │ │ ├── index.ts │ │ ├── module.ts │ │ ├── runtime.test.ts │ │ └── runtime.ts ├── renovate-backend-module-runtime-docker │ ├── .eslintrc.js │ ├── CHANGELOG.md │ ├── README.md │ ├── config.d.ts │ ├── package.json │ └── src │ │ ├── index.ts │ │ ├── module.ts │ │ ├── runtime.test.ts │ │ └── runtime.ts ├── renovate-backend-module-runtime-s3 │ ├── .eslintrc.js │ ├── CHANGELOG.md │ ├── README.md │ ├── config.d.ts │ ├── package.json │ └── src │ │ ├── config.test.ts │ │ ├── config.ts │ │ ├── index.ts │ │ ├── module.ts │ │ └── runtime.ts ├── renovate-backend │ ├── .eslintrc.js │ ├── CHANGELOG.md │ ├── README.md │ ├── config.d.ts │ ├── migrations │ │ ├── 20240311_init.js │ │ └── 20240830_dependency_table.js │ ├── openapitools.json │ ├── optic.yml │ ├── package.json │ └── src │ │ ├── config │ │ ├── index.ts │ │ └── types.ts │ │ ├── index.ts │ │ ├── plugin.ts │ │ ├── queue │ │ ├── factory.ts │ │ └── index.ts │ │ ├── schema │ │ ├── openapi.yaml │ │ └── openapi │ │ │ ├── generated │ │ │ ├── apis │ │ │ │ ├── Api.server.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── models │ │ │ │ ├── DependenciesGet200Response.model.ts │ │ │ │ ├── DependenciesGet200ResponseAvailableValues.model.ts │ │ │ │ ├── Dependency.model.ts │ │ │ │ ├── ModelError.model.ts │ │ │ │ ├── ReportsDelete200Response.model.ts │ │ │ │ ├── ReportsGet200ResponseInner.model.ts │ │ │ │ ├── RepositoryReport.model.ts │ │ │ │ ├── RunsPost202Response.model.ts │ │ │ │ ├── RunsPost400Response.model.ts │ │ │ │ ├── RunsPostRequest.model.ts │ │ │ │ ├── Target.model.ts │ │ │ │ └── index.ts │ │ │ └── router.ts │ │ │ └── index.ts │ │ ├── service │ │ ├── cleanupTask.test.ts │ │ ├── cleanupTask.ts │ │ ├── databaseHandler.ts │ │ ├── jobSync.test.ts │ │ ├── jobSync.ts │ │ ├── router.test.ts │ │ ├── router.ts │ │ ├── schema.test.ts │ │ ├── schema.ts │ │ └── types.ts │ │ ├── setupTests.ts │ │ └── wrapper │ │ ├── index.ts │ │ ├── platforms │ │ ├── github.ts │ │ ├── index.test.ts │ │ ├── index.ts │ │ └── types.ts │ │ ├── renovateRunner.test.ts │ │ ├── renovateRunner.ts │ │ ├── types.ts │ │ ├── utils.test.ts │ │ └── utils.ts ├── renovate-client │ ├── .eslintrc.js │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ └── src │ │ ├── generated │ │ ├── apis │ │ │ ├── DefaultApi.client.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── models │ │ │ ├── DependenciesGet200Response.model.ts │ │ │ ├── DependenciesGet200ResponseAvailableValues.model.ts │ │ │ ├── Dependency.model.ts │ │ │ ├── ModelError.model.ts │ │ │ ├── ReportsDelete200Response.model.ts │ │ │ ├── ReportsGet200Response.model.ts │ │ │ ├── ReportsGet200ResponseInner.model.ts │ │ │ ├── ReportsGetRequest.model.ts │ │ │ ├── ReportsHostGetRequest.model.ts │ │ │ ├── RepositoryReport.model.ts │ │ │ ├── RunsPost202Response.model.ts │ │ │ ├── RunsPost400Response.model.ts │ │ │ ├── RunsPostRequest.model.ts │ │ │ ├── Target.model.ts │ │ │ ├── TargetAnyOf.model.ts │ │ │ ├── TargetAnyOfMetadata.model.ts │ │ │ ├── TargetAnyOfMetadataAnnotations.model.ts │ │ │ ├── TargetOneOf.model.ts │ │ │ ├── TargetOneOfMetadata.model.ts │ │ │ ├── TargetOneOfMetadataAnnotations.model.ts │ │ │ └── index.ts │ │ ├── pluginId.ts │ │ └── types │ │ │ ├── discovery.ts │ │ │ └── fetch.ts │ │ ├── index.ts │ │ ├── schema │ │ └── openapi │ │ │ ├── generated │ │ │ ├── apis │ │ │ │ ├── Api.client.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── models │ │ │ │ ├── DependenciesGet200Response.model.ts │ │ │ │ ├── DependenciesGet200ResponseAvailableValues.model.ts │ │ │ │ ├── Dependency.model.ts │ │ │ │ ├── ModelError.model.ts │ │ │ │ ├── ReportsDelete200Response.model.ts │ │ │ │ ├── ReportsGet200ResponseInner.model.ts │ │ │ │ ├── RepositoryReport.model.ts │ │ │ │ ├── RunsPost202Response.model.ts │ │ │ │ ├── RunsPost400Response.model.ts │ │ │ │ ├── RunsPostRequest.model.ts │ │ │ │ ├── Target.model.ts │ │ │ │ └── index.ts │ │ │ ├── pluginId.ts │ │ │ └── types │ │ │ │ ├── discovery.ts │ │ │ │ └── fetch.ts │ │ │ └── index.ts │ │ ├── setupTests.ts │ │ └── sugared │ │ ├── RenovateClient.ts │ │ └── index.ts ├── renovate-common │ ├── .eslintrc.js │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ └── src │ │ ├── index.ts │ │ ├── schema.test.ts │ │ ├── schema.ts │ │ ├── setupTests.ts │ │ ├── types.ts │ │ ├── utils.test.ts │ │ └── utils.ts ├── renovate-node │ ├── .eslintrc.js │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ └── src │ │ ├── extensionPoints.test.ts │ │ ├── extensionPoints.ts │ │ ├── index.ts │ │ ├── queue │ │ └── types.ts │ │ ├── setupTests.ts │ │ └── types.ts ├── renovate │ ├── .eslintrc.js │ ├── CHANGELOG.md │ ├── README.md │ ├── dev │ │ └── index.tsx │ ├── docs │ │ └── screenshots │ │ │ ├── dependencies-overview.png │ │ │ └── runner-and-reports.png │ ├── package.json │ └── src │ │ ├── alpha.tsx │ │ ├── api.ts │ │ ├── components │ │ ├── DependencyTable │ │ │ ├── CustomToolbar.tsx │ │ │ ├── DependencyTable.tsx │ │ │ ├── Filters.tsx │ │ │ ├── defaultColumns.tsx │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── EntityRenovateContent │ │ │ ├── EntityRenovateContent.tsx │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── RenovateDefaultOverview │ │ │ ├── RenovateDefaultOverview.tsx │ │ │ └── index.ts │ │ ├── RenovateReportEmptyState │ │ │ └── RenovateEmptyState.tsx │ │ ├── RenovateStarter │ │ │ ├── RenovateStarter.tsx │ │ │ └── index.ts │ │ ├── ReportFetchComponent │ │ │ ├── InspectReportDialog.tsx │ │ │ ├── ReportFetchComponent.tsx │ │ │ └── index.ts │ │ └── StartRenovateButton │ │ │ └── StartRenovateButton.tsx │ │ ├── index.ts │ │ ├── plugin.test.ts │ │ ├── plugin.ts │ │ ├── routes.ts │ │ ├── setupTests.ts │ │ └── tools │ │ ├── coerce.test.ts │ │ ├── coerce.ts │ │ ├── index.ts │ │ ├── versioning.test.ts │ │ └── versioning.ts └── scaffolder-backend-module-filter-utilities │ ├── .eslintrc.js │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ └── src │ ├── filters │ └── jsonata │ │ ├── index.test.ts │ │ └── index.ts │ ├── index.ts │ └── module.ts ├── renovate.json5 ├── tsconfig.json └── yarn.lock /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.changeset/tall-pugs-brush.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/.changeset/tall-pugs-brush.md -------------------------------------------------------------------------------- /.claude/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/.claude/settings.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/.dockerignore -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | playwright.config.ts 2 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | yarn lint-staged 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/.prettierignore -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Claude.md: -------------------------------------------------------------------------------- 1 | .github/copilot-instructions.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/README.md -------------------------------------------------------------------------------- /app-config.production.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/app-config.production.yaml -------------------------------------------------------------------------------- /app-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/app-config.yaml -------------------------------------------------------------------------------- /backstage.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.45.2" 3 | } 4 | -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /examples/entities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/examples/entities.yaml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/package.json -------------------------------------------------------------------------------- /packages/app/.eslintignore: -------------------------------------------------------------------------------- 1 | public 2 | -------------------------------------------------------------------------------- /packages/app/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /packages/app/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/packages/app/CHANGELOG.md -------------------------------------------------------------------------------- /packages/app/e2e-tests/app.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/packages/app/e2e-tests/app.test.ts -------------------------------------------------------------------------------- /packages/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/packages/app/package.json -------------------------------------------------------------------------------- /packages/app/public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/packages/app/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /packages/app/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/packages/app/public/apple-touch-icon.png -------------------------------------------------------------------------------- /packages/app/public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/packages/app/public/favicon-16x16.png -------------------------------------------------------------------------------- /packages/app/public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/packages/app/public/favicon-32x32.png -------------------------------------------------------------------------------- /packages/app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/packages/app/public/favicon.ico -------------------------------------------------------------------------------- /packages/app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/packages/app/public/index.html -------------------------------------------------------------------------------- /packages/app/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/packages/app/public/manifest.json -------------------------------------------------------------------------------- /packages/app/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/packages/app/public/robots.txt -------------------------------------------------------------------------------- /packages/app/public/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/packages/app/public/safari-pinned-tab.svg -------------------------------------------------------------------------------- /packages/app/src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/packages/app/src/App.test.tsx -------------------------------------------------------------------------------- /packages/app/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/packages/app/src/App.tsx -------------------------------------------------------------------------------- /packages/app/src/apis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/packages/app/src/apis.ts -------------------------------------------------------------------------------- /packages/app/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/packages/app/src/index.tsx -------------------------------------------------------------------------------- /packages/app/src/modules/nav/LogoFull.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/packages/app/src/modules/nav/LogoFull.tsx -------------------------------------------------------------------------------- /packages/app/src/modules/nav/LogoIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/packages/app/src/modules/nav/LogoIcon.tsx -------------------------------------------------------------------------------- /packages/app/src/modules/nav/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/packages/app/src/modules/nav/Sidebar.tsx -------------------------------------------------------------------------------- /packages/app/src/modules/nav/SidebarLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/packages/app/src/modules/nav/SidebarLogo.tsx -------------------------------------------------------------------------------- /packages/app/src/modules/nav/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/packages/app/src/modules/nav/index.ts -------------------------------------------------------------------------------- /packages/app/src/setupTests.ts: -------------------------------------------------------------------------------- 1 | import '@testing-library/jest-dom'; 2 | -------------------------------------------------------------------------------- /packages/backend/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /packages/backend/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/packages/backend/CHANGELOG.md -------------------------------------------------------------------------------- /packages/backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/packages/backend/Dockerfile -------------------------------------------------------------------------------- /packages/backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/packages/backend/README.md -------------------------------------------------------------------------------- /packages/backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/packages/backend/package.json -------------------------------------------------------------------------------- /packages/backend/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/packages/backend/src/index.ts -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /plugins/renovate-backend-module-queue-local/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /plugins/renovate-backend-module-queue-local/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend-module-queue-local/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/renovate-backend-module-queue-local/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend-module-queue-local/README.md -------------------------------------------------------------------------------- /plugins/renovate-backend-module-queue-local/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend-module-queue-local/package.json -------------------------------------------------------------------------------- /plugins/renovate-backend-module-queue-local/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend-module-queue-local/src/index.ts -------------------------------------------------------------------------------- /plugins/renovate-backend-module-queue-local/src/module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend-module-queue-local/src/module.ts -------------------------------------------------------------------------------- /plugins/renovate-backend-module-queue-local/src/queue.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend-module-queue-local/src/queue.test.ts -------------------------------------------------------------------------------- /plugins/renovate-backend-module-queue-local/src/queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend-module-queue-local/src/queue.ts -------------------------------------------------------------------------------- /plugins/renovate-backend-module-queue-redis/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /plugins/renovate-backend-module-queue-redis/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend-module-queue-redis/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/renovate-backend-module-queue-redis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend-module-queue-redis/README.md -------------------------------------------------------------------------------- /plugins/renovate-backend-module-queue-redis/config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend-module-queue-redis/config.d.ts -------------------------------------------------------------------------------- /plugins/renovate-backend-module-queue-redis/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend-module-queue-redis/package.json -------------------------------------------------------------------------------- /plugins/renovate-backend-module-queue-redis/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend-module-queue-redis/src/config.ts -------------------------------------------------------------------------------- /plugins/renovate-backend-module-queue-redis/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend-module-queue-redis/src/index.ts -------------------------------------------------------------------------------- /plugins/renovate-backend-module-queue-redis/src/module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend-module-queue-redis/src/module.ts -------------------------------------------------------------------------------- /plugins/renovate-backend-module-queue-redis/src/queue.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend-module-queue-redis/src/queue.test.ts -------------------------------------------------------------------------------- /plugins/renovate-backend-module-queue-redis/src/queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend-module-queue-redis/src/queue.ts -------------------------------------------------------------------------------- /plugins/renovate-backend-module-runtime-direct/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /plugins/renovate-backend-module-runtime-direct/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend-module-runtime-direct/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/renovate-backend-module-runtime-direct/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend-module-runtime-direct/README.md -------------------------------------------------------------------------------- /plugins/renovate-backend-module-runtime-direct/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend-module-runtime-direct/package.json -------------------------------------------------------------------------------- /plugins/renovate-backend-module-runtime-direct/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend-module-runtime-direct/src/index.ts -------------------------------------------------------------------------------- /plugins/renovate-backend-module-runtime-direct/src/module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend-module-runtime-direct/src/module.ts -------------------------------------------------------------------------------- /plugins/renovate-backend-module-runtime-direct/src/runtime.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend-module-runtime-direct/src/runtime.test.ts -------------------------------------------------------------------------------- /plugins/renovate-backend-module-runtime-direct/src/runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend-module-runtime-direct/src/runtime.ts -------------------------------------------------------------------------------- /plugins/renovate-backend-module-runtime-docker/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /plugins/renovate-backend-module-runtime-docker/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend-module-runtime-docker/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/renovate-backend-module-runtime-docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend-module-runtime-docker/README.md -------------------------------------------------------------------------------- /plugins/renovate-backend-module-runtime-docker/config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend-module-runtime-docker/config.d.ts -------------------------------------------------------------------------------- /plugins/renovate-backend-module-runtime-docker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend-module-runtime-docker/package.json -------------------------------------------------------------------------------- /plugins/renovate-backend-module-runtime-docker/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend-module-runtime-docker/src/index.ts -------------------------------------------------------------------------------- /plugins/renovate-backend-module-runtime-docker/src/module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend-module-runtime-docker/src/module.ts -------------------------------------------------------------------------------- /plugins/renovate-backend-module-runtime-docker/src/runtime.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend-module-runtime-docker/src/runtime.test.ts -------------------------------------------------------------------------------- /plugins/renovate-backend-module-runtime-docker/src/runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend-module-runtime-docker/src/runtime.ts -------------------------------------------------------------------------------- /plugins/renovate-backend-module-runtime-s3/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /plugins/renovate-backend-module-runtime-s3/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend-module-runtime-s3/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/renovate-backend-module-runtime-s3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend-module-runtime-s3/README.md -------------------------------------------------------------------------------- /plugins/renovate-backend-module-runtime-s3/config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend-module-runtime-s3/config.d.ts -------------------------------------------------------------------------------- /plugins/renovate-backend-module-runtime-s3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend-module-runtime-s3/package.json -------------------------------------------------------------------------------- /plugins/renovate-backend-module-runtime-s3/src/config.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend-module-runtime-s3/src/config.test.ts -------------------------------------------------------------------------------- /plugins/renovate-backend-module-runtime-s3/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend-module-runtime-s3/src/config.ts -------------------------------------------------------------------------------- /plugins/renovate-backend-module-runtime-s3/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend-module-runtime-s3/src/index.ts -------------------------------------------------------------------------------- /plugins/renovate-backend-module-runtime-s3/src/module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend-module-runtime-s3/src/module.ts -------------------------------------------------------------------------------- /plugins/renovate-backend-module-runtime-s3/src/runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend-module-runtime-s3/src/runtime.ts -------------------------------------------------------------------------------- /plugins/renovate-backend/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /plugins/renovate-backend/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/renovate-backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/README.md -------------------------------------------------------------------------------- /plugins/renovate-backend/config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/config.d.ts -------------------------------------------------------------------------------- /plugins/renovate-backend/migrations/20240311_init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/migrations/20240311_init.js -------------------------------------------------------------------------------- /plugins/renovate-backend/migrations/20240830_dependency_table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/migrations/20240830_dependency_table.js -------------------------------------------------------------------------------- /plugins/renovate-backend/openapitools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/openapitools.json -------------------------------------------------------------------------------- /plugins/renovate-backend/optic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/optic.yml -------------------------------------------------------------------------------- /plugins/renovate-backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/package.json -------------------------------------------------------------------------------- /plugins/renovate-backend/src/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/src/config/index.ts -------------------------------------------------------------------------------- /plugins/renovate-backend/src/config/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/src/config/types.ts -------------------------------------------------------------------------------- /plugins/renovate-backend/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/src/index.ts -------------------------------------------------------------------------------- /plugins/renovate-backend/src/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/src/plugin.ts -------------------------------------------------------------------------------- /plugins/renovate-backend/src/queue/factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/src/queue/factory.ts -------------------------------------------------------------------------------- /plugins/renovate-backend/src/queue/index.ts: -------------------------------------------------------------------------------- 1 | export * from './factory'; 2 | -------------------------------------------------------------------------------- /plugins/renovate-backend/src/schema/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/src/schema/openapi.yaml -------------------------------------------------------------------------------- /plugins/renovate-backend/src/schema/openapi/generated/apis/Api.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/src/schema/openapi/generated/apis/Api.server.ts -------------------------------------------------------------------------------- /plugins/renovate-backend/src/schema/openapi/generated/apis/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/src/schema/openapi/generated/apis/index.ts -------------------------------------------------------------------------------- /plugins/renovate-backend/src/schema/openapi/generated/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/src/schema/openapi/generated/index.ts -------------------------------------------------------------------------------- /plugins/renovate-backend/src/schema/openapi/generated/models/DependenciesGet200Response.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/src/schema/openapi/generated/models/DependenciesGet200Response.model.ts -------------------------------------------------------------------------------- /plugins/renovate-backend/src/schema/openapi/generated/models/DependenciesGet200ResponseAvailableValues.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/src/schema/openapi/generated/models/DependenciesGet200ResponseAvailableValues.model.ts -------------------------------------------------------------------------------- /plugins/renovate-backend/src/schema/openapi/generated/models/Dependency.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/src/schema/openapi/generated/models/Dependency.model.ts -------------------------------------------------------------------------------- /plugins/renovate-backend/src/schema/openapi/generated/models/ModelError.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/src/schema/openapi/generated/models/ModelError.model.ts -------------------------------------------------------------------------------- /plugins/renovate-backend/src/schema/openapi/generated/models/ReportsDelete200Response.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/src/schema/openapi/generated/models/ReportsDelete200Response.model.ts -------------------------------------------------------------------------------- /plugins/renovate-backend/src/schema/openapi/generated/models/ReportsGet200ResponseInner.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/src/schema/openapi/generated/models/ReportsGet200ResponseInner.model.ts -------------------------------------------------------------------------------- /plugins/renovate-backend/src/schema/openapi/generated/models/RepositoryReport.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/src/schema/openapi/generated/models/RepositoryReport.model.ts -------------------------------------------------------------------------------- /plugins/renovate-backend/src/schema/openapi/generated/models/RunsPost202Response.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/src/schema/openapi/generated/models/RunsPost202Response.model.ts -------------------------------------------------------------------------------- /plugins/renovate-backend/src/schema/openapi/generated/models/RunsPost400Response.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/src/schema/openapi/generated/models/RunsPost400Response.model.ts -------------------------------------------------------------------------------- /plugins/renovate-backend/src/schema/openapi/generated/models/RunsPostRequest.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/src/schema/openapi/generated/models/RunsPostRequest.model.ts -------------------------------------------------------------------------------- /plugins/renovate-backend/src/schema/openapi/generated/models/Target.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/src/schema/openapi/generated/models/Target.model.ts -------------------------------------------------------------------------------- /plugins/renovate-backend/src/schema/openapi/generated/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/src/schema/openapi/generated/models/index.ts -------------------------------------------------------------------------------- /plugins/renovate-backend/src/schema/openapi/generated/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/src/schema/openapi/generated/router.ts -------------------------------------------------------------------------------- /plugins/renovate-backend/src/schema/openapi/index.ts: -------------------------------------------------------------------------------- 1 | // 2 | export * from './generated'; 3 | -------------------------------------------------------------------------------- /plugins/renovate-backend/src/service/cleanupTask.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/src/service/cleanupTask.test.ts -------------------------------------------------------------------------------- /plugins/renovate-backend/src/service/cleanupTask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/src/service/cleanupTask.ts -------------------------------------------------------------------------------- /plugins/renovate-backend/src/service/databaseHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/src/service/databaseHandler.ts -------------------------------------------------------------------------------- /plugins/renovate-backend/src/service/jobSync.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/src/service/jobSync.test.ts -------------------------------------------------------------------------------- /plugins/renovate-backend/src/service/jobSync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/src/service/jobSync.ts -------------------------------------------------------------------------------- /plugins/renovate-backend/src/service/router.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/src/service/router.test.ts -------------------------------------------------------------------------------- /plugins/renovate-backend/src/service/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/src/service/router.ts -------------------------------------------------------------------------------- /plugins/renovate-backend/src/service/schema.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/src/service/schema.test.ts -------------------------------------------------------------------------------- /plugins/renovate-backend/src/service/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/src/service/schema.ts -------------------------------------------------------------------------------- /plugins/renovate-backend/src/service/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/src/service/types.ts -------------------------------------------------------------------------------- /plugins/renovate-backend/src/setupTests.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /plugins/renovate-backend/src/wrapper/index.ts: -------------------------------------------------------------------------------- 1 | export * from './renovateRunner'; 2 | -------------------------------------------------------------------------------- /plugins/renovate-backend/src/wrapper/platforms/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/src/wrapper/platforms/github.ts -------------------------------------------------------------------------------- /plugins/renovate-backend/src/wrapper/platforms/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/src/wrapper/platforms/index.test.ts -------------------------------------------------------------------------------- /plugins/renovate-backend/src/wrapper/platforms/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/src/wrapper/platforms/index.ts -------------------------------------------------------------------------------- /plugins/renovate-backend/src/wrapper/platforms/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/src/wrapper/platforms/types.ts -------------------------------------------------------------------------------- /plugins/renovate-backend/src/wrapper/renovateRunner.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/src/wrapper/renovateRunner.test.ts -------------------------------------------------------------------------------- /plugins/renovate-backend/src/wrapper/renovateRunner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/src/wrapper/renovateRunner.ts -------------------------------------------------------------------------------- /plugins/renovate-backend/src/wrapper/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/src/wrapper/types.ts -------------------------------------------------------------------------------- /plugins/renovate-backend/src/wrapper/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/src/wrapper/utils.test.ts -------------------------------------------------------------------------------- /plugins/renovate-backend/src/wrapper/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-backend/src/wrapper/utils.ts -------------------------------------------------------------------------------- /plugins/renovate-client/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /plugins/renovate-client/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-client/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/renovate-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-client/README.md -------------------------------------------------------------------------------- /plugins/renovate-client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-client/package.json -------------------------------------------------------------------------------- /plugins/renovate-client/src/generated/apis/DefaultApi.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-client/src/generated/apis/DefaultApi.client.ts -------------------------------------------------------------------------------- /plugins/renovate-client/src/generated/apis/index.ts: -------------------------------------------------------------------------------- 1 | // 2 | 3 | export * from './DefaultApi.client'; 4 | -------------------------------------------------------------------------------- /plugins/renovate-client/src/generated/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-client/src/generated/index.ts -------------------------------------------------------------------------------- /plugins/renovate-client/src/generated/models/DependenciesGet200Response.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-client/src/generated/models/DependenciesGet200Response.model.ts -------------------------------------------------------------------------------- /plugins/renovate-client/src/generated/models/DependenciesGet200ResponseAvailableValues.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-client/src/generated/models/DependenciesGet200ResponseAvailableValues.model.ts -------------------------------------------------------------------------------- /plugins/renovate-client/src/generated/models/Dependency.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-client/src/generated/models/Dependency.model.ts -------------------------------------------------------------------------------- /plugins/renovate-client/src/generated/models/ModelError.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-client/src/generated/models/ModelError.model.ts -------------------------------------------------------------------------------- /plugins/renovate-client/src/generated/models/ReportsDelete200Response.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-client/src/generated/models/ReportsDelete200Response.model.ts -------------------------------------------------------------------------------- /plugins/renovate-client/src/generated/models/ReportsGet200Response.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-client/src/generated/models/ReportsGet200Response.model.ts -------------------------------------------------------------------------------- /plugins/renovate-client/src/generated/models/ReportsGet200ResponseInner.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-client/src/generated/models/ReportsGet200ResponseInner.model.ts -------------------------------------------------------------------------------- /plugins/renovate-client/src/generated/models/ReportsGetRequest.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-client/src/generated/models/ReportsGetRequest.model.ts -------------------------------------------------------------------------------- /plugins/renovate-client/src/generated/models/ReportsHostGetRequest.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-client/src/generated/models/ReportsHostGetRequest.model.ts -------------------------------------------------------------------------------- /plugins/renovate-client/src/generated/models/RepositoryReport.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-client/src/generated/models/RepositoryReport.model.ts -------------------------------------------------------------------------------- /plugins/renovate-client/src/generated/models/RunsPost202Response.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-client/src/generated/models/RunsPost202Response.model.ts -------------------------------------------------------------------------------- /plugins/renovate-client/src/generated/models/RunsPost400Response.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-client/src/generated/models/RunsPost400Response.model.ts -------------------------------------------------------------------------------- /plugins/renovate-client/src/generated/models/RunsPostRequest.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-client/src/generated/models/RunsPostRequest.model.ts -------------------------------------------------------------------------------- /plugins/renovate-client/src/generated/models/Target.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-client/src/generated/models/Target.model.ts -------------------------------------------------------------------------------- /plugins/renovate-client/src/generated/models/TargetAnyOf.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-client/src/generated/models/TargetAnyOf.model.ts -------------------------------------------------------------------------------- /plugins/renovate-client/src/generated/models/TargetAnyOfMetadata.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-client/src/generated/models/TargetAnyOfMetadata.model.ts -------------------------------------------------------------------------------- /plugins/renovate-client/src/generated/models/TargetAnyOfMetadataAnnotations.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-client/src/generated/models/TargetAnyOfMetadataAnnotations.model.ts -------------------------------------------------------------------------------- /plugins/renovate-client/src/generated/models/TargetOneOf.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-client/src/generated/models/TargetOneOf.model.ts -------------------------------------------------------------------------------- /plugins/renovate-client/src/generated/models/TargetOneOfMetadata.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-client/src/generated/models/TargetOneOfMetadata.model.ts -------------------------------------------------------------------------------- /plugins/renovate-client/src/generated/models/TargetOneOfMetadataAnnotations.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-client/src/generated/models/TargetOneOfMetadataAnnotations.model.ts -------------------------------------------------------------------------------- /plugins/renovate-client/src/generated/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-client/src/generated/models/index.ts -------------------------------------------------------------------------------- /plugins/renovate-client/src/generated/pluginId.ts: -------------------------------------------------------------------------------- 1 | export const pluginId = 'renovate'; 2 | -------------------------------------------------------------------------------- /plugins/renovate-client/src/generated/types/discovery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-client/src/generated/types/discovery.ts -------------------------------------------------------------------------------- /plugins/renovate-client/src/generated/types/fetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-client/src/generated/types/fetch.ts -------------------------------------------------------------------------------- /plugins/renovate-client/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-client/src/index.ts -------------------------------------------------------------------------------- /plugins/renovate-client/src/schema/openapi/generated/apis/Api.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-client/src/schema/openapi/generated/apis/Api.client.ts -------------------------------------------------------------------------------- /plugins/renovate-client/src/schema/openapi/generated/apis/index.ts: -------------------------------------------------------------------------------- 1 | // 2 | 3 | export * from './Api.client'; 4 | -------------------------------------------------------------------------------- /plugins/renovate-client/src/schema/openapi/generated/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-client/src/schema/openapi/generated/index.ts -------------------------------------------------------------------------------- /plugins/renovate-client/src/schema/openapi/generated/models/DependenciesGet200Response.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-client/src/schema/openapi/generated/models/DependenciesGet200Response.model.ts -------------------------------------------------------------------------------- /plugins/renovate-client/src/schema/openapi/generated/models/DependenciesGet200ResponseAvailableValues.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-client/src/schema/openapi/generated/models/DependenciesGet200ResponseAvailableValues.model.ts -------------------------------------------------------------------------------- /plugins/renovate-client/src/schema/openapi/generated/models/Dependency.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-client/src/schema/openapi/generated/models/Dependency.model.ts -------------------------------------------------------------------------------- /plugins/renovate-client/src/schema/openapi/generated/models/ModelError.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-client/src/schema/openapi/generated/models/ModelError.model.ts -------------------------------------------------------------------------------- /plugins/renovate-client/src/schema/openapi/generated/models/ReportsDelete200Response.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-client/src/schema/openapi/generated/models/ReportsDelete200Response.model.ts -------------------------------------------------------------------------------- /plugins/renovate-client/src/schema/openapi/generated/models/ReportsGet200ResponseInner.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-client/src/schema/openapi/generated/models/ReportsGet200ResponseInner.model.ts -------------------------------------------------------------------------------- /plugins/renovate-client/src/schema/openapi/generated/models/RepositoryReport.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-client/src/schema/openapi/generated/models/RepositoryReport.model.ts -------------------------------------------------------------------------------- /plugins/renovate-client/src/schema/openapi/generated/models/RunsPost202Response.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-client/src/schema/openapi/generated/models/RunsPost202Response.model.ts -------------------------------------------------------------------------------- /plugins/renovate-client/src/schema/openapi/generated/models/RunsPost400Response.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-client/src/schema/openapi/generated/models/RunsPost400Response.model.ts -------------------------------------------------------------------------------- /plugins/renovate-client/src/schema/openapi/generated/models/RunsPostRequest.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-client/src/schema/openapi/generated/models/RunsPostRequest.model.ts -------------------------------------------------------------------------------- /plugins/renovate-client/src/schema/openapi/generated/models/Target.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-client/src/schema/openapi/generated/models/Target.model.ts -------------------------------------------------------------------------------- /plugins/renovate-client/src/schema/openapi/generated/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-client/src/schema/openapi/generated/models/index.ts -------------------------------------------------------------------------------- /plugins/renovate-client/src/schema/openapi/generated/pluginId.ts: -------------------------------------------------------------------------------- 1 | export const pluginId = 'renovate'; 2 | -------------------------------------------------------------------------------- /plugins/renovate-client/src/schema/openapi/generated/types/discovery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-client/src/schema/openapi/generated/types/discovery.ts -------------------------------------------------------------------------------- /plugins/renovate-client/src/schema/openapi/generated/types/fetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-client/src/schema/openapi/generated/types/fetch.ts -------------------------------------------------------------------------------- /plugins/renovate-client/src/schema/openapi/index.ts: -------------------------------------------------------------------------------- 1 | // 2 | export * from './generated'; 3 | -------------------------------------------------------------------------------- /plugins/renovate-client/src/setupTests.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /plugins/renovate-client/src/sugared/RenovateClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-client/src/sugared/RenovateClient.ts -------------------------------------------------------------------------------- /plugins/renovate-client/src/sugared/index.ts: -------------------------------------------------------------------------------- 1 | export * from './RenovateClient'; 2 | -------------------------------------------------------------------------------- /plugins/renovate-common/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /plugins/renovate-common/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-common/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/renovate-common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-common/README.md -------------------------------------------------------------------------------- /plugins/renovate-common/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-common/package.json -------------------------------------------------------------------------------- /plugins/renovate-common/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-common/src/index.ts -------------------------------------------------------------------------------- /plugins/renovate-common/src/schema.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-common/src/schema.test.ts -------------------------------------------------------------------------------- /plugins/renovate-common/src/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-common/src/schema.ts -------------------------------------------------------------------------------- /plugins/renovate-common/src/setupTests.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /plugins/renovate-common/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-common/src/types.ts -------------------------------------------------------------------------------- /plugins/renovate-common/src/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-common/src/utils.test.ts -------------------------------------------------------------------------------- /plugins/renovate-common/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-common/src/utils.ts -------------------------------------------------------------------------------- /plugins/renovate-node/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /plugins/renovate-node/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-node/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/renovate-node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-node/README.md -------------------------------------------------------------------------------- /plugins/renovate-node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-node/package.json -------------------------------------------------------------------------------- /plugins/renovate-node/src/extensionPoints.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-node/src/extensionPoints.test.ts -------------------------------------------------------------------------------- /plugins/renovate-node/src/extensionPoints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-node/src/extensionPoints.ts -------------------------------------------------------------------------------- /plugins/renovate-node/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-node/src/index.ts -------------------------------------------------------------------------------- /plugins/renovate-node/src/queue/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-node/src/queue/types.ts -------------------------------------------------------------------------------- /plugins/renovate-node/src/setupTests.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /plugins/renovate-node/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate-node/src/types.ts -------------------------------------------------------------------------------- /plugins/renovate/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /plugins/renovate/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/renovate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate/README.md -------------------------------------------------------------------------------- /plugins/renovate/dev/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate/dev/index.tsx -------------------------------------------------------------------------------- /plugins/renovate/docs/screenshots/dependencies-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate/docs/screenshots/dependencies-overview.png -------------------------------------------------------------------------------- /plugins/renovate/docs/screenshots/runner-and-reports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate/docs/screenshots/runner-and-reports.png -------------------------------------------------------------------------------- /plugins/renovate/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate/package.json -------------------------------------------------------------------------------- /plugins/renovate/src/alpha.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate/src/alpha.tsx -------------------------------------------------------------------------------- /plugins/renovate/src/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate/src/api.ts -------------------------------------------------------------------------------- /plugins/renovate/src/components/DependencyTable/CustomToolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate/src/components/DependencyTable/CustomToolbar.tsx -------------------------------------------------------------------------------- /plugins/renovate/src/components/DependencyTable/DependencyTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate/src/components/DependencyTable/DependencyTable.tsx -------------------------------------------------------------------------------- /plugins/renovate/src/components/DependencyTable/Filters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate/src/components/DependencyTable/Filters.tsx -------------------------------------------------------------------------------- /plugins/renovate/src/components/DependencyTable/defaultColumns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate/src/components/DependencyTable/defaultColumns.tsx -------------------------------------------------------------------------------- /plugins/renovate/src/components/DependencyTable/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate/src/components/DependencyTable/index.ts -------------------------------------------------------------------------------- /plugins/renovate/src/components/DependencyTable/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate/src/components/DependencyTable/types.ts -------------------------------------------------------------------------------- /plugins/renovate/src/components/EntityRenovateContent/EntityRenovateContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate/src/components/EntityRenovateContent/EntityRenovateContent.tsx -------------------------------------------------------------------------------- /plugins/renovate/src/components/EntityRenovateContent/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate/src/components/EntityRenovateContent/index.ts -------------------------------------------------------------------------------- /plugins/renovate/src/components/EntityRenovateContent/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate/src/components/EntityRenovateContent/types.ts -------------------------------------------------------------------------------- /plugins/renovate/src/components/RenovateDefaultOverview/RenovateDefaultOverview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate/src/components/RenovateDefaultOverview/RenovateDefaultOverview.tsx -------------------------------------------------------------------------------- /plugins/renovate/src/components/RenovateDefaultOverview/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate/src/components/RenovateDefaultOverview/index.ts -------------------------------------------------------------------------------- /plugins/renovate/src/components/RenovateReportEmptyState/RenovateEmptyState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate/src/components/RenovateReportEmptyState/RenovateEmptyState.tsx -------------------------------------------------------------------------------- /plugins/renovate/src/components/RenovateStarter/RenovateStarter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate/src/components/RenovateStarter/RenovateStarter.tsx -------------------------------------------------------------------------------- /plugins/renovate/src/components/RenovateStarter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate/src/components/RenovateStarter/index.ts -------------------------------------------------------------------------------- /plugins/renovate/src/components/ReportFetchComponent/InspectReportDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate/src/components/ReportFetchComponent/InspectReportDialog.tsx -------------------------------------------------------------------------------- /plugins/renovate/src/components/ReportFetchComponent/ReportFetchComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate/src/components/ReportFetchComponent/ReportFetchComponent.tsx -------------------------------------------------------------------------------- /plugins/renovate/src/components/ReportFetchComponent/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate/src/components/ReportFetchComponent/index.ts -------------------------------------------------------------------------------- /plugins/renovate/src/components/StartRenovateButton/StartRenovateButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate/src/components/StartRenovateButton/StartRenovateButton.tsx -------------------------------------------------------------------------------- /plugins/renovate/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './plugin.ts'; 2 | -------------------------------------------------------------------------------- /plugins/renovate/src/plugin.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate/src/plugin.test.ts -------------------------------------------------------------------------------- /plugins/renovate/src/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate/src/plugin.ts -------------------------------------------------------------------------------- /plugins/renovate/src/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate/src/routes.ts -------------------------------------------------------------------------------- /plugins/renovate/src/setupTests.ts: -------------------------------------------------------------------------------- 1 | import '@testing-library/jest-dom'; 2 | -------------------------------------------------------------------------------- /plugins/renovate/src/tools/coerce.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate/src/tools/coerce.test.ts -------------------------------------------------------------------------------- /plugins/renovate/src/tools/coerce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate/src/tools/coerce.ts -------------------------------------------------------------------------------- /plugins/renovate/src/tools/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate/src/tools/index.ts -------------------------------------------------------------------------------- /plugins/renovate/src/tools/versioning.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate/src/tools/versioning.test.ts -------------------------------------------------------------------------------- /plugins/renovate/src/tools/versioning.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/renovate/src/tools/versioning.ts -------------------------------------------------------------------------------- /plugins/scaffolder-backend-module-filter-utilities/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /plugins/scaffolder-backend-module-filter-utilities/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/scaffolder-backend-module-filter-utilities/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/scaffolder-backend-module-filter-utilities/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/scaffolder-backend-module-filter-utilities/README.md -------------------------------------------------------------------------------- /plugins/scaffolder-backend-module-filter-utilities/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/scaffolder-backend-module-filter-utilities/package.json -------------------------------------------------------------------------------- /plugins/scaffolder-backend-module-filter-utilities/src/filters/jsonata/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/scaffolder-backend-module-filter-utilities/src/filters/jsonata/index.test.ts -------------------------------------------------------------------------------- /plugins/scaffolder-backend-module-filter-utilities/src/filters/jsonata/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/scaffolder-backend-module-filter-utilities/src/filters/jsonata/index.ts -------------------------------------------------------------------------------- /plugins/scaffolder-backend-module-filter-utilities/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/scaffolder-backend-module-filter-utilities/src/index.ts -------------------------------------------------------------------------------- /plugins/scaffolder-backend-module-filter-utilities/src/module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/plugins/scaffolder-backend-module-filter-utilities/src/module.ts -------------------------------------------------------------------------------- /renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/renovate.json5 -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secustor/backstage-plugins/HEAD/yarn.lock --------------------------------------------------------------------------------