@sap/datasphere-cli 2025.20.0 → 2025.24.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -5,6 +5,22 @@ All notable changes to this project SAP Datasphere Command-Line Interface (DS CL
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## 2025.24.0
9
+
10
+ ### Added
11
+
12
+ - Support for Node v23 and v24
13
+
14
+ ### Fixed
15
+
16
+ - Changed confirmation prompts to default to "no" instead of "yes" for safer handling of destructive operations.
17
+
18
+ ## 2025.21.0
19
+
20
+ ### Fixed
21
+
22
+ - Fixed ESM dynamic import issues on Windows by converting file paths to proper file URLs using `pathToFileURL()`.
23
+
8
24
  ## 2025.20.0
9
25
 
10
26
  ### Changed
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Command-Line Interface (CLI) for SAP Datasphere.
4
4
 
5
- [![Node Version](https://img.shields.io/badge/node-20.xx.x-brightgreen)](https://nodejs.org/dist/latest-v20.x/docs/api/#) [![Node Version](https://img.shields.io/badge/node-21.xx.x-brightgreen)](https://nodejs.org/dist/latest-v21.x/docs/api/#) [![Node Version](https://img.shields.io/badge/node-22.xx.x-brightgreen)](https://nodejs.org/dist/latest-v22.x/docs/api/#) [![npm version](https://badge.fury.io/js/@sap%2Fdatasphere-cli.svg)](https://badge.fury.io/js/@sap%2Fdatasphere-cli) [![Documentation](https://img.shields.io/badge/docs-online-ff69b4.svg)](https://help.sap.com/docs/SAP_DATASPHERE/d0ecd6f297ac40249072a44df0549c1a/3f9a42ccde6b4b6aba121e2aab79c36d.html) [![Command help pages](https://img.shields.io/badge/command-help-lightgrey.svg)](#usage) ![NPM](https://img.shields.io/npm/l/@sap/datasphere-cli?color=%23FFFF00)
5
+ [![Node Version](https://img.shields.io/badge/node-20.xx.x-brightgreen)](https://nodejs.org/dist/latest-v20.x/docs/api/#) [![Node Version](https://img.shields.io/badge/node-21.xx.x-brightgreen)](https://nodejs.org/dist/latest-v21.x/docs/api/#) [![Node Version](https://img.shields.io/badge/node-22.xx.x-brightgreen)](https://nodejs.org/dist/latest-v23.x/docs/api/#) [![Node Version](https://img.shields.io/badge/node-23.xx.x-brightgreen)](https://nodejs.org/dist/latest-v24.x/docs/api/#) [![Node Version](https://img.shields.io/badge/node-22.xx.x-brightgreen)](https://nodejs.org/dist/latest-v24.x/docs/api/#) [![npm version](https://badge.fury.io/js/@sap%2Fdatasphere-cli.svg)](https://badge.fury.io/js/@sap%2Fdatasphere-cli) [![Documentation](https://img.shields.io/badge/docs-online-ff69b4.svg)](https://help.sap.com/docs/SAP_DATASPHERE/d0ecd6f297ac40249072a44df0549c1a/3f9a42ccde6b4b6aba121e2aab79c36d.html) [![Command help pages](https://img.shields.io/badge/command-help-lightgrey.svg)](#usage) ![NPM](https://img.shields.io/npm/l/@sap/datasphere-cli?color=%23FFFF00)
6
6
 
7
7
  ## Content
8
8
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sap/datasphere-cli",
3
- "version": "2025.20.0",
3
+ "version": "2025.24.0",
4
4
  "description": "Command-Line Interface for SAP Datasphere.",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "author": "SAP SE",
@@ -11,8 +11,8 @@
11
11
  "datasphere": "terminal.js"
12
12
  },
13
13
  "engines": {
14
- "node": "^20 || ^21 || ^22",
15
- "npm": "^9 || ^10"
14
+ "node": "^20 || ^21 || ^22 || ^23 || ^24",
15
+ "npm": "^9 || ^10 || ^11"
16
16
  },
17
17
  "keywords": [
18
18
  "cli",
@@ -20,6 +20,6 @@
20
20
  "datasphere-cli"
21
21
  ],
22
22
  "dependencies": {
23
- "@sap/cli-core": "2025.19.0"
23
+ "@sap/cli-core": "2025.23.0"
24
24
  }
25
25
  }