chore(deps-dev): bump the development-dependencies group with 3 updates
Type: Pull Request
State: Closed
Association: Unknown
Comments: 1
(23 days ago)
(18 days ago)
(18 days ago)
dependencies javascript
Bumps the development-dependencies group with 3 updates: @biomejs/biome, typescript and vitest.
Updates @biomejs/biome from 2.4.11 to 2.4.14
Release notes
Sourced from @biomejs/biome's releases.
Biome CLI v2.4.14
2.4.14
Patch Changes
#9393
491b171Thanks@dyc3! - Added the nursery ruleuseTestHooksOnTopin thetestdomain. The rule flags lifecycle hooks (beforeEach,beforeAll,afterEach,afterAll) that appear after test cases in the same block, enforcing that hooks are defined before any test case.#10157
eefc5abThanks@dyc3! - Fixed #7882: The HTML parser will now emit better diagnostics when it encounters a void element with a closing tag, such as<br></br>. Previously, the parser would emit multiple diagnostics with conflicting advice. Now it emits a single diagnostic that clearly states that void elements should not have closing tags.#10054
0e9f569Thanks@minseong0324! -noMisleadingReturnTypeno longer misses widening from concrete object types, class instances, object literals, tuples, functions, and regular expressions to: object.A function annotated
: objectreturning an object literal:function f(): object { return { retry: true }; }#10116
53269ebThanks@jiwon79! - Fixed #6201:noUselessEscapeInRegexno longer flags an escaped backslash followed by-as a useless escape. Patterns like/[\\-]/are now considered valid because the second\is the escaped backslash, not an unnecessary escape of the trailing dash.#10092
33d8543Thanks@Conaclos! - Fixed #9097:organizeImportsno longer adds a blank line between a never-matched group and a matched group.Given the following
organizeImportsoptions:{ "groups": [":NODE:", ":BLANK_LINE:", ":PACKAGE:", ":BLANK_LINE:", ":PATH:"] }The following code...
// Comment import "package"; import "./file.js";...was organized as:
+ // Comment import "package"; + import "./file.js";
... (truncated)
Changelog
Sourced from @biomejs/biome's changelog.
2.4.14
Patch Changes
#9393
491b171Thanks@dyc3! - Added the nursery ruleuseTestHooksOnTopin thetestdomain. The rule flags lifecycle hooks (beforeEach,beforeAll,afterEach,afterAll) that appear after test cases in the same block, enforcing that hooks are defined before any test case.#10157
eefc5abThanks@dyc3! - Fixed #7882: The HTML parser will now emit better diagnostics when it encounters a void element with a closing tag, such as<br></br>. Previously, the parser would emit multiple diagnostics with conflicting advice. Now it emits a single diagnostic that clearly states that void elements should not have closing tags.#10054
0e9f569Thanks@minseong0324! -noMisleadingReturnTypeno longer misses widening from concrete object types, class instances, object literals, tuples, functions, and regular expressions to: object.A function annotated
: objectreturning an object literal:function f(): object { return { retry: true }; }#10116
53269ebThanks@jiwon79! - Fixed #6201:noUselessEscapeInRegexno longer flags an escaped backslash followed by-as a useless escape. Patterns like/[\\-]/are now considered valid because the second\is the escaped backslash, not an unnecessary escape of the trailing dash.#10092
33d8543Thanks@Conaclos! - Fixed #9097:organizeImportsno longer adds a blank line between a never-matched group and a matched group.Given the following
organizeImportsoptions:{ "groups": [":NODE:", ":BLANK_LINE:", ":PACKAGE:", ":BLANK_LINE:", ":PATH:"] }The following code...
// Comment import "package"; import "./file.js";...was organized as:
+ // Comment import "package"; + import "./file.js";A blank line was added even though the group ':NODE:' doesn't match any imports here.
:BLANK_LINE:between never-matched groups and matched groups are now ignored.
... (truncated)
Commits
46393e0ci: release (#10100)ae659ddfeat(lint/js): addnoExcessiveNestedCallbacks(#10188)d62b331feat(lint/js): adduseMathMinMax(#9926)7acf1e0feat(lint/js): addnoReactStringRefs(#9922)491b171feat(lint/js): adduseTestHooksOnTop(#9393)4a664c1fix(noShadow): make sure it doesn't shadow types (#10083)e316150ci: release (#9991)11ddc05feat(lint): add useReactNativePlatformComponents rule and options (#10033)1603f78feat(js_analyze): implement noJsxLeakedDollar (#9911)c5eb92bfeat(linter): add nursery rule noUnnecessaryTemplateExpression (#9969)- Additional commits viewable in compare view
Updates typescript from 6.0.2 to 6.0.3
Release notes
Sourced from typescript's releases.
TypeScript 6.0.3
For release notes, check out the release announcement blog post.
- fixed issues query for TypeScript 6.0.0 (Beta).
- fixed issues query for TypeScript 6.0.1 (RC).
- fixed issues query for TypeScript 6.0.2 (Stable).
- fixed issues query for TypeScript 6.0.3 (Stable).
Downloads are available on:
Commits
050880cBump version to 6.0.3 and LKGeeae9dd🤖 Pick PR #63401 (Also check package name validity in...) into release-6.0 (#...ad1c695🤖 Pick PR #63368 (Harden ATA package name filtering) into release-6.0 (#63372)0725fb4🤖 Pick PR #63310 (Mark class property initializers as...) into release-6.0 (#...- See full diff in compare view
Updates vitest from 4.1.4 to 4.1.5
Release notes
Sourced from vitest's releases.
v4.1.5
🚀 Experimental Features
- coverage: Istanbul to support
instrumenteroption - by@BartWaardenburgand@AriPerkkioin vitest-dev/vitest#10119 (0e0ff)🐞 Bug Fixes
- --project negation excludes browser instances - by
@felamaslenin vitest-dev/vitest#10131 (9423d)- Project color label on html reporter - by
@hi-ogawain vitest-dev/vitest#10142 (596f7)- Fix
vi.defineHelpercalled as object method - by@hi-ogawain vitest-dev/vitest#10163 (122c2)- Alias
agentreporter tominimal- by@sheremet-vain vitest-dev/vitest#10157 (663b9)- Respect diff config options in soft assertions - by
@Copilot, sheremet-va and@sheremet-vain vitest-dev/vitest#8696 (9787d)- Respect diff config options in soft assertions " - by
@sheremet-vain vitest-dev/vitest#8696 (7dc6d)- ast-collect: Recognize _vi_import prefix in static test discovery - by
@Yejneshwarin vitest-dev/vitest#10129 (32546)- coverage: Descriptive error message when reports directory is removed during test run - by
@DaveT1991and@AriPerkkioin vitest-dev/vitest#10117 (14133)- snapshot: Increase default snapshot max output length - by
@hi-ogawaand Codex in vitest-dev/vitest#10150 (21e66)- ui: Fix jsx/tsx syntax highlight - by
@hi-ogawain vitest-dev/vitest#10152 (f1b1f)- web-worker: Support MessagePort objects referenced inside postMessage data - by
@whitphxand Claude Opus 4.6 (1M context) in vitest-dev/vitest#9927 and vitest-dev/vitest#10124 (7ad7d)- api: Make test-specification options writable - by
@sheremet-vain vitest-dev/vitest#10154 (6abd5)View changes on GitHub
Commits
e399846chore: release v4.1.57dc6d54Revert "fix: respect diff config options in soft assertions (#8696)"9787dedfix: respect diff config options in soft assertions (#8696)325463afix(ast-collect): recognize _vi_import prefix in static test discovery (#10...0e0ff41feat(coverage): istanbul to supportinstrumenteroption (#10119)663b99ffix: aliasagentreporter tominimal(#10157)122c25bfix: fixvi.defineHelpercalled as object method (#10163)6abd557feat(api): make test-specification options writable (#10154)596f739fix: project color label on html reporter (#10142)9423dc0fix: --project negation excludes browser instances (#10131)- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions
Package Dependencies
Technical Details
| ID: | 15834125 |
| UUID: | 4425906503 |
| Node ID: | PR_kwDOCzaXk87agaqv |
| Host: | GitHub |
| Repository: | solapi/solapi-nodejs |