Skip to content

chore(deps): update sea-orm monorepo to v1.1.13#131

Merged
renovate[bot] merged 1 commit into
mainfrom
renovate/sea-orm-monorepo
Jun 30, 2025
Merged

chore(deps): update sea-orm monorepo to v1.1.13#131
renovate[bot] merged 1 commit into
mainfrom
renovate/sea-orm-monorepo

Conversation

@renovate

@renovate renovate Bot commented Jun 30, 2025

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Type Update Change
sea-orm (source) workspace.dependencies patch 1.1.12 -> 1.1.13
sea-orm-migration (source) workspace.dependencies patch 1.1.12 -> 1.1.13

Release Notes

SeaQL/sea-orm (sea-orm)

v1.1.13

Compare Source

New Features
  • [sea-orm-cli] New --frontend-format flag to generate entities in pure Rust:
// for example, below is the normal (compact) Entity:
use sea_orm::entity::prelude::*;
use serde::{Deserialize, Serialize};

#[derive(Clone, Debug, PartialEq, DeriveEntityModel, Eq, Serialize, Deserialize)]

#[sea_orm(table_name = "cake")]
pub struct Model {
    #[sea_orm(primary_key)]
    #[serde(skip_deserializing)]
    pub id: i32,
    #[sea_orm(column_type = "Text", nullable)]
    pub name: Option<String> ,
}
// this is the generated frontend model, there is no SeaORM dependency:
use serde::{Deserialize, Serialize};

#[derive(Clone, Debug, PartialEq, Eq, Serialize, Deserialize)]
pub struct Model {
    #[serde(skip_deserializing)]
    pub id: i32,
    pub name: Option<String> ,
}
Enhancements

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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 enabled auto-merge (squash) June 30, 2025 03:07
@renovate renovate Bot merged commit 629d05e into main Jun 30, 2025
8 checks passed
@renovate renovate Bot deleted the renovate/sea-orm-monorepo branch June 30, 2025 03:12
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