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) #5992

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 3, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@babel/core (source) 7.26.0 -> 7.26.7 age adoption passing confidence
@babel/preset-env (source) 7.26.0 -> 7.26.7 age adoption passing confidence
@changesets/cli (source) 2.27.11 -> 2.27.12 age adoption passing confidence
@graphql-tools/utils (source) 10.6.1 -> 10.7.2 age adoption passing confidence
@neo4j/cypher-builder (source) 2.3.0 -> 2.3.1 age adoption passing confidence
@types/jsonwebtoken (source) 9.0.7 -> 9.0.8 age adoption passing confidence
@types/node (source) 22.10.9 -> 22.13.1 age adoption passing confidence
@types/ws (source) 8.5.13 -> 8.5.14 age adoption passing confidence
@typescript-eslint/eslint-plugin (source) 8.21.0 -> 8.23.0 age adoption passing confidence
@typescript-eslint/parser (source) 8.21.0 -> 8.23.0 age adoption passing confidence
lint-staged 15.4.2 -> 15.4.3 age adoption passing confidence
neo4j-driver 5.27.0 -> 5.28.0 age adoption passing confidence
nock 14.0.0 -> 14.0.1 age adoption passing confidence

Release Notes

babel/babel (@​babel/core)

v7.26.7

Compare Source

🐛 Bug Fix
changesets/changesets (@​changesets/cli)

v2.27.12

Compare Source

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

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

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

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 renovate bot enabled auto-merge (squash) February 3, 2025 22:18
renovate-approve[bot]
renovate-approve bot previously approved these changes Feb 3, 2025
Copy link

changeset-bot bot commented Feb 3, 2025

⚠️ No Changeset found

Latest commit: 982977f

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