Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update minor-and-patch (lts) #6038

Open
wants to merge 1 commit into
base: lts
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 3, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@apollo/gateway (source) 2.9.3 -> 2.10.0 age adoption passing confidence devDependencies minor
@babel/core (source) 7.26.0 -> 7.26.9 age adoption passing confidence devDependencies patch
@babel/preset-env (source) 7.26.0 -> 7.26.9 age adoption passing confidence devDependencies patch
@changesets/changelog-github (source) 0.5.0 -> 0.5.1 age adoption passing confidence dependencies patch
@changesets/cli (source) 2.27.11 -> 2.28.1 age adoption passing confidence dependencies minor
@graphql-tools/merge (source) 9.0.21 -> 9.0.22 age adoption passing confidence dependencies patch
@graphql-tools/resolvers-composition (source) 7.0.15 -> 7.0.16 age adoption passing confidence dependencies patch
@graphql-tools/schema (source) 10.0.20 -> 10.0.21 age adoption passing confidence dependencies patch
@graphql-tools/utils (source) 10.6.1 -> 10.8.4 age adoption passing confidence dependencies minor
@neo4j/cypher-builder (source) 2.3.1 -> 2.3.2 age adoption passing confidence dependencies patch
@types/amqplib (source) 0.10.6 -> 0.10.7 age adoption passing confidence devDependencies patch
@types/jsonwebtoken (source) 9.0.7 -> 9.0.9 age adoption passing confidence devDependencies patch
@types/node (source) 20.17.16 -> 20.17.23 age adoption passing confidence devDependencies patch
@types/ws (source) 8.5.13 -> 8.18.0 age adoption passing confidence devDependencies minor
@typescript-eslint/eslint-plugin (source) 8.21.0 -> 8.26.0 age adoption passing confidence devDependencies minor
@typescript-eslint/parser (source) 8.21.0 -> 8.26.0 age adoption passing confidence devDependencies minor
@urql/core (source) 5.1.0 -> 5.1.1 age adoption passing confidence dependencies patch
eslint-import-resolver-typescript 3.7.0 -> 3.8.3 age adoption passing confidence devDependencies minor
koa 2.15.3 -> 2.16.0 age adoption passing confidence devDependencies minor
lint-staged 15.4.2 -> 15.4.3 age adoption passing confidence devDependencies patch
neo4j-driver 5.27.0 -> 5.28.1 age adoption passing confidence devDependencies minor
reviewdog/action-actionlint v1.64.1 -> v1.65.0 age adoption passing confidence action minor
semver 7.6.3 -> 7.7.1 age adoption passing confidence devDependencies minor
ts-jest (source) 29.2.5 -> 29.2.6 age adoption passing confidence devDependencies patch
webpack 5.97.1 -> 5.98.0 age adoption passing confidence devDependencies minor
wonka 6.3.4 -> 6.3.5 age adoption passing confidence dependencies patch
ws 8.18.0 -> 8.18.1 age adoption passing confidence devDependencies patch
yarn (source) 4.6.0 -> 4.7.0 age adoption passing confidence packageManager minor

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

apollographql/federation (@​apollo/gateway)

v2.10.0

Compare Source

Patch Changes
babel/babel (@​babel/core)

v7.26.9

Compare Source

🐛 Bug Fix
🏠 Internal

v7.26.8

Compare Source

v7.26.8 (2025-02-08)

🏠 Internal
  • babel-preset-env
    • #​17097 Update dependency babel-plugin-polyfill-corejs3 to ^0.11.0

v7.26.7

Compare Source

🐛 Bug Fix
changesets/changesets (@​changesets/changelog-github)

v0.5.1

Compare Source

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

v9.0.22

Compare Source

Patch Changes
ardatan/graphql-tools (@​graphql-tools/resolvers-composition)

v7.0.16

Compare Source

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

v10.0.21

Compare Source

Patch Changes
ardatan/graphql-tools (@​graphql-tools/utils)

v10.8.4

Compare Source

Patch Changes

v10.8.3

Compare Source

Patch Changes

v10.8.2

Compare Source

Patch Changes

v10.8.1

Compare Source

Patch Changes

v10.8.0

Compare Source

Minor Changes
Patch Changes
  • 0a3e193
    Thanks @​ardatan! - Do not add _v prefix if there is only one
    argument/variable

v10.7.2

Compare Source

Patch Changes

v10.7.1

Compare Source

Patch Changes

v10.7.0

Compare Source

Minor Changes
  • #​6789
    2c70d27
    Thanks @​n1ru4l! - - New helper function getAbortPromise to get a
    promise rejected when AbortSignal is aborted

    • New helper function registerAbortSignalListener to register a listener to abort a promise when
      AbortSignal is aborted

    Instead of using .addEventListener('abort', () => {/* ... */}), we register a single listener to
    avoid warnings on Node.js like
    MaxListenersExceededWarning: Possible EventEmitter memory leak detected. 11 abort listeners added. Use emitter.setMaxListeners() to increase limit.

v10.6.4

Compare Source

Patch Changes

v10.6.3

Compare Source

Patch Changes
  • 020b9e4
    Thanks @​ardatan! - `AbortSignal` in `GraphQLResolveInfo`, and
    `AbortSignal` in `ExecutionRequest`

v10.6.2

Compare Source

Patch Changes
  • #​6737
    1b24656
    Thanks @​ardatan! - Handle array of primitives correctly

    The bug was following;

    mergeDeep([{ options: ['$a', '$b'] }, { options: ['$c'] }, { options: ['$d', '$e'] }])
    
    // results in { options: [{}, {}] }
neo4j/cypher-builder (@​neo4j/cypher-builder)

v2.3.2

Compare Source

Patch Changes
  • #​505 dd5acb5 Thanks @​angrykoala! - New options to disable automatic escaping of labels and relationship types have been added to the .build method on clauses, inside the new object unsafeEscapeOptions:

    • disableLabelEscaping (defaults to false): If set to true, node labels will not be escaped if unsafe.
    • disableRelationshipTypeEscaping (defaults to false): If set to true, relationship types will not be escaped if unsafe

    For example:

    const personNode = new Cypher.Node();
    const movieNode = new Cypher.Node();
    
    const matchQuery = new Cypher.Match(
        new Cypher.Pattern(personNode, {
            labels: ["Person"],
            properties: {
                ["person name"]: new Cypher.Literal(`Uneak "Seveer`),
            },
        })
            .related({ type: "ACTED IN" })
            .to(movieNode, { labels: ["A Movie"] })
    ).return(personNode);
    
    const queryResult = matchQuery.build({
        unsafeEscapeOptions: {
            disableLabelEscaping: true,
            disableRelationshipTypeEscaping: true,
        },
    });

    This query will generate the following (invalid) Cypher:

    MATCH (this0:Person { `person name`: "Uneak \"Seveer" })-[:ACTED IN]->(this1:A Movie)
    RETURN this0
    

    Instead of the default (safe) Cypher:

    MATCH (this0:Person { `person name`: "Uneak \"Seveer" })-[:`ACTED IN`]->(this1:`A Movie`)
    RETURN this0

    WARNING:: Changing these options may lead to code injection and unsafe Cypher.

typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v8.26.0

Compare Source

🚀 Features
  • eslint-plugin: [unified-signatures] support ignoring overload signatures with different JSDoc comments (#​10781)
  • eslint-plugin: [explicit-module-boundary-types] add an option to ignore overload implementations (#​10889)
  • eslint-plugin: [no-unused-var] handle implicit exports in declaration files (#​10714)
  • support TypeScript 5.8 (#​10903)
  • eslint-plugin: [no-unnecessary-type-parameters] special case tuples and parameter location arrays as single-use (#​9536)
🩹 Fixes
  • eslint-plugin: [no-unnecessary-type-assertion] handle unknown (#​10875)
  • eslint-plugin: [no-invalid-void-type] report accessor properties with an invalid void type (#​10864)
  • eslint-plugin: [unified-signatures] does not differentiate truly private methods (#​10806)
❤️ Thank You

You can read about our versioning strategy and releases on our website.

v8.25.0

Compare Source

🚀 Features
  • eslint-plugin: [no-misused-spread] add suggestions (#​10719)
🩹 Fixes
  • eslint-plugin: [prefer-nullish-coalescing] report on chain expressions in a ternary (#​10708)
  • eslint-plugin: [no-deprecated] report usage of deprecated private identifiers (#​10844)
  • eslint-plugin: [unified-signatures] handle getter-setter (#​10818)
❤️ Thank You

You can read about our versioning strategy and releases on our website.

v8.24.1

Compare Source

🩹 Fixes
  • eslint-plugin: [class-methods-use-this] check accessor methods with a function initializer (#​10796)
  • eslint-plugin: [no-misused-promises] don't report on static accessor properties (#​10814)
  • eslint-plugin: [no-deprecated] don't report on deprecated accessor property declaration (#​10813)
  • eslint-plugin: [explicit-member-accessibility] check accessor class properties for missing accessibility modifier (#​10805)
  • eslint-plugin: [explicit-module-boundary-types] check accessor class properties with a function initializer (#​10804)
  • eslint-plugin: [prefer-return-this-type] check accessor properties with a function initializer (#​10794)
  • eslint-plugin: [consistent-generic-constructors] check accessor class properties (#​10789)
  • eslint-plugin: [no-unsafe-assignment] report on an any value assigned as an initializer of an accessor property (#​10785)
  • eslint-plugin: [no-unnecessary-template-expression] ignore enum and enum members (#​10782)
  • eslint-plugin: [no-inferrable-types] handle accessor (#​10780)
❤️ Thank You
  • Ronen Amiel
  • YeonJuan

You can read about our versioning strategy and releases on our website.

v8.24.0

Compare Source

🚀 Features
  • eslint-plugin: [no-unnecessary-condition] make allowConstantLoopConditions more granular (#​10639)
🩹 Fixes
  • eslint-plugin: [no-misused-spread] correct and elaborate string spread report message (#​10751)
  • eslint-plugin: [restrict-plus-operands] report adding bigints to strings when allowNumberAndString is false (#​10737)
❤️ Thank You
  • Josh Goldberg ✨
  • noah
  • Ronen Amiel

You can read about our versioning strategy and releases on our website.

v8.23.0

Compare Source

🚀 Features
  • eslint-plugin: [no-unnecessary-boolean-literal-compare] enforce strictNullChecks (#​10712)
🩹 Fixes
  • eslint-plugin: [no-shadow] ignore declare variables in definition files shadowing global variables (#​10710)
  • eslint-plugin: [no-restricted-imports] support regex option (#​10699)
  • eslint-plugin: [dot-notation] handle noPropertyAccessFromIndexSignature true (#​10644)
  • eslint-plugin: [prefer-nullish-coalescing] fix missing return (#​10732)
  • bump ts-api-utils to ^2.0.1 (#​10761)
  • eslint-plugin: [no-unnecessary-template-expression] allow interpolating type parameter in type context (#​10739)
  • eslint-plugin: [switch-exhaustiveness-check] suggest with qualified name (#​10697)
  • eslint-plugin: [no-unnecessary-type-assertion] should report readonly class properties with a literal initializer (#​10618)
❤️ Thank You

You can read about our versioning strategy and releases on our website.

v8.22.0

Compare Source

🩹 Fixes
  • eslint-plugin: [no-unnecessary-template-expression] handle template literal type (#​10612)
  • eslint-plugin: [prefer-readonly] autofixer doesn't add type to property that is mutated in the constructor (#​10552)
  • eslint-plugin: [no-extraneous-class] handle accessor keyword (#​10678)
  • eslint-plugin: [no-shadow] don't report unnecessarily on valid ways of using module augmentation (#​10616)
  • eslint-plugin: [no-duplicate-type-constituents] handle nested types (#​10638)
  • eslint-plugin: [prefer-nullish-coalescing] doesn't report on ternary but on equivalent || (#​10517)
❤️ Thank You

You can read about our versioning strategy and releases on our website.

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v8.26.0

Compare Source

🚀 Features
❤️ Thank You

You can read about our versioning strategy and releases on our website.

v8.25.0

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.24.1

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.24.0

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.23.0

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.22.0

Compare Source

🚀 Features
  • parser: add standalone isolatedDeclarations option (#​10499)
❤️ Thank You
  • Josh Goldberg ✨

You can read about our versioning strategy and releases on our website.

urql-graphql/urql (@​urql/core)

v5.1.1

Compare Source

Patch Changes
  • Omit minified files and sourcemaps' sourcesContent in published packages
    Submitted by @​kitten (See #​3755)
import-js/eslint-import-resolver-typescript (eslint-import-resolver-typescript)

v3.8.3

Compare Source

Patch Changes

v3.8.2

Compare Source

Patch Changes

Configuration

📅 Schedule: Branch creation - "after 10pm every weekday,before 5am every weekday,every weekend" in timezone Europe/London, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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.


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

This PR was generated by Mend Renovate. View the repository job log.

renovate-approve[bot]
renovate-approve bot previously approved these changes Mar 3, 2025
Copy link

changeset-bot bot commented Mar 3, 2025

⚠️ No Changeset found

Latest commit: 23e60c5

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

renovate-approve[bot]
renovate-approve bot previously approved these changes Mar 4, 2025
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.

0 participants