Skip to content

Commit

Permalink
prepare hotfix 1.2.1 (#225)
Browse files Browse the repository at this point in the history
* 1.2.1 in package.json

* add changelogs
  • Loading branch information
johannes-vogel authored Sep 8, 2023
1 parent 3781159 commit 9f1a12b
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 6 deletions.
6 changes: 6 additions & 0 deletions db-service/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@
- The format is based on [Keep a Changelog](http://keepachangelog.com/).
- This project adheres to [Semantic Versioning](http://semver.org/).

## Version 1.2.1 - 2023-09-08

### Fixed

- Association expansion in infix filters. #213

## Version 1.2.0 - 2023-09-06

### Added
Expand Down
2 changes: 1 addition & 1 deletion db-service/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cap-js/db-service",
"version": "1.2.0",
"version": "1.2.1",
"description": "CDS base database service",
"homepage": "https://github.com/cap-js/cds-dbs/tree/main/db-service#cds-base-database-service",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cds-dbs",
"version": "1.2.0",
"version": "1.2.1",
"description": "This is a monorepo for our SQL Database Services.",
"author": "SAP SE (https://www.sap.com)",
"workspaces": [
Expand Down
6 changes: 6 additions & 0 deletions postgres/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@
- The format is based on [Keep a Changelog](http://keepachangelog.com/).
- This project adheres to [Semantic Versioning](http://semver.org/).

## Version 1.2.1 - 2023-09-08

### Changed

- Bump minimum required version of `@cap-js/db-service`

## Version 1.2.0 - 2023-09-06

### Added
Expand Down
4 changes: 2 additions & 2 deletions postgres/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cap-js/postgres",
"version": "1.2.0",
"version": "1.2.1",
"description": "CDS database service for Postgres",
"homepage": "https://github.com/cap-js/cds-dbs/tree/main/postgres#cds-database-service-for-postgres",
"repository": {
Expand Down Expand Up @@ -31,7 +31,7 @@
"start": "docker-compose -f pg-stack.yml up -d"
},
"dependencies": {
"@cap-js/db-service": "^1.2.0",
"@cap-js/db-service": "^1.2.1",
"pg": "^8"
},
"peerDependencies": {
Expand Down
6 changes: 6 additions & 0 deletions sqlite/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@
- The format is based on [Keep a Changelog](http://keepachangelog.com/).
- This project adheres to [Semantic Versioning](http://semver.org/).

## Version 1.2.1 - 2023-09-08

### Fixed

- Adapt implementation to comply with implication of SQLite version 3.43 which is included in `better-sqlite3@8.6.0`. #210

## Version 1.2.0 - 2023-09-06

### Changed
Expand Down
4 changes: 2 additions & 2 deletions sqlite/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cap-js/sqlite",
"version": "1.2.0",
"version": "1.2.1",
"description": "CDS database service for SQLite",
"homepage": "https://github.com/cap-js/cds-dbs/tree/main/sqlite#cds-database-service-for-sqlite",
"repository": {
Expand Down Expand Up @@ -30,7 +30,7 @@
"test": "jest --silent"
},
"dependencies": {
"@cap-js/db-service": "^1.2.0",
"@cap-js/db-service": "^1.2.1",
"better-sqlite3": "^8"
},
"peerDependencies": {
Expand Down

0 comments on commit 9f1a12b

Please sign in to comment.