-
-
Notifications
You must be signed in to change notification settings - Fork 3
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 #619
Conversation
|
Sweep: PR ReviewSweep is currently reviewing your pr... |
7a3eae8
to
f189e89
Compare
Important Review skippedBot user detected. To trigger a single review, invoke the You can disable this status message by setting the Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
248eccc
to
b651d8a
Compare
New and removed dependencies detected. Learn more about Socket for GitHub ↗︎
|
e71c545
to
a8dd9ce
Compare
f102129
to
9cb81af
Compare
0d2b604
to
fa17336
Compare
085bd29
to
6d3fef3
Compare
6bd08f9
to
6792aab
Compare
6792aab
to
6c80340
Compare
This PR contains the following updates:
1.8.2
->1.8.3
0.45.1
->0.48.2
4.17.5
->4.17.6
20.14.8
->20.14.9
2.27.0
->2.28.0
20.13.1-alpine
->20.15.0-alpine
20.13.1-alpine
->20.15.0-alpine
6.2.0
->6.2.2
9.3.0
->9.4.0
v3.0
->v3.1
4.15.7
->4.16.2
5.5.2
->5.5.3
5.3.1
->5.3.3
8.17.1
->8.18.0
Release Notes
biomejs/biome (@biomejs/biome)
v1.8.3
Compare Source
CLI
Bug fixes
Fix #3104 by suppressing node warnings when using
biome migrate
. Contributed by @SuperchupuDevForce colors to be off when using the GitHub reporter to properly create annotations in GitHub actions (#3148). Contributed by @Sec-ant
Parser
Bug fixes
Formatter
Bug fixes
Linter
New features
nursery/useDeprecatedReason
rule. Contributed by @vohoanglong0107.Bug fixes
useConsistentArrayType
anduseShorthandArrayType
now ignoreArray
in theextends
andimplements
clauses. Fix #3247. Contributed by @Conaclospackage.json
. Contributed by @ematipicouseArrowFunction
rule now preserves a trailing comma when there is only a single type parameter in the arrow function and JSX is enabled. Fixes #3292. Contributed by @Sec-antEnhancements
Enhance tailwind sorting lint rule #1274 with variant support.
Every preconfigured variant is assigned a
weight
that concurs on establishing the output sorting order.Since nesting variants on the same utility class is possible, the resulting
weight
is the Bitwise XOR of all the variants weight for that class.Dynamic variants (e.g.
has-[.custom-class]
,group-[:checked]
) are also supported and they take theweight
of their base variant name the custom value attached (e.g.has-[.custom-class]
takeshas
weight).Arbitrary variants (e.g.
[&nth-child(2)]
) don't have a weight assigned and they are placed after every known variant.Classes with the same amount of arbitrary variants follow lexicographical order. The class that has the highest number of nested arbitrary variants is placed last.
Screen variants (e.g.
sm:
,max-md:
,min-lg:
) are not supported yet.Contributed by @lutaok
hey-api/openapi-ts (@hey-api/openapi-ts)
v0.48.2
Compare Source
Patch Changes
#746
0448823
Thanks @mrlubos! - fix: handle formData parameters in generated types#742
efc30f4
Thanks @mrlubos! - fix: ignore services.asClass setting for named clients#744
1e9edde
Thanks @mrlubos! - fix: improve default response type detection#745
342772a
Thanks @mrlubos! - fix: handle properties in one-of compositionv0.48.1
Compare Source
Patch Changes
#734
1f52b26
Thanks @mrlubos! - fix: generate service types when types are enabled, even if services are disabled#737
0537fe8
Thanks @mrlubos! - fix: support custom config file path#736
8410046
Thanks @mrlubos! - fix: handle async response transformersv0.48.0
Compare Source
Minor Changes
917405f
Thanks @anchan828! - feat: pass the Operation object to methodNameBuilderPatch Changes
#708
36cf95d
Thanks @mrlubos! - fix: make getHeaders() accept generic#712
6a5b96b
Thanks @mrlubos! - fix: handle void responses in transformersv0.47.2
Compare Source
Patch Changes
1081bbf
Thanks @mrlubos! - feat: add initial implementation of prefixItemsv0.47.1
Compare Source
Patch Changes
1017ace
Thanks @Nick-Lucas! - Fix an issue where transforms for endpoints with array returns were not generated correctlyv0.47.0
Compare Source
Minor Changes
#685
8ca3e5e
Thanks @mrlubos! - feat: add initial support for response transformers (string -> Date)#663
e01c612
Thanks @Stono! - Add support for customizing method names withservices.methodNameBuilder()
v0.46.3
Compare Source
Patch Changes
#594
9878381
Thanks @SimenB! - Add explicit type annotations toInterceptors
This allows the generated code to work with TypeScript 5.5's new
isolatedDeclarations
configuration.#635
0b09940
Thanks @mrlubos! - fix: handle 1XX response status codes#636
498f459
Thanks @mrlubos! - fix: improve default response status code classificationv0.46.2
Compare Source
Patch Changes
v0.46.1
Compare Source
Patch Changes
v0.46.0
Compare Source
Minor Changes
nats-io/nats.js (nats)
v2.28.0
Compare Source
What's Changed
This release bumps [NBC to 1.28.0], which fixes a subscription leak in the
request
andrequestMany
APIs with thenoMux
request option set totrue
.Full Changelog: nats-io/nats.js@v2.27.0...v2.28.0
nodejs/node (node)
v20.15.0
: 2024-06-20, Version 20.15.0 'Iron' (LTS), @marco-ippolitoCompare Source
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.
Contributed by Colin Ihrig in #52860
inspector: introduce the
--inspect-wait
flagThis 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
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.
Contributed by Joyee Cheung in #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.
--disable-wasm-trap-handler
disables this optimization so thatusers 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
Other Notable Changes
12512c3d0e
] - doc: add pimterry to collaborators (Tim Perry) #528749d485b40bb
] - (SEMVER-MINOR) tools: fix get_asan_state() in tools/test.py (Joyee Cheung) #52766e98c305f52
] - (SEMVER-MINOR) tools: support max_virtual_memory test configuration (Joyee Cheung) #52766dce0300896
] - (SEMVER-MINOR) tools: support != in test status files (Joyee Cheung) #52766Commits
227093bfec
] - assert: add deep equal check for more Error type (Zhenwei Jin) #51805184cfe5a71
] - benchmark: filter non-present deps fromstart-cli-version
(Adam Majer) #517468b3e83bb53
] - buffer: even faster atob (Daniel Lemire) #524438d628c3255
] - buffer: use size_t instead of uint32_t to avoid segmentation fault (Xavier Stouder) #4803316ae2b2933
] - buffer: remove lines setting indexes to integer value (Zhenwei Jin) #5258848c15d0dcd
] - build: remove deprecated calls for argument groups (Mohammed Keyvanzadeh) #529131be8232d17
] - build: drop base64 dep in GN build (Cheng) #52856918962d6e7
] - build: make simdjson a public dep in GN build (Cheng) #527555215b6fd8e
] - build, tools: copy release assets to staging R2 bucket once built (flakey5) #51394473fa73857
] - (SEMVER-MINOR) cli: allow running wasm in limited vmem with --disable-wasm-trap-handler (Joyee Cheung) #52766954d2aded4
] - cluster: replaceforEach
withfor-of
loop (Jérôme Benoit) #50317794e450ea7
] - console: colorize console error and warn (Jithil P Ponnan) #516290fb7c18f10
] - crypto: fix duplicated switch-case return values (Mustafa Ateş UZUN) #49030cd1415c8b2
] - Revert "crypto: make timingSafeEqual faster for Uint8Array" (Tobias Nießen) #53390b774544bb1
] - deps: enable unbundling of simdjson, simdutf, ada (Daniel Lemire) #52924da4dbfc5fd
] - doc: remove reference to AUTHORS file (Marco Ippolito) #529602f3f2ff8af
] - doc: update hljs with the latest styles (Aviv Keller) #529113a1d17a9b1
] - doc: mention quicker way to build docs (Alex Crawford) #52937be309bd19d
] - doc: mention push.followTags config (Rafael Gonzaga) #52906e62c6e2684
] - doc: document pipeline withend
option (Alois Klink) #48970af27225cf6
] - doc: add example forexecFileSync
method and ref to stdio (Evan Shortiss) #39412086626f9b1
] - doc: add examples and notes to http server.close et al (mary marchini) #490913aa3337a00
] - doc: fixdns.lookup
family0
andall
descriptions (Adam Jones) #51653585f2a2e7f
] - doc: updatefs.realpath
documentation (sinkhaha) #481704bf3d44e1d
] - doc: update fs read documentation for clarity (Mert Can Altin) #52453ae5d47dde3
] - doc: watermark string behavior (Benjamin Gruenbaum) #528421e429d10d3
] - doc: exclude commits with baking-for-lts (Marco Ippolito) #528963df3e37cdb
] - doc: add names next to release key bash commands (Aviv Keller) #5287812512c3d0e
] - doc: add pimterry to collaborators (Tim Perry) #5287497e0fef019
] - doc: add more definitions to GLOSSARY.md (Aviv Keller) #5279891fadac162
] - doc: make docs more welcoming and descriptive for newcomers (Serkan Özel) #38056a3b20126fd
] - doc: add OpenSSL errors to API docs (John Lamp) #342139587ae9b5b
] - doc: simplify copy-pasting ofbranch-diff
commands (Antoine du Hamel) #527576ea72a53c3
] - doc: add test_runner to subsystem (Raz Luvaton) #52774972eafd983
] - events: update MaxListenersExceededWarning message log (sinkhaha) #5192174753ed1fe
] - events: add stop propagation flag toEvent.stopImmediatePropagation
(Mickael Meausoone) #3946375dd009649
] - events: replace NodeCustomEvent with CustomEvent (Feng Yu) #438767d38c2e012
] - fs: keep fs.promises.readFile read until EOF is reached (Zhenwei Jin) #521788cb13120d3
] - (SEMVER-MINOR) inspector: introduce the--inspect-wait
flag (Kohei Ueno) #52734d5ab1de1fd
] - meta: move@anonrig
to TSC regular member (Yagiz Nizipli) #52932f82d086e90
] - path: fix toNamespacedPath on Windows (Hüseyin Açacak) #52915121ea13b50
] - process: improve event-loop (Aras Abbasi) #52108eceac784aa
] - repl: fix disruptive autocomplete without inspector (Nitzan Uziely) #4066189a910be82
] - src: fix Worker termination ininspector.waitForDebugger
(Daeyeon Jeong) #52527033f985e8a
] - src: useS_ISDIR
to check if the file is a directory (theanarkh) #5216495128399f8
] - src: allow preventing debug signal handler start (Shelley Vohr) #46681b162aeae9e
] - src: fix typo Unabled -> Unable (Simon Siefke) #528202dcbf1894a
] - src: avoid unused variable 'error' warning (Michaël Zasso) #52886978ee0a635
] - src: only apply fix in main thread (Paolo Insogna) #527028fc52b38c6
] - src: fix test local edge case (Paolo Insogna) #52702d02907ecc4
] - src: remove misplaced windows code under posix guard in node.cc (Ali Hassan) #52545af29120fa7
] - stream: useByteLengthQueuingStrategy
when not inobjectMode
(Jason) #48847a5f3dd137c
] - string_decoder: throw an error when writing a too long buffer (zhenweijin) #5221565fa95d57d
] - test: addDebugger.setInstrumentationBreakpoint
known issue (Konstantin Ulitin) #311370513e07805
] - test: usefor-of
instead offorEach
(Gibby Free) #497901d01325928
] - test: verify request payload is uploaded consistently (Austin Wright) #340667dda156872
] - test: add fuzzer for native/js string conversion (Adam Korczynski) #511205fb829b340
] - test: add fuzzer forClientHelloParser
(AdamKorcz) #51088cc74bf789f
] - test: fix broken env fuzzer by initializing process (AdamKorcz) #51080800b6f65cf
] - test: replaceforEach()
intest-stream-pipe-unpipe-stream
(Dario) #50786d08c9a6a31
] - test: test pipelineend
on transform streams (Alois Klink) #489700be8123ede
] - test: improve coverage of lib/readline.js (Rongjian Zhang) #38646410224415c
] - test: updated for each to for of in test file (lyannel) #50308556e9a2127
] - test: movetest-http-server-request-timeouts-mixed
to sequential (Madhuri) #457220638274c07
] - test: fix DNS cancel tests (Szymon Marczak) #44432311bdc62bd
] - test: add http agent toexecutionAsyncResource
(psj-tar-gz) #349666001b164ab
] - test: reduce memory usage of test-worker-stdio (Adam Majer) #37769986bfa26e9
] - test: add common.expectRequiredModule() (Joyee Cheung) #528682246d4fd1e
] - test: crypto-rsa-dsa testing for dynamic openssl (Michael Dawson) #527811dce5dea0b
] - test: skip some console tests on dumb terminal (Adam Majer) #377700addeb240c
] - test: skip v8-updates/test-linux-perf-logger (Michaël Zasso) #5282156e19e38f3
] - test: drop test-crypto-timing-safe-equal-benchmarks (Rafael Gonzaga) #527510c5e58958c
] - test, crypto: use correct object on assert (响马) #51820d54aa47ec1
] - (SEMVER-MINOR) test_runner: support test plans (Colin Ihrig) #528600289a023a5
] - test_runner: fix watch mode race condition (Moshe Atlow) #52954cf817e192e
] - test_runner: preserve hook promise when executed twice (Moshe Atlow) #52791de541235fe
] - tools: fix v8-update workflow (Michaël Zasso) #52957f6290bc327
] - tools: add --certify-safe to nci-ci (Matteo Collina) #529400830b3115d
] - tools: fix doc update action (Marco Ippolito) #528909d485b40bb
] - (SEMVER-MINOR) tools: fix get_asan_state() in tools/test.py (Joyee Cheung) #52766e98c305f52
] - (SEMVER-MINOR) tools: support max_virtual_memory test configuration (Joyee Cheung) #52766dce0300896
] - (SEMVER-MINOR) tools: support != in test status files (Joyee Cheung) #5276657006001ec
] - tools: prepare custom rules for ESLint v9 (Michaël Zasso) #52889403a4a7557
] - tools: update lint-md-dependencies to rollup@4.17.2 (Node.js GitHub Bot) #5283601eff5860e
] - tools: updategr2m/create-or-update-pull-request-action
(Antoine du Hamel) #52843514f01ed59
] - tools: use sccache GitHub action (Michaël Zasso) #528398f8fb91927
] - tools: specify a commit-message for V8 update workflow (Antoine du Hamel) #52844b83fbf8709
] - tools: fix V8 update workflow (Antoine du Hamel) #52822be9d6f2176
] - url,tools,benchmark: replace deprecatedsubstr()
(Jungku Lee) #515467603a51d45
] - util: fix%s
format behavior withSymbol.toPrimitive
(Chenyu Yang) #50992d7eba50cf3
] - util: improveisInsideNodeModules
(uzlopak) #521474ae4f7e517
] - watch: allow listening for grouped changes (Matthieu Sieben) #527221ff8f318c0
] - watch: enable passthrough ipc in watch mode (Zack) #50890739adf90b1
] - watch: fix arguments parsing (Moshe Atlow) #527605161d95c30
] - (SEMVER-MINOR) zlib: expose zlib.crc32() (Joyee Cheung) #52692v20.14.0
: 2024-05-28, Version 20.14.0 'Iron' (LTS), @marco-ippolitoCompare Source
Notable Changes
28d2baa17c
] - src,permission: throw async errors on async APIs (Rafael Gonzaga) #5273077e2bf029a
] - (SEMVER-MINOR) test_runner: support forced exit (Colin Ihrig) #52038Commits
e3ad05d8b0
] - deps: V8: cherry-pick500de8b
(Richard Lau) #52676053282e661
] - deps: V8: backportc4be0a9
(Richard Lau) #52183200dadb879
] - deps: V8: cherry-pickf8d5e57
(Richard Lau) #52183f5cd125e02
] - deps: update googletest tofa6de7f
(Node.js GitHub Bot) #52949bbbfd7f4e1
] - deps: update corepack to 0.28.1 (Node.js GitHub Bot) #529467ba30a57a6
] - deps: update simdutf to 5.2.8 (Node.js GitHub Bot) #52727b21a480a28
] - deps: update simdutf to 5.2.6 (Node.js GitHub Bot) #527276cfad60d97
] - deps: update googletest to2d16ed0
(Node.js GitHub Bot) #5165734708d1429
] - deps: update googletest tod83fee1
(Node.js GitHub Bot) #51657c1d3e558e8
] - deps: update googletest to5a37b51
(Node.js GitHub Bot) #5165769959d0fca
] - deps: update googletest to5197b1a
(Node.js GitHub Bot) #51657c8305f6057
] - deps: update googletest toeff443c
(Node.js GitHub Bot) #51657760b788704
] - deps: update googletest toc231e6f
(Node.js GitHub Bot) #51657301541cc8f
] - deps: update googletest toe4fdb87
(Node.js GitHub Bot) #51657981d57e401
] - deps: update googletest to5df0241
(Node.js GitHub Bot) #51657a1817f534d
] - deps: update googletest tob75ecf1
(Node.js GitHub Bot) #5165742070ca189
] - deps: update googletest to4565741
(Node.js GitHub Bot) #51657edc3e5d056
] - deps: update uvwasi to 0.0.21 (Node.js GitHub Bot) #5286326b1231ffb
] - deps: upgrade npm to 10.7.0 (npm team) #52767e6d9fbece2
] - doc: update process.versions properties (ishabi) #527368c1f837c0a
] - doc: remove mold use on mac for speeding up build (Cong Zhang) #52252d9c5114694
] - doc: fix grammatical mistake (codershiba) #52808b350f435b7
] - meta: add mailmap entry for legendecas (Chengzhong Wu) #5279561f9f12eff
] - meta: bump actions/checkout from 4.1.1 to 4.1.4 (dependabot[bot]) #52787ac563667d6
] - meta: bump github/codeql-action from 3.24.9 to 3.25.3 (dependabot[bot]) #5278670611d7924
] - meta: bump actions/upload-artifact from 4.3.1 to 4.3.3 (dependabot[bot]) #5278530482ea273
] - meta: bump actions/download-artifact from 4.1.4 to 4.1.7 (dependabot[bot]) #52784d1607cdebb
] - meta: bump codecov/codecov-action from 4.1.1 to 4.3.1 (dependabot[bot]) #5278321f1b6bfc3
] - meta: bump step-security/harden-runner from 2.7.0 to 2.7.1 (dependabot[bot]) #527820c6019a222
] - meta: standardize regex (Aviv Keller) #5269328d2baa17c
] - src,permission: throw async errors on async APIs (Rafael Gonzaga) #52730cffd2cc0c9
] - Revert "stream: revert fix cloned webstreams not being unref'd" (Marco Ippolito) #531443dd96f1fab
] - stream: implement TransformStream cleanup using "transformer.cancel" (Debadree Chatterjee) #501268e7e778e01
] - test: skip v8-updates/test-linux-perf (Michaël Zasso) #49639f8e18869e9
] - test: replace always-opt flag with alway-turbofan (Michaël Zasso) #50115a501860d63
] - test_runner: don't await the same promise for each test (Colin Ihrig) #52185e2ae4367f4
] - test_runner: run top level tests in a microtask (Colin Ihrig) #5209277e2bf029a
] - (SEMVER-MINOR) test_runner: support forced exit (Colin Ihrig) #52038b7bc63565e
] - test_runner: ignore todo flag when running suites (Colin Ihrig) #52117be587e3ae3
] - test_runner: use paths for test locations (Colin Ihrig) #52010743281ab25
] - test_runner: support source mapped test locations (Colin Ihrig) #520104051316d95
] - tools: update lint-md-dependencies to rollup@4.17.0 (Node.js GitHub Bot) #52729bcomnes/npm-run-all2 (npm-run-all2)
v6.2.2
Compare Source
Commits
fc35f0d
v6.2.1
Compare Source
Merged
#143
#142
#141
#138
pnpm/pnpm (pnpm)
v9.4.0
Compare Source
containous/traefik (traefik)
v3.1
All Commits
Enhancements:
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ 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 has been generated by Mend Renovate. View repository job log here.