From ae4bb0e9a37b826be0fe49b5991cd3c7b7e2f6bb Mon Sep 17 00:00:00 2001 From: chgeo <7470719+chgeo@users.noreply.github.com> Date: Thu, 2 Jul 2026 14:10:12 +0000 Subject: [PATCH] Update CLI texts --- tools/assets/help/cds-add.out.md | 29 +++++++++++++++---- .../assets/help/cds-env-ls-requires-db.out.md | 2 ++ tools/assets/help/cds-env-requires-db.out.md | 2 +- .../help/cds-eval-env-requires-db.out.md | 2 +- tools/assets/help/cds-init.out.md | 9 ++++-- tools/assets/help/cds-version-md.out.md | 12 ++++---- tools/assets/help/cds-version.out.md | 12 ++++---- 7 files changed, 45 insertions(+), 23 deletions(-) diff --git a/tools/assets/help/cds-add.out.md b/tools/assets/help/cds-add.out.md index 078f062199..0a53040b55 100644 --- a/tools/assets/help/cds-add.out.md +++ b/tools/assets/help/cds-add.out.md @@ -12,7 +12,7 @@ completion - shell completion for cds commands java - creates a Java-based project nodejs - creates a Node.js-based project - esm - ESM-compatible Node.js project + cjs - CommonJS-compatible Node.js project typer - type generation for CDS models typescript - minimum configuration for a bare TypeScript project extension - extension project @@ -40,14 +40,17 @@ approuter - dynamic routing using @sap/approuter local-messaging - messaging via local event bus file-based-messaging - messaging via file system - enterprise-messaging - messaging via SAP Enterprise Messaging - enterprise-messaging-shared - messaging via shared SAP Enterprise Messaging + enterprise-messaging - messaging via SAP Event Mesh + enterprise-messaging-shared - messaging via shared SAP Event Mesh + event-mesh - messaging via Event Mesh of SAP Integration Suite + event-mesh-shared - messaging via shared Event Mesh of SAP Integration Suite redis-messaging - messaging via Redis kafka - messaging via Apache Kafka attachments - SAP BTP Object Store Service malware-scanner - SAP BTP Malware Scanning Service connectivity - SAP BTP Connectivity Service destination - SAP BTP Destination Service + ai - SAP BTP AI Core html5-repo - SAP BTP HTML5 Application Repository app-frontend - SAP BTP Application Frontend service portal - SAP BTP Portal Service @@ -146,6 +149,20 @@ Use CloudEvents formatting. + cds add event-mesh + + --cloudevents | -c + + Use CloudEvents formatting. + + + cds add event-mesh-shared + + --cloudevents | -c + + Use CloudEvents formatting. + + cds add extension --base | -p @@ -202,7 +219,7 @@ --into | -i - Name of the app folder in 'app/'. Example: 'catalog' → 'app/catalog'. + Name of the app folder in 'app/'. Example: 'catalog' → 'app/catalog'. Omit for a single-UI scenario where the Vite app sits directly in 'app/'. cds add test @@ -222,7 +239,7 @@ --into | -i - Name of the app folder in 'app/'. Example: 'catalog' → 'app/catalog'. + Name of the app folder in 'app/'. Example: 'catalog' → 'app/catalog'. Omit for a single-UI scenario where the Vite app sits directly in 'app/'. cds add xsuaa @@ -237,7 +254,7 @@ cds add multitenancy,hana,xsuaa cds add data --filter my.namespace.MyEntity cds add mta - cds add helm + cds add kyma SEE ALSO cds init diff --git a/tools/assets/help/cds-env-ls-requires-db.out.md b/tools/assets/help/cds-env-ls-requires-db.out.md index 25046172c2..a1a3a4d47d 100644 --- a/tools/assets/help/cds-env-ls-requires-db.out.md +++ b/tools/assets/help/cds-env-ls-requires-db.out.md @@ -6,5 +6,7 @@ requires.db.credentials.url = ':memory:' requires.db.data = [ 'db/data', 'db/csv', 'test/data' ] requires.db.impl = '@cap-js/sqlite' requires.db.kind = 'sqlite' +requires.db.pool.evictionRunIntervalMillis = 0 requires.db.pool.max = 1 +requires.db.pool.min = 1 diff --git a/tools/assets/help/cds-env-requires-db.out.md b/tools/assets/help/cds-env-requires-db.out.md index a5e746ffa4..01de442db8 100644 --- a/tools/assets/help/cds-env-requires-db.out.md +++ b/tools/assets/help/cds-env-requires-db.out.md @@ -6,7 +6,7 @@ impl: '@cap-js/sqlite', credentials: { url: ':memory:' }, data: [ 'db/data', 'db/csv', 'test/data' ], - pool: { max: 1 }, + pool: { evictionRunIntervalMillis: 0, min: 1, max: 1 }, kind: 'sqlite' } diff --git a/tools/assets/help/cds-eval-env-requires-db.out.md b/tools/assets/help/cds-eval-env-requires-db.out.md index e8d86ddace..ead691c88f 100644 --- a/tools/assets/help/cds-eval-env-requires-db.out.md +++ b/tools/assets/help/cds-eval-env-requires-db.out.md @@ -6,7 +6,7 @@ impl: '@cap-js/sqlite', credentials: { url: ':memory:' }, data: [ 'db/data', 'db/csv', 'test/data' ], - pool: { max: 1 }, + pool: { evictionRunIntervalMillis: 0, min: 1, max: 1 }, kind: 'sqlite' } diff --git a/tools/assets/help/cds-init.out.md b/tools/assets/help/cds-init.out.md index 660e5beef3..5a1385f11f 100644 --- a/tools/assets/help/cds-init.out.md +++ b/tools/assets/help/cds-init.out.md @@ -17,7 +17,7 @@ completion - shell completion for cds commands java - creates a Java-based project nodejs - creates a Node.js-based project - esm - ESM-compatible Node.js project + cjs - CommonJS-compatible Node.js project typer - type generation for CDS models typescript - minimum configuration for a bare TypeScript project extension - extension project @@ -45,14 +45,17 @@ approuter - dynamic routing using @sap/approuter local-messaging - messaging via local event bus file-based-messaging - messaging via file system - enterprise-messaging - messaging via SAP Enterprise Messaging - enterprise-messaging-shared - messaging via shared SAP Enterprise Messaging + enterprise-messaging - messaging via SAP Event Mesh + enterprise-messaging-shared - messaging via shared SAP Event Mesh + event-mesh - messaging via Event Mesh of SAP Integration Suite + event-mesh-shared - messaging via shared Event Mesh of SAP Integration Suite redis-messaging - messaging via Redis kafka - messaging via Apache Kafka attachments - SAP BTP Object Store Service malware-scanner - SAP BTP Malware Scanning Service connectivity - SAP BTP Connectivity Service destination - SAP BTP Destination Service + ai - SAP BTP AI Core html5-repo - SAP BTP HTML5 Application Repository app-frontend - SAP BTP Application Frontend service portal - SAP BTP Portal Service diff --git a/tools/assets/help/cds-version-md.out.md b/tools/assets/help/cds-version-md.out.md index e86a16ddc0..2e4e8b5e98 100644 --- a/tools/assets/help/cds-version-md.out.md +++ b/tools/assets/help/cds-version-md.out.md @@ -4,15 +4,15 @@ | Package | Version | Location | | -------------------- | ------- | ------------------------------------------------------------------ | - | @sap/cds-dk (global) | 9.9.3 | .../node_modules/@sap/cds-dk | - | @sap/cds | 9.9.1 | .../node_modules/@sap/cds | - | @sap/cds-compiler | 6.9.3 | .../node_modules/@sap/cds-compiler | + | @sap/cds-dk (global) | 10.0.3 | .../node_modules/@sap/cds-dk | + | @sap/cds | 10.0.3 | .../node_modules/@sap/cds | + | @sap/cds-compiler | 7.0.1 | .../node_modules/@sap/cds-compiler | | @sap/cds-fiori | 2.3.0 | .../node_modules/@sap/cds-fiori | - | @cap-js/db-service | 2.11.0 | .../node_modules/@cap-js/db-service | - | @cap-js/sqlite | 2.4.0 | .../node_modules/@cap-js/sqlite | + | @cap-js/db-service | 3.0.1 | .../node_modules/@cap-js/db-service | + | @cap-js/sqlite | 3.0.2 | .../node_modules/@cap-js/sqlite | | cds.home | | .../node_modules/@sap/cds | | cds.root | | .../your-project | | npm root -l | | .../node_modules | | npm root -g | | .../node_modules | - | Node.js | 24.17.0 | .../bin/node | + | Node.js | 24.18.0 | .../bin/node | diff --git a/tools/assets/help/cds-version.out.md b/tools/assets/help/cds-version.out.md index d7fe161875..b3bb48b316 100644 --- a/tools/assets/help/cds-version.out.md +++ b/tools/assets/help/cds-version.out.md @@ -2,15 +2,15 @@
 > cds version
 
-  @sap/cds-dk (global)  9.9.3    .../node_modules/@sap/cds-dk 
-  @sap/cds              9.9.1    .../node_modules/@sap/cds                                            
-  @sap/cds-compiler     6.9.3    .../node_modules/@sap/cds-compiler                                   
+  @sap/cds-dk (global)  10.0.3   .../node_modules/@sap/cds-dk 
+  @sap/cds              10.0.3   .../node_modules/@sap/cds                                            
+  @sap/cds-compiler     7.0.1    .../node_modules/@sap/cds-compiler                                   
   @sap/cds-fiori        2.3.0    .../node_modules/@sap/cds-fiori                                      
-  @cap-js/db-service    2.11.0   .../node_modules/@cap-js/db-service                                  
-  @cap-js/sqlite        2.4.0    .../node_modules/@cap-js/sqlite                                      
+  @cap-js/db-service    3.0.1    .../node_modules/@cap-js/db-service                                  
+  @cap-js/sqlite        3.0.2    .../node_modules/@cap-js/sqlite                                      
   cds.home                       .../node_modules/@sap/cds                                            
   cds.root                       .../your-project                                                  
   npm root -l                    .../node_modules                                                     
   npm root -g                    .../node_modules             
-  Node.js               24.17.0  .../bin/node                     
+  Node.js               24.18.0  .../bin/node