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

chore(deps): update all non-major dependencies #451

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 21, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@apollo/client (source) 3.10.5 -> 3.11.10 age adoption passing confidence devDependencies minor
@changesets/cli (source) 2.27.5 -> 2.27.9 age adoption passing confidence devDependencies patch
@graphql-codegen/cli (source) 5.0.2 -> 5.0.3 age adoption passing confidence devDependencies patch
@graphql-codegen/client-preset (source) 4.3.0 -> 4.5.0 age adoption passing confidence devDependencies minor
@types/jest (source) 29.5.12 -> 29.5.14 age adoption passing confidence devDependencies patch
@types/node (source) 16.18.98 -> 16.18.119 age adoption passing confidence devDependencies patch
@types/node-fetch (source) 2.6.11 -> 2.6.12 age adoption passing confidence devDependencies patch
eslint (source) 8.57.0 -> 8.57.1 age adoption passing confidence devDependencies patch
graphql 16.8.2 -> 16.9.0 age adoption passing confidence devDependencies minor
loglevel 1.9.1 -> 1.9.2 age adoption passing confidence devDependencies patch
node (source) 20.14.0 -> 20.18.0 age adoption passing confidence volta minor
npm (source) 10.8.1 -> 10.9.0 age adoption passing confidence volta minor
prettier (source) 3.3.2 -> 3.3.3 age adoption passing confidence devDependencies patch
ts-jest (source) 29.1.5 -> 29.2.5 age adoption passing confidence devDependencies minor
typescript (source) 5.4.5 -> 5.6.3 age adoption passing confidence devDependencies minor
winston 3.13.0 -> 3.17.0 age adoption passing confidence devDependencies minor
winston-transport 4.7.0 -> 4.9.0 age adoption passing confidence devDependencies minor

Release Notes

apollographql/apollo-client (@​apollo/client)

v3.11.10

Compare Source

Patch Changes
  • #​12093 1765668 Thanks @​mgmolisani! - Fixed a bug when evaluating the devtools flag with the new syntax devtools.enabled that could result to true when explicitly set to false.

v3.11.9

Compare Source

Patch Changes
  • #​12110 a3f95c6 Thanks @​jerelmiller! - Fix an issue where errors returned from a fetchMore call from a Suspense hook would cause a Suspense boundary to be shown indefinitely.

v3.11.8

Compare Source

Patch Changes

v3.11.7

Compare Source

Patch Changes
  • #​12052 e471cef Thanks @​jerelmiller! - Fixes a regression from where passing an invalid identifier to from in useFragment would result in the warning TypeError: Cannot read properties of undefined (reading '__typename').

v3.11.6

Compare Source

Patch Changes

v3.11.5

Compare Source

Patch Changes

v3.11.4

Compare Source

Patch Changes
  • #​11994 41b17e5 Thanks @​jerelmiller! - Update the Modifier function type to allow cache.modify to return deeply partial data.

  • #​11989 e609156 Thanks @​phryneas! - Fix a potential crash when calling clearStore while a query was running.

    Previously, calling client.clearStore() while a query was running had one of these results:

    • useQuery would stay in a loading: true state.
    • useLazyQuery would stay in a loading: true state, but also crash with a "Cannot read property 'data' of undefined" error.

    Now, in both cases, the hook will enter an error state with a networkError, and the promise returned by the useLazyQuery execute function will return a result in an error state.

  • #​11994 41b17e5 Thanks @​jerelmiller! - Prevent accidental distribution on cache.modify field modifiers when a field is a union type array.

v3.11.3

Compare Source

Patch Changes
Potentially disruptive change

When calling fetchMore with a query that has a no-cache fetch policy, fetchMore will now throw if an updateQuery function is not provided. This provides a mechanism to merge the results from the fetchMore call with the query's previous result.

v3.11.2

Compare Source

Patch Changes

v3.11.1

Compare Source

Patch Changes
  • #​11969 061cab6 Thanks @​jerelmiller! - Remove check for window.__APOLLO_CLIENT__ when determining whether to connect to Apollo Client Devtools when connectToDevtools or devtools.enabled is not specified. This now simply checks to see if the application is in development mode.

  • #​11971 ecf77f6 Thanks @​jerelmiller! - Prevent the setTimeout for suggesting devtools from running in non-browser environments.

v3.11.0

Compare Source

Potentially Breaking Fixes
  • #​11789 5793301 Thanks @​phryneas! - Changes usages of the GraphQLError type to GraphQLFormattedError.

    This was a type bug - these errors were never GraphQLError instances
    to begin with, and the GraphQLError class has additional properties that can
    never be correctly rehydrated from a GraphQL result.
    The correct type to use here is GraphQLFormattedError.

    Similarly, please ensure to use the type FormattedExecutionResult
    instead of ExecutionResult - the non-"Formatted" versions of these types
    are for use on the server only, but don't get transported over the network.

  • #​11626 228429a Thanks @​phryneas! - Call nextFetchPolicy with "variables-changed" even if there is a fetchPolicy specified.

    Previously this would only be called when the current fetchPolicy was equal to the fetchPolicy option or the option was not specified. If you use nextFetchPolicy as a function, expect to see this function called more often.

    Due to this bug, this also meant that the fetchPolicy might be reset to the initial fetchPolicy, even when you specified a nextFetchPolicy function. If you previously relied on this behavior, you will need to update your nextFetchPolicy callback function to implement this resetting behavior.

    As an example, if your code looked like the following:

    useQuery(QUERY, {
      nextFetchPolicy(currentFetchPolicy, info) {
        // your logic here
      }
    );

    Update your function to the following to reimplement the resetting behavior:

    useQuery(QUERY, {
      nextFetchPolicy(currentFetchPolicy, info) {
        if (info.reason === 'variables-changed') {
          return info.initialFetchPolicy;
        }
        // your logic here
      }
    );
Minor Changes
Patch Changes

v3.10.8

Compare Source

Patch Changes

v3.10.7

Compare Source

Patch Changes

v3.10.6

Compare Source

Patch Changes
changesets/changesets (@​changesets/cli)

v2.27.9

Compare Source

Patch Changes

v2.27.8

Compare Source

v2.27.7

Compare Source

Patch Changes

v2.27.6

Compare Source

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

v5.0.3

Compare Source

Patch Changes
dotansimha/graphql-code-generator (@​graphql-codegen/client-preset)

v4.5.0

Compare Source

Minor Changes
Patch Changes

v4.4.0

Compare Source

Minor Changes
Patch Changes

v4.3.3

Compare Source

Patch Changes

v4.3.2

Compare Source

Patch Changes

v4.3.1

Compare Source

Patch Changes
eslint/eslint (eslint)

v8.57.1

Compare Source

graphql/graphql-js (graphql)

v16.9.0

Compare Source

v16.9.0 (2024-06-21)

New Feature 🚀
  • #​4119 backport[v16]: Introduce "recommended" validation rules (@​benjie)
  • #​4122 backport[v16]: Enable passing values configuration to GraphQLEnumType as a thunk (@​benjie)
  • #​4124 backport[v16]: Implement OneOf Input Objects via @oneOf directive (@​benjie)
Committers: 1
pimterry/loglevel (loglevel)

v1.9.2

Compare Source

nodejs/node (node)

v20.18.0: 2024-10-03, Version 20.18.0 'Iron' (LTS), @​targos

Compare Source

Notable Changes
Experimental Network Inspection Support in Node.js

This update introduces the initial support for network inspection in Node.js.
Currently, this is an experimental feature, so you need to enable it using the --experimental-network-inspection flag.
With this feature enabled, you can inspect network activities occurring within a JavaScript application.

To use network inspection, start your Node.js application with the following command:

$ node --inspect-wait --experimental-network-inspection index.js

Please note that the network inspection capabilities are in active development.
We are actively working on enhancing this feature and will continue to expand its functionality in future updates.

Contributed by Kohei Ueno in #​53593 and #​54246

Exposes X509_V_FLAG_PARTIAL_CHAIN to tls.createSecureContext

This releases introduces a new option to the API tls.createSecureContext. From
now on, tls.createSecureContext({ allowPartialTrustChain: true }) can be used
to treat intermediate (non-self-signed) certificates in the trust CA certificate
list as trusted.

Contributed by Anna Henningsen in #​54790

New option for vm.createContext() to create a context with a freezable globalThis

Node.js implements a flavor of vm.createContext() and friends that creates a context without contextifying its global
object when vm.constants.DONT_CONTEXTIFY is used. This is suitable when users want to freeze the context
(impossible when the global is contextified i.e. has interceptors installed) or speed up the global access if they
don't need the interceptor behavior.

Contributed by Joyee Cheung in #​54394

Deprecations
  • [64aa31f6e5] - repl: doc-deprecate instantiating node:repl classes without new (Aviv Keller) #​54842
  • [4c52ee3d7f] - zlib: deprecate instantiating classes without new (Yagiz Nizipli) #​54708
Other Notable Changes
Commits

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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 requested a review from a team as a code owner June 21, 2024 18:32
Copy link

changeset-bot bot commented Jun 21, 2024

⚠️ No Changeset found

Latest commit: e90e7ec

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

Copy link

codesandbox-ci bot commented Jun 21, 2024

This pull request is automatically built and testable in CodeSandbox.

To see build info of the built libraries, click here or the icon next to each commit SHA.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 08fc129 to e8806bd Compare July 1, 2024 10:26
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 4ba69c8 to d5a57fe Compare July 8, 2024 19:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 237ecb7 to 0d6d8cb Compare July 16, 2024 23:40
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from b8d122f to da0808e Compare July 24, 2024 13:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 8fcd1c9 to 30c0f20 Compare August 2, 2024 19:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 83a2536 to 4e7e227 Compare September 9, 2024 16:56
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from fbd99e6 to 0915870 Compare September 16, 2024 16:26
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from b48856e to 9f0b731 Compare September 27, 2024 19:49
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from eee5542 to 2ac9cd4 Compare October 9, 2024 01:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 059457b to 1fede80 Compare October 23, 2024 08:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from b94882a to 5232ce4 Compare November 3, 2024 09:29
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 52c3977 to be87c5f Compare November 10, 2024 03:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants