tyoeer / fusta-femas

WIP Full stack feed management system
0 stars 0 forks source link

Bump sea-orm-macros from 0.12.15 to 1.1.1 #260

Open dependabot[bot] opened 2 weeks ago

dependabot[bot] commented 2 weeks ago

Bumps sea-orm-macros from 0.12.15 to 1.1.1.

Release notes

Sourced from sea-orm-macros's releases.

1.1.1

Enhancements

  • [sea-orm-macros] impl From<Model> for ActiveModel instead of impl From<<Entity as sea_orm::EntityTrait>::Model> for ActiveModel SeaQL/sea-orm#2349. Now the following can compile:
use sea_orm::{tests_cfg::cake, Set};

struct Cake { id: i32, name: String, }

impl From<Cake> for cake::ActiveModel { fn from(value: Cake) -> Self { Self { id: Set(value.id), name: Set(value.name), } } }

1.1.0

Enhancements

  • [sea-orm-macros] Call EnumIter::get using fully qualified syntax SeaQL/sea-orm#2321
  • Construct DatabaseConnection directly from sqlx::PgPool, sqlx::SqlitePool and sqlx::MySqlPool SeaQL/sea-orm#2348
  • [sea-orm-migration] Add pk_uuid schema helper SeaQL/sea-orm#2329
  • [sea-orm-migration] Allow custom and custom_null schema helper to take column name and alias of different IntoIden types SeaQL/sea-orm#2326
  • Add ColumnDef::get_column_default getter SeaQL/sea-orm#2387

Upgrades

House keeping

1.1.0-rc.3

Enhancements

... (truncated)

Changelog

Sourced from sea-orm-macros's changelog.

1.1.1 - 2024-11-04

Enhancements

  • [sea-orm-macros] impl From<Model> for ActiveModel instead of impl From<<Entity as sea_orm::EntityTrait>::Model> for ActiveModel SeaQL/sea-orm#2349. Now the following can compile:
use sea_orm::{tests_cfg::cake, Set};

struct Cake { id: i32, name: String, }

impl From<Cake> for cake::ActiveModel { fn from(value: Cake) -> Self { Self { id: Set(value.id), name: Set(value.name), } } }

1.1.0 - 2024-10-15

Versions

  • 1.1.0-rc.1: 2024-08-09
  • 1.1.0-rc.2: 2024-10-04
  • 1.1.0-rc.3: 2024-10-08

Enhancements

  • [sea-orm-macros] Call EnumIter::get using fully qualified syntax SeaQL/sea-orm#2321
  • Construct DatabaseConnection directly from sqlx::PgPool, sqlx::SqlitePool and sqlx::MySqlPool SeaQL/sea-orm#2348
  • [sea-orm-migration] Add pk_uuid schema helper SeaQL/sea-orm#2329
  • [sea-orm-migration] Allow custom and custom_null schema helper to take column name and alias of different IntoIden types SeaQL/sea-orm#2326
  • Add ColumnDef::get_column_default getter SeaQL/sea-orm#2387

Upgrades

House keeping

... (truncated)

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