From 4b5fd9388e81c9273a74ee7e2c6d2d6d7aac2e7b Mon Sep 17 00:00:00 2001 From: Chris Tsang Date: Thu, 14 Dec 2023 17:06:51 +0000 Subject: [PATCH] Cleanup feature flags --- .github/workflows/rust.yml | 2 +- CHANGELOG.md | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 60ec6c8fc..73ba4ce7e 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -242,7 +242,7 @@ jobs: examples/poem_example, examples/proxy_gluesql_example, examples/rocket_example, - examples/rocket_okapi_example, + # examples/rocket_okapi_example, examples/salvo_example, examples/seaography_example, examples/tonic_example, diff --git a/CHANGELOG.md b/CHANGELOG.md index f413813ea..823e1da0f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,9 +7,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## 0.12.10 - 2023-12-14 +### New Features + * [sea-orm-macro] Comment attribute for Entity (`#[sea_orm(comment = "action")]`); `create_table_from_entity` supports comment https://github.com/SeaQL/sea-orm/pull/2009 * Added "proxy" (feature flag `proxy`) to database backend https://github.com/SeaQL/sea-orm/pull/1881, https://github.com/SeaQL/sea-orm/pull/2000 +### Upgrades + +* Updated `sea-query` to `0.30.5` https://github.com/SeaQL/sea-query/releases/tag/0.30.5 + ## 0.12.9 - 2023-12-08 ### Enhancements