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

Update Rust crate sea-orm to v0.12.15 #15343

Merged
merged 1 commit into from
Jul 27, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 27, 2024

Mend Renovate

This PR contains the following updates:

Package Type Update Change
sea-orm (source) dev-dependencies patch 0.12.3 -> 0.12.15
sea-orm (source) dependencies patch 0.12.3 -> 0.12.15

Release Notes

SeaQL/sea-orm (sea-orm)

v0.12.15

Compare Source

Enhancements
#[derive(DerivePartialModel)]
#[sea_orm(entity = "<entity::Model as ModelTrait>::Entity")]
struct EntityNameNotAIdent {
    #[sea_orm(from_col = "foo2")]
    _foo: i32,
    #[sea_orm(from_col = "bar2")]
    _bar: String,
}
assert_eq!(
    cake::Entity::find()
        .join_as(
            JoinType::LeftJoin,
            cake_filling::Relation::Cake.def().rev(),
            cf.clone()
        )
        .join(
            JoinType::LeftJoin,
            cake_filling::Relation::Filling.def().from_alias(cf)
        )
        .build(DbBackend::MySql)
        .to_string(),
    [
        "SELECT `cake`.`id`, `cake`.`name` FROM `cake`",
        "LEFT JOIN `cake_filling` AS `cf` ON `cake`.`id` = `cf`.`cake_id`",
        "LEFT JOIN `filling` ON `cf`.`filling_id` = `filling`.`id`",
    ]
    .join(" ")
);

v0.12.14

Compare Source

v0.12.12

Compare Source

Bug Fixes
Enhancements
  • Added ConnectOptions::test_before_acquire

v0.12.11

Compare Source

New Features
Enhancements
Bug Fixes
House keeping

v0.12.10

Compare Source

New Features
Enhancements
Upgrades

v0.12.9

Compare Source

Enhancements
Upgrades

v0.12.8

Compare Source

Enhancements
Upgrades

v0.12.7

Compare Source

Enhancements
Upgrades

v0.12.6

Compare Source

New Features

v0.12.5

Compare Source

Bug Fixes

v0.12.4

Compare Source

New Features
#[derive(Clone, Debug, PartialEq, Eq, DeriveEntityModel)]
#[sea_orm(table_name = "json_struct_vec")]
pub struct Model {
    #[sea_orm(primary_key)]
    pub id: i32,
    #[sea_orm(column_type = "Json")]
    pub struct_vec: Vec<JsonColumn>,
}

#[derive(Clone, Debug, PartialEq, Eq, Serialize, Deserialize, FromJsonQueryResult)]
pub struct JsonColumn {
    pub value: String,
}
Enhancements
Upgrades

Configuration

📅 Schedule: Branch creation - "after 3pm on Wednesday" in timezone America/New_York, 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

Release Notes:

  • N/A

@cla-bot cla-bot bot added the cla-signed The user has signed the Contributor License Agreement label Jul 27, 2024
@maxdeviant maxdeviant self-assigned this Jul 27, 2024
@maxdeviant maxdeviant merged commit c7a78fa into main Jul 27, 2024
9 checks passed
@maxdeviant maxdeviant deleted the renovate/sea-orm-0.x-lockfile branch July 27, 2024 16:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
cla-signed The user has signed the Contributor License Agreement
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant