Skip to content

build(deps): bump leptos_meta from 0.7.8 to 0.8.6#17

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/leptos_meta-0.8.6
Closed

build(deps): bump leptos_meta from 0.7.8 to 0.8.6#17
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/leptos_meta-0.8.6

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 12, 2026

Bumps leptos_meta from 0.7.8 to 0.8.6.

Release notes

Sourced from leptos_meta's releases.

v0.8.6

Just a patch release, mostly to support #[server] #[lazy] for lazy server functions.

Going forward, patch releases for various crates will have version numbers that are not coupled to one another, and will only be bumped when they've actually changed; so this release is 0.8.6 for leptos, leptos_macro, and server_fn_macro, but does not arbitrarily bump other packages that haven't changed.

See 0.8.5 for notes on WASM splitting.

What's Changed

Full Changelog: leptos-rs/leptos@v0.8.5...v0.8.6

v0.8.5: WASM code splitting released!

This release includes WASM code-splitting/lazy-loading support, in tandem with the latest cargo-leptos release.

You can use the lazy_routes example to understand what this means!

Essentially, though, there are two patterns:

  1. Use the #[lazy] macro to make any given function lazy
  2. Use the #[lazy_route] to designate a route with a lazy-loaded view, which is loaded concurrently with the route's data

#[lazy] converts a (sync or async) function into a lazy-loaded async function

#[lazy]
fn deserialize_comments(data: &str) -> Vec<Comment> {
    serde_json::from_str(data).unwrap()
}

#[lazy_route] lets you split routes into a "data" half and a "view" half, which will be concurrently loaded by the router. This works with nested routing: so if you have ViewD and ViewE, then the router will concurrently load D's data, D's (lazy) view, E's data, and E's (lazy) view, before navigating to the page.

struct ViewD {
    data: Resource<Result<Vec<i32>, ServerFnError>>,
}
#[lazy_route]
impl LazyRoute for ViewD {
fn data() -> Self {
Self {
data: Resource::new(|| (), |_| d_data()),
}
</tr></table>

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [leptos_meta](https://github.com/leptos-rs/leptos) from 0.7.8 to 0.8.6.
- [Release notes](https://github.com/leptos-rs/leptos/releases)
- [Commits](leptos-rs/leptos@v0.7.8...v0.8.6)

---
updated-dependencies:
- dependency-name: leptos_meta
  dependency-version: 0.8.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels May 12, 2026
@satyakwok
Copy link
Copy Markdown
Member

Superseded by #26 (Cluster C: coordinated leptos 0.8 + axum 0.8 upgrade).

@satyakwok satyakwok closed this May 12, 2026
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github May 12, 2026

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot dependabot Bot deleted the dependabot/cargo/leptos_meta-0.8.6 branch May 12, 2026 04:19
satyakwok added a commit that referenced this pull request May 12, 2026
Coordinated upgrade of the Leptos + axum stack:
  leptos 0.7         → 0.8
  leptos_meta 0.7    → 0.8
  leptos_router 0.7  → 0.8
  leptos_axum 0.7    → 0.8
  axum 0.7           → 0.8

Both target builds clean with no source changes:
  cargo check --target wasm32-unknown-unknown  (browser bundle)
  cargo check --features ssr                    (axum binary)

axum 0.7.9 still appears in Cargo.lock as a transitive of server_fn
(leptos 0.8 ecosystem hasn't fully migrated yet); our code links
against 0.8.9.

Supersedes #17 (leptos_meta), #18 (leptos_axum), #20 (leptos_router), #22 (axum).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file rust Pull requests that update rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant