Skip to content

deps(deps): bump the cargo-minor-and-patch group across 1 directory with 5 updates - #59

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/cargo-minor-and-patch-92e2f31014
Open

dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/cargo-minor-and-patch-92e2f31014

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 21, 2026

Copy link
Copy Markdown
Contributor

Bumps the cargo-minor-and-patch group with 5 updates in the / directory:

Package From To
log 0.4.33 0.4.34
clap 4.6.6 4.6.7
clap_complete 4.6.9 4.6.11
sea-orm 2.0.2 2.0.3
sea-orm-migration 2.0.2 2.0.3

Updates log from 0.4.33 to 0.4.34

Release notes

Sourced from log's releases.

0.4.34

What's Changed

New Contributors

Full Changelog: rust-lang/log@0.4.33...0.4.34

Changelog

Sourced from log's changelog.

[0.4.34] - 2026-08-22

What's Changed

New Contributors

Full Changelog: rust-lang/log@0.4.33...0.4.34

Commits

Updates clap from 4.6.6 to 4.6.7

Release notes

Sourced from clap's releases.

v4.6.7

[4.6.7] - 2026-09-14

Features

  • (derive) Add #[command(defer = <bool>)] attribute to opt-in to lazy initialisation of subcommands
Changelog

Sourced from clap's changelog.

[4.6.7] - 2026-09-14

Features

  • (derive) Add #[command(defer = <bool>)] attribute to opt-in to lazy initialisation of subcommands
Commits
  • d3e59a9 chore: Release
  • d997f87 docs: Update changelog
  • fb6058c Merge pull request #6409 from heaths/pwsh-support
  • 2310870 test(complete): Add tests for completer_for_path
  • 5967c17 refactor(complete): Move shell detection to Shells
  • 594602b fix(complete): Detect pwsh for PowerShell
  • 3a4f2d0 Merge pull request #6427 from clap-rs/renovate/shlex-2.x
  • 67ebaed Merge pull request #6426 from clap-rs/renovate/actions-checkout-7.x
  • c968b13 chore(deps): Update Rust crate shlex to v2
  • 8f247cb chore(deps): Update actions/checkout action to v7
  • Additional commits viewable in compare view

Updates clap_complete from 4.6.9 to 4.6.11

Commits
  • 2cb76fd chore: Release
  • 0b00b8d docs: Update changelog
  • 3443000 Merge pull request #6526 from bonnefoa/fix-completion-escape
  • a1b6be7 fix(clap_complete): Fix value escape in zsh completion
  • face9e8 test(complete): Add completion test without arg's help
  • 88053ab test(complete): Re-enable complete tests
  • e6adcc2 chore(release): Simplify replacements
  • 13f2db5 chore: Release
  • 3304fea docs: Update changelog
  • 7b2ad34 Merge pull request #6521 from r-near/feat/derive-deferred-initialization
  • Additional commits viewable in compare view

Updates sea-orm from 2.0.2 to 2.0.3

Release notes

Sourced from sea-orm's releases.

sea-orm-cli@2.0.3

update examples

Changelog

Sourced from sea-orm's changelog.

2.0.3 - 2026-09-12

select_as aliases in combined selects, derive macro hygiene, ModelEx Eq handling, PostgreSQL partial-unique-index and postgres:db_name CLI fixes

Commits
  • 63806d8 update examples
  • 63a9c63 2.0.3
  • 42eda6f Support postgres:db_name URLs in sea-orm-cli entity generation (#3197)
  • e29bcd1 Skip PostgreSQL partial unique indexes in entity codegen
  • 6f0798f Specialize ColumnTrait -> SelectExpr (#3194)
  • e10ecdd Improve Eq derive handling for ModelEx (#3193)
  • cbbd63e Improve derive macro hygiene to prevent generated identifier conflicts
  • 6bd711e Fix codegen and macro edge cases (#3158)
  • a056ec6 Recreate MySQL consistently
  • See full diff in compare view

Updates sea-orm-migration from 2.0.2 to 2.0.3

Release notes

Sourced from sea-orm-migration's releases.

sea-orm-cli@2.0.3

update examples

2.0.3

SeaORM 2.0.3

(since 2.0.2)

Bug Fixes

  • Fix panics when using select_also / select_both with a column that requires a cast on select #3194

    A combined select derives a prefixed alias for each selected expression. However, a cast expression is neither a plain column nor an enum cast, so previously its alias could not be derived, causing a panic.

    Columns now carry their own aliases into the combined select, with the prefix applied on top.

    Entity::find().select_also(other::Entity).build(DbBackend::Postgres)
    // before: panicked with "cannot apply alias for expr other than Column or AsEnum"
    -- after
    SELECT "hello"."id" AS "A_id", CAST("hello"."two" AS integer) AS "A_two", ...
  • Use Span::mixed_site for generated identifiers where possible to fix name shadowing issues in most cases SeaQL/sea-orm#3185

    // did not compile before: `row` collided with a generated binding
    #[derive(FromQueryResult)]
    struct QueryResultProjection {
        row: String,
    }
  • Fix DeriveActiveEnum conflicting with an enum variant named Error #3185

    The generated TryFrom<&str> implementation used Self::Error in the return type of try_from. If the enum had a variant named Error, Self::Error would resolve to that variant instead of the associated type.

    The implementation now explicitly uses sea_orm::DbErr.

    #[derive(DeriveActiveEnum)]
    enum ErrorVariantEnum {
        Error, // no longer breaks the generated `TryFrom<&str>`
    }
  • Avoid filtering out an explicitly requested Eq derive on ModelEx SeaQL/sea-orm#3193

... (truncated)

Changelog

Sourced from sea-orm-migration's changelog.

2.0.3 - 2026-09-12

select_as aliases in combined selects, derive macro hygiene, ModelEx Eq handling, PostgreSQL partial-unique-index and postgres:db_name CLI fixes

Commits
  • 63806d8 update examples
  • 63a9c63 2.0.3
  • 42eda6f Support postgres:db_name URLs in sea-orm-cli entity generation (#3197)
  • e29bcd1 Skip PostgreSQL partial unique indexes in entity codegen
  • 6f0798f Specialize ColumnTrait -> SelectExpr (#3194)
  • e10ecdd Improve Eq derive handling for ModelEx (#3193)
  • cbbd63e Improve derive macro hygiene to prevent generated identifier conflicts
  • 6bd711e Fix codegen and macro edge cases (#3158)
  • a056ec6 Recreate MySQL consistently
  • See full diff in compare view

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

…ith 5 updates

Bumps the cargo-minor-and-patch group with 5 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [log](https://github.com/rust-lang/log) | `0.4.33` | `0.4.34` |
| [clap](https://github.com/clap-rs/clap) | `4.6.6` | `4.6.7` |
| [clap_complete](https://github.com/clap-rs/clap) | `4.6.9` | `4.6.11` |
| [sea-orm](https://github.com/SeaQL/sea-orm) | `2.0.2` | `2.0.3` |
| [sea-orm-migration](https://github.com/SeaQL/sea-orm) | `2.0.2` | `2.0.3` |



Updates `log` from 0.4.33 to 0.4.34
- [Release notes](https://github.com/rust-lang/log/releases)
- [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md)
- [Commits](rust-lang/log@0.4.33...0.4.34)

Updates `clap` from 4.6.6 to 4.6.7
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/main/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_complete-v4.6.6...clap_complete-v4.6.7)

Updates `clap_complete` from 4.6.9 to 4.6.11
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/main/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_complete-v4.6.9...clap_complete-v4.6.11)

Updates `sea-orm` from 2.0.2 to 2.0.3
- [Release notes](https://github.com/SeaQL/sea-orm/releases)
- [Changelog](https://github.com/SeaQL/sea-orm/blob/master/CHANGELOG.md)
- [Commits](https://github.com/SeaQL/sea-orm/compare/sea-orm-cli@2.0.2...sea-orm-cli@2.0.3)

Updates `sea-orm-migration` from 2.0.2 to 2.0.3
- [Release notes](https://github.com/SeaQL/sea-orm/releases)
- [Changelog](https://github.com/SeaQL/sea-orm/blob/master/CHANGELOG.md)
- [Commits](SeaQL/sea-orm@2.0.2...2.0.3)

---
updated-dependencies:
- dependency-name: log
  dependency-version: 0.4.34
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor-and-patch
- dependency-name: clap
  dependency-version: 4.6.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor-and-patch
- dependency-name: clap_complete
  dependency-version: 4.6.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor-and-patch
- dependency-name: sea-orm
  dependency-version: 2.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor-and-patch
- dependency-name: sea-orm-migration
  dependency-version: 2.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor-and-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Dependency updates rust Pull requests that update rust code labels Sep 21, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Dependency updates rust Pull requests that update rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant