Upgrade tracing-subscriber dependency to 0.3.17 (#1609)

* Upgrade `tracing-subscriber` dependency to 0.3.17

* Revert "fix: `regex` dep should enable `unicode` feature (#1605)"

This reverts commit 41d9a853342155e0b7df4afb15990225b1c8a981.
This commit is contained in:
Billy Chan 2023-04-24 14:21:15 +08:00 committed by GitHub
parent 0bc6fdbc2b
commit 9ca01b3e7c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
12 changed files with 14 additions and 14 deletions

View File

@ -301,9 +301,9 @@ where
} }
``` ```
### Bug Fixes ### Upgrades
* [sea-orm-cli] `regex` dependency should have `unicode` feature enabled https://github.com/SeaQL/sea-orm/pull/1605 * Upgrade `tracing-subscriber` dependency to 0.3.17
## 0.11.2 - 2023-03-25 ## 0.11.2 - 2023-03-25

View File

@ -54,7 +54,7 @@ tokio = { version = "1.6", features = ["full"] }
actix-rt = { version = "2.2.0" } actix-rt = { version = "2.2.0" }
maplit = { version = "1" } maplit = { version = "1" }
rust_decimal_macros = { version = "1" } rust_decimal_macros = { version = "1" }
tracing-subscriber = { version = "0.3", features = ["env-filter"] } tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
sea-orm = { path = ".", features = ["mock", "debug-print", "tests-cfg", "postgres-array", "sea-orm-internal"] } sea-orm = { path = ".", features = ["mock", "debug-print", "tests-cfg", "postgres-array", "sea-orm-internal"] }
pretty_assertions = { version = "0.7" } pretty_assertions = { version = "0.7" }
time = { version = "0.3", features = ["macros"] } time = { version = "0.3", features = ["macros"] }

View File

@ -17,6 +17,6 @@ tera = "1.8.0"
dotenvy = "0.15" dotenvy = "0.15"
listenfd = "0.3.3" listenfd = "0.3.3"
serde = "1" serde = "1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] } tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
entity = { path = "../entity" } entity = { path = "../entity" }
migration = { path = "../migration" } migration = { path = "../migration" }

View File

@ -16,6 +16,6 @@ tera = "1.15.0"
dotenvy = "0.15" dotenvy = "0.15"
listenfd = "0.5" listenfd = "0.5"
serde = "1" serde = "1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] } tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
entity = { path = "../entity" } entity = { path = "../entity" }
migration = { path = "../migration" } migration = { path = "../migration" }

View File

@ -17,6 +17,6 @@ dotenvy = "0.15.6"
serde = "1.0.149" serde = "1.0.149"
serde_json = "1.0.89" serde_json = "1.0.89"
tera = "1.17.1" tera = "1.17.1"
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] } tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
entity = { path = "../entity" } entity = { path = "../entity" }
migration = { path = "../migration" } migration = { path = "../migration" }

View File

@ -7,7 +7,7 @@ edition = "2021"
poem-example-core = { path = "../core" } poem-example-core = { path = "../core" }
tokio = { version = "1.15.0", features = ["macros", "rt-multi-thread"] } tokio = { version = "1.15.0", features = ["macros", "rt-multi-thread"] }
poem = { version = "1.2.33", features = ["static-files"] } poem = { version = "1.2.33", features = ["static-files"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] } tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
serde = { version = "1", features = ["derive"] } serde = { version = "1", features = ["derive"] }
tera = "1.8.0" tera = "1.8.0"
dotenvy = "0.15" dotenvy = "0.15"

View File

@ -7,7 +7,7 @@ edition = "2021"
salvo-example-core = { path = "../core" } salvo-example-core = { path = "../core" }
tokio = { version = "1.15.0", features = ["macros", "rt-multi-thread"] } tokio = { version = "1.15.0", features = ["macros", "rt-multi-thread"] }
salvo = { version = "0.27", features = ["affix", "serve-static"] } salvo = { version = "0.27", features = ["affix", "serve-static"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] } tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
serde = { version = "1", features = ["derive"] } serde = { version = "1", features = ["derive"] }
tera = "1.8.0" tera = "1.8.0"
dotenvy = "0.15" dotenvy = "0.15"

View File

@ -14,7 +14,7 @@ anyhow = "1"
dotenvy = "0.15" dotenvy = "0.15"
futures-util = "0.3" futures-util = "0.3"
serde = "1" serde = "1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] } tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
[dependencies.sea-orm] [dependencies.sea-orm]
path = "../../" # remove this line in your own project path = "../../" # remove this line in your own project

View File

@ -14,7 +14,7 @@ anyhow = "1"
dotenvy = "0.15" dotenvy = "0.15"
futures-util = "0.3" futures-util = "0.3"
serde = "1" serde = "1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] } tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
[dependencies.sea-orm] [dependencies.sea-orm]
path = "../../" # remove this line in your own project path = "../../" # remove this line in your own project

View File

@ -10,5 +10,5 @@ publish = false
[dependencies] [dependencies]
sea-orm = { path = "../../", features = [ "sqlx-all", "runtime-tokio-native-tls", "debug-print" ] } sea-orm = { path = "../../", features = [ "sqlx-all", "runtime-tokio-native-tls", "debug-print" ] }
tokio = { version = "1", features = ["full"] } tokio = { version = "1", features = ["full"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] } tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
tracing = { version = "0.1" } tracing = { version = "0.1" }

View File

@ -40,11 +40,11 @@ async-std = { version = "1.9", default-features = false, features = ["attributes
sea-orm-codegen = { version = "=0.12.0", path = "../sea-orm-codegen", default-features = false, optional = true } sea-orm-codegen = { version = "=0.12.0", path = "../sea-orm-codegen", default-features = false, optional = true }
sea-schema = { version = "0.12.0-rc.1" } sea-schema = { version = "0.12.0-rc.1" }
sqlx = { version = "0.6", default-features = false, features = ["mysql", "postgres"], optional = true } sqlx = { version = "0.6", default-features = false, features = ["mysql", "postgres"], optional = true }
tracing-subscriber = { version = "0.3", default-features = false, features = ["env-filter", "fmt"] } tracing-subscriber = { version = "0.3.17", default-features = false, features = ["env-filter", "fmt"] }
tracing = { version = "0.1", default-features = false } tracing = { version = "0.1", default-features = false }
url = { version = "2.2", default-features = false } url = { version = "2.2", default-features = false }
chrono = { version = "0.4.20", default-features = false, features = ["clock"] } chrono = { version = "0.4.20", default-features = false, features = ["clock"] }
regex = { version = "1", default-features = false, features = ["unicode"] } regex = { version = "1", default-features = false }
git2 = { version = "0.16", default-features = false } git2 = { version = "0.16", default-features = false }
[dev-dependencies] [dev-dependencies]

View File

@ -27,7 +27,7 @@ sea-orm = { version = "0.12.0", path = "../", default-features = false, features
sea-orm-cli = { version = "0.12.0", path = "../sea-orm-cli", default-features = false, optional = true } sea-orm-cli = { version = "0.12.0", path = "../sea-orm-cli", default-features = false, optional = true }
sea-schema = { version = "0.12.0-rc.1" } sea-schema = { version = "0.12.0-rc.1" }
tracing = { version = "0.1", default-features = false, features = ["log"] } tracing = { version = "0.1", default-features = false, features = ["log"] }
tracing-subscriber = { version = "0.3", default-features = false, features = ["env-filter", "fmt"] } tracing-subscriber = { version = "0.3.17", default-features = false, features = ["env-filter", "fmt"] }
futures = { version = "0.3", default-features = false, features = ["std"] } futures = { version = "0.3", default-features = false, features = ["std"] }
[dev-dependencies] [dev-dependencies]