From 42806eacad8b493e4a8c5f68dd6a4154f8a80bf5 Mon Sep 17 00:00:00 2001 From: CAP Bot <122624402+cap-bots@users.noreply.github.com> Date: Mon, 20 Nov 2023 14:26:34 +0100 Subject: [PATCH] chore: release main (#316) Co-authored-by: Johannes Vogel <31311694+johannes-vogel@users.noreply.github.com> --- .release-please-manifest.json | 6 +++--- db-service/CHANGELOG.md | 18 ++++++++++++++++++ db-service/package.json | 2 +- postgres/CHANGELOG.md | 12 ++++++++++++ postgres/package.json | 2 +- sqlite/CHANGELOG.md | 18 ++++++++++++++++++ sqlite/package.json | 2 +- 7 files changed, 54 insertions(+), 6 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 82ab567df..9d89e30e2 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,5 +1,5 @@ { - "db-service": "1.3.2", - "sqlite": "1.3.1", - "postgres": "1.3.1" + "db-service": "1.4.0", + "sqlite": "1.4.0", + "postgres": "1.4.0" } diff --git a/db-service/CHANGELOG.md b/db-service/CHANGELOG.md index 3faaf0415..9fad137bc 100644 --- a/db-service/CHANGELOG.md +++ b/db-service/CHANGELOG.md @@ -4,6 +4,24 @@ - The format is based on [Keep a Changelog](http://keepachangelog.com/). - This project adheres to [Semantic Versioning](http://semver.org/). +## [1.4.0](https://github.com/cap-js/cds-dbs/compare/db-service-v1.3.2...db-service-v1.4.0) (2023-11-20) + + +### Added + +* **`UPDATE`/`DELETE`:** Enable path expressions for improved data manipulation ([#325](https://github.com/cap-js/cds-dbs/issues/325)) ([94f0776](https://github.com/cap-js/cds-dbs/commit/94f077661cffad8f137dc692a2cb9b0ae5e4d75b)) +* **temporal data:** add time slice key to conflict clause ([#249](https://github.com/cap-js/cds-dbs/issues/249)) ([67b8edf](https://github.com/cap-js/cds-dbs/commit/67b8edf9b7f6b0fbab0010d7c93ed03a01e103ed)) +* use place holders for update and delete ([#323](https://github.com/cap-js/cds-dbs/issues/323)) ([81472b9](https://github.com/cap-js/cds-dbs/commit/81472b971183f701e401247611310be56745a87a)) + + +### Fixed + +* align time function behavior ([#322](https://github.com/cap-js/cds-dbs/issues/322)) ([c3ab40a](https://github.com/cap-js/cds-dbs/commit/c3ab40a007c105465349dd2f612178367b8e713a)) +* **calculated elements:** path expressions in `func.args` within `xpr` ([#321](https://github.com/cap-js/cds-dbs/issues/321)) ([cee25e3](https://github.com/cap-js/cds-dbs/commit/cee25e33cf289592a87779cfa34dddc53e467676)) +* Disconnect db service on shutdown ([#327](https://github.com/cap-js/cds-dbs/issues/327)) ([8471bda](https://github.com/cap-js/cds-dbs/commit/8471bda44fc030205abec45b1581b2cf6ed7c800)) +* non-fk access in filter conditions are properly rejected ([#336](https://github.com/cap-js/cds-dbs/issues/336)) ([4c948fe](https://github.com/cap-js/cds-dbs/commit/4c948fecead1de562e1583886516413e131a39aa)) +* **search:** check calculated columns at any depth ([#310](https://github.com/cap-js/cds-dbs/issues/310)) ([8fd6153](https://github.com/cap-js/cds-dbs/commit/8fd6153dfcd472a6d95c33faa58c4b3f96f485df)) + ## [1.3.2](https://github.com/cap-js/cds-dbs/compare/db-service-v1.3.1...db-service-v1.3.2) (2023-10-13) diff --git a/db-service/package.json b/db-service/package.json index 3329a62e5..7972cddca 100644 --- a/db-service/package.json +++ b/db-service/package.json @@ -1,6 +1,6 @@ { "name": "@cap-js/db-service", - "version": "1.3.2", + "version": "1.4.0", "description": "CDS base database service", "homepage": "https://github.com/cap-js/cds-dbs/tree/main/db-service#cds-base-database-service", "repository": { diff --git a/postgres/CHANGELOG.md b/postgres/CHANGELOG.md index 7e33909d7..1340afe8e 100644 --- a/postgres/CHANGELOG.md +++ b/postgres/CHANGELOG.md @@ -4,6 +4,18 @@ - The format is based on [Keep a Changelog](http://keepachangelog.com/). - This project adheres to [Semantic Versioning](http://semver.org/). +## [1.4.0](https://github.com/cap-js/cds-dbs/compare/postgres-v1.3.1...postgres-v1.4.0) (2023-11-20) + + +### Added + +* adapt build plugin implementation to new API ([#319](https://github.com/cap-js/cds-dbs/issues/319)) ([aec9966](https://github.com/cap-js/cds-dbs/commit/aec9966e54cd9900f85fe7406cbe38ec5c6fa4b9)) + + +### Fixed + +* align time function behavior ([#322](https://github.com/cap-js/cds-dbs/issues/322)) ([c3ab40a](https://github.com/cap-js/cds-dbs/commit/c3ab40a007c105465349dd2f612178367b8e713a)) + ## [1.3.1](https://github.com/cap-js/cds-dbs/compare/v1.3.0...v1.3.1) (2023-10-10) ### Fixed diff --git a/postgres/package.json b/postgres/package.json index c80f6576d..22ef73064 100644 --- a/postgres/package.json +++ b/postgres/package.json @@ -1,6 +1,6 @@ { "name": "@cap-js/postgres", - "version": "1.3.1", + "version": "1.4.0", "description": "CDS database service for Postgres", "homepage": "https://github.com/cap-js/cds-dbs/tree/main/postgres#cds-database-service-for-postgres", "repository": { diff --git a/sqlite/CHANGELOG.md b/sqlite/CHANGELOG.md index f35643aa0..dd789f71a 100644 --- a/sqlite/CHANGELOG.md +++ b/sqlite/CHANGELOG.md @@ -4,6 +4,24 @@ - The format is based on [Keep a Changelog](http://keepachangelog.com/). - This project adheres to [Semantic Versioning](http://semver.org/). +## [1.4.0](https://github.com/cap-js/cds-dbs/compare/sqlite-v1.3.1...sqlite-v1.4.0) (2023-11-20) + + +### Added + +* **temporal data:** add time slice key to conflict clause ([#249](https://github.com/cap-js/cds-dbs/issues/249)) ([67b8edf](https://github.com/cap-js/cds-dbs/commit/67b8edf9b7f6b0fbab0010d7c93ed03a01e103ed)) + + +### Fixed + +* align time function behavior ([#322](https://github.com/cap-js/cds-dbs/issues/322)) ([c3ab40a](https://github.com/cap-js/cds-dbs/commit/c3ab40a007c105465349dd2f612178367b8e713a)) +* date functions with null value ([#347](https://github.com/cap-js/cds-dbs/issues/347)) ([bdc8967](https://github.com/cap-js/cds-dbs/commit/bdc8967f07276acdb249dec42231d432e132e0d4)) + + +### Changed + +* upgrade to better-sqlite@9 ([#334](https://github.com/cap-js/cds-dbs/issues/334)) ([5184e41](https://github.com/cap-js/cds-dbs/commit/5184e4155ccd1a2945a1fc033204e24425d70341)) + ## [1.3.1](https://github.com/cap-js/cds-dbs/compare/v1.3.0...v1.3.1) (2023-10-10) ### Changed diff --git a/sqlite/package.json b/sqlite/package.json index 4fbbdd31f..c243f6660 100644 --- a/sqlite/package.json +++ b/sqlite/package.json @@ -1,6 +1,6 @@ { "name": "@cap-js/sqlite", - "version": "1.3.1", + "version": "1.4.0", "description": "CDS database service for SQLite", "homepage": "https://github.com/cap-js/cds-dbs/tree/main/sqlite#cds-database-service-for-sqlite", "repository": {