Skip to content

Commit 6404001

Browse files
chore: release main (#1027)
🤖 I have created a release *beep* *boop* --- <details><summary>db-service: 1.18.0</summary> ## [1.18.0](db-service-v1.17.2...db-service-v1.18.0) (2025-03-04) ### Added * query modifiers on expand `ref` are propagated to subquery ([#1049](#1049)) ([39fbadf](39fbadf)) * support query modifiers at leaf of from ref ([#1050](#1050)) ([500a666](500a666)) ### Fixed * `<expand>[@OData](https://github.com/odata).count` queries ([#966](#966)) ([6607a84](6607a84)) * align debug log format of stmt values ([#1052](#1052)) ([93af0fe](93af0fe)) * expand + groupby may return null, dont attach `.element` ([#1042](#1042)) ([cf2e0a2](cf2e0a2)) </details> <details><summary>sqlite: 1.9.0</summary> ## [1.9.0](sqlite-v1.8.0...sqlite-v1.9.0) (2025-03-04) ### Added * pass through of arbitrary client options ([#1024](#1024)) ([b090ccd](b090ccd)) </details> <details><summary>postgres: 1.12.0</summary> ## [1.12.0](postgres-v1.11.1...postgres-v1.12.0) (2025-03-04) ### Added * pass through of arbitrary client options ([#1024](#1024)) ([b090ccd](b090ccd)) ### Fixed * `<expand>[@OData](https://github.com/odata).count` queries ([#966](#966)) ([6607a84](6607a84)) </details> <details><summary>hana: 1.7.0</summary> ## [1.7.0](hana-v1.6.1...hana-v1.7.0) (2025-03-04) ### Added * pass through of arbitrary client options ([#1024](#1024)) ([b090ccd](b090ccd)) * support for `SELECT.hint` ([#1004](#1004)) ([2c6a763](2c6a763)) ### Fixed * `<expand>[@OData](https://github.com/odata).count` queries ([#966](#966)) ([6607a84](6607a84)) * Remove sub query alias check ([#953](#953)) ([e5a716c](e5a716c)) </details> --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --------- Co-authored-by: Johannes Vogel <[email protected]>
1 parent 6607a84 commit 6404001

9 files changed

+59
-11
lines changed

.release-please-manifest.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"db-service": "1.17.2",
3-
"sqlite": "1.8.0",
4-
"postgres": "1.11.1",
5-
"hana": "1.6.1"
2+
"db-service": "1.18.0",
3+
"sqlite": "1.9.0",
4+
"postgres": "1.12.0",
5+
"hana": "1.7.0"
66
}

db-service/CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,21 @@
44
- The format is based on [Keep a Changelog](http://keepachangelog.com/).
55
- This project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## [1.18.0](https://github.com/cap-js/cds-dbs/compare/db-service-v1.17.2...db-service-v1.18.0) (2025-03-04)
8+
9+
10+
### Added
11+
12+
* query modifiers on expand `ref` are propagated to subquery ([#1049](https://github.com/cap-js/cds-dbs/issues/1049)) ([39fbadf](https://github.com/cap-js/cds-dbs/commit/39fbadf25a874f810ac2795f2e6b0a46c3678058))
13+
* support query modifiers at leaf of from ref ([#1050](https://github.com/cap-js/cds-dbs/issues/1050)) ([500a666](https://github.com/cap-js/cds-dbs/commit/500a666a9a054dd72d6ec8ccba0c6a6ddc263cd3))
14+
15+
16+
### Fixed
17+
18+
* `<expand>[@odata](https://github.com/odata).count` queries ([#966](https://github.com/cap-js/cds-dbs/issues/966)) ([6607a84](https://github.com/cap-js/cds-dbs/commit/6607a8404aa70f2f3f7c6c65c7e9b1c324a5230b))
19+
* align debug log format of stmt values ([#1052](https://github.com/cap-js/cds-dbs/issues/1052)) ([93af0fe](https://github.com/cap-js/cds-dbs/commit/93af0fe5f93a0c1b91f592417b31fdb6266fdd79))
20+
* expand + groupby may return null, dont attach `.element` ([#1042](https://github.com/cap-js/cds-dbs/issues/1042)) ([cf2e0a2](https://github.com/cap-js/cds-dbs/commit/cf2e0a215e89f9055e28d9f0984adf292e220aee))
21+
722
## [1.17.2](https://github.com/cap-js/cds-dbs/compare/db-service-v1.17.1...db-service-v1.17.2) (2025-02-09)
823

924

db-service/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cap-js/db-service",
3-
"version": "1.17.2",
3+
"version": "1.18.0",
44
"description": "CDS base database service",
55
"homepage": "https://github.com/cap-js/cds-dbs/tree/main/db-service#cds-base-database-service",
66
"repository": {

hana/CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,20 @@
44
- The format is based on [Keep a Changelog](http://keepachangelog.com/).
55
- This project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## [1.7.0](https://github.com/cap-js/cds-dbs/compare/hana-v1.6.1...hana-v1.7.0) (2025-03-04)
8+
9+
10+
### Added
11+
12+
* pass through of arbitrary client options ([#1024](https://github.com/cap-js/cds-dbs/issues/1024)) ([b090ccd](https://github.com/cap-js/cds-dbs/commit/b090ccda2dfd4fa535aa0fd5be9d2fc27531db05))
13+
* support for `SELECT.hint` ([#1004](https://github.com/cap-js/cds-dbs/issues/1004)) ([2c6a763](https://github.com/cap-js/cds-dbs/commit/2c6a7634450047cab22322abb7312f8f3d432cdf))
14+
15+
16+
### Fixed
17+
18+
* `<expand>[@odata](https://github.com/odata).count` queries ([#966](https://github.com/cap-js/cds-dbs/issues/966)) ([6607a84](https://github.com/cap-js/cds-dbs/commit/6607a8404aa70f2f3f7c6c65c7e9b1c324a5230b))
19+
* Remove sub query alias check ([#953](https://github.com/cap-js/cds-dbs/issues/953)) ([e5a716c](https://github.com/cap-js/cds-dbs/commit/e5a716c6133be92810800231ba14fe6f33a2597b))
20+
721
## [1.6.1](https://github.com/cap-js/cds-dbs/compare/hana-v1.6.0...hana-v1.6.1) (2025-02-04)
822

923

hana/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cap-js/hana",
3-
"version": "1.6.1",
3+
"version": "1.7.0",
44
"description": "CDS database service for SAP HANA",
55
"homepage": "https://cap.cloud.sap/",
66
"keywords": [
@@ -23,7 +23,7 @@
2323
"start:hxe": "cd ./tools/docker/hxe/ && ./start.sh"
2424
},
2525
"dependencies": {
26-
"@cap-js/db-service": "^1.17.0",
26+
"@cap-js/db-service": "^1.18.0",
2727
"hdb": "^0.19.5"
2828
},
2929
"peerDependencies": {

postgres/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@
44
- The format is based on [Keep a Changelog](http://keepachangelog.com/).
55
- This project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## [1.12.0](https://github.com/cap-js/cds-dbs/compare/postgres-v1.11.1...postgres-v1.12.0) (2025-03-04)
8+
9+
10+
### Added
11+
12+
* pass through of arbitrary client options ([#1024](https://github.com/cap-js/cds-dbs/issues/1024)) ([b090ccd](https://github.com/cap-js/cds-dbs/commit/b090ccda2dfd4fa535aa0fd5be9d2fc27531db05))
13+
14+
15+
### Fixed
16+
17+
* `<expand>[@odata](https://github.com/odata).count` queries ([#966](https://github.com/cap-js/cds-dbs/issues/966)) ([6607a84](https://github.com/cap-js/cds-dbs/commit/6607a8404aa70f2f3f7c6c65c7e9b1c324a5230b))
18+
719
## [1.11.1](https://github.com/cap-js/cds-dbs/compare/postgres-v1.11.0...postgres-v1.11.1) (2025-02-09)
820

921

postgres/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cap-js/postgres",
3-
"version": "1.11.1",
3+
"version": "1.12.0",
44
"description": "CDS database service for Postgres",
55
"homepage": "https://github.com/cap-js/cds-dbs/tree/main/postgres#cds-database-service-for-postgres",
66
"repository": {
@@ -27,7 +27,7 @@
2727
"start": "docker compose -f pg-stack.yml up -d"
2828
},
2929
"dependencies": {
30-
"@cap-js/db-service": "^1.17.0",
30+
"@cap-js/db-service": "^1.18.0",
3131
"pg": "^8"
3232
},
3333
"peerDependencies": {

sqlite/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@
44
- The format is based on [Keep a Changelog](http://keepachangelog.com/).
55
- This project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## [1.9.0](https://github.com/cap-js/cds-dbs/compare/sqlite-v1.8.0...sqlite-v1.9.0) (2025-03-04)
8+
9+
10+
### Added
11+
12+
* pass through of arbitrary client options ([#1024](https://github.com/cap-js/cds-dbs/issues/1024)) ([b090ccd](https://github.com/cap-js/cds-dbs/commit/b090ccda2dfd4fa535aa0fd5be9d2fc27531db05))
13+
714
## [1.8.0](https://github.com/cap-js/cds-dbs/compare/sqlite-v1.7.8...sqlite-v1.8.0) (2025-01-28)
815

916

sqlite/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cap-js/sqlite",
3-
"version": "1.8.0",
3+
"version": "1.9.0",
44
"description": "CDS database service for SQLite",
55
"homepage": "https://github.com/cap-js/cds-dbs/tree/main/sqlite#cds-database-service-for-sqlite",
66
"repository": {
@@ -26,7 +26,7 @@
2626
"test": "cds-test"
2727
},
2828
"dependencies": {
29-
"@cap-js/db-service": "^1.17.0",
29+
"@cap-js/db-service": "^1.18.0",
3030
"better-sqlite3": "^11.0.0"
3131
},
3232
"peerDependencies": {

0 commit comments

Comments
 (0)