apollographql / apollo-utils

Monorepo of common utilities related to Apollo and GraphQL
MIT License
36 stars 9 forks source link

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

Open renovate[bot] opened 2 months ago

renovate[bot] commented 2 months ago

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@apollo/client (source) 3.10.5 -> 3.11.8 age adoption passing confidence devDependencies minor
@changesets/cli (source) 2.27.5 -> 2.27.8 age adoption passing confidence devDependencies patch
@graphql-codegen/client-preset (source) 4.3.0 -> 4.3.3 age adoption passing confidence devDependencies patch
@types/jest (source) 29.5.12 -> 29.5.13 age adoption passing confidence devDependencies patch
@types/node (source) 16.18.98 -> 16.18.108 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.17.0 age adoption passing confidence volta minor
npm (source) 10.8.1 -> 10.8.3 age adoption passing confidence volta patch
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.2 age adoption passing confidence devDependencies minor
winston 3.13.0 -> 3.14.2 age adoption passing confidence devDependencies minor
winston-transport 4.7.0 -> 4.7.1 age adoption passing confidence devDependencies patch

Release Notes

apollographql/apollo-client (@​apollo/client) ### [`v3.11.8`](https://redirect.github.com/apollographql/apollo-client/blob/HEAD/CHANGELOG.md#3118) [Compare Source](https://redirect.github.com/apollographql/apollo-client/compare/v3.11.7...v3.11.8) ##### Patch Changes - [#​12054](https://redirect.github.com/apollographql/apollo-client/pull/12054) [`35cf186`](https://redirect.github.com/apollographql/apollo-client/commit/35cf186ed9237e41735f150e0cbf4edd995ab0d9) Thanks [@​phryneas](https://redirect.github.com/phryneas)! - Fixed a bug where incorrect object access in some Safari extensions could cause a crash. ### [`v3.11.7`](https://redirect.github.com/apollographql/apollo-client/blob/HEAD/CHANGELOG.md#3117) [Compare Source](https://redirect.github.com/apollographql/apollo-client/compare/v3.11.6...v3.11.7) ##### Patch Changes - [#​12052](https://redirect.github.com/apollographql/apollo-client/pull/12052) [`e471cef`](https://redirect.github.com/apollographql/apollo-client/commit/e471cef875eadef04f8ee18ef431ee70e7b9bcab) Thanks [@​jerelmiller](https://redirect.github.com/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`](https://redirect.github.com/apollographql/apollo-client/blob/HEAD/CHANGELOG.md#3116) [Compare Source](https://redirect.github.com/apollographql/apollo-client/compare/v3.11.5...v3.11.6) ##### Patch Changes - [#​12049](https://redirect.github.com/apollographql/apollo-client/pull/12049) [`9c26892`](https://redirect.github.com/apollographql/apollo-client/commit/9c268927b1f8e5921b9440a53c9979a37f594e75) Thanks [@​phryneas](https://redirect.github.com/phryneas) and [@​maciesielka](https://redirect.github.com/maciesielka)! - Fix a bug where `useFragment` did not re-render as expected - [#​12044](https://redirect.github.com/apollographql/apollo-client/pull/12044) [`04462a2`](https://redirect.github.com/apollographql/apollo-client/commit/04462a274ad39b392142385a2f052abbf3014749) Thanks [@​DoctorJohn](https://redirect.github.com/DoctorJohn)! - Cache the `useSubscription` hook's `restart` function definition between re-renders. ### [`v3.11.5`](https://redirect.github.com/apollographql/apollo-client/blob/HEAD/CHANGELOG.md#3115) [Compare Source](https://redirect.github.com/apollographql/apollo-client/compare/v3.11.4...v3.11.5) ##### Patch Changes - [#​12027](https://redirect.github.com/apollographql/apollo-client/pull/12027) [`eb3e21b`](https://redirect.github.com/apollographql/apollo-client/commit/eb3e21b9f7fa6a3161705c2c7270129c17b65095) Thanks [@​JavaScriptBach](https://redirect.github.com/JavaScriptBach)! - Type `MutationResult.reset` as an arrow function - [#​12020](https://redirect.github.com/apollographql/apollo-client/pull/12020) [`82d8cb4`](https://redirect.github.com/apollographql/apollo-client/commit/82d8cb4255be497748829f12eb25ac87c11ee5e4) Thanks [@​jerelmiller](https://redirect.github.com/jerelmiller)! - Better conform to Rules of React by avoiding write of ref in render for `useFragment`. ### [`v3.11.4`](https://redirect.github.com/apollographql/apollo-client/blob/HEAD/CHANGELOG.md#3114) [Compare Source](https://redirect.github.com/apollographql/apollo-client/compare/v3.11.3...v3.11.4) ##### Patch Changes - [#​11994](https://redirect.github.com/apollographql/apollo-client/pull/11994) [`41b17e5`](https://redirect.github.com/apollographql/apollo-client/commit/41b17e5950f4db5ef9e32ded5bb327b3bf19e6e8) Thanks [@​jerelmiller](https://redirect.github.com/jerelmiller)! - Update the `Modifier` function type to allow `cache.modify` to return deeply partial data. - [#​11989](https://redirect.github.com/apollographql/apollo-client/pull/11989) [`e609156`](https://redirect.github.com/apollographql/apollo-client/commit/e609156c4989def88ae1a28b2e0f0378077a5528) Thanks [@​phryneas](https://redirect.github.com/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](https://redirect.github.com/apollographql/apollo-client/pull/11994) [`41b17e5`](https://redirect.github.com/apollographql/apollo-client/commit/41b17e5950f4db5ef9e32ded5bb327b3bf19e6e8) Thanks [@​jerelmiller](https://redirect.github.com/jerelmiller)! - Prevent accidental distribution on `cache.modify` field modifiers when a field is a union type array. ### [`v3.11.3`](https://redirect.github.com/apollographql/apollo-client/blob/HEAD/CHANGELOG.md#3113) [Compare Source](https://redirect.github.com/apollographql/apollo-client/compare/v3.11.2...v3.11.3) ##### Patch Changes - [#​11984](https://redirect.github.com/apollographql/apollo-client/pull/11984) [`5db1659`](https://redirect.github.com/apollographql/apollo-client/commit/5db1659dc07e3de697894fc1c6f00a151d068291) Thanks [@​jerelmiller](https://redirect.github.com/jerelmiller)! - Fix an issue where multiple fetches with results that returned errors would sometimes set the `data` property with an `errorPolicy` of `none`. - [#​11974](https://redirect.github.com/apollographql/apollo-client/pull/11974) [`c95848e`](https://redirect.github.com/apollographql/apollo-client/commit/c95848e859fb7ce0b3b9439ac71dff880f991450) Thanks [@​jerelmiller](https://redirect.github.com/jerelmiller)! - Fix an issue where `fetchMore` would write its result data to the cache when using it with a `no-cache` fetch policy. - [#​11974](https://redirect.github.com/apollographql/apollo-client/pull/11974) [`c95848e`](https://redirect.github.com/apollographql/apollo-client/commit/c95848e859fb7ce0b3b9439ac71dff880f991450) Thanks [@​jerelmiller](https://redirect.github.com/jerelmiller)! - Fix an issue where executing `fetchMore` with a `no-cache` fetch policy could sometimes result in multiple network requests. - [#​11974](https://redirect.github.com/apollographql/apollo-client/pull/11974) [`c95848e`](https://redirect.github.com/apollographql/apollo-client/commit/c95848e859fb7ce0b3b9439ac71dff880f991450) Thanks [@​jerelmiller](https://redirect.github.com/jerelmiller)! - ##### 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`](https://redirect.github.com/apollographql/apollo-client/blob/HEAD/CHANGELOG.md#3112) [Compare Source](https://redirect.github.com/apollographql/apollo-client/compare/v3.11.1...v3.11.2) ##### Patch Changes - [#​11980](https://redirect.github.com/apollographql/apollo-client/pull/11980) [`38c0a2c`](https://redirect.github.com/apollographql/apollo-client/commit/38c0a2c43dd28677ee240754cd389c8a08c05738) Thanks [@​jerelmiller](https://redirect.github.com/jerelmiller)! - Fix missing `getServerSnapshot` error when using `useSubscription` on the server. ### [`v3.11.1`](https://redirect.github.com/apollographql/apollo-client/blob/HEAD/CHANGELOG.md#3111) [Compare Source](https://redirect.github.com/apollographql/apollo-client/compare/v3.11.0...v3.11.1) ##### Patch Changes - [#​11969](https://redirect.github.com/apollographql/apollo-client/pull/11969) [`061cab6`](https://redirect.github.com/apollographql/apollo-client/commit/061cab6627abd4ec81f83c40c1d281c418627c93) Thanks [@​jerelmiller](https://redirect.github.com/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](https://redirect.github.com/apollographql/apollo-client/pull/11971) [`ecf77f6`](https://redirect.github.com/apollographql/apollo-client/commit/ecf77f6f5b5ccf64cfba51e838e96549fb6c92fe) Thanks [@​jerelmiller](https://redirect.github.com/jerelmiller)! - Prevent the `setTimeout` for suggesting devtools from running in non-browser environments. ### [`v3.11.0`](https://redirect.github.com/apollographql/apollo-client/blob/HEAD/CHANGELOG.md#3110) [Compare Source](https://redirect.github.com/apollographql/apollo-client/compare/v3.10.8...v3.11.0) ##### Potentially Breaking Fixes - [#​11789](https://redirect.github.com/apollographql/apollo-client/pull/11789) [`5793301`](https://redirect.github.com/apollographql/apollo-client/commit/579330147d6bd6f7167a35413a33746103e375cb) Thanks [@​phryneas](https://redirect.github.com/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](https://redirect.github.com/apollographql/apollo-client/pull/11626) [`228429a`](https://redirect.github.com/apollographql/apollo-client/commit/228429a1d36eae691473b24fb641ec3cd84c8a3d) Thanks [@​phryneas](https://redirect.github.com/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: ```js useQuery(QUERY, { nextFetchPolicy(currentFetchPolicy, info) { // your logic here } ); ``` Update your function to the following to reimplement the resetting behavior: ```js useQuery(QUERY, { nextFetchPolicy(currentFetchPolicy, info) { if (info.reason === 'variables-changed') { return info.initialFetchPolicy; } // your logic here } ); ``` ##### Minor Changes - [#​11923](https://redirect.github.com/apollographql/apollo-client/pull/11923) [`d88c7f8`](https://redirect.github.com/apollographql/apollo-client/commit/d88c7f8909e3cb31532e8b1fc7dd06be12f35591) Thanks [@​jerelmiller](https://redirect.github.com/jerelmiller)! - Add support for `subscribeToMore` function to `useQueryRefHandlers`. - [#​11854](https://redirect.github.com/apollographql/apollo-client/pull/11854) [`3812800`](https://redirect.github.com/apollographql/apollo-client/commit/3812800c6e4e5e3e64f473543babdba35ce100c2) Thanks [@​jcostello-atlassian](https://redirect.github.com/jcostello-atlassian)! - Support extensions in useSubscription - [#​11923](https://redirect.github.com/apollographql/apollo-client/pull/11923) [`d88c7f8`](https://redirect.github.com/apollographql/apollo-client/commit/d88c7f8909e3cb31532e8b1fc7dd06be12f35591) Thanks [@​jerelmiller](https://redirect.github.com/jerelmiller)! - Add support for `subscribeToMore` function to `useLoadableQuery`. - [#​11863](https://redirect.github.com/apollographql/apollo-client/pull/11863) [`98e44f7`](https://redirect.github.com/apollographql/apollo-client/commit/98e44f74cb7c7e93a81bdc7492c9218bf4a2dcd4) Thanks [@​phryneas](https://redirect.github.com/phryneas)! - Reimplement `useSubscription` to fix rules of React violations. - [#​11869](https://redirect.github.com/apollographql/apollo-client/pull/11869) [`a69327c`](https://redirect.github.com/apollographql/apollo-client/commit/a69327cce1b36e8855258e9b19427511e0af8748) Thanks [@​phryneas](https://redirect.github.com/phryneas)! - Rewrite big parts of `useQuery` and `useLazyQuery` to be more compliant with the Rules of React and React Compiler - [#​11936](https://redirect.github.com/apollographql/apollo-client/pull/11936) [`1b23337`](https://redirect.github.com/apollographql/apollo-client/commit/1b23337e5a9eec4ce3ed69531ca4f4afe8e897a6) Thanks [@​jerelmiller](https://redirect.github.com/jerelmiller)! - Add the ability to specify a name for the client instance for use with Apollo Client Devtools. This is useful when instantiating multiple clients to identify the client instance more easily. This deprecates the `connectToDevtools` option in favor of a new `devtools` configuration. ```ts new ApolloClient({ devtools: { enabled: true, name: "Test Client", }, }); ``` This option is backwards-compatible with `connectToDevtools` and will be used in the absense of a `devtools` option. - [#​11923](https://redirect.github.com/apollographql/apollo-client/pull/11923) [`d88c7f8`](https://redirect.github.com/apollographql/apollo-client/commit/d88c7f8909e3cb31532e8b1fc7dd06be12f35591) Thanks [@​jerelmiller](https://redirect.github.com/jerelmiller)! - Add support for `subscribeToMore` function to `useBackgroundQuery`. - [#​11930](https://redirect.github.com/apollographql/apollo-client/pull/11930) [`a768575`](https://redirect.github.com/apollographql/apollo-client/commit/a768575ac1454587208aad63abc811b6a966fe72) Thanks [@​jerelmiller](https://redirect.github.com/jerelmiller)! - Deprecates experimental schema testing utilities introduced in 3.10 in favor of recommending [`@apollo/graphql-testing-library`](https://redirect.github.com/apollographql/graphql-testing-library). ##### Patch Changes - [#​11951](https://redirect.github.com/apollographql/apollo-client/pull/11951) [`0de03af`](https://redirect.github.com/apollographql/apollo-client/commit/0de03af912a76c4e0111f21b4f90a073317b63b6) Thanks [@​phryneas](https://redirect.github.com/phryneas)! - add React 19 RC to `peerDependencies` - [#​11927](https://redirect.github.com/apollographql/apollo-client/pull/11927) [`2941824`](https://redirect.github.com/apollographql/apollo-client/commit/2941824dd66cdd20eee5f2293373ad7a9cf991a4) Thanks [@​phryneas](https://redirect.github.com/phryneas)! - Add `restart` function to `useSubscription`. - [#​11949](https://redirect.github.com/apollographql/apollo-client/pull/11949) [`4528918`](https://redirect.github.com/apollographql/apollo-client/commit/45289186bcaaa33dfe904913eb6df31e2541c219) Thanks [@​alessbell](https://redirect.github.com/alessbell)! - Remove deprecated `watchFragment` option, `canonizeResults` - [#​11937](https://redirect.github.com/apollographql/apollo-client/pull/11937) [`78332be`](https://redirect.github.com/apollographql/apollo-client/commit/78332be32a9af0da33eb3e4100e7a76c3eac2496) Thanks [@​phryneas](https://redirect.github.com/phryneas)! - `createSchemaFetch`: simulate serialized errors instead of an `ApolloError` instance - [#​11902](https://redirect.github.com/apollographql/apollo-client/pull/11902) [`96422ce`](https://redirect.github.com/apollographql/apollo-client/commit/96422ce95b923b560321a88acd2eec35cf2a1c18) Thanks [@​phryneas](https://redirect.github.com/phryneas)! - Add `cause` field to `ApolloError`. - [#​11806](https://redirect.github.com/apollographql/apollo-client/pull/11806) [`8df6013`](https://redirect.github.com/apollographql/apollo-client/commit/8df6013b6b45452ec058fab3e068b5b6d6c493f7) Thanks [@​phryneas](https://redirect.github.com/phryneas)! - MockLink: add query default variables if not specified in mock request - [#​11926](https://redirect.github.com/apollographql/apollo-client/pull/11926) [`3dd6432`](https://redirect.github.com/apollographql/apollo-client/commit/3dd64324dc5156450cead27f8141ea93315ffe65) Thanks [@​phryneas](https://redirect.github.com/phryneas)! - `watchFragment`: forward additional options to `diffOptions` - [#​11946](https://redirect.github.com/apollographql/apollo-client/pull/11946) [`7d833b8`](https://redirect.github.com/apollographql/apollo-client/commit/7d833b80119a991e6d2eb58f2c71074d697b8e63) Thanks [@​jerelmiller](https://redirect.github.com/jerelmiller)! - Fix issue where mutations were not accessible by Apollo Client Devtools in 3.11.0-rc.0. - [#​11944](https://redirect.github.com/apollographql/apollo-client/pull/11944) [`8f3d7eb`](https://redirect.github.com/apollographql/apollo-client/commit/8f3d7eb3bc2e0c2d79c5b1856655abe829390742) Thanks [@​sneyderdev](https://redirect.github.com/sneyderdev)! - Allow `IgnoreModifier` to be returned from a `optimisticResponse` function when inferring from a `TypedDocumentNode` when used with a generic argument. - [#​11954](https://redirect.github.com/apollographql/apollo-client/pull/11954) [`4a6e86a`](https://redirect.github.com/apollographql/apollo-client/commit/4a6e86aeaf6685abf0dd23110784848c8b085735) Thanks [@​phryneas](https://redirect.github.com/phryneas)! - Document (and deprecate) the previously undocumented `errors` property on the `useQuery` `QueryResult` type. - [#​11719](https://redirect.github.com/apollographql/apollo-client/pull/11719) [`09a6677`](https://redirect.github.com/apollographql/apollo-client/commit/09a6677ec1a0cffedeecb2cbac5cd3a3c8aa0fa1) Thanks [@​phryneas](https://redirect.github.com/phryneas)! - Allow wrapping `createQueryPreloader` - [#​11921](https://redirect.github.com/apollographql/apollo-client/pull/11921) [`70406bf`](https://redirect.github.com/apollographql/apollo-client/commit/70406bfd2b9a645d781638569853d9b435e047df) Thanks [@​phryneas](https://redirect.github.com/phryneas)! - add `ignoreResults` option to `useSubscription` ### [`v3.10.8`](https://redirect.github.com/apollographql/apollo-client/blob/HEAD/CHANGELOG.md#3108) [Compare Source](https://redirect.github.com/apollographql/apollo-client/compare/v3.10.7...v3.10.8) ##### Patch Changes - [#​11911](https://redirect.github.com/apollographql/apollo-client/pull/11911) [`1f0460a`](https://redirect.github.com/apollographql/apollo-client/commit/1f0460a60fc613e8d6f218a74ded69e81e960791) Thanks [@​jerelmiller](https://redirect.github.com/jerelmiller)! - Allow `undefined` to be returned from a `cache.modify` modifier function when a generic type argument is used. ### [`v3.10.7`](https://redirect.github.com/apollographql/apollo-client/blob/HEAD/CHANGELOG.md#3107) [Compare Source](https://redirect.github.com/apollographql/apollo-client/compare/v3.10.6...v3.10.7) ##### Patch Changes - [#​11901](https://redirect.github.com/apollographql/apollo-client/pull/11901) [`10a8c0a`](https://redirect.github.com/apollographql/apollo-client/commit/10a8c0a8f6f3e13ec3c67bf53cc11a948b60e6d9) Thanks [@​phryneas](https://redirect.github.com/phryneas)! - update `canUseLayoutEffect` check to also allow for layout effects in React Native - [#​11861](https://redirect.github.com/apollographql/apollo-client/pull/11861) [`1aed0e8`](https://redirect.github.com/apollographql/apollo-client/commit/1aed0e82fcc432380a56d4a446f414ce8b1a7a90) Thanks [@​henryqdineen](https://redirect.github.com/henryqdineen)! - Defend against non-serializable params in `invariantWrappers` - [#​11905](https://redirect.github.com/apollographql/apollo-client/pull/11905) [`29755da`](https://redirect.github.com/apollographql/apollo-client/commit/29755da8797dc94613a23fe050ddd6ef9ffab607) Thanks [@​phryneas](https://redirect.github.com/phryneas)! - Add `.d.cts` files for cjs bundles - [#​11906](https://redirect.github.com/apollographql/apollo-client/pull/11906) [`d104759`](https://redirect.github.com/apollographql/apollo-client/commit/d104759cfb4be31e2ffbe166531a9b11861ade99) Thanks [@​phryneas](https://redirect.github.com/phryneas)! - chore: update TypeScript to 5.5 ### [`v3.10.6`](https://redirect.github.com/apollographql/apollo-client/blob/HEAD/CHANGELOG.md#3106) [Compare Source](https://redirect.github.com/apollographql/apollo-client/compare/v3.10.5...v3.10.6) ##### Patch Changes - [#​11900](https://redirect.github.com/apollographql/apollo-client/pull/11900) [`f745558`](https://redirect.github.com/apollographql/apollo-client/commit/f74555826995009a6bb9d824506cecb3508e3365) Thanks [@​phryneas](https://redirect.github.com/phryneas)! - `useMutation`: use `useIsomorphicLayoutEffect` instead of `useLayoutEffect`
changesets/changesets (@​changesets/cli) ### [`v2.27.8`](https://redirect.github.com/changesets/changesets/compare/@changesets/cli@2.27.7...c867f32d0c25cfb2a6b518bc1f9880f758beb157) [Compare Source](https://redirect.github.com/changesets/changesets/compare/@changesets/cli@2.27.7...@changesets/cli@2.27.8) ### [`v2.27.7`](https://redirect.github.com/changesets/changesets/releases/tag/%40changesets/cli%402.27.7) [Compare Source](https://redirect.github.com/changesets/changesets/compare/@changesets/cli@2.27.6...@changesets/cli@2.27.7) ##### Patch Changes - [#​1047](https://redirect.github.com/changesets/changesets/pull/1047) [`d108fa6`](https://redirect.github.com/changesets/changesets/commit/d108fa66e63c3000f42db7580a862b737e241c4d) Thanks [@​patzick](https://redirect.github.com/patzick)! - Fixed a crash that could occur when depending on a tagged version of another workspace package. - [#​1400](https://redirect.github.com/changesets/changesets/pull/1400) [`dd6e5bb`](https://redirect.github.com/changesets/changesets/commit/dd6e5bbf74e246d7a742aa50424989462679b0ca) Thanks [@​Andarist](https://redirect.github.com/Andarist)! - Fixed a crash that prevented the CLI from running in a scenario when a workspace depends on the root workspace - Updated dependencies \[[`d108fa6`](https://redirect.github.com/changesets/changesets/commit/d108fa66e63c3000f42db7580a862b737e241c4d), [`dd6e5bb`](https://redirect.github.com/changesets/changesets/commit/dd6e5bbf74e246d7a742aa50424989462679b0ca), [`dd6e5bb`](https://redirect.github.com/changesets/changesets/commit/dd6e5bbf74e246d7a742aa50424989462679b0ca)]: - [@​changesets/apply-release-plan](https://redirect.github.com/changesets/apply-release-plan)[@​7](https://redirect.github.com/7).0.4 - [@​changesets/config](https://redirect.github.com/changesets/config)[@​3](https://redirect.github.com/3).0.2 - [@​changesets/get-dependents-graph](https://redirect.github.com/changesets/get-dependents-graph)[@​2](https://redirect.github.com/2).1.1 - [@​changesets/assemble-release-plan](https://redirect.github.com/changesets/assemble-release-plan)[@​6](https://redirect.github.com/6).0.3 - [@​changesets/get-release-plan](https://redirect.github.com/changesets/get-release-plan)[@​4](https://redirect.github.com/4).0.3 ### [`v2.27.6`](https://redirect.github.com/changesets/changesets/releases/tag/%40changesets/cli%402.27.6) [Compare Source](https://redirect.github.com/changesets/changesets/compare/@changesets/cli@2.27.5...@changesets/cli@2.27.6) ##### Patch Changes - [#​1392](https://redirect.github.com/changesets/changesets/pull/1392) [`f295b3e`](https://redirect.github.com/changesets/changesets/commit/f295b3e560233e2a800f62216febb7061ba66df3) Thanks [@​bluwy](https://redirect.github.com/bluwy)! - Replace `meow` dependency with `mri` to reduce the number of transitive dependencies - [#​1390](https://redirect.github.com/changesets/changesets/pull/1390) [`6a3452e`](https://redirect.github.com/changesets/changesets/commit/6a3452ef1943bfb3a3018168b4b6c14af556fdef) Thanks [@​bluwy](https://redirect.github.com/bluwy)! - Display `changeset status --verbose` in list form and remove `tty-table` dependency
dotansimha/graphql-code-generator (@​graphql-codegen/client-preset) ### [`v4.3.3`](https://redirect.github.com/dotansimha/graphql-code-generator/blob/HEAD/packages/presets/client/CHANGELOG.md#433) [Compare Source](https://redirect.github.com/dotansimha/graphql-code-generator/compare/@graphql-codegen/client-preset@4.3.2...@graphql-codegen/client-preset@4.3.3) ##### Patch Changes - [#​9817](https://redirect.github.com/dotansimha/graphql-code-generator/pull/9817) [`7ac42a3`](https://redirect.github.com/dotansimha/graphql-code-generator/commit/7ac42a33915985b9504bc16f38a22e057bbcd1ab) Thanks [@​nikitalocalhost](https://redirect.github.com/nikitalocalhost)! - Resolve runtime error when using the babel plugin within an ESM environment. ### [`v4.3.2`](https://redirect.github.com/dotansimha/graphql-code-generator/blob/HEAD/packages/presets/client/CHANGELOG.md#432) [Compare Source](https://redirect.github.com/dotansimha/graphql-code-generator/compare/@graphql-codegen/client-preset@4.3.1...@graphql-codegen/client-preset@4.3.2) ##### Patch Changes - Updated dependencies \[[`79fee3c`](https://redirect.github.com/dotansimha/graphql-code-generator/commit/79fee3cada20d683d250aad5aa5fef9d6ed9f4d2)]: - [@​graphql-codegen/visitor-plugin-common](https://redirect.github.com/graphql-codegen/visitor-plugin-common)[@​5](https://redirect.github.com/5).3.1 - [@​graphql-codegen/gql-tag-operations](https://redirect.github.com/graphql-codegen/gql-tag-operations)[@​4](https://redirect.github.com/4).0.9 - [@​graphql-codegen/typescript-operations](https://redirect.github.com/graphql-codegen/typescript-operations)[@​4](https://redirect.github.com/4).2.3 - [@​graphql-codegen/typed-document-node](https://redirect.github.com/graphql-codegen/typed-document-node)[@​5](https://redirect.github.com/5).0.9 - [@​graphql-codegen/typescript](https://redirect.github.com/graphql-codegen/typescript)[@​4](https://redirect.github.com/4).0.9 ### [`v4.3.1`](https://redirect.github.com/dotansimha/graphql-code-generator/blob/HEAD/packages/presets/client/CHANGELOG.md#431) [Compare Source](https://redirect.github.com/dotansimha/graphql-code-generator/compare/@graphql-codegen/client-preset@4.3.0...@graphql-codegen/client-preset@4.3.1) ##### Patch Changes - Updated dependencies \[[`808ada5`](https://redirect.github.com/dotansimha/graphql-code-generator/commit/808ada595d83d39cad045da5824cac6378e9eca3), [`14ce39e`](https://redirect.github.com/dotansimha/graphql-code-generator/commit/14ce39e41dfee38c652be736664177fa2b1df421)]: - [@​graphql-codegen/visitor-plugin-common](https://redirect.github.com/graphql-codegen/visitor-plugin-common)[@​5](https://redirect.github.com/5).3.0 - [@​graphql-codegen/gql-tag-operations](https://redirect.github.com/graphql-codegen/gql-tag-operations)[@​4](https://redirect.github.com/4).0.8 - [@​graphql-codegen/typescript-operations](https://redirect.github.com/graphql-codegen/typescript-operations)[@​4](https://redirect.github.com/4).2.2 - [@​graphql-codegen/typed-document-node](https://redirect.github.com/graphql-codegen/typed-document-node)[@​5](https://redirect.github.com/5).0.8 - [@​graphql-codegen/typescript](https://redirect.github.com/graphql-codegen/typescript)[@​4](https://redirect.github.com/4).0.8
graphql/graphql-js (graphql) ### [`v16.9.0`](https://redirect.github.com/graphql/graphql-js/releases/tag/v16.9.0) [Compare Source](https://redirect.github.com/graphql/graphql-js/compare/v16.8.2...v16.9.0) #### v16.9.0 (2024-06-21) ##### New Feature 🚀 - [#​4119](https://redirect.github.com/graphql/graphql-js/pull/4119) backport\[v16]: Introduce "recommended" validation rules ([@​benjie](https://redirect.github.com/benjie)) - [#​4122](https://redirect.github.com/graphql/graphql-js/pull/4122) backport\[v16]: Enable passing values configuration to GraphQLEnumType as a thunk ([@​benjie](https://redirect.github.com/benjie)) - [#​4124](https://redirect.github.com/graphql/graphql-js/pull/4124) backport\[v16]: Implement OneOf Input Objects via `@oneOf` directive ([@​benjie](https://redirect.github.com/benjie)) ##### Committers: 1 - Benjie([@​benjie](https://redirect.github.com/benjie))
pimterry/loglevel (loglevel) ### [`v1.9.2`](https://redirect.github.com/pimterry/loglevel/compare/v1.9.1...v1.9.2) [Compare Source](https://redirect.github.com/pimterry/loglevel/compare/v1.9.1...v1.9.2)
nodejs/node (node) ### [`v20.17.0`](https://redirect.github.com/nodejs/node/compare/v20.16.0...v20.17.0) [Compare Source](https://redirect.github.com/nodejs/node/compare/v20.16.0...v20.17.0) ### [`v20.16.0`](https://redirect.github.com/nodejs/node/compare/v20.15.1...v20.16.0) [Compare Source](https://redirect.github.com/nodejs/node/compare/v20.15.1...v20.16.0) ### [`v20.15.1`](https://redirect.github.com/nodejs/node/compare/v20.15.0...v20.15.1) [Compare Source](https://redirect.github.com/nodejs/node/compare/v20.15.0...v20.15.1) ### [`v20.15.0`](https://redirect.github.com/nodejs/node/releases/tag/v20.15.0): 2024-06-20, Version 20.15.0 'Iron' (LTS), @​marco-ippolito [Compare Source](https://redirect.github.com/nodejs/node/compare/v20.14.0...v20.15.0) ##### test_runner: support test plans It is now possible to count the number of assertions and subtests that are expected to run within a test. If the number of assertions and subtests that run does not match the expected count, the test will fail. ```js test('top level test', (t) => { t.plan(2); t.assert.ok('some relevant assertion here'); t.subtest('subtest', () => {}); }); ``` Contributed by Colin Ihrig in [#​52860](https://redirect.github.com/nodejs/node/pull/52860) ##### inspector: introduce the `--inspect-wait` flag This release introduces the `--inspect-wait` flag, which allows debugger to wait for attachement. This flag is useful when you want to debug the code from the beginning. Unlike `--inspect-brk`, which breaks on the first line, this flag waits for debugger to be connected and then runs the code as soon as a session is established. Contributed by Kohei Ueno in [#​52734](https://redirect.github.com/nodejs/node/pull/52734) ##### zlib: expose zlib.crc32() This release exposes the crc32() function from zlib to user-land. It computes a 32-bit Cyclic Redundancy Check checksum of data. If value is specified, it is used as the starting value of the checksum, otherwise, 0 is used as the starting value. The CRC algorithm is designed to compute checksums and to detect error in data transmission. It's not suitable for cryptographic authentication. ```js const zlib = require('node:zlib'); const { Buffer } = require('node:buffer'); let crc = zlib.crc32('hello'); // 907060870 crc = zlib.crc32('world', crc); // 4192936109 crc = zlib.crc32(Buffer.from('hello', 'utf16le')); // 1427272415 crc = zlib.crc32(Buffer.from('world', 'utf16le'), crc); // 4150509955 ``` Contributed by Joyee Cheung in [#​52692](https://redirect.github.com/nodejs/node/pull/52692) ##### cli: allow running wasm in limited vmem with --disable-wasm-trap-handler By default, Node.js enables trap-handler-based WebAssembly bound checks. As a result, V8 does not need to insert inline bound checks int the code compiled from WebAssembly which may speedup WebAssembly execution significantly, but this optimization requires allocating a big virtual memory cage (currently 10GB). If the Node.js process does not have access to a large enough virtual memory address space due to system configurations or hardware limitations, users won't be able to run any WebAssembly that involves allocation in this virtual memory cage and will see an out-of-memory error. ```console $ ulimit -v 5000000 $ node -p "new WebAssembly.Memory({ initial: 10, maximum: 100 });" [eval]:1 new WebAssembly.Memory({ initial: 10, maximum: 100 }); ^ RangeError: WebAssembly.Memory(): could not allocate memory at [eval]:1:1 at runScriptInThisContext (node:internal/vm:209:10) at node:internal/process/execution:118:14 at [eval]-wrapper:6:24 at runScript (node:internal/process/execution:101:62) at evalScript (node:internal/process/execution:136:3) at node:internal/main/eval_string:49:3 ``` `--disable-wasm-trap-handler` disables this optimization so that users can at least run WebAssembly (with a less optimial performance) when the virtual memory address space available to their Node.js process is lower than what the V8 WebAssembly memory cage needs. Contributed by Joyee Cheung in [#​52766](https://redirect.github.com/nodejs/node/pull/52766) ##### Other Notable Changes - \[[`12512c3d0e`](https://redirect.github.com/nodejs/node/commit/12512c3d0e)] - **doc**: add pimterry to collaborators (Tim Perry) [#​52874](https://redirect.github.com/nodejs/node/pull/52874) - \[[`9d485b40bb`](https://redirect.github.com/nodejs/node/commit/9d485b40bb)] - **(SEMVER-MINOR)** **tools**: fix get_asan_state() in tools/test.py (Joyee Cheung) [#​52766](https://redirect.github.com/nodejs/node/pull/52766) - \[[`e98c305f52`](https://redirect.github.com/nodejs/node/commit/e98c305f52)] - **(SEMVER-MINOR)** **tools**: support max_virtual_memory test configuration (Joyee Cheung) [#​52766](https://redirect.github.com/nodejs/node/pull/52766) - \[[`dce0300896`](https://redirect.github.com/nodejs/node/commit/dce0300896)] - **(SEMVER-MINOR)** **tools**: support != in test status files (Joyee Cheung) [#​52766](https://redirect.github.com/nodejs/node/pull/52766) ##### Commits - \[[`227093bfec`](https://redirect.github.com/nodejs/node/commit/227093bfec)] - **assert**: add deep equal check for more Error type (Zhenwei Jin) [#​51805](https://redirect.github.com/nodejs/node/pull/51805) - \[[`184cfe5a71`](https://redirect.github.com/nodejs/node/commit/184cfe5a71)] - **benchmark**: filter non-present deps from `start-cli-version` (Adam Majer) [#​51746](https://redirect.github.com/nodejs/node/pull/51746) - \[[`8b3e83bb53`](https://redirect.github.com/nodejs/node/commit/8b3e83bb53)] - **buffer**: even faster atob (Daniel Lemire) [#​52443](https://redirect.github.com/nodejs/node/pull/52443) - \[[`8d628c3255`](https://redirect.github.com/nodejs/node/commit/8d628c3255)] - **buffer**: use size_t instead of uint32\_t to avoid segmentation fault (Xavier Stouder) [#​48033](https://redirect.github.com/nodejs/node/pull/48033) - \[[`16ae2b2933`](https://redirect.github.com/nodejs/node/commit/16ae2b2933)] - **buffer**: remove lines setting indexes to integer value (Zhenwei Jin) [#​52588](https://redirect.github.com/nodejs/node/pull/52588) - \[[`48c15d0dcd`](https://redirect.github.com/nodejs/node/commit/48c15d0dcd)] - **build**: remove deprecated calls for argument groups (Mohammed Keyvanzadeh) [#​52913](https://redirect.github.com/nodejs/node/pull/52913) - \[[`1be8232d17`](https://redirect.github.com/nodejs/node/commit/1be8232d17)] - **build**: drop base64 dep in GN build (Cheng) [#​52856](https://redirect.github.com/nodejs/node/pull/52856) - \[[`918962d6e7`](https://redirect.github.com/nodejs/node/commit/918962d6e7)] - **build**: make simdjson a public dep in GN build (Cheng) [#​52755](https://redirect.github.com/nodejs/node/pull/52755) - \[[`5215b6fd8e`](https://redirect.github.com/nodejs/node/commit/5215b6fd8e)] - **build, tools**: copy release assets to staging R2 bucket once built (flakey5) [#​51394](https://redirect.github.com/nodejs/node/pull/51394) - \[[`473fa73857`](https://redirect.github.com/nodejs/node/commit/473fa73857)] - **(SEMVER-MINOR)** **cli**: allow running wasm in limited vmem with --disable-wasm-trap-handler (Joyee Cheung) [#​52766](https://redirect.github.com/nodejs/node/pull/52766) - \[[`954d2aded4`](https://redirect.github.com/nodejs/node/commit/954d2aded4)] - **cluster**: replace `forEach` with `for-of` loop (Jérôme Benoit) [#​50317](https://redirect.github.com/nodejs/node/pull/50317) - \[[`794e450ea7`](https://redirect.github.com/nodejs/node/commit/794e450ea7)] - **console**: colorize console error and warn (Jithil P Ponnan) [#​51629](https://redirect.github.com/nodejs/node/pull/51629) - \[[`0fb7c18f10`](https://redirect.github.com/nodejs/node/commit/0fb7c18f10)] - **crypto**: fix duplicated switch-case return values (Mustafa Ateş UZUN) [#​49030](https://redirect.github.com/nodejs/node/pull/49030) - \[[`cd1415c8b2`](https://redirect.github.com/nodejs/node/commit/cd1415c8b2)] - ***Revert*** "**crypto**: make timingSafeEqual faster for Uint8Array" (Tobias Nießen) [#​53390](https://redirect.github.com/nodejs/node/pull/53390) - \[[`b774544bb1`](https://redirect.github.com/nodejs/node/commit/b774544bb1)] - **deps**: enable unbundling of simdjson, simdutf, ada (Daniel Lemire) [#​52924](https://redirect.github.com/nodejs/node/pull/52924) - \[[`da4dbfc5fd`](https://redirect.github.com/nodejs/node/commit/da4dbfc5fd)] - **doc**: remove reference to AUTHORS file (Marco Ippolito) [#​52960](https://redirect.github.com/nodejs/node/pull/52960) - \[[`2f3f2ff8af`](https://redirect.github.com/nodejs/node/commit/2f3f2ff8af)] - **doc**: update hljs with the latest styles (Aviv Keller) [#​52911](https://redirect.github.com/nodejs/node/pull/52911) - \[[`3a1d17a9b1`](https://redirect.github.com/nodejs/node/commit/3a1d17a9b1)] - **doc**: mention quicker way to build docs (Alex Crawford) [#​52937](https://redirect.github.com/nodejs/node/pull/52937) - \[[`be309bd19d`](https://redirect.github.com/nodejs/node/commit/be309bd19d)] - **doc**: mention push.followTags config (Rafael Gonzaga) [#​52906](https://redirect.github.com/nodejs/node/pull/52906) - \[[`e62c6e2684`](https://redirect.github.com/nodejs/node/commit/e62c6e2684)] - **doc**: document pipeline with `end` option (Alois Klink) [#​48970](https://redirect.github.com/nodejs/node/pull/48970) - \[[`af27225cf6`](https://redirect.github.com/nodejs/node/commit/af27225cf6)] - **doc**: add example for `execFileSync` method and ref to stdio (Evan Shortiss) [#​39412](https://redirect.github.com/nodejs/node/pull/39412) - \[[`086626f9b1`](https://redirect.github.com/nodejs/node/commit/086626f9b1)] - **doc**: add examples and notes to http server.close et al (mary marchini) [#​49091](https://redirect.github.com/nodejs/node/pull/49091) - \[[`3aa3337a00`](https://redirect.github.com/nodejs/node/commit/3aa3337a00)] - **doc**: fix `dns.lookup` family `0` and `all` descriptions (Adam Jones) [#​51653](https://redirect.github.com/nodejs/node/pull/51653) - \[[`585f2a2e7f`](https://redirect.github.com/nodejs/node/commit/585f2a2e7f)] - **doc**: update `fs.realpath` documentation (sinkhaha) [#​48170](https://redirect.github.com/nodejs/node/pull/48170) - \[[`4bf3d44e1d`](https://redirect.github.com/nodejs/node/commit/4bf3d44e1d)] - **doc**: update fs read documentation for clarity (Mert Can Altin) [#​52453](https://redirect.github.com/nodejs/node/pull/52453) - \[[`ae5d47dde3`](https://redirect.github.com/nodejs/node/commit/ae5d47dde3)] - **doc**: watermark string behavior (Benjamin Gruenbaum) [#​52842](https://redirect.github.com/nodejs/node/pull/52842) - \[[`1e429d10d3`](https://redirect.github.com/nodejs/node/commit/1e429d10d3)] - **doc**: exclude commits with baking-for-lts (Marco Ippolito) [#​52896](https://redirect.github.com/nodejs/node/pull/52896) - \[[`3df3e37cdb`](https://redirect.github.com/nodejs/node/commit/3df3e37cdb)] - **doc**: add names next to release key bash commands (Aviv Keller) [#​52878](https://redirect.github.com/nodejs/node/pull/52878) - \[[`12512c3d0e`](https://redirect.github.com/nodejs/node/commit/12512c3d0e)] - **doc**: add pimterry to collaborators (Tim Perry) [#​52874](https://redirect.github.com/nodejs/node/pull/52874) - \[[`97e0fef019`](https://redirect.github.com/nodejs/node/commit/97e0fef019)] - **doc**: add more definitions to GLOSSARY.md (Aviv Keller) [#​52798](https://redirect.github.com/nodejs/node/pull/52798) - \[[`91fadac162`](https://redirect.github.com/nodejs/node/commit/91fadac162)] - **doc**: make docs more welcoming and descriptive for newcomers (Serkan Özel) [#​38056](https://redirect.github.com/nodejs/node/pull/38056) - \[[`a3b20126fd`](https://redirect.github.com/nodejs/node/commit/a3b20126fd)] - **doc**: add OpenSSL errors to API docs (John Lamp) [#​34213](https://redirect.github.com/nodejs/node/pull/34213) - \[[`9587ae9b5b`](https://redirect.github.com/nodejs/node/commit/9587ae9b5b)] - **doc**: simplify copy-pasting of `branch-diff` commands (Antoine du Hamel) [#​52757](https://redirect.github.com/nodejs/node/pull/52757) - \[[`6ea72a53c3`](https://redirect.github.com/nodejs/node/commit/6ea72a53c3)] - **doc**: add test_runner to subsystem (Raz Luvaton) [#​52774](https://redirect.github.com/nodejs/node/pull/52774) - \[[`972eafd983`](https://redirect.github.com/nodejs/node/commit/972eafd983)] - **events**: update MaxListenersExceededWarning message log (sinkhaha) [#​51921](https://redirect.github.com/nodejs/node/pull/51921) - \[[`74753ed1fe`](https://redirect.github.com/nodejs/node/commit/74753ed1fe)] - **events**: add stop propagation flag to `Event.stopImmediatePropagation` (Mickael Meausoone) [#​39463](https://redirect.github.com/nodejs/node/pull/39463) - \[[`75dd009649`](https://redirect.github.com/nodejs/node/commit/75dd009649)] - **events**: replace NodeCustomEvent with CustomEvent (Feng Yu) [#​43876](https://redirect.github.com/nodejs/node/pull/43876) - \[[`7d38c2e012`](https://redirect.github.com/nodejs/node/commit/7d38c2e012)] - **fs**: keep fs.promises.readFile read until EOF is reached (Zhenwei Jin) [#​52178](https://redirect.github.com/nodejs/node/pull/52178) - \[[`8cb13120d3`](https://redirect.github.com/nodejs/node/commit/8cb13120d3)] - **(SEMVER-MINOR)** **inspector**: introduce the `--inspect-wait` flag (Kohei Ueno) [#​52734](https://redirect.github.com/nodejs/node/pull/52734) - \[[`d5ab1de1fd`](https://redirect.github.com/nodejs/node/commit/d5ab1de1fd)] - **meta**: move `@anonrig` to TSC regular member (Yagiz Nizipli) [#​52932](https://redirect.github.com/nodejs/node/pull/52932) - \[[`f82d086e90`](https://redirect.github.com/nodejs/node/commit/f82d086e90)] - **path**: fix toNamespacedPath on Windows (Hüseyin Açacak) [#​52915](https://redirect.github.com/nodejs/node/pull/52915) - \[[`121ea13b50`](https://redirect.github.com/nodejs/node/commit/121ea13b50)] - **process**: improve event-loop (Aras Abbasi) [#​52108](https://redirect.github.com/nodejs/node/pull/52108) - \[[`eceac784aa`](https://redirect.github.com/nodejs/node/commit/eceac784aa)] - **repl**: fix disruptive autocomplete without inspector (Nitzan Uziely) [#​40661](https://redirect.github.com/nodejs/node/pull/40661) - \[[`89a910be82`](https://redirect.github.com/nodejs/node/commit/89a910be82)] - **src**: fix Worker termination in `inspector.waitForDebugger` (Daeyeon Jeong) [#​52527](https://redirect.github.com/nodejs/node/pull/52527) - \[[`033f985e8a`](https://redirect.github.com/nodejs/node/commit/033f985e8a)] - **src**: use `S_ISDIR` to check if the file is a directory (theanarkh) [#​52164](https://redirect.github.com/nodejs/node/pull/52164) - \[[`95128399f8`](https://redirect.github.com/nodejs/node/commit/95128399f8)] - **src**: allow preventing debug signal handler start (Shelley Vohr) [#​46681](https://redirect.github.com/nodejs/node/pull/46681) - \[[`b162aeae9e`](https://redirect.github.com/nodejs/node/commit/b162aeae9e)] - **src**: fix typo Unabled -> Unable (Simon Siefke) [#​52820](https://redirect.github.com/nodejs/node/pull/52820) - \[[`2dcbf1894a`](https://redirect.github.com/nodejs/node/commit/2dcbf1894a)] - **src**: avoid unused variable 'error' warning (Michaël Zasso) [#​52886](https://redirect.github.com/nodejs/node/pull/52886) - \[[`978ee0a635`](https://redirect.github.com/nodejs/node/commit/978ee0a635)] - **src**: only apply fix in main thread (Paolo Insogna) [#​52702](https://redirect.github.com/nodejs/node/pull/52702) - \[[`8fc52b38c6`](https://redirect.github.com/nodejs/node/commit/8fc52b38c6)] - **src**: fix test local edge case (Paolo Insogna) [#​52702](https://redirect.github.com/nodejs/node/pull/52702) - \[[`d02907ecc4`](https://redirect.github.com/nodejs/node/commit/d02907ecc4)] - **src**: remove misplaced windows code under posix guard in node.cc (Ali Hassan) [#​52545](https://redirect.github.com/nodejs/node/pull/52545) - \[[`af29120fa7`](https://redirect.github.com/nodejs/node/commit/af29120fa7)] - **stream**: use `ByteLengthQueuingStrategy` when not in `objectMode` (Jason) [#​48847](https://redirect.github.com/nodejs/node/pull/48847) - \[[`a5f3dd137c`](https://redirect.github.com/nodejs/node/commit/a5f3dd137c)] - **string_decoder**: throw an error when writing a too long buffer (zhenweijin) [#​52215](https://redirect.github.com/nodejs/node/pull/52215) - \[[`65fa95d57d`](https://redirect.github.com/nodejs/node/commit/65fa95d57d)] - **test**: add `Debugger.setInstrumentationBreakpoint` known issue (Konstantin Ulitin) [#​31137](https://redirect.github.com/nodejs/node/pull/31137) - \[[`0513e07805`](https://redirect.github.com/nodejs/node/commit/0513e07805)] - **test**: use `for-of` instead of `forEach` (Gibby Free) [#​49790](https://redirect.github.com/nodejs/node/pull/49790) - \[[`1d01325928`](https://redirect.github.com/nodejs/node/commit/1d01325928)] - **test**: verify request payload is uploaded consistently (Austin Wright) [#​34066](https://redirect.github.com/nodejs/node/pull/34066) - \[[`7dda156872`](https://redirect.github.com/nodejs/node/commit/7dda156872)] - **test**: add fuzzer for native/js string convers

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.



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

changeset-bot[bot] commented 2 months ago

⚠️ No Changeset found

Latest commit: fbd99e60fedbd4c2005f84addf89126b426fb1ed

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

codesandbox-ci[bot] commented 2 months ago

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.