Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions guides/databases/postgres.md
Original file line number Diff line number Diff line change
Expand Up @@ -322,8 +322,8 @@ cds build --production
```json
{
"dependencies": {
"@sap/cds": "^9",
"@cap-js/postgres": "^2"
"@sap/cds": "^10",
"@cap-js/postgres": "^3"
},
"scripts": {
"start": "cds-deploy"
Expand Down
4 changes: 2 additions & 2 deletions guides/extensibility/customization.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ npm add @sap/cds-mtxs
"version": "1.0.0",
"dependencies": {
"@capire/common": "*",
"@sap/cds": ">=9",
"@sap/cds-mtxs": "^3"
"@sap/cds": ">=10",

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"@sap/cds": ">=10",
"@sap/cds": "^10",

why >= in this instance?

"@sap/cds-mtxs": "^4"
},
"cds": {
"requires": {
Expand Down
8 changes: 4 additions & 4 deletions guides/extensibility/feature-toggles.md
Original file line number Diff line number Diff line change
Expand Up @@ -250,8 +250,8 @@ An MTX sidecar is a standard, yet minimalistic Node.js CAP project. By default i
{
"name": "mtx-sidecar", "version": "0.0.0",
"dependencies": {
"@sap/cds": "^9",
"@sap/cds-mtxs": "^3",
"@sap/cds": "^10",
"@sap/cds-mtxs": "^4",
"express": "^4"

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"express": "^4"

},
"cds": {
Expand All @@ -273,8 +273,8 @@ An MTX sidecar is a standard, yet minimalistic Node.js CAP project. By default i
{
"name": "mtx-sidecar", "version": "0.0.0",
"dependencies": {
"@sap/cds": "^9",
"@sap/cds-mtxs": "^3",
"@sap/cds": "^10",
"@sap/cds-mtxs": "^4",
"express": "^4"

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"express": "^4"

},
"cds": {
Expand Down
22 changes: 11 additions & 11 deletions guides/multitenancy/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ In case of **CAP Node.js** projects, the `cds add multitenancy` command...
```jsonc
{
"dependencies": {
"@sap/cds-mtxs": "^3"
"@sap/cds-mtxs": "^4"
},
}
```
Expand Down Expand Up @@ -77,17 +77,17 @@ In case of **CAP Node.js** projects, the `cds add multitenancy` command...
{
"name": "bookshop-mtx",
"dependencies": {
"@cap-js/hana": "^2",
"@sap/cds": "^9",
"@sap/cds-mtxs": "^3",
"@cap-js/hana": "^3",
"@sap/cds": "^10",
"@sap/cds-mtxs": "^4",
"@sap/xssec": "^4",
"express": "^4"

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"express": "^4"

},
"devDependencies": {
"@cap-js/sqlite": "^2"
"@cap-js/sqlite": "^3"
},
"engines": {
"node": ">=20"
"node": ">=24"
},
"scripts": {
"start": "cds-serve"
Expand Down Expand Up @@ -158,16 +158,16 @@ In case of **CAP Java** projects, the `cds add multitenancy` command...
{
"name": "bookshop-mtx",
"dependencies": {
"@cap-js/hana": "^2",
"@sap/cds": "^9",
"@sap/cds-mtxs": "^3",
"@cap-js/hana": "^3",
"@sap/cds": "^10",
"@sap/cds-mtxs": "^4",
"@sap/xssec": "^4"
},
"devDependencies": {
"@cap-js/sqlite": "^2"
"@cap-js/sqlite": "^3"
},
"engines": {
"node": ">=20"
"node": ">=24"
},
"scripts": {
"start": "cds-serve",
Expand Down
8 changes: 4 additions & 4 deletions guides/multitenancy/mtxs.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,14 +171,14 @@ An MTX sidecar is a standard, yet minimal Node.js CAP project. By default it's a
{
"name": "bookshop-mtx", "version": "0.0.0",
"dependencies": {
"@sap/cds": "^9",
"@cap-js/hana": "^2",
"@sap/cds-mtxs": "^3",
"@sap/cds": "^10",
"@cap-js/hana": "^3",
"@sap/cds-mtxs": "^4",
"@sap/xssec": "^4",
"express": "^4"

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"express": "^4"

},
"devDependencies": {
"@cap-js/sqlite": "^2"
"@cap-js/sqlite": "^3"
},
"scripts": {
"start": "cds-serve"
Expand Down
2 changes: 1 addition & 1 deletion java/developing-applications/building.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ It basically helps to control the dependency versions of the artifacts and shoul

```xml
<properties>
<cds.services.version>2.6.0</cds.services.version>
<cds.services.version>5.0.0</cds.services.version>
</properties>

<dependencyManagement>
Expand Down
4 changes: 2 additions & 2 deletions tools/apis/cds-build.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ The `cds.build.Plugin` class provides methods for copying or writing contents to
```js [postgres/lib/build.js]
await this.copy(path.join(this.task.src, 'package.json')).to('package.json');
await this.write({
dependencies: { '@sap/cds': '^9', '@cap-js/postgres': '^2' },
dependencies: { '@sap/cds': '^10', '@cap-js/postgres': '^3' },
scripts: { start: 'cds-deploy' }
}).to('package.json');
```
Expand Down Expand Up @@ -121,7 +121,7 @@ In the application's _package.json_, add a dependency to your plugin package to

```jsonc [package.json]
"dependencies": {
"@cap-js/postgres": "^2"
"@cap-js/postgres": "^3"
}
```

Expand Down
Loading