Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"adopt-core-server-function-protocol",
"adopt-hoisted-wire-protocols",
"adopt-path-based-server-function-addressing",
"async-flash-decoder",
"claims-registry-sweep",
"claims-sweep-hydration-transparent",
"compiler-claimed-anchors",
Expand Down Expand Up @@ -47,6 +48,7 @@
"remove-legacy-apis",
"renumber-next-line-two-x",
"require-solid-beta-22",
"require-solid-rc-6",
"response-stub-committed-type",
"retry-failed-lazy-subtrees",
"router-factory-typed-paths",
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @solidjs/router

## 2.0.0-next.22

### Patch Changes

- 8edac15: Require the async flash decoder (solidjs/solid#3239): the flash cookie is now encrypted, so the runtime's `decodeFlashCookie` returns a Promise and the `provideFlashDecoder` slot takes only that shape. The submissions seed carries the in-flight decode through the not-ready protocol from a lazy, hydration-transparent memo — a request that never reads submissions never decodes, the decode runs at most once, and the server-only memo consumes no hydration-id slot.

Requires `@solidjs/web` 2.0.0-rc.7 (the release that ships the async, encrypted codec and records the unbound function base as the flash `url`, so a `.with()`-bound no-JS post matches its `useSubmission` again); the `solid-js` / `@solidjs/web` peer floor is raised to `^2.0.0-rc.7`.

- 720f98c: Require solid-js 2.0.0-rc.6: earlier rcs wedge navigation forever when a lazy route reads a query gated behind another still-pending query (#595, fixed in core by solidjs/solid#3226). Adds a regression spec covering the gated-query navigation shape.

## 2.0.0-next.21

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"Ryan Turnquist"
],
"license": "MIT",
"version": "2.0.0-next.21",
"version": "2.0.0-next.22",
"homepage": "https://github.com/solidjs/solid-router#readme",
"repository": {
"type": "git",
Expand Down
Loading