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

fix(deps): update rust crate sea-orm to 0.12.15 - autoclosed #5

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 22, 2023

Mend Renovate

This PR contains the following updates:

Package Type Update Change
sea-orm (source) dependencies patch 0.12.4 -> 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

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 this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot changed the title fix(deps): update rust crate sea-orm to 0.12.10 fix(deps): update rust crate sea-orm to 0.12.11 Jan 14, 2024
@renovate renovate bot changed the title fix(deps): update rust crate sea-orm to 0.12.11 fix(deps): update rust crate sea-orm to 0.12.12 Jan 22, 2024
@renovate renovate bot changed the title fix(deps): update rust crate sea-orm to 0.12.12 fix(deps): update rust crate sea-orm to 0.12.14 Feb 5, 2024

Micro-Learning Topic: SQL injection (Detected by phrase)

Matched on "sqli"

What is this? (2min video)

This is probably one of the two most exploited vulnerabilities in web applications and has led to a number of high profile company breaches. It occurs when an application fails to sanitize or validate input before using it to dynamically construct a statement. An attacker that exploits this vulnerability will be able to gain access to the underlying database and view or modify data without permission.

Try a challenge in Secure Code Warrior

Helpful references

1 similar comment

Micro-Learning Topic: SQL injection (Detected by phrase)

Matched on "sqli"

What is this? (2min video)

This is probably one of the two most exploited vulnerabilities in web applications and has led to a number of high profile company breaches. It occurs when an application fails to sanitize or validate input before using it to dynamically construct a statement. An attacker that exploits this vulnerability will be able to gain access to the underlying database and view or modify data without permission.

Try a challenge in Secure Code Warrior

Helpful references

@renovate renovate bot changed the title fix(deps): update rust crate sea-orm to 0.12.14 fix(deps): update rust crate sea-orm to 0.12.15 Mar 16, 2024
@renovate renovate bot changed the title fix(deps): update rust crate sea-orm to 0.12.15 fix(deps): update rust crate sea-orm to 0.12.15 - autoclosed May 5, 2024
@renovate renovate bot closed this May 5, 2024
@renovate renovate bot deleted the renovate/sea-orm-0.x branch May 5, 2024 11:16
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.

0 participants