Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the deps group with 2 updates #77

Merged
merged 1 commit into from
Jul 19, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 3, 2024

Bumps the deps group with 2 updates: leptos and leptos_router.

Updates leptos from 0.6.11 to 0.6.12

Release notes

Sourced from leptos's releases.

v0.6.12

This is mainly a maintenance release, but includes a couple new features that I want to point out:

impl Trait in Component Props

You can now use impl Trait syntax directly in component props, rather than explicitly specifying a generic and a where clause

before

#[component]
fn ProgressBar<F>(#[prop(default = 100)] max: u16, progress: F) -> impl IntoView
where
    F: Fn() -> i32 + 'static,
{
    view! {
        <progress
            max=max
            value=progress
        />
    }
}

after

#[component]
fn ProgressBar(
    #[prop(default = 100)] max: u16,
    progress: impl Fn() -> i32 + 'static,
) -> impl IntoView {
    view! {
        <progress
            max=max
            value=progress
        />
    }
}

Support spreading dynamic attributes from one component to another

In the following code Bar doesn't currently inherit attributes from Foo when it spreads its attributes. PR #2534 fixes this.

fn main() {
    let (count, set_count) = create_signal(0);
mount_to_body(move || {
    view! {
        &lt;Foo

</tr></table>

... (truncated)

Commits
  • 2ef27cb fix: URL encoding issue (closes #2602) (#2601)
  • 21a6551 feat: allow slice! macro to index tuples (#2598)
  • 2f4fd87 feat: #[component] now handles impl Trait by converting to generic type p...
  • 13ad1b2 projects: example using the bevy 3d game engine and leptos (#2577)
  • a2c7e23 docs: grammar typo for MultiActon doc comment (#2589)
  • 9e65f71 fix: only issue NodeRef warning in debug mode (necessary to compile in `--rel...
  • 7f4a292 fix: StoredValue and Resource borrowMut error during dispose (#2583)
  • 7c5203d examples: counter with DWARF debugging (breakpoints and sourcemap) (#2563)
  • 3760ced fix: allow temporaries as props (closes #2541) (#2582)
  • f3f3a05 fix: don't insert empty child for comment/doctype (closes #2549) (#2581)
  • Additional commits viewable in compare view

Updates leptos_router from 0.6.11 to 0.6.12

Release notes

Sourced from leptos_router's releases.

v0.6.12

This is mainly a maintenance release, but includes a couple new features that I want to point out:

impl Trait in Component Props

You can now use impl Trait syntax directly in component props, rather than explicitly specifying a generic and a where clause

before

#[component]
fn ProgressBar<F>(#[prop(default = 100)] max: u16, progress: F) -> impl IntoView
where
    F: Fn() -> i32 + 'static,
{
    view! {
        <progress
            max=max
            value=progress
        />
    }
}

after

#[component]
fn ProgressBar(
    #[prop(default = 100)] max: u16,
    progress: impl Fn() -> i32 + 'static,
) -> impl IntoView {
    view! {
        <progress
            max=max
            value=progress
        />
    }
}

Support spreading dynamic attributes from one component to another

In the following code Bar doesn't currently inherit attributes from Foo when it spreads its attributes. PR #2534 fixes this.

fn main() {
    let (count, set_count) = create_signal(0);
mount_to_body(move || {
    view! {
        &lt;Foo

</tr></table>

... (truncated)

Commits
  • 2ef27cb fix: URL encoding issue (closes #2602) (#2601)
  • 21a6551 feat: allow slice! macro to index tuples (#2598)
  • 2f4fd87 feat: #[component] now handles impl Trait by converting to generic type p...
  • 13ad1b2 projects: example using the bevy 3d game engine and leptos (#2577)
  • a2c7e23 docs: grammar typo for MultiActon doc comment (#2589)
  • 9e65f71 fix: only issue NodeRef warning in debug mode (necessary to compile in `--rel...
  • 7f4a292 fix: StoredValue and Resource borrowMut error during dispose (#2583)
  • 7c5203d examples: counter with DWARF debugging (breakpoints and sourcemap) (#2563)
  • 3760ced fix: allow temporaries as props (closes #2541) (#2582)
  • f3f3a05 fix: don't insert empty child for comment/doctype (closes #2549) (#2581)
  • Additional commits viewable in compare view

You can trigger a rebase of this PR 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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

Bumps the deps group with 2 updates: [leptos](https://github.com/leptos-rs/leptos) and [leptos_router](https://github.com/leptos-rs/leptos).


Updates `leptos` from 0.6.11 to 0.6.12
- [Release notes](https://github.com/leptos-rs/leptos/releases)
- [Commits](leptos-rs/leptos@v0.6.11...v0.6.12)

Updates `leptos_router` from 0.6.11 to 0.6.12
- [Release notes](https://github.com/leptos-rs/leptos/releases)
- [Commits](leptos-rs/leptos@v0.6.11...v0.6.12)

---
updated-dependencies:
- dependency-name: leptos
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: leptos_router
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Jun 3, 2024
@shamilsan shamilsan merged commit 870c64e into master Jul 19, 2024
1 check passed
@shamilsan shamilsan deleted the dependabot/cargo/deps-65af3d9c1f branch July 19, 2024 10:54
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