Skip to content

Commit dc6321f

Browse files
committed
bumo sqlite and postgres
1 parent d721c14 commit dc6321f

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

guides/multitenancy/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ In case of **CAP Node.js** projects, the `cds add multitenancy` command...
8484
"express": "^4"
8585
},
8686
"devDependencies": {
87-
"@cap-js/sqlite": "^2"
87+
"@cap-js/sqlite": "^3"
8888
},
8989
"engines": {
9090
"node": ">=24"
@@ -164,7 +164,7 @@ In case of **CAP Java** projects, the `cds add multitenancy` command...
164164
"@sap/xssec": "^4"
165165
},
166166
"devDependencies": {
167-
"@cap-js/sqlite": "^2"
167+
"@cap-js/sqlite": "^3"
168168
},
169169
"engines": {
170170
"node": ">=24"

guides/multitenancy/mtxs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ An MTX sidecar is a standard, yet minimal Node.js CAP project. By default it's a
178178
"express": "^4"
179179
},
180180
"devDependencies": {
181-
"@cap-js/sqlite": "^2"
181+
"@cap-js/sqlite": "^3"
182182
},
183183
"scripts": {
184184
"start": "cds-serve"

tools/apis/cds-build.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ The `cds.build.Plugin` class provides methods for copying or writing contents to
8383
```js [postgres/lib/build.js]
8484
await this.copy(path.join(this.task.src, 'package.json')).to('package.json');
8585
await this.write({
86-
dependencies: { '@sap/cds': '^9', '@cap-js/postgres': '^2' },
86+
dependencies: { '@sap/cds': '^10', '@cap-js/postgres': '^3' },
8787
scripts: { start: 'cds-deploy' }
8888
}).to('package.json');
8989
```
@@ -121,7 +121,7 @@ In the application's _package.json_, add a dependency to your plugin package to
121121
122122
```jsonc [package.json]
123123
"dependencies": {
124-
"@cap-js/postgres": "^2"
124+
"@cap-js/postgres": "^3"
125125
}
126126
```
127127

0 commit comments

Comments
 (0)