Skip to content

chore(deps): update dependency @solidjs/router to v0.16.3 - #843

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/solidjs-router-0.x
Open

chore(deps): update dependency @solidjs/router to v0.16.3#843
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/solidjs-router-0.x

Conversation

@renovate

@renovate renovate Bot commented Nov 28, 2024

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
@solidjs/router 0.8.30.16.3 age confidence

Release Notes

solidjs/solid-router (@​solidjs/router)

v0.16.3

Patch 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 sets history.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.2

Patch Changes
  • 676db85: fix #​451 - dispose per-route roots when the route tree unmounts; leaked roots stayed subscribed to route matches and crashed with TypeError: ... (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().retry was always a no-op due to an operator-precedence bug (#​504)
    • disposing an older owner no longer unregisters a newer action bound to the same URL, which caused forms to fall through to native submission after revalidation (#​542)
    • useBeforeLeave listeners now observe defaultPrevented set by other listeners (#​530)
    • <A> active state now ignores trailing slashes on href (#​532)
    • useCurrentMatches returns a copy so user mutation can't corrupt router state (#​516)
    • static path segments no longer percent-encode RFC 3986 pchar characters (+, @, :, $, &, ,, ;, =), so routes like /+foo or /@&#8203;user match the browser's raw pathname (#​559, #​509)
    • consecutive synchronous setSearchParams calls now compose: the merge applies to the in-flight navigation target instead of the stale committed location (#​547)
  • e9acd69: fix #​454 - default RouteDefinition's data generic to any so typed components and preload functions are assignable in annotated configs like const routes: RouteDefinition[], where no inference site for the generic exists

  • 9d80d4e: Paths with empty interior segments (doubled slashes, e.g. //dash or /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 - revalidate now forces the cache miss synchronously instead of deferring it into the transition microtask, so a same-tick refetch() after an un-awaited revalidate() refetches fresh data

  • e9acd69: fix #​347 - accept VoidComponent pages as route components; component now takes a RouteSectionComponent union so components that don't declare children type-check, while components requiring props the router doesn't pass are still rejected

v0.16.1

Patch Changes
  • e847f96: Fix the published package contents so dist no longer includes mirrored src, test, or co-located spec files.

    Also move the data tests under test/ and align the test TypeScript config with that layout so test:types continues to pass cleanly.

v0.16.0

Minor Changes
Patch Changes
  • 63940c5: Use name in action and createAsync

    action() and createAsync() 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 param

v0.15.4

Patch Changes
  • da5e1f9: allow URLSearchParams type for when enctype is not set to multipart/form-data

  • 1aa664e: - Improve route matching fallback

    • Optimize imports
  • fa46b67: fix(type): allow value from Params and SearchParams to be optional

  • bd89541: Support in operator for useParams()

  • 0a2f556: preserve headers in query()'s handleResponse()

  • ac97470: added SearchParams to the exported types

  • 8885abf: fix: createAsync - catch errors of prev to avoid bubbling error up

  • d665cc9: Fix Router popstate event handling logic

    • Simplified delta check logic for history navigation
    • Improved reliability of forward navigation detection
    • Fixed window.history.forward() navigation handling

v0.15.3

Patch Changes
  • 97184e4: more lenient on cache resuming (allow nested promises during hydration)

v0.15.2

Patch Changes

v0.15.1

Patch Changes
  • f3763aa: Export Submission at the top level
  • 813e6bd: fix onComplete return type

v0.15.0

Minor Changes
  • 6799556: rename cache to query, action onComplete

v0.14.10

Patch Changes

v0.14.9

Patch Changes
  • a22d7d2: fix preloadRoute to take string path
  • 6dd0473: support empty array/string to mean no revalidation

v0.14.8

Patch Changes
  • a3a36fb: Add query and param wrappers to support non-Proxy envs
  • 2475851: bump deps
  • 2f1fa18: improve anchor preload performance

v0.14.7

Patch Changes
  • 3594e45: fix iterator methods on useSubmissions

v0.14.6

Patch Changes
  • 0a964b6: Fix duplicated push history
  • c61231d: Fix scrollToHash to handle hashes starting with a number
  • 83b7093: remove extra code, fix #​406 slow perf on localeCompare

v0.14.5

Patch Changes
  • 5c87acc: fix partial matches in single flight mutations

v0.14.4

Patch Changes
  • 098dccb: fix #​474 improper search parameter resolution while routing
  • f8f30df: fix initial state including _depth

v0.14.3

Patch Changes
  • 19a21cc: fix async store references
  • f8aaf16: make url transform consistent
  • 86c3b1f: better handling of query only navigation

v0.14.2

Patch Changes
  • bc3d8e3: expose .latest from createAsync
  • fc6ac53: fix #​464 flaky hydration bail out
  • 3295502: fix hydration cancellation on browser events

v0.14.1

Patch Changes

v0.14.0

Minor Changes
  • e4a13f6: Response helpers return responses, cache/action filter them out
  • bd9f19a: default form actions to url encoded
  • 5d9263b: rename load to preload
Patch Changes
  • a7e4062: fix #​457 extra leading slashes on path
  • 4b4536e: add usePreloadRoute export
  • 8cc0530: hack the types to work a bit better with Response Unions

v0.13.6

Patch Changes
  • 7344f69: Handle absolute redirects within cache on server
  • 8263115: Forward absolute redirects inside cache from server to client
  • 8fbf74a: Treat window.location.hash as URI encoded
  • e9fd55d: fix #​449 No JS submissions not working
  • f311f4a: fix #​452 useSubmission types/references
  • 2f05f37: Make isRouting more reliable + other fixes
  • 618ef17: performance improvement leveraging redirects in loadfn
  • d81473a: usePreloadRoute method pre-release

v0.13.5

Patch Changes
  • bfb059f: types Route -> RouteDescription

v0.13.4

Patch Changes
  • 00e37fd: Export all types used in public API
  • 2e90de5: Fix HashRouter state reset with replace: false
  • 75472d2: Fix useCurrentMatches a getter function

v0.13.3

Patch Changes

v0.13.2

Patch Changes
  • 0a34883: preserve original path on optional segments
  • 94797e1: Fix types for cache functions with all optional arguments
  • 8a547a8: don't submit form when submit event is defaultPrevented

v0.13.1

Patch Changes
  • 8b766a9: restore params into root

v0.13.0

Minor Changes
Patch Changes
  • 83e827d: minimum types for submission flash
  • 6df4a7a: push root/rootLoad outside of route matching

v0.12.5

Patch Changes

v0.12.4

Patch Changes
  • 533b7a0: fix unintended early return in cache during server render

v0.12.3

Patch Changes
  • 02c6e7a: action to return fully processed response

v0.12.2

Patch Changes
  • 5e8cbdb: apply the right owner (who's aware of the router)

v0.12.1

Patch Changes
  • 6d0be9e: fix cache serialization to match returned value
  • 052d385: Run load functions with owner & context of Router component.

v0.12.0

Minor Changes
  • 17ea145: add createAsyncStorage, prev argument, remove store from cache

v0.11.5

Patch Changes
  • 0413594: fix memory router no native events
  • 97d387b: add rootLoad
  • 5a94e7d: fix Router types, make singleFlight optional

v0.11.4

Patch Changes
  • d67ccbb: single flight mutations
  • 76724af: pass revalidate through json helper

v0.11.3

Patch Changes
  • 9cc1a85: update response types to be always present

v0.11.2

Patch Changes
  • fab3cc0: fix renderToString for cache fns

v0.11.1

Patch Changes

v0.11.0

Minor Changes

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
renovate Bot force-pushed the renovate/solidjs-router-0.x branch 2 times, most recently from 8e0d5e2 to 938080e Compare November 30, 2024 08:09
@renovate renovate Bot changed the title chore(deps): update dependency @solidjs/router to v0.15.1 chore(deps): update dependency @solidjs/router to v0.15.1 - autoclosed Dec 8, 2024
@renovate renovate Bot closed this Dec 8, 2024
@renovate
renovate Bot deleted the renovate/solidjs-router-0.x branch December 8, 2024 18:41
@renovate renovate Bot changed the title chore(deps): update dependency @solidjs/router to v0.15.1 - autoclosed chore(deps): update dependency @solidjs/router to v0.15.1 Dec 9, 2024
@renovate renovate Bot reopened this Dec 9, 2024
@renovate
renovate Bot force-pushed the renovate/solidjs-router-0.x branch 2 times, most recently from 938080e to f369a89 Compare December 12, 2024 04:14
@renovate renovate Bot changed the title chore(deps): update dependency @solidjs/router to v0.15.1 chore(deps): update dependency @solidjs/router to v0.15.2 Dec 12, 2024
@renovate
renovate Bot force-pushed the renovate/solidjs-router-0.x branch from f369a89 to 5eb4b1c Compare January 14, 2025 23:39
@renovate renovate Bot changed the title chore(deps): update dependency @solidjs/router to v0.15.2 chore(deps): update dependency @solidjs/router to v0.15.3 Jan 14, 2025
@renovate
renovate Bot force-pushed the renovate/solidjs-router-0.x branch from 5eb4b1c to 03b1f38 Compare August 10, 2025 13:40
@renovate
renovate Bot force-pushed the renovate/solidjs-router-0.x branch from 03b1f38 to 0bf3c4a Compare November 10, 2025 19:41
@renovate renovate Bot changed the title chore(deps): update dependency @solidjs/router to v0.15.3 chore(deps): update dependency @solidjs/router to v0.15.4 Nov 10, 2025
@renovate
renovate Bot force-pushed the renovate/solidjs-router-0.x branch 3 times, most recently from 074b618 to 0276007 Compare December 14, 2025 14:36
@renovate
renovate Bot force-pushed the renovate/solidjs-router-0.x branch from 0276007 to 6571224 Compare March 18, 2026 01:49
@renovate renovate Bot changed the title chore(deps): update dependency @solidjs/router to v0.15.4 chore(deps): update dependency @solidjs/router to v0.16.1 Mar 18, 2026
@renovate
renovate Bot force-pushed the renovate/solidjs-router-0.x branch 2 times, most recently from c430629 to 065e762 Compare March 18, 2026 13:40
@renovate
renovate Bot force-pushed the renovate/solidjs-router-0.x branch from 065e762 to dbda7c6 Compare April 1, 2026 16:36
@renovate
renovate Bot force-pushed the renovate/solidjs-router-0.x branch from dbda7c6 to a5986dc Compare June 24, 2026 04:42
@renovate
renovate Bot force-pushed the renovate/solidjs-router-0.x branch 2 times, most recently from 34353bf to d83462e Compare July 15, 2026 20:41
@renovate renovate Bot changed the title chore(deps): update dependency @solidjs/router to v0.16.1 chore(deps): update dependency @solidjs/router to v0.16.2 Jul 15, 2026
@renovate
renovate Bot force-pushed the renovate/solidjs-router-0.x branch from d83462e to e1a19f6 Compare July 27, 2026 17:44
@renovate renovate Bot changed the title chore(deps): update dependency @solidjs/router to v0.16.2 chore(deps): update dependency @solidjs/router to v0.16.3 Jul 27, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants