chore(deps): update dependency @solidjs/router to v0.16.3 - #843
Open
renovate[bot] wants to merge 1 commit into
Open
chore(deps): update dependency @solidjs/router to v0.16.3#843renovate[bot] wants to merge 1 commit into
renovate[bot] wants to merge 1 commit into
Conversation
renovate
Bot
force-pushed
the
renovate/solidjs-router-0.x
branch
2 times, most recently
from
November 30, 2024 08:09
8e0d5e2 to
938080e
Compare
renovate
Bot
force-pushed
the
renovate/solidjs-router-0.x
branch
2 times, most recently
from
December 12, 2024 04:14
938080e to
f369a89
Compare
renovate
Bot
force-pushed
the
renovate/solidjs-router-0.x
branch
from
January 14, 2025 23:39
f369a89 to
5eb4b1c
Compare
renovate
Bot
force-pushed
the
renovate/solidjs-router-0.x
branch
from
August 10, 2025 13:40
5eb4b1c to
03b1f38
Compare
renovate
Bot
force-pushed
the
renovate/solidjs-router-0.x
branch
from
November 10, 2025 19:41
03b1f38 to
0bf3c4a
Compare
renovate
Bot
force-pushed
the
renovate/solidjs-router-0.x
branch
3 times, most recently
from
December 14, 2025 14:36
074b618 to
0276007
Compare
renovate
Bot
force-pushed
the
renovate/solidjs-router-0.x
branch
from
March 18, 2026 01:49
0276007 to
6571224
Compare
renovate
Bot
force-pushed
the
renovate/solidjs-router-0.x
branch
2 times, most recently
from
March 18, 2026 13:40
c430629 to
065e762
Compare
renovate
Bot
force-pushed
the
renovate/solidjs-router-0.x
branch
from
April 1, 2026 16:36
065e762 to
dbda7c6
Compare
renovate
Bot
force-pushed
the
renovate/solidjs-router-0.x
branch
from
June 24, 2026 04:42
dbda7c6 to
a5986dc
Compare
renovate
Bot
force-pushed
the
renovate/solidjs-router-0.x
branch
2 times, most recently
from
July 15, 2026 20:41
34353bf to
d83462e
Compare
renovate
Bot
force-pushed
the
renovate/solidjs-router-0.x
branch
from
July 27, 2026 17:44
d83462e to
e1a19f6
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:
0.8.3→0.16.3Release Notes
solidjs/solid-router (@solidjs/router)
v0.16.3Patch Changes
31501fd: Add opt-in explicit scroll restoration for back/forward navigation:<Router scrollRestoration>(#577). The browser's native same-document heuristic loses the saved offset when the destination route forces a layout while the document is still short — any component that measures itself on mount is enough to trigger it. When enabled the router setshistory.scrollRestoration = "manual", captures positions continuously keyed by the history entry depth it already tracks, persists them across reloads, and restores after the navigation settles — retrying as the document grows if the target offset isn't reachable yet, cancelled by the first user scroll. Off by default on 0.x; no behavior changes unless enabled.v0.16.2Patch Changes
676db85: fix #451 - dispose per-route roots when the route tree unmounts; leaked roots stayed subscribed to route matches and crashed withTypeError: ... (evaluating 'match().path')on a later navigation (e.g. when a<Show>in the root component hid the outlet during login/logout flows)cae1d15: Fix a batch of long-standing bugs:useSubmission().retrywas always a no-op due to an operator-precedence bug (#504)useBeforeLeavelisteners now observedefaultPreventedset by other listeners (#530)<A>active state now ignores trailing slashes onhref(#532)useCurrentMatchesreturns a copy so user mutation can't corrupt router state (#516)+,@,:,$,&,,,;,=), so routes like/+fooor/@​usermatch the browser's raw pathname (#559, #509)setSearchParamscalls now compose: the merge applies to the in-flight navigation target instead of the stale committed location (#547)e9acd69: fix #454 - defaultRouteDefinition's data generic toanyso typed components and preload functions are assignable in annotated configs likeconst routes: RouteDefinition[], where no inference site for the generic exists9d80d4e: Paths with empty interior segments (doubled slashes, e.g.//dashor/foo//bar) no longer match routes and now render the not-found state instead of silently matching their collapsed form (#567). A single trailing slash is still tolerated. Doubled leading slashes are also no longer normalized away by the browser integration and parse correctly instead of being treated as protocol-relative URLs.b308c21: fix #497 -revalidatenow forces the cache miss synchronously instead of deferring it into the transition microtask, so a same-tickrefetch()after an un-awaitedrevalidate()refetches fresh datae9acd69: fix #347 - acceptVoidComponentpages as route components;componentnow takes aRouteSectionComponentunion so components that don't declarechildrentype-check, while components requiring props the router doesn't pass are still rejectedv0.16.1Patch Changes
e847f96: Fix the published package contents sodistno longer includes mirroredsrc,test, or co-located spec files.Also move the data tests under
test/and align the test TypeScript config with that layout sotest:typescontinues to pass cleanly.v0.16.0Minor Changes
8f0a8c3: Re-export context9e85fe2: UpdatemoduleResolutionPatch Changes
63940c5: UsenameinactionandcreateAsyncaction()andcreateAsync()were not respecting user defined name.Moreover, action was not applying the hashed name and only naming the action "mutate".
f9b6dc6: Make useHref return a string with string paramv0.15.4Patch Changes
da5e1f9: allow URLSearchParams type for when enctype is not set to multipart/form-data1aa664e: - Improve route matching fallbackfa46b67: fix(type): allow value fromParamsandSearchParamsto be optionalbd89541: Supportinoperator for useParams()0a2f556: preserve headers inquery()'shandleResponse()ac97470: addedSearchParamsto the exported types8885abf: fix: createAsync - catch errors of prev to avoid bubbling error upd665cc9: Fix Router popstate event handling logicv0.15.3Patch Changes
97184e4: more lenient on cache resuming (allow nested promises during hydration)v0.15.2Patch Changes
fe5c83e: Add JSdoc9a5e350: Vite 6 compatibility20ad18f: only clear completed actions on navigationv0.15.1Patch Changes
f3763aa: Export Submission at the top level813e6bd: fixonCompletereturn typev0.15.0Minor Changes
6799556: renamecachetoquery, actiononCompletev0.14.10Patch Changes
18b9b52: Support arrays in Search Params272218f: fix #491 - useSubmission with "with" actionsv0.14.9Patch Changes
a22d7d2: fix preloadRoute to take string path6dd0473: support empty array/string to mean no revalidationv0.14.8Patch Changes
a3a36fb: Add query and param wrappers to support non-Proxy envs2475851: bump deps2f1fa18: improve anchor preload performancev0.14.7Patch Changes
3594e45: fix iterator methods on useSubmissionsv0.14.6Patch Changes
0a964b6: Fix duplicated push historyc61231d: Fix scrollToHash to handle hashes starting with a number83b7093: remove extra code, fix #406 slow perf on localeComparev0.14.5Patch Changes
5c87acc: fix partial matches in single flight mutationsv0.14.4Patch Changes
098dccb: fix #474 improper search parameter resolution while routingf8f30df: fix initial state including _depthv0.14.3Patch Changes
19a21cc: fix async store referencesf8aaf16: make url transform consistent86c3b1f: better handling of query only navigationv0.14.2Patch Changes
bc3d8e3: expose .latest from createAsyncfc6ac53: fix #464 flaky hydration bail out3295502: fix hydration cancellation on browser eventsv0.14.1Patch Changes
18b9b52: Support arrays in Search Params272218f: fix #491 - useSubmission with "with" actionsv0.14.0Minor Changes
e4a13f6: Response helpers return responses, cache/action filter them outbd9f19a: default form actions to url encoded5d9263b: rename load to preloadPatch Changes
a7e4062: fix #457 extra leading slashes on path4b4536e: add usePreloadRoute export8cc0530: hack the types to work a bit better with Response Unionsv0.13.6Patch Changes
7344f69: Handle absolute redirects withincacheon server8263115: Forward absolute redirects insidecachefrom server to client8fbf74a: Treatwindow.location.hashas URI encodede9fd55d: fix #449 No JS submissions not workingf311f4a: fix #452 useSubmission types/references2f05f37: Make isRouting more reliable + other fixes618ef17: performance improvement leveraging redirects in loadfnd81473a: usePreloadRoute method pre-releasev0.13.5Patch Changes
bfb059f: types Route -> RouteDescriptionv0.13.4Patch Changes
00e37fd: Export all types used in public API2e90de5: FixHashRouterstate reset withreplace: false75472d2: Fix useCurrentMatches a getter functionv0.13.3Patch Changes
884b8be: fix #374, fix #399 - suppress cache errors in load function4a76e7d: Fix state updates detection on history back/forward5af3da8: fix #407 single flight without explicit keys1068f1b: fix #408 - accessing route information0c698ed: Allow rewriting urlv0.13.2Patch Changes
0a34883: preserve original path on optional segments94797e1: Fix types for cache functions with all optional arguments8a547a8: don't submit form when submit event is defaultPreventedv0.13.1Patch Changes
8b766a9: restore params into rootv0.13.0Minor Changes
7b1597b: Add errors to actionsPatch Changes
83e827d: minimum types for submission flash6df4a7a: push root/rootLoad outside of route matchingv0.12.5Patch Changes
fdefceb: fix #388 reference to element propffbd35a: fix #389 update router context error messagebceb358: fix backcache storing invalidated valuesv0.12.4Patch Changes
533b7a0: fix unintended early return in cache during server renderv0.12.3Patch Changes
02c6e7a: action to return fully processed responsev0.12.2Patch Changes
5e8cbdb: apply the right owner (who's aware of the router)v0.12.1Patch Changes
6d0be9e: fix cache serialization to match returned value052d385: Run load functions with owner & context ofRoutercomponent.v0.12.0Minor Changes
17ea145: add createAsyncStorage, prev argument, remove store from cachev0.11.5Patch Changes
0413594: fix memory router no native events97d387b: addrootLoad5a94e7d: fix Router types, make singleFlight optionalv0.11.4Patch Changes
d67ccbb: single flight mutations76724af: pass revalidate throughjsonhelperv0.11.3Patch Changes
9cc1a85: update response types to be always presentv0.11.2Patch Changes
fab3cc0: fix renderToString for cache fnsv0.11.1Patch Changes
20663d5: metadata -> infov0.11.0Minor Changes
6e661eb: add changesetsConfiguration
📅 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.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.