Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Nov 8, 2023

Note: This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Type Update Change
leptos (source) dependencies minor 0.4.50.8.0
leptos (source) dependencies minor 0.40.8

Release Notes

leptos-rs/leptos (leptos)

v0.8.15

Compare Source

What's Changed
New Contributors

Full Changelog: leptos-rs/leptos@v0.8.14...v0.8.15

v0.8.14

Compare Source

What's Changed

Full Changelog: leptos-rs/leptos@v0.8.13...v0.8.14

v0.8.13

Compare Source

What's Changed
New Contributors

Full Changelog: leptos-rs/leptos@v0.8.12...v0.8.13

v0.8.12

Compare Source

What's Changed

Full Changelog: leptos-rs/leptos@v0.8.11...v0.8.12

v0.8.11

Compare Source

What's Changed
New Contributors

Full Changelog: leptos-rs/leptos@v0.8.10...v0.8.11

v0.8.10

Compare Source

What's Changed
New Contributors

Full Changelog: leptos-rs/leptos@v0.8.9...v0.8.10

v0.8.9

Compare Source

This includes patch releases to the reactive_graph, tachys, wasm_split_macros, server_fn, leptos, and router crates.

What's Changed

Full Changelog: leptos-rs/leptos@v0.8.8...v0.8.9

v0.8.8

What's Changed
New Contributors

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

v0.8.6

Compare Source

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!

Compare Source

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()),
        }
    }

    fn view(this: Self) -> AnyView {
        let items = move || {
            Suspend::new(async move {
                this.data
                    .await
                    .unwrap_or_default()
                    .into_iter()
                    .map(|item| view! { <li>{item}</li> })
                    .collect::<Vec<_>>()
            })
        };
        view! {
            <p id="page">"View D"</p>
            <hr/>
            <Suspense fallback=|| view! { <p id="loading">"Loading..."</p> }>
                <ul>{items}</ul>
            </Suspense>
            <Outlet/>
        }
        .into_any()
    }
}

#[server]
async fn d_data() -> Result<Vec<i32>, ServerFnError> {
    tokio::time::sleep(std::time::Duration::from_millis(250)).await;
    Ok(vec![1, 1, 2, 3, 5, 8, 13])
}

Our whole July stream was dedicated to the topic, if you want more in depth discussion.

What's Changed

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

v0.8.4

Compare Source

There are some small bugfixes in here, as well as improvements to the hot-reloading code. This is mostly intended to be a sort of "last patch" before merging the code-splitting changes in #​3988, so that there is a patch people can pin to in case those inadvertently introduce any regressions.

What's Changed
New Contributors

Full Changelog: leptos-rs/leptos@v0.8.3...v0.8.4

v0.8.3

Compare Source

This is a minor patch release. It does include a significant re-write of how ownership/context work with nested routes (#​4091). This should close a number of bugs. However, it's always possible that changes like this introduce regressions. Please test to see whether you have any issues with context and nested routing, and let me know. (We have a new regression example set up to add e2e regression tests for issues going forward.)

What's Changed
New Contributors

Full Changelog: leptos-rs/leptos@v0.8.2...v0.8.3

v0.8.2

Compare Source

For 0.8 release notes in general, see 0.8.0. This patch release mostly addresses a bad issue with hydrating <Stylesheet/> and other meta components. (See #​3945 #​3946)

What's Changed

Full Changelog: leptos-rs/leptos@v0.8.1...v0.8.2

v0.8.1

Compare Source

For 0.8 release notes in general, see 0.8.0. This patch release is mostly just a bunch of bugfixes for issues raised or fixed since then.

What's Changed
New Contributors

Full Changelog: leptos-rs/leptos@v0.8.0...v0.8.1

v0.8.0

Compare Source

*Changelog relative to 0.7.8. *

0.8 has been planned for a while, primarily to accommodate small changes that arose during the course of testing and adopting 0.7, most of which are technically semver-breaking but should not meaningfully affect user code. I think it's a significant QOL and user DX upgrade and I'm excited to properly release it.

Noteworthy features:

  • Axum 0.8 support. (This alone required a major version bump, as we reexport some Axum types.) (thanks to @​sabify for the migration work here)
  • Significant improvements to compile times when using --cfg=erase_components, which is useful as a dev-mode optimization (thanks to @​zakstucke) This is the default setting for cargo-leptos with its latest release, and can be set up manually for use with Trunk. (See docs here.)
  • Support for the new islands-router features that allow a client-side routing experience while using islands (see the islands_router example) (this one was me)
  • Improved server function error handling by allowing you to use any type that implements FromServerFnError rather than being constrained to use ServerFnError (see #​3274). (Note: This will require changes if you're using a custom error type, but should be a better experience.) (thanks to @​ryo33)
  • Support for creating WebSockets via server fns (thanks to @​ealmloff)
  • Changes to make custom errors significantly more ergonomic when using server functions
  • LocalResource no longer exposes a SendWrapper in the API for the types it returns. (**Breakin

Configuration

📅 Schedule: 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 these updates 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 requested review from a team and dezren39 as code owners November 8, 2023 00:45
@renovate renovate bot changed the title Update Rust crate leptos to v0.5.2 Update Rust crate leptos to v0.5.3 Nov 28, 2023
@renovate renovate bot force-pushed the renovate/leptos-0.x branch 2 times, most recently from 870317b to a271c7a Compare November 29, 2023 06:32
@renovate renovate bot changed the title Update Rust crate leptos to v0.5.3 Update Rust crate leptos to v0.5.4 Nov 29, 2023
@renovate renovate bot force-pushed the renovate/leptos-0.x branch from a271c7a to 9f78c49 Compare January 16, 2024 00:15
@renovate renovate bot changed the title Update Rust crate leptos to v0.5.4 Update Rust crate leptos to v0.5.5 Jan 16, 2024
@renovate
Copy link
Contributor Author

renovate bot commented Jan 16, 2024

⚠ Artifact update problem

Renovate failed to update artifacts related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: sources/web-gen/Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path sources/web-gen/Cargo.toml --package leptos@0.4.5 --precise 0.6.11
    Updating crates.io index
error: failed to select a version for the requirement `leptos = "^0.4.5"`
candidate versions found which didn't match: 0.6.11
location searched: crates.io index
required by package `leptos_router v0.4.5`
    ... which satisfies dependency `leptos_router = "^0.4.5"` (locked to 0.4.5) of package `web-gen v0.1.0 (/tmp/renovate/repos/github/developing-today/code/sources/web-gen)`
perhaps a crate was updated and forgotten to be re-vendored?

File name: sources/web-gen-api/Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path sources/web-gen-api/Cargo.toml --package leptos@0.4.5 --precise 0.6.11
    Updating crates.io index
error: failed to select a version for the requirement `leptos = "^0.4.5"`
candidate versions found which didn't match: 0.6.11
location searched: crates.io index
required by package `leptos_actix v0.4.5`
    ... which satisfies dependency `leptos_actix = "^0.4"` (locked to 0.4.5) of package `leptos_start v0.1.0 (/tmp/renovate/repos/github/developing-today/code/sources/web-gen-api)`
perhaps a crate was updated and forgotten to be re-vendored?

@renovate renovate bot force-pushed the renovate/leptos-0.x branch from 9f78c49 to 5b42fef Compare January 17, 2024 03:23
@renovate renovate bot changed the title Update Rust crate leptos to v0.5.5 Update Rust crate leptos to v0.5.6 Jan 17, 2024
@renovate renovate bot force-pushed the renovate/leptos-0.x branch from 5b42fef to 5855aa9 Compare January 19, 2024 18:04
@renovate renovate bot changed the title Update Rust crate leptos to v0.5.6 Update Rust crate leptos to v0.5.7 Jan 19, 2024
@renovate renovate bot force-pushed the renovate/leptos-0.x branch from 5855aa9 to 0127136 Compare January 26, 2024 20:50
@renovate renovate bot changed the title Update Rust crate leptos to v0.5.7 Update Rust crate leptos to v0.6.1 Jan 26, 2024
@renovate renovate bot force-pushed the renovate/leptos-0.x branch from 0127136 to 84f9fac Compare January 27, 2024 02:57
@renovate renovate bot changed the title Update Rust crate leptos to v0.6.1 Update Rust crate leptos to v0.6.3 Jan 27, 2024
@renovate renovate bot force-pushed the renovate/leptos-0.x branch from 84f9fac to 8850635 Compare January 30, 2024 14:43
@renovate renovate bot changed the title Update Rust crate leptos to v0.6.3 Update Rust crate leptos to v0.6.4 Jan 30, 2024
@renovate renovate bot force-pushed the renovate/leptos-0.x branch from 8850635 to c30000f Compare February 1, 2024 01:33
@renovate renovate bot changed the title Update Rust crate leptos to v0.6.4 Update Rust crate leptos to v0.6.5 Feb 1, 2024
@renovate renovate bot force-pushed the renovate/leptos-0.x branch from c30000f to f76325e Compare February 19, 2024 22:34
@renovate renovate bot changed the title Update Rust crate leptos to v0.6.5 Update Rust crate leptos to v0.6.6 Feb 19, 2024
@renovate renovate bot force-pushed the renovate/leptos-0.x branch from f76325e to 7061aa2 Compare February 29, 2024 22:49
@renovate renovate bot changed the title Update Rust crate leptos to v0.6.6 Update Rust crate leptos to v0.6.7 Feb 29, 2024
@renovate renovate bot force-pushed the renovate/leptos-0.x branch from 7061aa2 to e8f09a8 Compare March 3, 2024 03:39
@renovate renovate bot changed the title Update Rust crate leptos to v0.6.7 Update Rust crate leptos to v0.6.8 Mar 3, 2024
@renovate renovate bot force-pushed the renovate/leptos-0.x branch from e8f09a8 to 83c35ca Compare March 4, 2024 01:34
@renovate renovate bot changed the title Update Rust crate leptos to v0.6.8 Update Rust crate leptos to v0.6.9 Mar 4, 2024
@renovate renovate bot changed the title Update Rust crate leptos to v0.7.5 Update Rust crate leptos to v0.7.7 Feb 12, 2025
@renovate renovate bot changed the title Update Rust crate leptos to v0.7.7 Update Rust crate leptos to v0.7.8 Mar 20, 2025
@renovate renovate bot force-pushed the renovate/leptos-0.x branch from 61706c2 to b701ab5 Compare May 2, 2025 02:45
@renovate renovate bot changed the title Update Rust crate leptos to v0.7.8 Update Rust crate leptos to v0.8.0 May 2, 2025
@renovate renovate bot changed the title Update Rust crate leptos to v0.8.0 Update Rust crate leptos to v0.8.1 May 6, 2025
@renovate renovate bot changed the title Update Rust crate leptos to v0.8.1 Update Rust crate leptos to v0.8.2 May 6, 2025
@renovate renovate bot changed the title Update Rust crate leptos to v0.8.2 Update Rust crate leptos to v0.8.3 Jul 13, 2025
@renovate renovate bot changed the title Update Rust crate leptos to v0.8.3 Update Rust crate leptos to v0.8.4 Jul 20, 2025
@renovate renovate bot force-pushed the renovate/leptos-0.x branch from b701ab5 to da09adf Compare July 21, 2025 18:58
@renovate renovate bot changed the title Update Rust crate leptos to v0.8.4 Update Rust crate leptos to v0.8.5 Jul 21, 2025
@renovate renovate bot force-pushed the renovate/leptos-0.x branch from da09adf to f68a364 Compare July 27, 2025 13:53
@renovate renovate bot changed the title Update Rust crate leptos to v0.8.5 Update Rust crate leptos to v0.8.6 Jul 27, 2025
@renovate renovate bot changed the title Update Rust crate leptos to v0.8.6 Update Rust crate leptos to v0.8.7 Aug 26, 2025
@renovate renovate bot changed the title Update Rust crate leptos to v0.8.7 Update Rust crate leptos to v0.8.6 Aug 26, 2025
@renovate renovate bot changed the title Update Rust crate leptos to v0.8.6 Update Rust crate leptos to v0.8.8 Aug 26, 2025
@renovate renovate bot changed the title Update Rust crate leptos to v0.8.8 Update Rust crate leptos to v0.8.9 Sep 18, 2025
@renovate renovate bot changed the title Update Rust crate leptos to v0.8.9 Update Rust crate leptos to v0.8.10 Sep 29, 2025
@renovate renovate bot force-pushed the renovate/leptos-0.x branch from f68a364 to 62ccff4 Compare October 24, 2025 21:38
@renovate renovate bot changed the title Update Rust crate leptos to v0.8.10 Update Rust crate leptos to v0.8.11 Oct 24, 2025
@renovate renovate bot force-pushed the renovate/leptos-0.x branch from 62ccff4 to a0c9671 Compare October 28, 2025 03:07
@renovate renovate bot changed the title Update Rust crate leptos to v0.8.11 Update Rust crate leptos to v0.8.12 Oct 28, 2025
@renovate renovate bot force-pushed the renovate/leptos-0.x branch from a0c9671 to bbeb027 Compare November 22, 2025 21:37
@renovate renovate bot changed the title Update Rust crate leptos to v0.8.12 Update Rust crate leptos to v0.8.13 Nov 22, 2025
@renovate renovate bot force-pushed the renovate/leptos-0.x branch from bbeb027 to 5e34021 Compare November 25, 2025 02:27
@renovate renovate bot changed the title Update Rust crate leptos to v0.8.13 Update Rust crate leptos to v0.8.14 Nov 25, 2025
@renovate renovate bot force-pushed the renovate/leptos-0.x branch from 5e34021 to 0b09d24 Compare December 10, 2025 15:46
@renovate renovate bot force-pushed the renovate/leptos-0.x branch from 0b09d24 to fcb20e1 Compare December 19, 2025 17:38
@renovate renovate bot changed the title Update Rust crate leptos to v0.8.14 Update Rust crate leptos to v0.8.15 Dec 19, 2025
@renovate renovate bot force-pushed the renovate/leptos-0.x branch from fcb20e1 to b5127f1 Compare December 31, 2025 16:09
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.

2 participants