Skip to content

chore(deps): bump sea-orm from 1.1.12 to 1.1.13 in /examples - #621

Merged
JohnTitor merged 1 commit into
mainfrom
dependabot/cargo/examples/sea-orm-1.1.13
Jun 30, 2025
Merged

chore(deps): bump sea-orm from 1.1.12 to 1.1.13 in /examples#621
JohnTitor merged 1 commit into
mainfrom
dependabot/cargo/examples/sea-orm-1.1.13

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 30, 2025

Copy link
Copy Markdown
Contributor

Bumps sea-orm from 1.1.12 to 1.1.13.

Release notes

Sourced from sea-orm's releases.

1.1.13

New Features

  • [sea-orm-cli] New --frontend-format flag to generate entities in pure Rust SeaQL/sea-orm#2631
// 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

Changelog

Sourced from sea-orm's changelog.

1.1.13 - 2025-06-29

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

Commits

Dependabot compatibility score

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 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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [sea-orm](https://github.com/SeaQL/sea-orm) from 1.1.12 to 1.1.13.
- [Release notes](https://github.com/SeaQL/sea-orm/releases)
- [Changelog](https://github.com/SeaQL/sea-orm/blob/1.1.x/CHANGELOG.md)
- [Commits](SeaQL/sea-orm@1.1.12...1.1.13)

---
updated-dependencies:
- dependency-name: sea-orm
  dependency-version: 1.1.13
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Jun 30, 2025
@netlify

netlify Bot commented Jun 30, 2025

Copy link
Copy Markdown

Deploy Preview for actix-website ready!

Name Link
🔨 Latest commit 21978dc
🔍 Latest deploy log https://app.netlify.com/projects/actix-website/deploys/68621af3d5623a0008a5367f
😎 Deploy Preview https://deploy-preview-621--actix-website.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@JohnTitor
JohnTitor added this pull request to the merge queue Jun 30, 2025
Merged via the queue into main with commit d448bab Jun 30, 2025
6 checks passed
@JohnTitor
JohnTitor deleted the dependabot/cargo/examples/sea-orm-1.1.13 branch June 30, 2025 13:10
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