chore(deps): Update all patch dependencies - #172
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
renovate
Bot
force-pushed
the
renovate/all-patch-dependencies
branch
15 times, most recently
from
August 10, 2026 01:08
d11412e to
61cef7a
Compare
renovate
Bot
force-pushed
the
renovate/all-patch-dependencies
branch
2 times, most recently
from
August 11, 2026 23:08
1e19836 to
aec62fd
Compare
renovate
Bot
force-pushed
the
renovate/all-patch-dependencies
branch
from
August 12, 2026 05:06
aec62fd to
e5ba932
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:
1.2.87→1.2.882.23.0→2.23.21.168.23→1.168.271.168.29(+1)1.33.2→1.33.41.33.51.170.18→1.170.221.170.24(+1)1.167.0→1.167.13.13.35→3.13.360.185.1→0.185.4==3.14.6→==3.14.7==8.4.107→==8.4.1182.11.13→2.11.14Release Notes
opral/paraglide-js (@inlang/paraglide-js)
v2.23.2Patch Changes
b8af4b1: Embed TypeScript sources in published JavaScript sourcemaps and stop emitting declaration sourcemaps that reference unpublished source files.v2.23.1Patch Changes
6f9b062: Keep the server middleware's AsyncLocalStorage available when module instrumentation snapshots mutable exports.TanStack/router (@tanstack/router-plugin)
v1.168.27Compare Source
Patch Changes
ea3a665]:v1.168.26Compare Source
Patch Changes
697ebb6,2435885,84db4a8,9cac62a,86bf510,6aefb33]:v1.168.25Compare Source
Patch Changes
b2908c6]:v1.168.24Compare Source
Patch Changes
45c4ad8]:TanStack/form (@tanstack/solid-form)
v1.33.4Compare Source
Patch Changes
#2263
d7fd741- Generate the defaultformIdwith Solid'screateUniqueIdso it is SSR-safe. Previously, when noformIdwas configured,createFormdid not provide a fallback, soFormApigenerated a random UUID that differed between the server render and the client render. Binding that generated id (<form id={form.formId}>) produced a hydration mismatch under SolidStart. An explicitly providedformIdwas already forwarded and is unchanged. This mirrors the existing behaviour of the React, Preact, and Vue adapters.Updated dependencies []:
v1.33.3Compare Source
Patch Changes
TanStack/router (@tanstack/solid-router)
v1.170.22Compare Source
Patch Changes
ea3a665]:v1.170.21Compare Source
Patch Changes
#7970
2435885- createFileRoute does not rely on FileRoute class#7985
9cac62a- perf: compact private bundle boundaries- #7975#7971
86bf510- clean intersection observer options in link component#7967
6aefb33- Preserve path params in their raw string form while matching routes so structured values returned byparams.parseproduce stable match IDs and do not reuse stale loader data.RouterCore.getMatchedRoutes()now returns[matchedRoutes, rawParams, foundRoute]instead of an object.Updated dependencies [
84db4a8,9cac62a,6aefb33]:v1.170.20Compare Source
Patch Changes
b2908c6]:v1.170.19Compare Source
Patch Changes
#7805
45c4ad8- Rewrite match loading around a lane-based scheduler that tracks each navigation, preload, and background reload as an ordered unit of work. This fixes pending/redirect/retry state leaking between overlapping navigations, restores correct SSR status codes for redirects, errors, and not-found responses, and closes hydration gaps where the client re-ran work the server had already completed.headers()now only runs on the server, matching the documented behavior — it is no longer invoked during client-side asset projection.gcTimeandpreloadGcTimenow match the existing runtime default of 5 minutes (300_000).Removed / changed exported internals
RouterStateno longer includesloadedAt,isTransitioning,statusCode, orredirect. Usematch.updatedAtin place ofloadedAt; subscribe torouter.state.status/router.state.isLoadingin place ofisTransitioning; server response status and redirect handling are now internal to the server loader and are no longer exposed onrouter.state.RouteMatch.fetchCounthas been removed, with no replacement — it was purely informational.RouteMatch.statusno longer includes'redirected'(it remains'pending' | 'success' | 'error' | 'notFound') — redirected matches are dropped from the match list instead of being rendered.RouteMatch.globalNotFoundhas been renamed and privatized to the internal_notFoundfield. Usematch.status === 'notFound'instead.Matchcomponents now acceptrouteIdinstead ofmatchId.RouterStoresadapter contract now uses route-keyed presentation stores:matchesIdis replaced byids,matchStoresbybyRoute, andgetRouteMatchStore()bygetMatchStore(). The separateloadedAt,isLoading,isTransitioning,statusCode, andredirectstores have been removed, along with the pending/cache stores and their setters.StoreConfig.inithas also been removed. Read application-facing state fromrouter.state; preload and cache coordination are now internal.RouterCoremembersgetMatch(),updateMatch(),cancelMatch(), andcancelMatches()— read matches fromrouter.state.matches(e.g.router.state.matches.find((m) => m.id === id)); there is no replacement for mutating or cancelling an individual in-flight match from outside the router.RouterCore.hasNotFoundMatch()— userouter.state.matches.some((m) => m.status === 'notFound').RouterCore.looseRoutesById— useroutesById.RouterCore.isPrerendering(),RouterCore.isViewTransitionTypesSupported, andRouterCore.viewTransitionPromise, with no replacement.RouterCore.getParsedLocationHref()andRouterCore.clearExpiredCache(), with no replacement — expired cache entries are now reconciled automatically as part of match commit.RouterCore.latestLoadPromiseandRouterCore.beforeLoad(), with no replacement.RouterCore.commitLocationPromiseandRouterCore.pendingBuiltLocationhave been replaced by the internal_commitPromiseand_pendingLocationfields.GetMatchFnandUpdateMatchFntypes, along with the methods they typed.getMatchedRoutes()export from@tanstack/router-core— use therouter.getMatchedRoutes()instance method instead.RouterCore.loadRouteChunk()no longer accepts an array of component types as its second argument. One-argument usage is unchanged; the optional second argument is now'errorComponent','notFoundComponent', orfalsefor internal boundary loading.Redirect.redirectHandled, which was internal redirect bookkeeping.MatchRoutesOpts.preloadandMatchRoutesOpts.desthave been removed.StartTransitionFnis now(fn, expected) => Promise<boolean>(previously(fn) => void). This only affects custom framework adapters that implementstartTransition.Updated dependencies [
45c4ad8]:TanStack/router (@tanstack/solid-router-devtools)
v1.167.1Compare Source
Patch Changes
45c4ad8]:TanStack/virtual (@tanstack/solid-virtual)
v3.13.36Compare Source
Patch Changes
a5417b4]:python/cpython (python)
v3.14.7Compare Source
ultralytics/ultralytics (ultralytics)
v8.4.118: - Add standalone LLM model interface (#25761)Compare Source
🌟 Summary
Ultralytics v8.4.118 introduces a standalone OpenAI-compatible
LLMinterface alongsideYOLO, while improving OBB training, dataset handling, model training reliability, and documentation workflows. 🚀📊 Key Changes
🤖 New standalone
LLMmodel interface by @glenn-jocherfrom ultralytics import LLMfor text and image-based language-model requests.openaidependency and remains independent of Ultralytics Platform and workflow-runtime components.📐 Improved oriented bounding box training
⚡ Faster CopyPaste augmentation
🧠 More reliable YOLOE behavior
🏋️ Training and inference stability fixes
train()andtune()calls on the same model object.🗂️ Dataset and prediction improvements
FileNotFoundErrorinstead of failing later with an unrelated directory error.📚 Documentation and deployment updates
0.0.34.LLMinterface.🎯 Purpose & Impact
LLMclass works with OpenAI and compatible providers without requiring Platform or workflow features.What's Changed
autocast_listloses image filename afterexif_transposeby @Q-qqq in #25741drop_lastto the classify train loader undercompile, not val by @JESUSROYETH in #25734New Contributors
Full Changelog: ultralytics/ultralytics@v8.4.117...v8.4.118
v8.4.117: - Route spatial Albumentations by type and carry masks, polygons and keypoints through it (#25633)Compare Source
🌟 Summary
v8.4.117 improves augmentation correctness, model reliability, deployment safety, and documentation across Ultralytics YOLO and YOLO26. 🚀
📊 Key Changes
🧩 Albumentations now handles spatial transforms by type
OneOfcorrectly update annotations.flip_idxmapping.🔐 Improved security for dependency installation
check_requirements()now prevents untrusted requirement strings from being interpreted as shell commands.🛡️ More reliable dataset and mask processing
🧠 Depth estimation improvements
⚡ Faster and more consistent inference
🎯 Expanded model and training support
kpt_oks_sigmas, with validation that the configuration matches the model’s keypoint count.📚 Documentation and platform updates
name,split,conf,iou,max_det, andagnostic_nms.ultralytics-inferenceversion0.0.33.mainbranch to prevent accidental production releases.🎯 Purpose & Impact
What's Changed
rect=Trueby @JESUSROYETH in #25646DepthLoss26gradient pyramids per image by @JESUSROYETH in #25637New Contributors
Full Changelog: ultralytics/ultralytics@v8.4.116...v8.4.117
v8.4.116: - Raise minimumopencv-pythonto 4.7.0 (#25702)Compare Source
🌟 Summary
🚀 v8.4.116 improves installation reliability, expands YOLOE and Platform workflows, strengthens tracking and export support, and refreshes YOLO26 documentation.
📊 Key Changes
🔧 OpenCV compatibility fix — current PR #25702 by @Y-T-G
opencv-pythonversion from4.6.0to4.7.0.4.13.0.90, which is affected by a FIPS self-test crash.cv2.imdecodemulti, which Ultralytics uses internally.🧠 Reusable YOLOE prompt embeddings
save_prompt_embeddings()andload_prompt_embeddings()for storing text or visual prompt configurations in NPZ files.📚 Improved model guidance
🎯 Broader and safer tracking support
gmc_method: none.📦 More efficient model export
🧪 Depth and segmentation fixes
torch.compile.🖼️ Visualization and analytics improvements
☁️ Expanded Ultralytics Platform workflows
🛡️ Reliability and infrastructure
🎯 Purpose & Impact
What's Changed
openvino 2026.2.1benchmarks with Intel 155H, 258V and 358H systems by @lakshanthad in #25360gmc_method: noneby @raimbekovm in #25636ultralytics/cfg/default.yamlchanges by @raimbekovm in #25663Configuration
📅 Schedule: (in timezone Europe/Oslo)
🚦 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 was generated by Mend Renovate. View the repository job log.