From a8dd4da9ae8a44da87c1df5cae93122ea3f6ef35 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 4 Apr 2024 23:58:00 +0400 Subject: [PATCH] chore(2.x): release 2.10.0 (#190) * chore(2.x): release 2.10.0 * Update changelog --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: roxblnfk --- .github/.release-please-manifest.json | 2 +- CHANGELOG.md | 15 +++++++++++++++ 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/.github/.release-please-manifest.json b/.github/.release-please-manifest.json index 6bb50d96..5b009ae8 100644 --- a/.github/.release-please-manifest.json +++ b/.github/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "2.9.0" + ".": "2.10.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c0fd915..5ab313ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [2.10.0](https://github.com/cycle/database/compare/2.9.0...v2.10.0) (2024-04-04) + +### Features +- Add support JSON columns in `orderBy` statement by @msmakouz (#184) +- Add `mediumText` column type by @msmakouz (#178) +- Add support for the `NOT` operator in SQL queries. Add new methods `whereNot`, `andWhereNot`, and `orWhereNot` by @msmakouz (#185) + +### Bug Fixes +- Fixed caching of SQL insert query with Fragment values by @msmakouz (#177) +- Fixed detection of enum values in PostgreSQL when a enum field has only one value by @msmakouz (#181) +- Fix psalm type for `DatabaseInterface::transaction()` method by @roxblnfk (#186) + +### Continuous Integration +- Automate changelog and release management @lotyp (#189) + ## [2.9.0](https://github.com/cycle/database/compare/2.8.1...2.9.0) (2024-03-27) ### Features