Skip to content

fix: update auto merge on patch or minor - #271

Merged
notaphplover merged 1 commit into
masterfrom
renovate/auto-merge-on-patch-or-minor
Sep 3, 2026
Merged

fix: update auto merge on patch or minor#271
notaphplover merged 1 commit into
masterfrom
renovate/auto-merge-on-patch-or-minor

Conversation

@inversify-app

@inversify-app inversify-app Bot commented Aug 17, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence Type Update Pending
@apollo/subgraph ^2.14.3^2.15.0 age confidence peerDependencies minor
@changesets/cli (source) 3.0.03.0.1 age confidence devDependencies patch
@commitlint/cli (source) 21.2.121.2.2 age confidence devDependencies patch
@commitlint/config-conventional (source) 21.2.021.2.2 age confidence devDependencies patch
@commitlint/prompt-cli (source) 21.2.021.2.2 age confidence devDependencies patch
@graphql-codegen/cli (source) ^7.2.0^7.3.1 age confidence dependencies minor 7.4.0
@graphql-codegen/plugin-helpers (source) 7.1.07.2.1 age confidence devDependencies minor 7.3.0
@graphql-tools/merge (source) 9.2.29.2.3 age confidence dependencies patch
@graphql-tools/schema (source) ^10.0.38^10.1.0 age confidence dependencies minor
@inversifyjs/foundation-changelog-generator (source) 0.2.00.2.1 age confidence devDependencies patch
@inversifyjs/foundation-vitest-config 0.2.10.2.2 age confidence devDependencies patch
@inversifyjs/http-core (source) ^5.4.8^5.5.2 age confidence peerDependencies minor 5.5.3
@inversifyjs/http-express (source) 5.4.85.5.2 age confidence devDependencies minor 5.5.3
@inversifyjs/http-fastify (source) 5.4.85.5.2 age confidence devDependencies minor 5.5.3
@vitest/coverage-v8 (source) 4.1.104.1.11 age confidence devDependencies patch
eslint (source) 10.8.110.9.1 age confidence devDependencies minor
fastify (source) 5.11.35.12.1 age confidence devDependencies minor
knip (source) 6.32.16.34.0 age confidence devDependencies minor
lint-staged 17.3.017.4.1 age confidence devDependencies minor
node (source) 24.19.024.20.0 age confidence minor
pnpm (source) 11.21.011.25.0 age confidence tool-constraint minor
pnpm (source) 11.21.011.25.0 age confidence packageManager minor
vitest (source) 4.1.104.1.11 age confidence devDependencies patch

Release Notes

apollographql/subgraph-js (@​apollo/subgraph)

v2.15.0

Compare Source

This release is a generic reimplementation of @apollo/subgraph
that can be used with any graphql-js compatible subgraphs. Unless
otherwise noted, behavior is intended to stay compatible with the
previous implementation.

Changed
  • Use graphql-js functionality over custom logic. All logic is now
    re-implemented using graphql-js functionality. @apollo/federation-internals is no
    longer a dependency.
  • printSubgraphSchema now prints the complete schema, federation
    directives, types, and root fields included. NOTE: It is just a thin wrapper around
    @graphql-tools/utils's printSchemaWithDirectives.
Removed
  • LegacySchemaModule input shape. buildSubgraphSchema no longer accepts
    Apollo Server's old { typeDefs, resolvers } object shape. Pass an array of
    { typeDefs, resolvers } modules (or a bare DocumentNode) instead:

    - buildSubgraphSchema({ typeDefs, resolvers })
    + buildSubgraphSchema([{ typeDefs, resolvers }])

v2.14.4

Compare Source

changesets/changesets (@​changesets/cli)

v3.0.1

Compare Source

Patch Changes
conventional-changelog/commitlint (@​commitlint/cli)

v21.2.2

Compare Source

Note: Version bump only for package @​commitlint/cli

conventional-changelog/commitlint (@​commitlint/config-conventional)

v21.2.2

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

conventional-changelog/commitlint (@​commitlint/prompt-cli)

v21.2.2

Compare Source

Note: Version bump only for package @​commitlint/prompt-cli

dotansimha/graphql-code-generator (@​graphql-codegen/cli)

v7.3.1

Compare Source

Patch Changes
  • #​10924
    0c8f5ba
    Thanks @​eddeee888! - Fix profiler output not being written to the
    filesystem in watch mode (--profile --watch)

    The profiler trace was only written on the non-watch code path, after the watch-mode early return,
    so a profiled watch session never produced a codegen-*.json file.

    The profiler now writes a fresh trace file after the initial run and after every rebuild, with
    each file containing only that run's events. A failed rebuild does not produce a trace and its
    events are discarded so they don't leak into the next successful run.

    The Profiler now owns its own trace lifecycle:

    • a new clear() method starts a new trace
    • a new outputName property provides the filename for the current trace (null for the noop
      profiler)
    • filename generation was removed from CodegenContext
  • Updated dependencies
    [0c8f5ba]:

v7.3.0

Compare Source

Minor Changes
  • #​10921
    58cdb31
    Thanks @​eddeee888! - Extend overwrite with
    overwrite.removeStaleFiles and overwrite.updateExistingFiles

    overwrite was being used to both remove stale files in watch mode and update existing files.
    Some plugins such as Server Preset may dynamically return files to write between watch runs (for
    performance purposes).

    The overwrite can now take an object with overwrite.removeStaleFiles and
    overwrite.updateExistingFiles fields to allow granular control over actions.

    This is not a breaking change because overwrite=true|false still works.

Patch Changes
dotansimha/graphql-code-generator (@​graphql-codegen/plugin-helpers)

v7.2.1

Compare Source

Patch Changes
  • #​10924
    0c8f5ba
    Thanks @​eddeee888! - Fix profiler output not being written to the
    filesystem in watch mode (--profile --watch)

    The profiler trace was only written on the non-watch code path, after the watch-mode early return,
    so a profiled watch session never produced a codegen-*.json file.

    The profiler now writes a fresh trace file after the initial run and after every rebuild, with
    each file containing only that run's events. A failed rebuild does not produce a trace and its
    events are discarded so they don't leak into the next successful run.

    The Profiler now owns its own trace lifecycle:

    • a new clear() method starts a new trace
    • a new outputName property provides the filename for the current trace (null for the noop
      profiler)
    • filename generation was removed from CodegenContext

v7.2.0

Compare Source

Minor Changes
  • #​10921
    58cdb31
    Thanks @​eddeee888! - Extend overwrite with
    overwrite.removeStaleFiles and overwrite.updateExistingFiles

    overwrite was being used to both remove stale files in watch mode and update existing files.
    Some plugins such as Server Preset may dynamically return files to write between watch runs (for
    performance purposes).

    The overwrite can now take an object with overwrite.removeStaleFiles and
    overwrite.updateExistingFiles fields to allow granular control over actions.

    This is not a breaking change because overwrite=true|false still works.

ardatan/graphql-tools (@​graphql-tools/merge)

v9.2.3

Compare Source

Patch Changes
  • #​8349
    7fe0319
    Thanks @​aarne! - Pass the collected directive definitions to
    mergeSchemaDefs so repeatable directives on schema definitions and extend schema extensions
    (e.g. a repeatable @link) are kept as separate instances instead of being collapsed and having
    their arguments merged.

  • Updated dependencies
    [2273c21]:

ardatan/graphql-tools (@​graphql-tools/schema)

v10.1.0

Compare Source

Minor Changes
  • #​8346
    2273c21
    Thanks @​ardatan! - This release adds GraphQL v17 support and aligns
    the existing executor implementation with the latest GraphQL v17 API changes. The following
    changes are included:

    • getAsyncHelpers is now available on GraphQLResolveInfo. Its track method is used whenever
      waitUntil is available, as in Yoga's
      Explicit Resource Management
    • getAbortSignal is now available on GraphQLResolveInfo, matching behavior that was already
      available in this executor implementation, as in Yoga's
      Execution Cancellation
    • GraphQLResolveInfo automatically aligns variableValues according to the GraphQL version for
      better compatibility. In GraphQL v17 and above, variableValues follows the wrapped shape
      ({ coerced, sources }) expected by GraphQL APIs. In GraphQL v16 and below, variableValues
      remains a flat map as in previous versions.
    • If your custom scalar resolvers define __serialize and __parseValue, they are automatically
      mapped to coerceOutputValue and coerceInputValue in GraphQL v17.
    • BREAKING: @graphql-tools/executor's getVariableValues now returns { variableValues }
      on success, where variableValues is a VariableValues object ({ coerced, sources }). On
      failure, it returns { errors }.
    • BREAKING: collectFields, shouldIncludeNode, getDeferValues, and collectSubFields now
      need a VariableValues object instead of Record<string, any> for the variableValues
      argument.
    • visitResult now internally normalizes ExecutionRequest.variables into a
      VariableValues-compatible shape ({ coerced, sources }) before traversing selections.
Patch Changes
inversify/monorepo (@​inversifyjs/foundation-changelog-generator)

v0.2.1

Compare Source

Patch Changes
  • Bumped changesets types.
vitest-dev/vitest (@​vitest/coverage-v8)

v4.1.11

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
eslint/eslint (eslint)

v10.9.1

Compare Source

Bug Fixes

  • 1e641c9 fix: no-loss-of-precision false positive with trailing decimal point (#​21251) (Aleksandr Shoronov)

Documentation

  • ad74a8d docs: add deprecation steps for EOL package versions (#​21248) (Francesco Trotta)

Chores

v10.9.0

Compare Source

Features

  • 08de88e feat: handle underflow in no-loss-of-precision (#​21218) (Rithish S)
  • 55db479 feat: add checkConditionalExpressions to no-unmodified-loop-condition (#​21175) (sethamus)

Bug Fixes

  • 2ba3025 fix: prevent unsafe no-var autofix with hoisted functions (#​21213) (sethamus)
  • 8e69622 fix: Prevent no-var autofix when var is shadowed by catch parameter (#​21204) (Yang Hyeonjong)
  • 684b579 fix: prefer-template invalid autofix creates a tagged template call (#​21207) (김채영)

Documentation

  • 9ef407a docs: use eslint.config.* wherever config file names are listed (#​21216) (Marry (Subin Yang))
  • 87f66f4 docs: Update README (GitHub Actions Bot)
  • 585ef37 docs: update architecture documentation (#​21112) (Francesco Trotta)
  • f3993b0 docs: Update README (GitHub Actions Bot)
  • ffc87d6 docs: fix broken links in Further Reading sections (#​21203) (Minsu)
  • 1a761e1 docs: update moved JSX specification links (#​21198) (Imran Mustafa)
  • 4d00ca4 docs: update ESLint peer dependency to ^10.0.0 in shareable configs (#​21202) (lumir)
  • 510d1a2 docs: Update README (GitHub Actions Bot)

Chores

fastify/fastify (fastify)

v5.12.1

Compare Source

⚠️ Security release
What's Changed

Full Changelog: fastify/fastify@v5.12.0...v5.12.1

v5.12.0

Compare Source

What's Changed

Full Changelog: fastify/fastify@v5.11.3...v5.12.0

webpro-nl/knip (knip)

v6.34.0: Release 6.34.0

Compare Source

v6.33.0: Release 6.33.0

Compare Source

v6.32.3: Release 6.32.3

Compare Source

v6.32.2: Release 6.32.2

Compare Source

lint-staged/lint-staged (lint-staged)

v17.4.1

Compare Source

Patch Changes
  • #​1840 efe5b63 - This is a version-bump-only release because the previous version 17.4.0 was not published to npmjs.com due to problems with GitHub Actions and Changesets.
nodejs/node (node)

v24.20.0: 2026-08-26, Version 24.20.0 'Krypton' (LTS), @​aduh95

Compare Source

Notable Changes
Commits

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate CLI.

@inversify-app
inversify-app Bot requested a review from notaphplover as a code owner August 17, 2026 00:38
@changeset-bot

changeset-bot Bot commented Aug 17, 2026

Copy link
Copy Markdown

⚠️ No Changeset found

Latest commit: 69f2087

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@inversify-app
inversify-app Bot force-pushed the renovate/auto-merge-on-patch-or-minor branch from 7d84369 to edeb29d Compare August 24, 2026 00:39
@inversify-app
inversify-app Bot force-pushed the renovate/auto-merge-on-patch-or-minor branch from edeb29d to f7376a0 Compare August 31, 2026 02:12
@inversify-app
inversify-app Bot force-pushed the renovate/auto-merge-on-patch-or-minor branch from f7376a0 to 69f2087 Compare September 3, 2026 22:59
@notaphplover
notaphplover merged commit 23d2e5a into master Sep 3, 2026
6 checks passed
@notaphplover
notaphplover deleted the renovate/auto-merge-on-patch-or-minor branch September 3, 2026 23:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant