Dependencies: Update all non-major dependencies - #209
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
renovate
Bot
force-pushed
the
renovate/all-non-major-dependencies
branch
from
August 13, 2026 13:01
cd806b8 to
e2ace03
Compare
renovate
Bot
force-pushed
the
renovate/all-non-major-dependencies
branch
from
August 14, 2026 20:46
e2ace03 to
b3464b1
Compare
Contributor
Author
ℹ️ Artifact update noticeFile name: server/go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
|
renovate
Bot
force-pushed
the
renovate/all-non-major-dependencies
branch
from
August 15, 2026 01:28
b3464b1 to
4dcea57
Compare
renovate
Bot
force-pushed
the
renovate/all-non-major-dependencies
branch
from
August 15, 2026 21:00
4dcea57 to
32e1da6
Compare
renovate
Bot
force-pushed
the
renovate/all-non-major-dependencies
branch
from
August 16, 2026 04:34
32e1da6 to
56619d0
Compare
renovate
Bot
force-pushed
the
renovate/all-non-major-dependencies
branch
from
August 16, 2026 18:41
56619d0 to
dd2075c
Compare
renovate
Bot
force-pushed
the
renovate/all-non-major-dependencies
branch
from
August 17, 2026 10:42
dd2075c to
3e01b53
Compare
renovate
Bot
force-pushed
the
renovate/all-non-major-dependencies
branch
from
August 18, 2026 17:33
3e01b53 to
bce9cfa
Compare
renovate
Bot
force-pushed
the
renovate/all-non-major-dependencies
branch
from
August 19, 2026 01:12
bce9cfa to
d550c33
Compare
renovate
Bot
force-pushed
the
renovate/all-non-major-dependencies
branch
from
August 19, 2026 17:13
d550c33 to
c347db2
Compare
renovate
Bot
force-pushed
the
renovate/all-non-major-dependencies
branch
7 times, most recently
from
August 22, 2026 21:06
f992580 to
666a693
Compare
renovate
Bot
force-pushed
the
renovate/all-non-major-dependencies
branch
from
August 23, 2026 10:29
666a693 to
bb333f3
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
2.5.7→2.5.82.5.10(+1)^5.7.1→^5.9.05.9.1^2.8.1→^2.8.21.61.1→1.62.1^2.1.8→^2.1.10^2.1.8→^2.1.10^9.0.0→^9.1.2^1.1.1→^1.2.024.13.2→24.13.34.38→4.414.44(+2)v1.9.4→v1.10.0v1.10.1v0.43.0→v0.44.0v2.55.1→v2.58.0v2.58.2(+1)1.26.5→1.26.61.27.0(+1)^1.28.0→^1.31.01.33.0(+1)^8.5.25→^8.5.2615.18-alpine→15.19-alpine^7.84.0→^7.85.07.86.0^5.0.14→^5.0.15Release Notes
biomejs/biome (@biomejs/biome)
v2.5.8Compare Source
Patch Changes
#10710
0a0fbc1Thanks @dyc3! - Added a new nursery ruleuseReactCompiler, which reports diagnostics from React Compiler lint mode.#11251
ea9dd8aThanks @dyc3! - Improved performance ofnoImportCycles.#11247
52b44d6Thanks @dyc3! - Added the nursery rulenoSvelteLegacyConst, which disallows legacy Svelte{@const}tags and recommends declaration tags with$derived().Invalid:
{#each boxes as box} {@const area = box.width * box.height} <p>{area}</p> {/each}Valid:
{#each boxes as box} {const area = $derived(box.width * box.height)} <p>{area}</p> {/each}#11252
d5f5704Thanks @Turtle-Hwan! - Fixed #11250:useAwaitno longer reports async functions that contain anawait usingdeclaration.#11143
6be7be1Thanks @vznh! - Fixed #11017:noUselessUndefinedno longer reportsreturn undefinedwhen the enclosing function has a return type annotation other thanundefinedorvoid.#11234
caefe39Thanks @subotac! - Fixed #11228: CSS block comments between a declaration colon and value now preserve their source indentation.:root { --font-stack: -/* comment */ + /* comment */ system-ui; }#11285
bca1f73Thanks @denbezrukov! - Fixed #11280: CSS formatting keeps comments inside functional pseudo-classes and pseudo-elements instead of moving them before the function name.#11080
af16a0bThanks @dyc3! - HTMLstyleattribute values are now parsed as CSS. All Biome CSS lint rules are applied to thestyleattributes.#11195
6a85588Thanks @dyc3! - Fixed Svelte files failing to parse when an expression begins with an object literal.Now the following snippet is correctly parsed:
#11173
481d008Thanks @Austin1serb! - Fixed #10242: JavaScript GritQL patterns with multiple metavariables now match snippets consistently in WebAssembly.#11187
23c0369Thanks @ematipico! - Added the nursery rulenoInvalidPropertyInitValue, which reports an@propertywhoseinitial-valuedoes not match itssyntaxdescriptor. For example, the following declaration triggers the rule becauseredis not a<length>:#11272
73896e6Thanks @ematipico! - Improved the diagnostic emitted bynoRootType.#11240
bd0b68dThanks @ematipico! - Fixed #11223: Improved theperformance of
noMisusedPromiseswhen analyzing async class methods that call other methods through
this.#11172
4a0bc5cThanks @saberoueslati! - Fixed #10806:noUselessFragmentsno longer causes Biome to panic when its unsafe fix removes a fragment used as a JSX attribute value.#11227
4d603b0Thanks @saberoueslati! - Fixed #11178:noUndeclaredVariablesno longer reports Vue's built-in instance properties, such as$slotsand$attrs, in template expressions or$eventin inline event-handler expressions. The instance properties are still reported inside<script setup>, where they are not defined.#11187
23c0369Thanks @ematipico! - Fixed CSS parsing of registered custom properties: Biome now correctly validates thesyntaxdescriptor of@propertyrules.react-hook-form/resolvers (@hookform/resolvers)
v5.9.0Compare Source
Features
v5.8.0Compare Source
module-federation/core (@module-federation/runtime-tools)
v2.8.2Compare Source
Patch Changes
microsoft/playwright (@playwright/test)
v1.62.1Compare Source
v1.62.0Compare Source
🧱 New component testing model
Component testing moves to a stories and galleries model.
A story wraps your component in one specific scenario — hard-coded props, mock data, providers — and a
gallery page that you serve renders stories on demand. The new fixtures.mount() fixture navigates
to the gallery, mounts a story by id, and returns a Locator scoped to the story's root element:
Pass a story type as a template argument to type-check its props, and use
update(props)/unmount()on the returned locator to re-render or tear down within a test.🛑 Cancel operations with AbortSignal
Most operations and web-first assertions now accept a
signaloption that takes anAbortSignal, letting youcancel long-running actions, navigations, waits, and assertions:
Providing a signal does not disable the default timeout; pass
timeout: 0to disable it.🖼️ WebP screenshots
expect(page).toHaveScreenshot() and expect(locator).toHaveScreenshot()
can now store snapshots in the WebP format — just give the snapshot a
.webpname:page.screenshot() and locator.screenshot() also accept
webpas atype,where quality
100(the default) is lossless and lower values use lossy compression.🧩 Custom test filtering with Reporter.preprocess()
New reporter.preprocess() hook runs after the configuration is resolved and before
reporter.onBegin(), letting a reporter mark individual tests as skipped, excluded,
fixed, or failing through a TestRun object:
🔁 Isolated retries
New testConfig.retryStrategy controls when failed tests are retried. The default
'immediate'retries as soon as a worker is free;'isolated'runs all retries at the end,one by one in a single worker, to minimize interference with the rest of the suite:
New APIs
Browser and Context
credentialsincludes the context's virtual WebAuthn Credentials (passkeys) in the storage state, so they can be persisted and re-seeded into later contexts.Actions
scrolloption ("auto"|"none") on actions to opt out of Playwright's automatic scroll-into-view.Network
Evaluation
Command line & MCP
playwright-cli, runnable vianpx playwright mcpandnpx playwright cli.Reporters
mergeFilesreporter option:Announcements
Browser Versions
This version was also tested against the following stable channels:
web-infra-dev/rspack (@rspack/cli)
v2.1.10Compare Source
What's Changed
New Features 🎉
Bug Fixes 🐞
new URLtargets in new-url-relative mode by @elecmonkey in #15155contextfrom loaded config by @stormslowly in #15162Refactor 🔨
Document 📖
Other Changes
New Contributors
Full Changelog: web-infra-dev/rspack@v2.1.9...v2.1.10
v2.1.9Compare Source
What's Changed
New Features 🎉
Performance 🚀
Bug Fixes 🐞
Refactor 🔨
Document 📖
Other Changes
swc_corefrom 72 to 76 by @CPunisher in #15122New Contributors
Full Changelog: web-infra-dev/rspack@v2.1.8...v2.1.9
prompt-edu/prompt-shared-state (@tumaet/prompt-shared-state)
v1.2.0Compare Source
What's Changed
Authentication: Export shared role-preset constants for routes and sidebars by @rappm in #63API: Add createAuthenticatedAxiosInstance factory by @rappm in #64Team Allocation: Share TeamPreference and Tutor interfaces by @rappm in #67API: Add shared request error handling for the phase axios instances by @rappm in #65Course Phases: Add shared CoursePhase/Participation provider by @rappm in #66Full Changelog: prompt-edu/prompt-shared-state@v1.1.1...v1.2.0
seaweedfs/seaweedfs (chrislusf/seaweedfs)
v4.41Compare Source
What's Changed
S3
Configuration
📅 Schedule: (UTC)
🚦 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.