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

Open
wants to merge 1 commit into
base: lts
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
@graphql-tools/wrap (source) 10.0.28 -> 10.0.29 age adoption passing confidence
@types/jsonwebtoken (source) 9.0.7 -> 9.0.8 age adoption passing confidence
@types/node (source) 20.17.16 -> 20.17.17 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
graphql-yoga (source) 5.10.11 -> 5.11.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
semver 7.6.3 -> 7.7.1 age adoption passing confidence

Warning

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


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: [{}, {}] }
graphql-hive/gateway (@​graphql-tools/wrap)

v10.0.29

Compare Source

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

dotansimha/graphql-yoga (graphql-yoga)

v5.11.0

Compare Source

Minor Changes
  • #​3727
    5fd15b8
    Thanks @​EmrysMyrddin! - Allow to configure the endpoint used by
    GraphiQL to send requests.

  • #​3736
    d13b8a4
    Thanks @​ardatan! - Now it is possible to replace or wrap the logic
    how GraphQLParams handled;

    By default Yoga calls Envelop to handle the parameters, but now you can replace it with your own
    logic.

    Example: Wrap the GraphQL handling pipeline in an AsyncLocalStorage

    function myPlugin(): Plugin {
      const context = new AsyncLocalStorage();
      return {
        onParams({ paramsHandler, setParamsHandler }) {
          const store = { foo: 'bar' }
          setParamsHandler(payload => context.run(store, paramsHandler, payload))
       }
    }
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
npm/node-semver (semver)

v7.7.1

Compare Source

Bug Fixes

v7.7.0

Compare Source

Features
Bug Fixes
Documentation
Chores

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.

Copy link

changeset-bot bot commented Feb 3, 2025

⚠️ No Changeset found

Latest commit: f025172

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/lts-minor-and-patch branch 2 times, most recently from fcb2e92 to ba61d5f Compare February 5, 2025 13:11
Copy link
Contributor Author

renovate bot commented Feb 5, 2025

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: examples/subscriptions/yoga_sse/package-lock.json
npm WARN ignoring workspace config at /tmp/renovate/repos/github/neo4j/graphql/examples/subscriptions/yoga_sse/.npmrc 
npm ERR! code EUNSUPPORTEDPROTOCOL
npm ERR! Unsupported URL Type "link:": link:../../..

npm ERR! A complete log of this run can be found in:
npm ERR!     /tmp/renovate/cache/others/npm/_logs/2025-02-06T16_59_00_415Z-debug-0.log

@renovate renovate bot force-pushed the renovate/lts-minor-and-patch branch from ba61d5f to f025172 Compare February 6, 2025 16:59
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