chore(deps)(deps-dev): bump the dev-dependencies group with 3 updates
Type: Pull Request
State: Closed
Association: Unknown
Comments: 2
(5 days ago)
(5 days ago)
(5 days ago)
automated dependencies minor-update auto-merge
Bumps the dev-dependencies group with 3 updates: @biomejs/biome, vitest and wrangler.
Updates @biomejs/biome from 2.3.8 to 2.3.10
Release notes
Sourced from @biomejs/biome's releases.
Biome CLI v2.3.10
2.3.10
Patch Changes
#8417
c3a2557Thanks@taga3s! - Fixed #7809:noRedeclareno longer reports redeclarations forinfertype in conditional types.#8477
90e8684Thanks@dyc3! - Fixed #8475: fixed a regression in hownoExtraNonNullAssertionflags extra non-null assertions#8479
250b519Thanks@dyc3! - Fixed #8473: The semantic model now indexes typescript constructor method definitions, and no longer panics if you use one (a regression in 2.3.9).#8448
2af85c1Thanks@mdevils! - Improved handling ofdefineProps()macro in Vue components. ThenoVueReservedKeysrule now avoids false positives in non-setup scripts.#8420
42033b0Thanks@vsn4ik! - Fixed the nursery rulenoLeakedRender.The
biome migrate eslintcommand now correctly detects the rulereact/jsx-no-leaked-renderin your eslint configurations.#8426
285d932Thanks@anthonyshew! - Added a Turborepo domain and a new "noUndeclaredEnvVars" rule in it for warning users of unsafe environment variable usage in Turborepos.#8410
a21db74Thanks@ematipico! - Fixed #2988 where Biome couldn't handle properly characters that contain multiple code points when running instdinmode.#8372
b352ee4Thanks@Netail! - Added the nursery rulenoAmbiguousAnchorText, which disallows ambiguous anchor descriptions.Invalid
<a>learn more</a>What's Changed
- feat: new Turborepo domain and
noUndeclaredEnvVarsrule by@anthonyshewin biomejs/biome#8426- fix(noExtraNonNullAssertion): fix regression by
@dyc3in biomejs/biome#8477- fix(analyze/js): index ts constructor methods in semantic model (regression) by
@dyc3in biomejs/biome#8479- fix(lint):
lint/suspicous/noRedeclareshould not report redeclarations forinfertype in conditional types by@taga3sin biomejs/biome#8417- fix(noLeakedRender): eslint rule name fix by
@vsn4ikin biomejs/biome#8420- chore: add kraken as bronze sponsor by
@dyc3in biomejs/biome#8486- fix(linter): improve Vue defineProps handling in noVueReservedKeys by
@mdevilsin biomejs/biome#8448- fix(cli): colors with multi-codepoints characters by
@ematipicoin biomejs/biome#8410- feat(lint): implement noAmbiguousAnchorText by
@Netailin biomejs/biome#8372- ci: release by
@github-actions[bot] in biomejs/biome#8474- docs: fix typos for assist/actions/organize-imports by
@sergionessin biomejs/biome#8490New Contributors
@taga3smade their first contribution in biomejs/biome#8417@vsn4ikmade their first contribution in biomejs/biome#8420@sergionessmade their first contribution in biomejs/biome#8490
... (truncated)
Changelog
Sourced from @biomejs/biome's changelog.
2.3.10
Patch Changes
#8417
c3a2557Thanks@taga3s! - Fixed #7809:noRedeclareno longer reports redeclarations forinfertype in conditional types.#8477
90e8684Thanks@dyc3! - Fixed #8475: fixed a regression in hownoExtraNonNullAssertionflags extra non-null assertions#8479
250b519Thanks@dyc3! - Fixed #8473: The semantic model now indexes typescript constructor method definitions, and no longer panics if you use one (a regression in 2.3.9).#8448
2af85c1Thanks@mdevils! - Improved handling ofdefineProps()macro in Vue components. ThenoVueReservedKeysrule now avoids false positives in non-setup scripts.#8420
42033b0Thanks@vsn4ik! - Fixed the nursery rulenoLeakedRender.The
biome migrate eslintcommand now correctly detects the rulereact/jsx-no-leaked-renderin your eslint configurations.#8426
285d932Thanks@anthonyshew! - Added a Turborepo domain and a new "noUndeclaredEnvVars" rule in it for warning users of unsafe environment variable usage in Turborepos.#8410
a21db74Thanks@ematipico! - Fixed #2988 where Biome couldn't handle properly characters that contain multiple code points when running instdinmode.#8372
b352ee4Thanks@Netail! - Added the nursery rulenoAmbiguousAnchorText, which disallows ambiguous anchor descriptions.Invalid
<a>learn more</a>2.3.9
Patch Changes
#8232
84c9e08Thanks@ruidosujeira! - Added the nursery rulenoScriptUrl.This rule disallows the use of
javascript:URLs, which are considered a form ofevaland can pose security risks such as XSS vulnerabilities.<a href="javascript:alert('XSS')">Click me</a>#8341
343dc4dThanks@arendjr! - Added the nursery ruleuseAwaitThenable, which enforces thatawaitis only used on Promise values.Invalid
await "value";const createValue = () => "value"; await createValue();
... (truncated)
Commits
fd279f3ci: release (#8474)b352ee4feat(lint): implement noAmbiguousAnchorText (#8372)67546bcchore: add kraken as bronze sponsor (#8486)285d932feat: new Turborepo domain andnoUndeclaredEnvVarsrule (#8426)ec43141ci: release (#8469)382786bfix(lint): removeuseExhaustiveDependenciesspurious errors on dependency-f...fc32352fix: improve rustdoc for IndentStyle (#8425)09acf2afeat(lint): update docs & diagnostic forlint/nursery/noProto(#8414)84c9e08feat: implement noScriptUrl rule (#8232)d407efbrefactor(formatter): reduce best fitting allocations (#8137)- Additional commits viewable in compare view
Updates vitest from 4.0.15 to 4.0.16
Release notes
Sourced from vitest's releases.
v4.0.16
🐞 Bug Fixes
- Fix browser mode default testTimeout back to 15 seconds - by
@hi-ogawain vitest-dev/vitest#9167 (da0ad)- Avoid crashing on
process.versionsstub - by@AriPerkkioin vitest-dev/vitest#9174 (78cfb)- Reject calling suite function inside test - by
@hi-ogawain vitest-dev/vitest#9198 (1a259)- Allow inlining fully dynamic import - by
@hi-ogawain vitest-dev/vitest#9137 (56851)- Fix module graph UI on html reporter with headless browser mode - by
@hi-ogawain vitest-dev/vitest#9219 (60642)- Log deprecated
test.poolOptionsif it's set - by@sheremet-vain vitest-dev/vitest#9226 (f7f6a)- browser:
- Import
recordArtifactfrom the vitest package - by@macariein vitest-dev/vitest#9186 (01c56)- Fix
import.meta.envdefine - by@hi-ogawain vitest-dev/vitest#9205 (01a9a)- String formatting bug when including placeholders in console.log - by
@michael-debsand@hi-ogawain vitest-dev/vitest#9030 and vitest-dev/vitest#9131 (84a30)- coverage:
- Istanbul untested files source maps are off - by
@AriPerkkioin vitest-dev/vitest#9208 (372e8)- experimental:
- Export
setupEnvironmentfor custom pools - by@AriPerkkioin vitest-dev/vitest#9187 (5d26b)View changes on GitHub
Commits
b46d744chore: release v4.0.1684a3062fix(browser): string formatting bug when including placeholders in console.lo...f7f6aa8fix: log deprecatedtest.poolOptionsif it's set (#9226)568513cfix: allow inlining fully dynamic import (#9137)5d26b87fix(experimental): exportsetupEnvironmentfor custom pools (#9187)f17eb42refactor: avoid usingisFileServingAllowedfrom Vite (#9160)78cfbf9fix: avoid crashing onprocess.versionsstub (#9174)da0ade2fix: fix browser mode default testTimeout back to 15 seconds (#9167)- See full diff in compare view
Updates wrangler from 4.54.0 to 4.56.0
Release notes
Sourced from wrangler's releases.
wrangler@4.56.0
Minor Changes
#11196
171cfd9Thanks@emily-shen! - For containers being created in a FedRAMP high environment, registry credentials are encrypted by the container platform. Update wrangler to correctly send a request to configure a registry for FedRAMP containers.#11646
472cf72Thanks@vovacf201! - feat: add R2 Data Catalog snapshot expiration commandsAdds new commands to manage automatic snapshot expiration for R2 Data Catalog tables:
wrangler r2 bucket catalog snapshot-expiration enable- Enable automatic snapshot expirationwrangler r2 bucket catalog snapshot-expiration disable- Disable automatic snapshot expirationSnapshot expiration helps manage storage costs by automatically removing old table snapshots while keeping a minimum number of recent snapshots for recovery purposes.
Example usage:
# Enable snapshot expiration for entire catalog (keep 10 snapshots, expire after 5 days) wrangler r2 bucket catalog snapshot-expiration enable my-bucket --token $R2_CATALOG_TOKEN --max-age 7200 --min-count 10Enable for specific table
wrangler r2 bucket catalog snapshot-expiration enable my-bucket my-namespace my-table --token $R2_CATALOG_TOKEN --max-age 2880 --min-count 5
Disable snapshot expiration
wrangler r2 bucket catalog snapshot-expiration disable my-bucket
Patch Changes
#11649
428ae9eThanks@ascorbic! - fix: respect TypeScript path aliases when resolving non-JS modules with module rulesWhen importing non-JavaScript files (like
.graphql,.txt, etc.) using TypeScript path aliases defined intsconfig.json, Wrangler's module-collection plugin now correctly resolves these imports. Previously, path aliases were only respected for JavaScript/TypeScript files, causing imports likeimport schema from '~lib/schema.graphql'to fail when using module rules.#11647
c0e249eThanks@dario-piotrowicz! - The auto-configuration logic present inwrangler setupandwrangler deploy --x-autoconfigcannot reliably handle Hono projects, so in these cases make sure to properly error saying that automatically configuring such projects is not supported.#11694
3853200Thanks@dario-piotrowicz! - fix: improve the open-next detection thatwrangler deployperforms to eliminate false positives for non open-next projectsUpdated dependencies [
ae1ad22,737c0f4]:
- miniflare@4.20251217.0
wrangler@4.55.0
Minor Changes
#11301
6c590a0Thanks@dario-piotrowicz! - Makewrangler deployrunopennextjs-cloudflare deploywhen executed in an open-next project#11045
12a63efThanks@edmundhung! - Add an internalunstable_printBindingsAPI for vite plugin integration#11590
7d8d4a6Thanks@pombosilva! - Add Workflows send-event to wrangler commands.
... (truncated)
Commits
6be9321Version Packages (#11666)3853200fix: improve the open-next detection thatwrangler deployperforms to elimi...171cfd9Add way to configure image registries without secret store integration for `f...c0e249eProperly error on Hono projects in auto-config (#11647)472cf72[R2 Data Catalog] Add wrangler commands for the R2 Data Catalog snaps… (#11646)ae1ad22chore(deps): bump the workerd-and-workers-types group with 2 updates (#11679)428ae9efix: respect TypeScript path aliases when resolving non-JS modules with modul...8ba87a0Version Packages (#11602)90c0676movepatchConfigtests from wrangler to workers-utils, also add wrangler-co...7d8d4a6[Wrangler] Add Workflows sendEvent wrangler command (#11590)- 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 mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@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: | 12182416 |
| UUID: | 3752499570 |
| Node ID: | PR_kwDOQWgqjc66Evb8 |
| Host: | GitHub |
| Repository: | aicodingstack/aicodingstack.io |