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 (dev) #6008

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 18, 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.19 -> 9.0.20 age adoption passing confidence dependencies patch
@graphql-tools/resolvers-composition (source) 7.0.13 -> 7.0.14 age adoption passing confidence dependencies patch
@graphql-tools/schema (source) 10.0.18 -> 10.0.19 age adoption passing confidence dependencies patch
@graphql-tools/utils (source) 10.6.1 -> 10.8.2 age adoption passing confidence dependencies minor
@neo4j/cypher-builder (source) 2.3.0 -> 2.3.1 age adoption passing confidence dependencies patch
@types/jsonwebtoken (source) 9.0.7 -> 9.0.8 age adoption passing confidence devDependencies patch
@types/node (source) 22.10.9 -> 22.13.5 age adoption passing confidence devDependencies minor
@types/ws (source) 8.5.13 -> 8.5.14 age adoption passing confidence devDependencies patch
@typescript-eslint/eslint-plugin (source) 8.21.0 -> 8.24.1 age adoption passing confidence devDependencies minor
@typescript-eslint/parser (source) 8.21.0 -> 8.24.1 age adoption passing confidence devDependencies minor
eslint-import-resolver-typescript 3.7.0 -> 3.8.3 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
nock 14.0.0 -> 14.0.1 age adoption passing confidence devDependencies patch
prettier (source) 3.4.2 -> 3.5.1 age adoption passing confidence devDependencies minor
reviewdog/action-actionlint v1.64.1 -> v1.65.0 age adoption passing confidence action minor
webpack 5.97.1 -> 5.98.0 age adoption passing confidence devDependencies minor
ws 8.18.0 -> 8.18.1 age adoption passing confidence devDependencies patch

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.20

Compare Source

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

v7.0.14

Compare Source

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

v10.0.19

Compare Source

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

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.1

Compare Source

Patch Changes
  • #​497 e544b91 Thanks @​angrykoala! - Support for assigning maps and variables directly to variables with .set to override all properties of a node:

    new Cypher.Match(new Cypher.Pattern(movie)).set([
        movie,
        new Cypher.Map({
            title: new Cypher.Param("The Matrix"),
            year: new Cypher.Param(1999),
        }),
    ]);
    MATCH (this0)
    SET
        this0 = { title: $param0, year: $param1 }
typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

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.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.

import-js/eslint-import-resolver-typescript (eslint-import-resolver-typescript)

v3.8.3

Compare Source

Patch Changes

v3.8.2

Compare Source

Patch Changes

v3.8.1

Compare Source

Patch Changes

v3.8.0

Compare Source

Minor Changes
  • #​345 fcc8883 Thanks @​carlocorradini! - Enable the mapper function just for a set of allowed files. Improves project discovery using glob and POSIX separator.

  • #​346 c124e87 Thanks @​carlocorradini! - Update get-tsconfig to the the latest version. We now support the ${configDir} variable, introduced in TypeScript 5.5.

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

v15.4.3

Compare Source

Patch Changes
  • #​1512 cbfed1d Thanks @​tarik02! - Adjust TypeScript types for the default export so that it can be used as a value without error TS2693.
neo4j/neo4j-javascript-driver (neo4j-driver)

v5.28.1

Compare Source

Patch release fixing the new handshake for some potential future bolt protocol versions.

🔧 Fixes

  • Fix handshake manifest parsing in preparation of future bolt versions. #​1253

v5.28.0

Compare Source

Implements caching of home databases, saving significant round trips, primarily for usage against Aura, along with improved error handling, DateTime conversion and a new handshake protocol.

👏🏼 Improvements

  • Adds background caching of home databases, saving up to 33% of round trips when the user does not specify a target database. #​1235
  • Implements a new handshake protocol for Bolt, allowing more granular selection of protocol versions in the future. #​1243
🔧 Fixes

  • Improve handling and error communication when the user supplies a circular object in a custom auth token. #​1247
  • Fix the conversion between driver and JavaScript DateTimes when the local timezone has rare minute offsets from UTC. #​1238
nock/nock (nock)

v14.0.1

Compare Source

Bug Fixes
  • recorder: response body accessed multiple times in parallel requests (#​2840) (ac7a1b2)
prettier/prettier (prettier)

v3.5.1

Compare Source

diff

Fix CLI crash when cache for old version exists (#​17100 by @​sosukesuzuki)

Prettier 3.5 uses a different cache format than previous versions, Prettier 3.5.0 crashes when reading existing cache file, Prettier 3.5.1 fixed the problem.

Support dockercompose and github-actions-workflow in VSCode (#​17101 by @​remcohaszing)

Prettier now supports the dockercompose and github-actions-workflow languages in Visual Studio Code.

v3.5.0

Compare Source

diff

🔗 Release Notes

reviewdog/action-actionlint (reviewdog/action-actionlint)

v1.65.0

Compare Source

v1.65.0: PR #​155 - feat: add arm support

webpack/webpack (webpack)

v5.98.0

Compare Source

Fixes
Performance Improvements
Chores
Features
Continuous Integration

New Contributors

Full Changelog: webpack/webpack@v5.97.1...v5.98.0

websockets/ws (ws)

v8.18.1

Compare Source


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 Feb 18, 2025
Copy link

changeset-bot bot commented Feb 18, 2025

⚠️ No Changeset found

Latest commit: 69ee63a

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 renovate bot force-pushed the renovate/dev-minor-and-patch branch from fd85a69 to fafb59d Compare February 18, 2025 09:50
@renovate renovate bot force-pushed the renovate/dev-minor-and-patch branch from fafb59d to 117f4b6 Compare February 18, 2025 15:33
renovate-approve[bot]
renovate-approve bot previously approved these changes Feb 18, 2025
@renovate renovate bot force-pushed the renovate/dev-minor-and-patch branch from 117f4b6 to 33b1f3d Compare February 19, 2025 14:00
@renovate renovate bot force-pushed the renovate/dev-minor-and-patch branch from 33b1f3d to fe9caa6 Compare February 20, 2025 16:26
renovate-approve[bot]
renovate-approve bot previously approved these changes Feb 20, 2025
renovate-approve[bot]
renovate-approve bot previously approved these changes Feb 21, 2025
renovate-approve[bot]
renovate-approve bot previously approved these changes Feb 21, 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