fix(deps): update backstage monorepo #1908
Closed
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^0.21.6
->^0.25.0
^0.23.3
->^0.25.0
^0.21.7
->^0.25.0
^0.24.0
->^0.25.0
^0.24.0
->^0.25.0
^0.3.3
->^0.5.0
^0.4.1
->^0.5.0
^0.2.15
->^0.4.0
^0.6.17
->^0.8.0
^0.6.18
->^0.8.0
^0.7.0
->^0.8.0
^0.5.22
->^0.6.0
^0.3.6
->^0.5.0
^0.4.4
->^0.5.0
1.0.0
->1.0.2
^0.27.1
->^0.28.0
^0.26.11
->^0.28.0
^0.26.11
->^0.28.0
^0.26.2
->^0.28.0
0.27.1
->0.28.2
^0.27.0
->^0.28.0
^0.27.0
->^0.28.0
^0.2.8
->^0.3.0
^0.14.3
->^0.15.0
^0.14.4
->^0.15.0
^0.14.9
->^0.15.0
^0.14.10
->^0.15.0
^0.6.4
->^0.9.0
^0.7.0
->^0.9.0
^0.22.4
->^0.23.0
^0.22.9
->^0.23.0
^0.1.14
->^0.2.0
^0.1.3
->^0.2.0
^0.1.8
->^0.2.0
^0.4.17
->^0.5.0
^0.4.12
->^0.5.0
^0.1.15
->^0.2.0
^0.10.10
->^0.12.0
^0.1.14
->^0.2.0
^0.7.13
->^0.8.0
^0.7.28
->^0.8.0
^0.4.15
->^0.5.0
^0.4.2
->^0.5.0
^0.4.9
->^0.5.0
^0.4.8
->^0.5.0
^0.1.22
->^0.2.0
^0.1.22
->^0.3.0
^0.9.4
->^0.10.0
^0.9.5
->^0.10.0
^0.8.0
->^0.10.0
^0.9.5
->^0.10.0
^0.5.2
->^0.6.0
^0.5.3
->^0.6.0
^0.5.6
->^0.6.0
Release Notes
backstage/backstage (@backstage/backend-common)
v0.25.0
Compare Source
@backstage/backend-common@0.7.0
Minor Changes
e0bfd3d
: Refactor therunDockerContainer(…)
function to an interface-based api.This gives the option to replace the docker runtime in the future.
Packages and plugins that previously used the
dockerode
as argument should be migrated to use the newContainerRunner
interface instead.To keep the
dockerode
based runtime, use theDockerContainerRunner
implementation:Patch Changes
38ca051
: The default@octokit/rest
dependency was bumped to"^18.5.3"
.38ca051
]d8b81fd
]@backstage/techdocs-common@0.6.0
Minor Changes
e0bfd3d
: Migrate the package to use theContainerRunner
interface instead ofrunDockerContainer(…)
.It also no longer provides the
ContainerRunner
as an input to theGeneratorBase#run(…)
function, but expects it as a constructor parameter instead.If you use the
TechdocsGenerator
you need to update the usage:Patch Changes
e9e56b0
: Adding optional config to enable S3-like API for tech-docs using s3ForcePathStyle option.This allows providers like LocalStack, Minio and Wasabi (+possibly others) to be used to host tech docs.
e0bfd3d
]38ca051
]d8b81fd
]@backstage/plugin-cost-insights@0.9.0
Minor Changes
6f1b82b
: make change ratio optionalPatch Changes
f65adcd
]8088865
]7b8272f
]d8b81fd
]@backstage/plugin-scaffolder-backend@0.11.0
Minor Changes
e0bfd3d
: Migrate the plugin to use theContainerRunner
interface instead ofrunDockerContainer(…)
.It also provides the
ContainerRunner
to the individual templaters instead of to thecreateRouter
function.To apply this change to an existing backend application, add the following to
src/plugins/scaffolder.ts
:export default async function createPlugin({
logger,
config,
database,
reader,
}: PluginEnvironment): Promise {
const dockerClient = new Docker();
const containerRunner = new DockerContainerRunner({ dockerClient });
const cookiecutterTemplater = new CookieCutter({ containerRunner });
const cookiecutterTemplater = new CookieCutter();
const craTemplater = new CreateReactAppTemplater({ containerRunner });
const craTemplater = new CreateReactAppTemplater();
const templaters = new Templaters();
templaters.register('cookiecutter', cookiecutterTemplater);
templaters.register('cra', craTemplater);
const preparers = await Preparers.fromConfig(config, { logger });
const publishers = await Publishers.fromConfig(config, { logger });
const dockerClient = new Docker();
const discovery = SingleHostDiscovery.fromConfig(config);
const catalogClient = new CatalogClient({ discoveryApi: discovery });
return await createRouter({
preparers,
templaters,
publishers,
logger,
config,
Patch Changes
38ca051
: The default@octokit/rest
dependency was bumped to"^18.5.3"
.69eefb5
: Fix GithubPR built-in actioncredentialsProvider.getCredentials
URL.Adding Documentation for GitHub PR built-in action.
75c8cec
: bumpjsonschema
from 1.2.7 to 1.4.0e0bfd3d
]38ca051
]d8b81fd
]d1b1306
]@backstage/plugin-techdocs-backend@0.8.0
Minor Changes
e0bfd3d
: Migrate the plugin to use theContainerRunner
interface instead ofrunDockerContainer(…)
.It also provides the
ContainerRunner
to the generators instead of to thecreateRouter
function.To apply this change to an existing backend application, add the following to
src/plugins/techdocs.ts
:Patch Changes
e0bfd3d
]38ca051
]e0bfd3d
]d8b81fd
]e9e56b0
]@backstage/catalog-client@0.3.11
Patch Changes
d1b1306
: Allowfilter
parameter to be specified multiple timesd8b81fd
]@backstage/catalog-model@0.7.8
Patch Changes
d8b81fd
: Bumpjson-schema
dependency from0.2.5
to0.3.0
.d8b81fd
]@backstage/cli@0.6.10
Patch Changes
f65adcd
: Fix some transitive dependency warnings in yarnfc79a6d
: Added lax option to backstage-cli app:build commandd8b81fd
: Bumpjson-schema
dependency from0.2.5
to0.3.0
.d8b81fd
]@backstage/config@0.1.5
Patch Changes
d8b81fd
: Bumpjson-schema
dependency from0.2.5
to0.3.0
.@backstage/config-loader@0.6.1
Patch Changes
d8b81fd
: Bumpjson-schema
dependency from0.2.5
to0.3.0
.d8b81fd
]@backstage/core@0.7.8
Patch Changes
f65adcd
: Fix some transitive dependency warnings in yarn8088865
: Bump react-hook-form version to be the same for the entire project.7b8272f
]d8b81fd
]@backstage/create-app@0.3.21
Patch Changes
38ca051
: The default@octokit/rest
dependency was bumped to"^18.5.3"
.e0bfd3d
: Thescaffolder-backend
andtechdocs-backend
plugins have been updated.In order to update, you need to apply the following changes to your existing backend application:
@backstage/plugin-techdocs-backend
:@backstage/plugin-scaffolder-backend
:export default async function createPlugin({
logger,
config,
database,
reader,
}: PluginEnvironment): Promise {
const dockerClient = new Docker();
const containerRunner = new DockerContainerRunner({ dockerClient });
const cookiecutterTemplater = new CookieCutter({ containerRunner });
const cookiecutterTemplater = new CookieCutter();
const craTemplater = new CreateReactAppTemplater({ containerRunner });
const craTemplater = new CreateReactAppTemplater();
const templaters = new Templaters();
templaters.register('cookiecutter', cookiecutterTemplater);
templaters.register('cra', craTemplater);
const preparers = await Preparers.fromConfig(config, { logger });
const publishers = await Publishers.fromConfig(config, { logger });
const dockerClient = new Docker();
const discovery = SingleHostDiscovery.fromConfig(config);
const catalogClient = new CatalogClient({ discoveryApi: discovery });
return await createRouter({
preparers,
templaters,
publishers,
logger,
config,
Updated dependencies [
e0bfd3d
]Updated dependencies [
e0bfd3d
]Updated dependencies [
e0bfd3d
]Updated dependencies [
38ca051
]Updated dependencies [
f65adcd
]Updated dependencies [
8088865
]Updated dependencies [
b219821
]Updated dependencies [
7b8272f
]Updated dependencies [
8aedbb4
]Updated dependencies [
fc79a6d
]Updated dependencies [
69eefb5
]Updated dependencies [
75c8cec
]Updated dependencies [
b2e2ec7
]Updated dependencies [
227439a
]Updated dependencies [
9314a85
]Updated dependencies [
2e05277
]Updated dependencies [
4075c63
]Updated dependencies [
cdb3426
]Updated dependencies [
d8b81fd
]Updated dependencies [
d1b1306
]@backstage/integration@0.5.2
Patch Changes
38ca051
: The default@octokit/rest
dependency was bumped to"^18.5.3"
.d8b81fd
]@backstage/theme@0.2.7
Patch Changes
7b8272f
: Remove extra bottom padding in InfoCard content@backstage/plugin-app-backend@0.3.12
Patch Changes
e0bfd3d
]38ca051
]d8b81fd
]@backstage/plugin-auth-backend@0.3.9
Patch Changes
e0bfd3d
]38ca051
]d8b81fd
]d1b1306
]@backstage/plugin-badges-backend@0.1.3
Patch Changes
e0bfd3d
]38ca051
]d8b81fd
]d1b1306
]@backstage/plugin-catalog-backend@0.8.2
Patch Changes
b219821
: ExposeBitbucketRepositoryParser
introduced in #5295227439a
: Add support for non-organization accounts in GitHub Discoverye0bfd3d
]38ca051
]d8b81fd
]@backstage/plugin-catalog-graphql@0.2.8
Patch Changes
e0bfd3d
]38ca051
]d8b81fd
]@backstage/plugin-catalog-import@0.5.5
Patch Changes
38ca051
: The default@octokit/rest
dependency was bumped to"^18.5.3"
.8088865
: Bump react-hook-form version to be the same for the entire project.8aedbb4
: Fixes a typo and minor wording changes to the catalog import UI38ca051
]f65adcd
]81c54d1
]8088865
]7b8272f
]d8b81fd
]d1b1306
]@backstage/plugin-catalog-react@0.1.5
Patch Changes
81c54d1
: Fetch relations in batches inuseRelatedEntities
f65adcd
]8088865
]d8b81fd
]d1b1306
]@backstage/plugin-code-coverage-backend@0.1.4
Patch Changes
e0bfd3d
]38ca051
]d8b81fd
]d1b1306
]@backstage/plugin-github-actions@0.4.5
Patch Changes
38ca051
: The default@octokit/rest
dependency was bumped to"^18.5.3"
.38ca051
]f65adcd
]81c54d1
]8088865
]7b8272f
]d8b81fd
]@backstage/plugin-graphql-backend@0.1.7
Patch Changes
e0bfd3d
]38ca051
]d8b81fd
]@backstage/plugin-kafka-backend@0.2.4
Patch Changes
e0bfd3d
]38ca051
]d8b81fd
]@backstage/plugin-kubernetes@0.4.3
Patch Changes
f53fba2
: Adds @backstage/plugin-kubernetes-common library to share types between kubernetes frontend and backend.f65adcd
]81c54d1
]8088865
]7b8272f
]d8b81fd
]@backstage/plugin-kubernetes-backend@0.3.6
Patch Changes
f53fba2
: Adds @backstage/plugin-kubernetes-common library to share types between kubernetes frontend and backend.e0bfd3d
]38ca051
]d8b81fd
]@backstage/plugin-proxy-backend@0.2.7
Patch Changes
cdb3426
: Prefix proxy routes with/
if not present in configuratione0bfd3d
]38ca051
]Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR has been generated by Renovate Bot.