Skip to content

Commit 8919e26

Browse files
committed
Changelog
1 parent c27a5ce commit 8919e26

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -651,6 +651,20 @@ struct CakeWithOptionalBakeryModel {
651651
bakery: Option<bakery::Model>, // can be null
652652
}
653653
```
654+
* Added `try_from_u64` to `DeriveValueType` https://github.com/SeaQL/sea-orm/pull/2958
655+
```rust
656+
// Test for try_from_u64 attribute with type alias
657+
type UserId = i32;
658+
659+
#[derive(Clone, Debug, PartialEq, Eq, DeriveValueType)]
660+
#[sea_orm(try_from_u64)]
661+
pub struct MyUserId(pub UserId);
662+
```
663+
* Arrow / Parquet support https://github.com/SeaQL/sea-orm/pull/2957
664+
+ Added `ArrowSchema`, `DeriveArrowSchema`
665+
+ Support decimal with different formats
666+
+ Support timestamp with different timezone / resolution
667+
+ Added parquet example
654668

655669
### Breaking Changes
656670

0 commit comments

Comments
 (0)