0.4.2
This commit is contained in:
parent
7327a00cb2
commit
5656c4981d
16
CHANGELOG.md
16
CHANGELOG.md
@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file.
|
|||||||
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
||||||
and this project adheres to [Semantic Versioning](http://semver.org/).
|
and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
|
|
||||||
|
## 0.4.2 - 2021-12-12
|
||||||
|
|
||||||
|
### Fixed Issues
|
||||||
|
* Delete::many() doesn't work when schema_name is defined https://github.com/SeaQL/sea-orm/issues/362
|
||||||
|
* find_with_related panic https://github.com/SeaQL/sea-orm/issues/374
|
||||||
|
* How to define rust type of TIMESTAMP? https://github.com/SeaQL/sea-orm/issues/344
|
||||||
|
* Add Table on the generated Column enum https://github.com/SeaQL/sea-orm/issues/356
|
||||||
|
|
||||||
|
### Merged PRs
|
||||||
|
* `Delete::many()` with `TableRef` by @billy1624 in https://github.com/SeaQL/sea-orm/pull/363
|
||||||
|
* Fix related & linked with enum columns by @billy1624 in https://github.com/SeaQL/sea-orm/pull/376
|
||||||
|
* Temporary Fix: Handling MySQL & SQLite timestamp columns by @billy1624 in https://github.com/SeaQL/sea-orm/pull/379
|
||||||
|
* Add feature to generate table Iden by @Sytten in https://github.com/SeaQL/sea-orm/pull/360
|
||||||
|
|
||||||
|
**Full Changelog**: https://github.com/SeaQL/sea-orm/compare/0.4.1...0.4.2
|
||||||
|
|
||||||
## 0.4.1 - 2021-12-05
|
## 0.4.1 - 2021-12-05
|
||||||
|
|
||||||
### Fixed Issues
|
### Fixed Issues
|
||||||
|
@ -3,7 +3,7 @@ members = [".", "sea-orm-macros", "sea-orm-codegen"]
|
|||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "sea-orm"
|
name = "sea-orm"
|
||||||
version = "0.4.1"
|
version = "0.4.2"
|
||||||
authors = ["Chris Tsang <tyt2y7@gmail.com>"]
|
authors = ["Chris Tsang <tyt2y7@gmail.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "🐚 An async & dynamic ORM for Rust"
|
description = "🐚 An async & dynamic ORM for Rust"
|
||||||
@ -29,7 +29,7 @@ futures = { version = "^0.3" }
|
|||||||
futures-util = { version = "^0.3" }
|
futures-util = { version = "^0.3" }
|
||||||
log = { version = "^0.4", optional = true }
|
log = { version = "^0.4", optional = true }
|
||||||
rust_decimal = { version = "^1", optional = true }
|
rust_decimal = { version = "^1", optional = true }
|
||||||
sea-orm-macros = { version = "^0.4.1", path = "sea-orm-macros", optional = true }
|
sea-orm-macros = { version = "^0.4.2", path = "sea-orm-macros", optional = true }
|
||||||
sea-query = { version = "^0.19.4", features = ["thread-safe"] }
|
sea-query = { version = "^0.19.4", features = ["thread-safe"] }
|
||||||
sea-strum = { version = "^0.21", features = ["derive", "sea-orm"] }
|
sea-strum = { version = "^0.21", features = ["derive", "sea-orm"] }
|
||||||
serde = { version = "^1.0", features = ["derive"] }
|
serde = { version = "^1.0", features = ["derive"] }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user