File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -30,24 +30,24 @@ jobs:
3030 # Publish packages
3131 - name : Publish db-service
3232 if : ${{ steps.release.outputs.db-service--release_created }}
33- run : npm publish --workspace db-service --access public --tag next
33+ run : npm publish --workspace db-service --access public
3434 env :
3535 NODE_AUTH_TOKEN : ${{secrets.npm_token}}
3636
3737 - name : Publish sqlite
3838 if : ${{ steps.release.outputs.sqlite--release_created }}
39- run : npm publish --workspace sqlite --access public --tag next
39+ run : npm publish --workspace sqlite --access public
4040 env :
4141 NODE_AUTH_TOKEN : ${{secrets.npm_token}}
4242
4343 - name : Publish postgres
4444 if : ${{ steps.release.outputs.postgres--release_created }}
45- run : npm publish --workspace postgres --access public --tag next
45+ run : npm publish --workspace postgres --access public
4646 env :
4747 NODE_AUTH_TOKEN : ${{secrets.npm_token}}
4848
4949 - name : Publish SAP HANA
5050 if : ${{ steps.release.outputs.hana--release_created }}
51- run : npm publish --workspace hana --access public --tag next
51+ run : npm publish --workspace hana --access public
5252 env :
5353 NODE_AUTH_TOKEN : ${{secrets.npm_token}}
Original file line number Diff line number Diff line change 11{
2- "db-service" : " 2.0.0 " ,
3- "sqlite" : " 2.0.0 " ,
4- "postgres" : " 2.0.0 " ,
5- "hana" : " 2.0.0 "
2+ "db-service" : " 2.0.1 " ,
3+ "sqlite" : " 2.0.1 " ,
4+ "postgres" : " 2.0.1 " ,
5+ "hana" : " 2.0.1 "
66}
Original file line number Diff line number Diff line change 44- The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ ) .
55- This project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
66
7+ ## [ 2.0.1] ( https://github.com/cap-js/cds-dbs/compare/db-service-v2.0.0...db-service-v2.0.1 ) (2025-05-27)
8+
9+
10+ ### Fixed
11+
12+ * ** ` search ` :** do not search on non-projected elements ([ #1198 ] ( https://github.com/cap-js/cds-dbs/issues/1198 ) ) ([ 73d9e67] ( https://github.com/cap-js/cds-dbs/commit/73d9e67b1bc7d7727c04b4577cb73f4daaed852b ) )
13+ * add shortcut for empty UPDATE.data ([ #1203 ] ( https://github.com/cap-js/cds-dbs/issues/1203 ) ) ([ cf991ff] ( https://github.com/cap-js/cds-dbs/commit/cf991ff8179efee6a4621d2a2bd8bf6265e58893 ) )
14+ * hierarchies in quoted mode ([ 3465cba] ( https://github.com/cap-js/cds-dbs/commit/3465cbab579d4560d12d3b230c55b746d4d3f5a5 ) )
15+ * only sort by locale if locale is set ([ #1193 ] ( https://github.com/cap-js/cds-dbs/issues/1193 ) ) ([ 3465cba] ( https://github.com/cap-js/cds-dbs/commit/3465cbab579d4560d12d3b230c55b746d4d3f5a5 ) )
16+
17+
18+ ### Changed
19+
20+ * remove stream_compat ([ #1139 ] ( https://github.com/cap-js/cds-dbs/issues/1139 ) ) ([ #1144 ] ( https://github.com/cap-js/cds-dbs/issues/1144 ) ) ([ 1b8b2d9] ( https://github.com/cap-js/cds-dbs/commit/1b8b2d9539cd97be2cef088c98d88ef9ec7dd1bf ) )
21+
722## [ 2.0.0] ( https://github.com/cap-js/cds-dbs/compare/db-service-v1.20.0...db-service-v2.0.0 ) (2025-05-07)
823
924
Original file line number Diff line number Diff line change 11{
22 "name" : " @cap-js/db-service" ,
3- "version" : " 2.0.0 " ,
3+ "version" : " 2.0.1 " ,
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" : {
Original file line number Diff line number Diff line change 44- The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ ) .
55- This project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
66
7+ ## [ 2.0.1] ( https://github.com/cap-js/cds-dbs/compare/hana-v2.0.0...hana-v2.0.1 ) (2025-05-27)
8+
9+
10+ ### Added
11+
12+ * set NOW as session var in addition to $now ([ #1201 ] ( https://github.com/cap-js/cds-dbs/issues/1201 ) ) ([ 33d4814] ( https://github.com/cap-js/cds-dbs/commit/33d4814bfa77714a18d826b95c3c27b6f865e40f ) )
13+
714## [ 2.0.0] ( https://github.com/cap-js/cds-dbs/compare/hana-v1.9.0...hana-v2.0.0 ) (2025-05-07)
815
916
Original file line number Diff line number Diff line change 11{
22 "name" : " @cap-js/hana" ,
3- "version" : " 2.0.0 " ,
3+ "version" : " 2.0.1 " ,
44 "description" : " CDS database service for SAP HANA" ,
55 "homepage" : " https://cap.cloud.sap/" ,
66 "keywords" : [
Original file line number Diff line number Diff line change 44- The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ ) .
55- This project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
66
7+ ## [ 2.0.1] ( https://github.com/cap-js/cds-dbs/compare/postgres-v2.0.0...postgres-v2.0.1 ) (2025-05-27)
8+
9+
10+ ### ⚠ BREAKING CHANGES
11+
12+ * remove PG ` ? ` placeholder replacement ([ #1180 ] ( https://github.com/cap-js/cds-dbs/issues/1180 ) )
13+
14+
15+ ### Fixed
16+
17+ * Enable mixing stream and normal parameters in queries ([ #1179 ] ( https://github.com/cap-js/cds-dbs/issues/1179 ) ) ([ 7ee8083] ( https://github.com/cap-js/cds-dbs/commit/7ee808365426072250dd6de87abd11215f44561a ) )
18+ * hierarchies in quoted mode ([ 3465cba] ( https://github.com/cap-js/cds-dbs/commit/3465cbab579d4560d12d3b230c55b746d4d3f5a5 ) )
19+ * only sort by locale if locale is set ([ #1193 ] ( https://github.com/cap-js/cds-dbs/issues/1193 ) ) ([ 3465cba] ( https://github.com/cap-js/cds-dbs/commit/3465cbab579d4560d12d3b230c55b746d4d3f5a5 ) )
20+
21+
22+ ### Changed
23+
24+ * remove PG ` ? ` placeholder replacement ([ #1180 ] ( https://github.com/cap-js/cds-dbs/issues/1180 ) ) ([ a1e0bd9] ( https://github.com/cap-js/cds-dbs/commit/a1e0bd9fe8501c284d8cbfc8d79d4dddda34c087 ) )
25+ * remove stream_compat ([ #1139 ] ( https://github.com/cap-js/cds-dbs/issues/1139 ) ) ([ #1144 ] ( https://github.com/cap-js/cds-dbs/issues/1144 ) ) ([ 1b8b2d9] ( https://github.com/cap-js/cds-dbs/commit/1b8b2d9539cd97be2cef088c98d88ef9ec7dd1bf ) )
26+
727## [ 2.0.0] ( https://github.com/cap-js/cds-dbs/compare/postgres-v1.14.0...postgres-v2.0.0 ) (2025-05-07)
828
929
Original file line number Diff line number Diff line change 11{
22 "name" : " @cap-js/postgres" ,
3- "version" : " 2.0.0 " ,
3+ "version" : " 2.0.1 " ,
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" : {
Original file line number Diff line number Diff line change 44- The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ ) .
55- This project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
66
7+ ## [ 2.0.1] ( https://github.com/cap-js/cds-dbs/compare/sqlite-v2.0.0...sqlite-v2.0.1 ) (2025-05-27)
8+
9+
10+ ### Changed
11+
12+ * remove stream_compat ([ #1139 ] ( https://github.com/cap-js/cds-dbs/issues/1139 ) ) ([ #1144 ] ( https://github.com/cap-js/cds-dbs/issues/1144 ) ) ([ 1b8b2d9] ( https://github.com/cap-js/cds-dbs/commit/1b8b2d9539cd97be2cef088c98d88ef9ec7dd1bf ) )
13+
714## [ 2.0.0] ( https://github.com/cap-js/cds-dbs/compare/sqlite-v1.11.0...sqlite-v2.0.0 ) (2025-05-07)
815
916
Original file line number Diff line number Diff line change 11{
22 "name" : " @cap-js/sqlite" ,
3- "version" : " 2.0.0 " ,
3+ "version" : " 2.0.1 " ,
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" : {
You can’t perform that action at this time.
0 commit comments