Closed renovate[bot] closed 1 day ago
Latest commit: 854f2fe3ed6a1b711fd0ee09d9bc5804b8549f58
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.
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
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 94.42%. Comparing base (
571d75a
) to head (854f2fe
). Report is 2 commits behind head on master.
This PR contains the following updates:
1.9.3
->1.9.4
1.9.3
->1.9.4
^9.0.3
->^9.1.0
1.7.35
->1.7.42
^2.0.20
->^2.0.21
^3.3.2
->^3.4.0
^6.9.0
->^6.10.0
^14.2.15
->^14.2.16
^8.13.0
->^8.13.1
^2.12.0
->^2.12.1
9.12.1
->9.12.3
^8.3.0
->^8.3.5
^2.1.3
->^2.2.3
Release Notes
biomejs/biome (@biomejs/biome)
### [`v1.9.4`](https://redirect.github.com/biomejs/biome/blob/HEAD/CHANGELOG.md#v194-2024-10-17) [Compare Source](https://redirect.github.com/biomejs/biome/compare/3d498ed6399dc642d045f9bb9e9782a88c6bd4c9...fa93a147abe64e9c85908d317a8dd1de343ad132) ##### Analyzer ##### Bug fixes - Implement [GraphQL suppression action](https://redirect.github.com/biomejs/biome/pull/4312). Contributed by [@vohoanglong0107](https://redirect.github.com/vohoanglong0107) - Improved the message for unused suppression comments. Contributed by [@dyc3](https://redirect.github.com/dyc3) - Fix [#4228](https://redirect.github.com/biomejs/biome/issues/4228), where the rule `a11y/noInteractiveElementToNoninteractiveRole` incorrectly reports a `role` for non-interactive elements. Contributed by [@eryue0220](https://redirect.github.com/eryue0220) - `noSuspiciousSemicolonInJsx` now catches suspicious semicolons in React fragments. Contributed by [@vasucp1207](https://redirect.github.com/vasucp1207) ##### CLI ##### Enhancements - The `--summary` reporter now reports parsing diagnostics too. Contributed by [@ematipico](https://redirect.github.com/ematipico) - Improved performance of GritQL queries by roughly 25-30%. Contributed by [@arendjr](https://redirect.github.com/arendjr) ##### Configuration ##### Bug fixes - Fix an issue where the JSON schema marked lint rules options as mandatory. Contributed by [@ematipico](https://redirect.github.com/ematipico) ##### Editors ##### Formatter ##### Bug fixes - Fix [#4121](https://redirect.github.com/biomejs/biome/issues/4121). Respect line width when printing multiline strings. Contributed by [@ah-yu](https://redirect.github.com/ah-yu) ##### JavaScript APIs ##### Linter ##### New features - Add [useGuardForIn](https://biomejs.dev/linter/rules/use-guard-for-in/). Contributed by [@fireairforce](https://redirect.github.com/fireairforce) - Add [noDocumentCookie](https://biomejs.dev/linter/rules/no-document-cookie/). Contributed by [@tunamaguro](https://redirect.github.com/tunamaguro) - Add [noDocumentImportInPage](https://biomejs.dev/linter/rules/no-document-import-in-page/). Contributed by [@kaioduarte](https://redirect.github.com/kaioduarte) - Add [noDuplicateProperties](https://biomejs.dev/linter/rules/no-duplicate-properties/). Contributed by [@togami2864](https://redirect.github.com/togami2864) - Add [noHeadElement](https://biomejs.dev/linter/rules/no-head-element/). Contributed by [@kaioduarte](https://redirect.github.com/kaioduarte) - Add [noHeadImportInDocument](https://biomejs.dev/linter/rules/no-head-import-in-document/). Contributed by [@kaioduarte](https://redirect.github.com/kaioduarte) - Add [noImgElement](https://biomejs.dev/linter/rules/no-img-element/). Contributed by [@kaioduarte](https://redirect.github.com/kaioduarte) - Add [noUnknownTypeSelector](https://biomejs.dev/linter/rules/no-unknown-type-selector/). Contributed by [@Kazuhiro-Mimaki](https://redirect.github.com/Kazuhiro-Mimaki) - Add [useAtIndex](https://biomejs.dev/linter/rules/use-at-index/). Contributed by [@GunseiKPaseri](https://redirect.github.com/GunseiKPaseri) - Add [noUselessStringRaw](https://biomejs.dev/linter/rules/no-useless-string-raw/). Contributed by [@fireairforce](https://redirect.github.com/fireairforce) - Add [nursery/useCollapsedIf](https://biomejs.dev/linter/rules/use-collapsed-if/). Contributed by [@siketyan](https://redirect.github.com/siketyan) - Add [useGoogleFontDisplay](https://biomejs.dev/linter/rules/use-google-font-display/). Contributed by [@kaioduarte](https://redirect.github.com/kaioduarte) ##### Bug Fixes - Biome no longer crashes when it encounters a string that contain a multibyte character ([#4181](https://redirect.github.com/biomejs/biome/issues/4181)). This fixes a regression introduced in Biome 1.9.3 The regression affected the following linter rules: - `nursery/useSortedClasses` - `nursery/useTrimStartEnd` - `style/useTemplate` - `suspicious/noMisleadingCharacterClass` Contributed by [@Conaclos](https://redirect.github.com/Conaclos) - Fix [#4190](https://redirect.github.com/biomejs/biome/issues/4190), where the rule `noMissingVarFunction` wrongly reported a variable as missing when used inside a `var()` function that was a newline. Contributed by [@ematipico](https://redirect.github.com/ematipico) - Fix [#4041](https://redirect.github.com/biomejs/biome/issues/4041). Now the rule `useSortedClasses` won't be triggered if `className` is composed only by inlined variables. Contributed by [@ematipico](https://redirect.github.com/ematipico) - [useImportType](https://biomejs.dev/linter/rules/use-import-type/) and [useExportType](https://biomejs.dev/linter/rules/use-export-type/) now report useless inline type qualifiers ([#4178](https://redirect.github.com/biomejs/biome/issues/4178)). The following fix is now proposed: ```diff - import type { type A, B } from ""; + import type { A, B } from ""; - export type { type C, D }; + export type { C, D }; ``` Contributed by [@Conaclos](https://redirect.github.com/Conaclos) - [useExportType](https://biomejs.dev/linter/rules/use-export-type/) now reports ungrouped `export from`. The following fix is now proposed: ```diff - export { type A, type B } from ""; + export type { A, B } from ""; ``` Contributed by [@Conaclos](https://redirect.github.com/Conaclos) - [noVoidTypeReturn](https://biomejs.dev/linter/rules/no-void-type-return/) now accepts `void` expressions in return position ([#4173](https://redirect.github.com/biomejs/biome/issues/4173)). The following code is now accepted: ```ts function f(): void { return void 0; } ``` Contributed by [@Conaclos](https://redirect.github.com/Conaclos) - [noUselessFragments](https://biomejs.dev/linter/rules/no-useless-fragments/) now correctly handles fragments containing HTML escapes (e.g. ` `) inside expression escapes `{ ... }` ([#4059](https://redirect.github.com/biomejs/biome/issues/4059)). The following code is no longer reported: ```jsx function Component() { return (faker-js/faker (@faker-js/faker)
### [`v9.1.0`](https://redirect.github.com/faker-js/faker/blob/HEAD/CHANGELOG.md#910-2024-10-26) [Compare Source](https://redirect.github.com/faker-js/faker/compare/v9.0.3...v9.1.0) ##### New Locales - **locale:** add books on pt_br ([#3218](https://redirect.github.com/faker-js/faker/issues/3218)) ([af1dbcd](https://redirect.github.com/faker-js/faker/commit/af1dbcdbf363a12c448834dff031a698c8925e2e)) - **locale:** add Swedish(sv) counties ([#3154](https://redirect.github.com/faker-js/faker/issues/3154)) ([67569d9](https://redirect.github.com/faker-js/faker/commit/67569d93992e6388647118e9e9e319cfdd6721ed)) ##### Features - add book module ([#2949](https://redirect.github.com/faker-js/faker/issues/2949)) ([2f93d9d](https://redirect.github.com/faker-js/faker/commit/2f93d9da383638b6d232ff8b3cae827ea4c80150)) - **commerce:** more varied product descriptions ([#3174](https://redirect.github.com/faker-js/faker/issues/3174)) ([ba4ef9a](https://redirect.github.com/faker-js/faker/commit/ba4ef9a5a671ffc6ed10db7fed896dccda90dca1)) - **internet:** add jwt method ([#2936](https://redirect.github.com/faker-js/faker/issues/2936)) ([e3858f2](https://redirect.github.com/faker-js/faker/commit/e3858f221bb3b6e1278933c0b8e0d98da6854e52)) - **internet:** improve ipv4 method ([#2992](https://redirect.github.com/faker-js/faker/issues/2992)) ([a5a6c5b](https://redirect.github.com/faker-js/faker/commit/a5a6c5b4e1145b1e21e5d8e540bc6f55f97d3a84)) - **location:** add `continent` method ([#3162](https://redirect.github.com/faker-js/faker/issues/3162)) ([4056ab0](https://redirect.github.com/faker-js/faker/commit/4056ab09c64be40d41562284ec64e7531fbaff41)) - **string:** adds support for generating ULID ([#2524](https://redirect.github.com/faker-js/faker/issues/2524)) ([5b1c858](https://redirect.github.com/faker-js/faker/commit/5b1c8588f8a57be712e64434f7b17a8407a4f465)) ##### Changed Locales - **locale:** enhance en vehicle manufacturers ([#3187](https://redirect.github.com/faker-js/faker/issues/3187)) ([858f8d0](https://redirect.github.com/faker-js/faker/commit/858f8d07b098418a7a2b7cb2e265eb9f4388ed3d)) - **locale:** modernise buzz- and catch-phrases ([#2930](https://redirect.github.com/faker-js/faker/issues/2930)) ([247c86f](https://redirect.github.com/faker-js/faker/commit/247c86f5b40916957123cb3fa1bd4356d8fa7452)) - **locale:** remove inaccessible files ([#3205](https://redirect.github.com/faker-js/faker/issues/3205)) ([89b695c](https://redirect.github.com/faker-js/faker/commit/89b695cbaf20206ebb4570d018af2fa99f720889)) - **locale:** trim excessive Croatian last names ([#3204](https://redirect.github.com/faker-js/faker/issues/3204)) ([18e59aa](https://redirect.github.com/faker-js/faker/commit/18e59aa8805b3413b6f8058b1a00ff5bcbfbc935)) ##### Bug Fixes - **food:** use arrayElement instead of fake for adjective ([#3178](https://redirect.github.com/faker-js/faker/issues/3178)) ([a8dfa2f](https://redirect.github.com/faker-js/faker/commit/a8dfa2fcde59a1ec9e5beb2e93c690a8ec532cdf)) - **location:** fix US ZIP code anomalies for zipCode({state}) ([#3180](https://redirect.github.com/faker-js/faker/issues/3180)) ([df59724](https://redirect.github.com/faker-js/faker/commit/df597241003824279268c1dc9eae6c772c54760b)) - **location:** update valid ZIP ranges for FL and VA ([#3167](https://redirect.github.com/faker-js/faker/issues/3167)) ([e271d4a](https://redirect.github.com/faker-js/faker/commit/e271d4a545dd48e57285019e4f412358c49cad0d))swc-project/swc (@swc/core)
### [`v1.7.42`](https://redirect.github.com/swc-project/swc/blob/HEAD/CHANGELOG.md#1742---2024-10-31) [Compare Source](https://redirect.github.com/swc-project/swc/compare/v1.7.40...v1.7.42) ##### Bug Fixes - **(es/generator)** Fix code generation for `break` in nested while ([#9684](https://redirect.github.com/swc-project/swc/issues/9684)) ([65872af](https://redirect.github.com/swc-project/swc/commit/65872afaf151412be5f14820080325b920901bfb)) - **(es/parser)** Parse `await using()` call ([#9693](https://redirect.github.com/swc-project/swc/issues/9693)) ([bcf05de](https://redirect.github.com/swc-project/swc/commit/bcf05de2ebe755a54ec8a6b93311b1686494c578)) - **(es/resolver)** Skip resolving lowercase `JSXIdentifiers` ([#9686](https://redirect.github.com/swc-project/swc/issues/9686)) ([6ed1715](https://redirect.github.com/swc-project/swc/commit/6ed1715b93875cd4588352a784ed876bf183df5d)) - **(es/types)** Add `jsc.experimental.keepImportAssertions` to types ([#9691](https://redirect.github.com/swc-project/swc/issues/9691)) ([4b4dcfa](https://redirect.github.com/swc-project/swc/commit/4b4dcfa4d8532c84762b19737b66474e97480cef)) ##### Features - **(es/minifier)** Optimize switch with side effect and termination tests ([#9677](https://redirect.github.com/swc-project/swc/issues/9677)) ([7344a63](https://redirect.github.com/swc-project/swc/commit/7344a638b55d483571ab4b35edf56f7088de792b)) - **(es/parser)** Ability to get script's potential module errors ([#9682](https://redirect.github.com/swc-project/swc/issues/9682)) ([2bbd1e8](https://redirect.github.com/swc-project/swc/commit/2bbd1e8485ca7c152d408cc34cd51460467171a7)) ##### Miscellaneous Tasks - **(deps)** Update cargo (patch) ([#9607](https://redirect.github.com/swc-project/swc/issues/9607)) ([3597b0f](https://redirect.github.com/swc-project/swc/commit/3597b0f53d060b09b7e878e9c825321f053d189e)) ##### Performance - **(es)** Cache `current_dir()` system calls ([#9683](https://redirect.github.com/swc-project/swc/issues/9683)) ([7aab945](https://redirect.github.com/swc-project/swc/commit/7aab945a2199be06e20a35ec0d197fc817a48d9d)) - **(es/lints)** Disable lints by default ([#9689](https://redirect.github.com/swc-project/swc/issues/9689)) ([4d887d0](https://redirect.github.com/swc-project/swc/commit/4d887d062b299b42b1a6529dfac5f22c3fd49903)) - **(visit)** Introduce `Pass` API and adjust visitor APIs for it ([#9680](https://redirect.github.com/swc-project/swc/issues/9680)) ([581aafb](https://redirect.github.com/swc-project/swc/commit/581aafb4dfbbcf9b834e3b578cad83fec452a062)) ### [`v1.7.40`](https://redirect.github.com/swc-project/swc/blob/HEAD/CHANGELOG.md#1740---2024-10-26) [Compare Source](https://redirect.github.com/swc-project/swc/compare/v1.7.39...v1.7.40) ##### Bug Fixes - **(bindings)** Update napi to handle string with `\0` ([#9665](https://redirect.github.com/swc-project/swc/issues/9665)) ([8f45eaf](https://redirect.github.com/swc-project/swc/commit/8f45eaf837d023847c478e562265e141213ce231)) - **(bindings/node)** Add `VisitTsPropertySignature` ([#9670](https://redirect.github.com/swc-project/swc/issues/9670)) ([715c42c](https://redirect.github.com/swc-project/swc/commit/715c42c0bfe699d822a7e9ea18751d35aac3235d)) - **(es/codegen)** Improve EndsWithAlphaNum ([#9675](https://redirect.github.com/swc-project/swc/issues/9675)) ([ba2a942](https://redirect.github.com/swc-project/swc/commit/ba2a942f56776e6927b48cfd185d8720052b7409)) - **(es/renamer)** Check `preserved` in normal renaming mode ([#9666](https://redirect.github.com/swc-project/swc/issues/9666)) ([87b4e10](https://redirect.github.com/swc-project/swc/commit/87b4e10e5dbeb236ee5232d85d3176472fa4a9d0)) - **(typescript)** Check whether the method is abstract when checking `is_overload` ([#9678](https://redirect.github.com/swc-project/swc/issues/9678)) ([78500af](https://redirect.github.com/swc-project/swc/commit/78500af546ea3c92f016c729e173c66fccbe46ed)) ##### Documentation - **(contributing)** Document changeset ([#9667](https://redirect.github.com/swc-project/swc/issues/9667)) ([602c667](https://redirect.github.com/swc-project/swc/commit/602c667b9d435fa9155345952379287cb11e59db)) ##### Miscellaneous Tasks - **(deps)** Update dependency swc-plugin-coverage-instrument to ^0.0.25 ([#9676](https://redirect.github.com/swc-project/swc/issues/9676)) ([b8d255b](https://redirect.github.com/swc-project/swc/commit/b8d255bf5aa65a5589331b0924269a23b3052137)) ### [`v1.7.39`](https://redirect.github.com/swc-project/swc/blob/HEAD/CHANGELOG.md#1739---2024-10-22) [Compare Source](https://redirect.github.com/swc-project/swc/compare/v1.7.36...v1.7.39) ##### Bug Fixes - **(es/compat)** Add missing visit children for `destructuring` ([#9658](https://redirect.github.com/swc-project/swc/issues/9658)) ([32116a0](https://redirect.github.com/swc-project/swc/commit/32116a0940a5806d8ad291b5fd6d056709a396bc)) - **(es/parser)** Correct `>` and `<` when exit type context ([#9653](https://redirect.github.com/swc-project/swc/issues/9653)) ([abffc07](https://redirect.github.com/swc-project/swc/commit/abffc073561b3ba3906aa0923ef3880e5e30d538)) - **(es/proposal)** Use `tsc` version of explicit resource management ([#9585](https://redirect.github.com/swc-project/swc/issues/9585)) ([f735108](https://redirect.github.com/swc-project/swc/commit/f7351080174c61bad5950be9b30c75c4f17ebe3e)) - **(wasm-typescript)** Fix option types of functions ([#9662](https://redirect.github.com/swc-project/swc/issues/9662)) ([4cbe33c](https://redirect.github.com/swc-project/swc/commit/4cbe33c32f244e9c568d388f19c0f297bf3d74f1)) ##### Features - **(es/minifier)** Implement optional catch binding ([#9657](https://redirect.github.com/swc-project/swc/issues/9657)) ([f70b842](https://redirect.github.com/swc-project/swc/commit/f70b842c5579c945fcd6357edb712507228f5eb5)) ##### Miscellaneous Tasks - **(es/typescript)** Improve enum comments and sourcemap ([#9652](https://redirect.github.com/swc-project/swc/issues/9652)) ([31fe3b6](https://redirect.github.com/swc-project/swc/commit/31fe3b6be151cbf63fe1ff06f922f814da105d08)) ### [`v1.7.36`](https://redirect.github.com/swc-project/swc/blob/HEAD/CHANGELOG.md#1736---2024-10-15) [Compare Source](https://redirect.github.com/swc-project/swc/compare/v1.7.35...v1.7.36) ##### Bug Fixes - **(es)** Run esnext transforms on esnext target ([#9644](https://redirect.github.com/swc-project/swc/issues/9644)) ([8a19201](https://redirect.github.com/swc-project/swc/commit/8a192018247ad7ac253c2964038de5f626acb8c4)) - **(es/codegen)** Emit space after div if rhs has leading comment ([#9631](https://redirect.github.com/swc-project/swc/issues/9631)) ([f2be26e](https://redirect.github.com/swc-project/swc/commit/f2be26efe090f5c1575f5bb9e4067f7ae531f11c)) - **(es/lints)** Correct the false positive error of TS2309 ([#9635](https://redirect.github.com/swc-project/swc/issues/9635)) ([f74c1f3](https://redirect.github.com/swc-project/swc/commit/f74c1f3e5a117c22aa87a2754715066cb8dfe0fe)) - **(es/minifier)** Only merge last if return ([#9633](https://redirect.github.com/swc-project/swc/issues/9633)) ([6f52949](https://redirect.github.com/swc-project/swc/commit/6f52949210ee2a71ed119cbcdf2db1842a2e63cb)) - **(es/minifier)** Check type of assignment target before merging assignments ([#9617](https://redirect.github.com/swc-project/swc/issues/9617)) ([4436621](https://redirect.github.com/swc-project/swc/commit/44366215644f3fff2f897e509a56b36cb5e1f8a2)) ##### Features - **(es)** Introduce `runPluginFirst` for Wasm plugins ([#9645](https://redirect.github.com/swc-project/swc/issues/9645)) ([3d3e434](https://redirect.github.com/swc-project/swc/commit/3d3e4340b33e124f551ee88b68bfaddb537a3c6a)) - **(es/minifier)** Support unary negate in `cast_to_number` ([#9642](https://redirect.github.com/swc-project/swc/issues/9642)) ([88a2186](https://redirect.github.com/swc-project/swc/commit/88a2186ba419c98c73b997ca9ea90d7a8fd128e4)) ##### Miscellaneous Tasks - **(deps)** Update dependency magic-string to v0.30.12 ([#9634](https://redirect.github.com/swc-project/swc/issues/9634)) ([085bc19](https://redirect.github.com/swc-project/swc/commit/085bc191e46d4d46efc3d4a7cd5fc1240c8474dd))artilleryio/artillery (artillery)
### [`v2.0.21`](https://redirect.github.com/artilleryio/artillery/releases/tag/artillery-2.0.21): Artillery v2.0.21 [Compare Source](https://redirect.github.com/artilleryio/artillery/compare/artillery-2.0.20...artillery-2.0.21) ![Artillery v2.0.21](https://redirect.github.com/user-attachments/assets/549db47d-416e-4b4b-aba4-af48c0e32d75) #### Core - Add `--env-file` flag as an alternative for `--dotenv` flag. This makes it consistent with the [Node.js `--env-file` flag](https://nodejs.org/dist/latest-v20.x/docs/api/cli.html#--env-fileconfig). The `--dotenv` flag will be deprecated in a future release ([https://github.com/artilleryio/artillery/pull/3376](https://redirect.github.com/artilleryio/artillery/pull/3376)) - Add tracking of response times by HTTP status code. A new set of metrics (e.g. `http.response_time.2xx` or `http.response_time.5xx`) is now reported to provide more granular view of response times in a test ([https://github.com/artilleryio/artillery/pull/3326](https://redirect.github.com/artilleryio/artillery/pull/3326)) - Fix an issue that caused incorrect "multiple batches of metics" warnings when running tests with `pause` phases ([https://github.com/artilleryio/artillery/pull/3331](https://redirect.github.com/artilleryio/artillery/pull/3331)) #### Playwright - Upgrade Playwright to v1.48.0 #### Azure - Fix: Make values loaded from an env file with `--dotenv` / `--env-file` flag available to workers containers (rather than just the Artillery process running inside the worker) ([https://github.com/artilleryio/artillery/pull/3376](https://redirect.github.com/artilleryio/artillery/pull/3376)) - Stagger startup of containers in large load tests to prevent rate limit errors from Azure services ([https://github.com/artilleryio/artillery/pull/3371](https://redirect.github.com/artilleryio/artillery/pull/3371)) #### OpenTelemetry - Add support for setting resource-level attributes ([https://github.com/artilleryio/artillery/pull/3335](https://redirect.github.com/artilleryio/artillery/pull/3335)) #### Artillery Cloud - Send CI related information to Artillery Cloud. This makes the following information available in Artillery Cloud: - Whether a test run was triggered in CI or not, and which CI service was used - For tests triggered in GitHub Actions - provide a link back to the job run on GitHub Actions #### Dependencies - Upgrade `json-plus` to address a critical security vulnerability ([#3369](https://redirect.github.com/artilleryio/artillery/issues/3369)) *** With contributions from [@hassy](https://redirect.github.com/hassy) [@Archangelza1](https://redirect.github.com/Archangelza1) [@dirkluijk](https://redirect.github.com/dirkluijk)mariadb-corporation/mariadb-connector-nodejs (mariadb)
### [`v3.4.0`](https://redirect.github.com/mariadb-corporation/mariadb-connector-nodejs/blob/HEAD/CHANGELOG.md#340-Oct-2024) [Compare Source](https://redirect.github.com/mariadb-corporation/mariadb-connector-nodejs/compare/3.3.2...3.4.0) [Full Changelog](https://redirect.github.com/mariadb-corporation/mariadb-connector-nodejs/compare/3.3.1...3.3.2)mongodb/node-mongodb-native (mongodb)
### [`v6.10.0`](https://redirect.github.com/mongodb/node-mongodb-native/blob/HEAD/HISTORY.md#6100-2024-10-21) [Compare Source](https://redirect.github.com/mongodb/node-mongodb-native/compare/v6.9.0...v6.10.0) ##### Features - **NODE-5838:** remove support for server 3.6 ([#4182](https://redirect.github.com/mongodb/node-mongodb-native/issues/4182)) ([7b71e1f](https://redirect.github.com/mongodb/node-mongodb-native/commit/7b71e1fdc179a9e0628a6b23519e3c00acaadf22)) - **NODE-6060:** set fire-and-forget protocol when writeConcern is w: 0 ([#4219](https://redirect.github.com/mongodb/node-mongodb-native/issues/4219)) ([643a875](https://redirect.github.com/mongodb/node-mongodb-native/commit/643a87553b5314abb44bcdc342a8bb8cb51d2052)) - **NODE-6289:** allow valid srv hostnames with less than 3 parts ([#4197](https://redirect.github.com/mongodb/node-mongodb-native/issues/4197)) ([3d5bd51](https://redirect.github.com/mongodb/node-mongodb-native/commit/3d5bd513b590f8de91a3edb0a6d2a9d81a4666e2)) - **NODE-6329:** client bulk write happy path ([#4206](https://redirect.github.com/mongodb/node-mongodb-native/issues/4206)) ([3d3da40](https://redirect.github.com/mongodb/node-mongodb-native/commit/3d3da4070b155d372477fd9b76ac9f1cd5e5011c)) - **NODE-6337:** implement client bulk write batching ([#4248](https://redirect.github.com/mongodb/node-mongodb-native/issues/4248)) ([d56e235](https://redirect.github.com/mongodb/node-mongodb-native/commit/d56e235cb7aa9d991cc1fb200c8a94e6a1b788fa)) - **NODE-6338:** implement client bulk write error handling ([#4262](https://redirect.github.com/mongodb/node-mongodb-native/issues/4262)) ([8def42d](https://redirect.github.com/mongodb/node-mongodb-native/commit/8def42ded5df4cb7d5ba1c65445d90042b1667c3)) - **NODE-6342:** support maxTimeMS for explain commands ([#4207](https://redirect.github.com/mongodb/node-mongodb-native/issues/4207)) ([20396e1](https://redirect.github.com/mongodb/node-mongodb-native/commit/20396e1bdba9c3fb89c789b1955f117ed28a3926)) - **NODE-6350:** add typescript support to client bulkWrite API ([#4257](https://redirect.github.com/mongodb/node-mongodb-native/issues/4257)) ([30c61f2](https://redirect.github.com/mongodb/node-mongodb-native/commit/30c61f2a926f1d8908b0800a4f9bb409e5d9581e)) - **NODE-6409:** new errors for unacknowledged bulk writes ([#4276](https://redirect.github.com/mongodb/node-mongodb-native/issues/4276)) ([7fde8dd](https://redirect.github.com/mongodb/node-mongodb-native/commit/7fde8ddc869623e9df3ea7753a46cae8d6e3e9dd)) - **NODE-6419:** deprecate explain options API for find and aggregate ([#4271](https://redirect.github.com/mongodb/node-mongodb-native/issues/4271)) ([a473de9](https://redirect.github.com/mongodb/node-mongodb-native/commit/a473de95091a7d89c3cbe1c44222b04d3695387e)) ##### Bug Fixes - **NODE-6394:** data events missed while awaiting drain ([#4249](https://redirect.github.com/mongodb/node-mongodb-native/issues/4249)) ([3f9d243](https://redirect.github.com/mongodb/node-mongodb-native/commit/3f9d24379afa1e1e953b77f46563fca5a26c8407)) - **NODE-6418:** change stream resumes infinitely after failed aggregates ([#4267](https://redirect.github.com/mongodb/node-mongodb-native/issues/4267)) ([6ecf198](https://redirect.github.com/mongodb/node-mongodb-native/commit/6ecf198f2e4805da42f651717c6e7f8182a8faeb)) - **NODE-6436:** only force majority write concern on commitTransaction retry ([#4284](https://redirect.github.com/mongodb/node-mongodb-native/issues/4284)) ([a7d1d43](https://redirect.github.com/mongodb/node-mongodb-native/commit/a7d1d43e96c6875dd325d17d87639c2338eb35f3))vercel/next.js (next)
### [`v14.2.16`](https://redirect.github.com/vercel/next.js/compare/v14.2.15...v14.2.16) [Compare Source](https://redirect.github.com/vercel/next.js/compare/v14.2.15...v14.2.16)brianc/node-postgres (pg)
### [`v8.13.1`](https://redirect.github.com/brianc/node-postgres/compare/pg@8.13.0...pg@8.13.1) [Compare Source](https://redirect.github.com/brianc/node-postgres/compare/pg@8.13.0...pg@8.13.1)brianc/node-postgres (pg-cursor)
### [`v2.12.1`](https://redirect.github.com/brianc/node-postgres/compare/pg-cursor@2.12.0...pg-cursor@2.12.1) [Compare Source](https://redirect.github.com/brianc/node-postgres/compare/pg-cursor@2.12.0...pg-cursor@2.12.1)pnpm/pnpm (pnpm)
### [`v9.12.3`](https://redirect.github.com/pnpm/pnpm/blob/HEAD/pnpm/CHANGELOG.md#9123) [Compare Source](https://redirect.github.com/pnpm/pnpm/compare/v9.12.2...v9.12.3) ##### Patch Changes - Don't purge `node_modules`, when typing "n" in the prompt that asks whether to remove `node_modules` before installation [#8655](https://redirect.github.com/pnpm/pnpm/pull/8655). - Fix a bug causing pnpm to infinitely spawn itself when `manage-package-manager-versions=true` is set and the `.tools` directory is corrupt. - Use `crypto.hash`, when available, for improved performance [#8629](https://redirect.github.com/pnpm/pnpm/pull/8629). - Fixed a race condition in temporary file creation in the store by including worker thread ID in filename. Previously, multiple worker threads could attempt to use the same temporary file. Temporary files now include both process ID and thread ID for uniqueness [#8703](https://redirect.github.com/pnpm/pnpm/pull/8703). - All commands should read settings from the `package.json` at the root of the workspace [#8667](https://redirect.github.com/pnpm/pnpm/issues/8667). - When `manage-package-manager-versions` is set to `true`, errors spawning a self-managed version of `pnpm` will now be shown (instead of being silent). - Pass the find command to npm, it is an alias for npm search ### [`v9.12.2`](https://redirect.github.com/pnpm/pnpm/blob/HEAD/pnpm/CHANGELOG.md#9122) [Compare Source](https://redirect.github.com/pnpm/pnpm/compare/v9.12.1...v9.12.2) ##### Patch Changes - When checking whether a file in the store has executable permissions, the new approach checks if at least one of the executable bits (owner, group, and others) is set to 1. Previously, a file was incorrectly considered executable only when all the executable bits were set to 1. This fix ensures that files with any executable permission, regardless of the user class, are now correctly identified as executable [#8546](https://redirect.github.com/pnpm/pnpm/issues/8546).egoist/tsup (tsup)
### [`v8.3.5`](https://redirect.github.com/egoist/tsup/releases/tag/v8.3.5) [Compare Source](https://redirect.github.com/egoist/tsup/compare/v8.3.4...v8.3.5) ##### 🐞 Bug Fixes - Run `experimentalDts` only once - by [@aryaemami59](https://redirect.github.com/aryaemami59) in [https://github.com/egoist/tsup/issues/1236](https://redirect.github.com/egoist/tsup/issues/1236) [(fddd4)](https://redirect.github.com/egoist/tsup/commit/fddd451) ##### [View changes on GitHub](https://redirect.github.com/egoist/tsup/compare/v8.3.4...v8.3.5) ### [`v8.3.4`](https://redirect.github.com/egoist/tsup/releases/tag/v8.3.4) [Compare Source](https://redirect.github.com/egoist/tsup/compare/v8.3.0...v8.3.4) *No significant changes* ##### [View changes on GitHub](https://redirect.github.com/egoist/tsup/compare/v8.3.3...v8.3.4)vercel/turborepo (turbo)
### [`v2.2.3`](https://redirect.github.com/vercel/turborepo/releases/tag/v2.2.3): Turborepo v2.2.3 [Compare Source](https://redirect.github.com/vercel/turborepo/compare/v2.2.2...v2.2.3) #### What's Changed ##### Changelog - feat(query): provide ast for files and depth for dependencies by [@NicholasLYang](https://redirect.github.com/NicholasLYang) in [https://github.com/vercel/turborepo/pull/9285](https://redirect.github.com/vercel/turborepo/pull/9285) - fix: unnecessary empty cache logs by [@NicholasLYang](https://redirect.github.com/NicholasLYang) in [https://github.com/vercel/turborepo/pull/9301](https://redirect.github.com/vercel/turborepo/pull/9301) **Full Changelog**: https://github.com/vercel/turborepo/compare/v2.2.2...v2.2.3 ### [`v2.2.2`](https://redirect.github.com/vercel/turborepo/releases/tag/v2.2.2): Turborepo v2.2.2 [Compare Source](https://redirect.github.com/vercel/turborepo/compare/v2.2.1...v2.2.2) #### What's Changed ##### Changelog - fix(tui): generate stop event on ctrl c by [@chris-olszewski](https://redirect.github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9296](https://redirect.github.com/vercel/turborepo/pull/9296) **Full Changelog**: https://github.com/vercel/turborepo/compare/v2.2.1...v2.2.2 ### [`v2.2.1`](https://redirect.github.com/vercel/turborepo/compare/v2.2.0...v2.2.1) [Compare Source](https://redirect.github.com/vercel/turborepo/compare/v2.2.0...v2.2.1) ### [`v2.2.0`](https://redirect.github.com/vercel/turborepo/releases/tag/v2.2.0): Turborepo v2.2.0 [Compare Source](https://redirect.github.com/vercel/turborepo/compare/v2.1.3...v2.2.0) #### What's Changed ##### Docs - (docs) Consistency for configurations between docs and examples. by [@anthonyshew](https://redirect.github.com/anthonyshew) in [https://github.com/vercel/turborepo/pull/9212](https://redirect.github.com/vercel/turborepo/pull/9212) - (docs) Fix spacing on link. by [@anthonyshew](https://redirect.github.com/anthonyshew) in [https://github.com/vercel/turborepo/pull/9213](https://redirect.github.com/vercel/turborepo/pull/9213) - Removed an extra comma by [@itssidhere](https://redirect.github.com/itssidhere) in [https://github.com/vercel/turborepo/pull/9220](https://redirect.github.com/vercel/turborepo/pull/9220) - docs: add missing `}` and remove comma by [@morinokami](https://redirect.github.com/morinokami) in [https://github.com/vercel/turborepo/pull/9223](https://redirect.github.com/vercel/turborepo/pull/9223) - fix casing for product names by [@dimitropoulos](https://redirect.github.com/dimitropoulos) in [https://github.com/vercel/turborepo/pull/9229](https://redirect.github.com/vercel/turborepo/pull/9229) - log::debug and ignore on daemon usage in CI by [@dimitropoulos](https://redirect.github.com/dimitropoulos) in [https://github.com/vercel/turborepo/pull/9237](https://redirect.github.com/vercel/turborepo/pull/9237) - Update package-configurations.mdx by [@robertoms99](https://redirect.github.com/robertoms99) in [https://github.com/vercel/turborepo/pull/9232](https://redirect.github.com/vercel/turborepo/pull/9232) - fix(docs): circleci config - remove excess colon when calling node/install-packages by [@komichar](https://redirect.github.com/komichar) in [https://github.com/vercel/turborepo/pull/9264](https://redirect.github.com/vercel/turborepo/pull/9264) - docs: query documentation by [@NicholasLYang](https://redirect.github.com/NicholasLYang) in [https://github.com/vercel/turborepo/pull/9258](https://redirect.github.com/vercel/turborepo/pull/9258) - docs for `--affected` on GitHub by [@dimitropoulos](https://redirect.github.com/dimitropoulos) in [https://github.com/vercel/turborepo/pull/9283](https://redirect.github.com/vercel/turborepo/pull/9283) - docs: interruptible by [@NicholasLYang](https://redirect.github.com/NicholasLYang) in [https://github.com/vercel/turborepo/pull/9282](https://redirect.github.com/vercel/turborepo/pull/9282) - feat(docs): platform env docs by [@tknickman](https://redirect.github.com/tknickman) in [https://github.com/vercel/turborepo/pull/9281](https://redirect.github.com/vercel/turborepo/pull/9281) ##### [@turbo/repository](https://redirect.github.com/turbo/repository) - fix napi double .d.ts formatting by [@dimitropoulos](https://redirect.github.com/dimitropoulos) in [https://github.com/vercel/turborepo/pull/9238](https://redirect.github.com/vercel/turborepo/pull/9238) - feat(query): package changes reason by [@NicholasLYang](https://redirect.github.com/NicholasLYang) in [https://github.com/vercel/turborepo/pull/9240](https://redirect.github.com/vercel/turborepo/pull/9240) ##### Examples - chore: Remove `display` key from generated `tsconfig` by [@Sensanaty](https://redirect.github.com/Sensanaty) in [https://github.com/vercel/turborepo/pull/9225](https://redirect.github.com/vercel/turborepo/pull/9225) - (examples) Move `types` field into first position of `exports` of `kitchen-sink` example. by [@anthonyshew](https://redirect.github.com/anthonyshew) in [https://github.com/vercel/turborepo/pull/9226](https://redirect.github.com/vercel/turborepo/pull/9226) - chore(examples): minor adjustments to `with-shell-commands` by [@breadadams](https://redirect.github.com/breadadams) in [https://github.com/vercel/turborepo/pull/9219](https://redirect.github.com/vercel/turborepo/pull/9219) - fix broken examples causing `pnpm test` to fail by [@dimitropoulos](https://redirect.github.com/dimitropoulos) in [https://github.com/vercel/turborepo/pull/9239](https://redirect.github.com/vercel/turborepo/pull/9239) ##### Changelog - feat(query): add filter to `affectedPackages` by [@NicholasLYang](https://redirect.github.com/NicholasLYang) in [https://github.com/vercel/turborepo/pull/9201](https://redirect.github.com/vercel/turborepo/pull/9201) - feat(query): add `currentRun` field to `turbo query` by [@NicholasLYang](https://redirect.github.com/NicholasLYang) in [https://github.com/vercel/turborepo/pull/9196](https://redirect.github.com/vercel/turborepo/pull/9196) - fix(cache): set content length for put artifact by [@chris-olszewski](https://redirect.github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9183](https://redirect.github.com/vercel/turborepo/pull/9183) - chore(query): fix query integration test by [@chris-olszewski](https://redirect.github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9215](https://redirect.github.com/vercel/turborepo/pull/9215) - fix(affected): handle Github Actions provided commit not part of checkout by [@chris-olszewski](https://redirect.github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9214](https://redirect.github.com/vercel/turborepo/pull/9214) - chore: fix grammar in README.md for project update by [@CaLxCyMru](https://redirect.github.com/CaLxCyMru) in [https://github.com/vercel/turborepo/pull/9206](https://redirect.github.com/vercel/turborepo/pull/9206) - chore: update contributing and troubleshooting docs by [@NicholasLYang](https://redirect.github.com/NicholasLYang) in [https://github.com/vercel/turborepo/pull/9231](https://redirect.github.com/vercel/turborepo/pull/9231) - feat(query): add task dependencies/dependents by [@NicholasLYang](https://redirect.github.com/NicholasLYang) in [https://github.com/vercel/turborepo/pull/9190](https://redirect.github.com/vercel/turborepo/pull/9190) - fix(query): naming conflict by [@NicholasLYang](https://redirect.github.com/NicholasLYang) in [https://github.com/vercel/turborepo/pull/9242](https://redirect.github.com/vercel/turborepo/pull/9242) - feat: warn on empty cache by [@NicholasLYang](https://redirect.github.com/NicholasLYang) in [https://github.com/vercel/turborepo/pull/9236](https://redirect.github.com/vercel/turborepo/pull/9236) - feat(query): adding indirect and all dependencies for tasks by [@NicholasLYang](https://redirect.github.com/NicholasLYang) in [https://github.com/vercel/turborepo/pull/9207](https://redirect.github.com/vercel/turborepo/pull/9207) - feat(query): recover from trace errors by [@NicholasLYang](https://redirect.github.com/NicholasLYang) in [https://github.com/vercel/turborepo/pull/9244](https://redirect.github.com/vercel/turborepo/pull/9244) - chore: add USER as one of the supported process.env variables to passthru by [@cosn](https://redirect.github.com/cosn) in [https://github.com/vercel/turborepo/pull/9235](https://redirect.github.com/vercel/turborepo/pull/9235) - chore(shim): add unit tests for shim parsing by [@chris-olszewski](https://redirect.github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9248](https://redirect.github.com/vercel/turborepo/pull/9248) - feat(watch): add interruptible tasks by [@NicholasLYang](https://redirect.github.com/NicholasLYang) in [https://github.com/vercel/turborepo/pull/9228](https://redirect.github.com/vercel/turborepo/pull/9228) - feat(turbo): add platform env support by [@tknickman](https://redirect.github.com/tknickman) in [https://github.com/vercel/turborepo/pull/9122](https://redirect.github.com/vercel/turborepo/pull/9122) - chore: fix clippy lint in filter tests by [@chris-olszewski](https://redirect.github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9257](https://redirect.github.com/vercel/turborepo/pull/9257) - chore(platform_env): add warn prefix by [@tknickman](https://redirect.github.com/tknickman) in [https://github.com/vercel/turborepo/pull/9261](https://redirect.github.com/vercel/turborepo/pull/9261) - chore(trace): fix compilation error in turbo-trace by [@chris-olszewski](https://redirect.github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9267](https://redirect.github.com/vercel/turborepo/pull/9267) - chore(platform_env): add warn prefix to docs by [@tknickman](https://redirect.github.com/tknickman) in [https://github.com/vercel/turborepo/pull/9269](https://redirect.github.com/vercel/turborepo/pull/9269) - fix(query): remove engine validation for query by [@NicholasLYang](https://redirect.github.com/NicholasLYang) in [https://github.com/vercel/turborepo/pull/9271](https://redirect.github.com/vercel/turborepo/pull/9271) - chore(scm): add more information to GHA warning by [@chris-olszewski](https://redirect.github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9273](https://redirect.github.com/vercel/turborepo/pull/9273) - perf(tui): bring async to tui by [@chris-olszewski](https://redirect.github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9132](https://redirect.github.com/vercel/turborepo/pull/9132) - chore: fix flakey log stream integration test by [@chris-olszewski](https://redirect.github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9279](https://redirect.github.com/vercel/turborepo/pull/9279) - feat(query): variables by [@NicholasLYang](https://redirect.github.com/NicholasLYang) in [https://github.com/vercel/turborepo/pull/9260](https://redirect.github.com/vercel/turborepo/pull/9260) - chore(ci): enable corepack for npm in integration tests by [@mehulkar](https://redirect.github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/9233](https://redirect.github.com/vercel/turborepo/pull/9233) - chore: unhide query by [@NicholasLYang](https://redirect.github.com/NicholasLYang) in [https://github.com/vercel/turborepo/pull/9286](https://redirect.github.com/vercel/turborepo/pull/9286) #### New Contributors - [@itssidhere](https://redirect.github.com/itssidhere) made their first contribution in [https://github.com/vercel/turborepo/pull/9220](https://redirect.github.com/vercel/turborepo/pull/9220) - [@CaLxCyMru](https://redirect.github.com/CaLxCyMru) made their first contribution in [https://github.com/vercel/turborepo/pull/9206](https://redirect.github.com/vercel/turborepo/pull/9206) - [@Sensanaty](https://redirect.github.com/Sensanaty) made their first contribution in [https://github.com/vercel/turborepo/pull/9225](https://redirect.github.com/vercel/turborepo/pull/9225) - [@breadadams](https://redirect.github.com/breadadams) made their first contribution in [https://github.com/vercel/turborepo/pull/9219](https://redirect.github.com/vercel/turborepo/pull/9219) - [@robertoms99](https://redirect.github.com/robertoms99) made their first contribution in [https://github.com/vercel/turborepo/pull/9232](https://redirect.github.com/vercel/turborepo/pull/9232) - [@cosn](https://redirect.github.com/cosn) made their first contribution in [https://github.com/vercel/turborepo/pull/9235](https://redirect.github.com/vercel/turborepo/pull/9235) - [@komichar](https://redirect.github.com/komichar) made their first contribution in [https://github.com/vercel/turborepo/pull/9264](https://redirect.github.com/vercel/turborepo/pull/9264) **Full Changelog**: https://github.com/vercel/turborepo/compare/v2.1.3...v2.2.0Configuration
📅 Schedule: Branch creation - "before 4am on Monday" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, 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.