Skip to content

Commit

Permalink
Prepare release for merged fixes #74 & #75
Browse files Browse the repository at this point in the history
  • Loading branch information
jung-thomas committed May 12, 2022
1 parent 67af085 commit a14b48e
Show file tree
Hide file tree
Showing 5 changed files with 64 additions and 45 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
[
{
"date": "2022-05-12",
"version": "3.202205.3",
"Changed": [
"[Issue 74 fixed](https://github.com/SAP-samples/hana-developer-cli-tool-example/issues/74) by [Meyer-J](https://github.com/Meyer-J)",
"[Issue 75 fixed](https://github.com/SAP-samples/hana-developer-cli-tool-example/issues/75) by [Meyer-J](https://github.com/Meyer-J)",
"Initial support for Node.js 18. Technically some of the inner modules don't support 18. We've tested many scenarios of this tool with 18. Use at your own risk.",
"Minor dependency updates"
]
},
{
"date": "2022-05-09",
"version": "3.202205.1",
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/).

## [3.202205.3] - 2022-05-12

**Changed**

- [Issue 74 fixed](https://github.com/SAP-samples/hana-developer-cli-tool-example/issues/74) by [Meyer-J](https://github.com/Meyer-J)
- [Issue 75 fixed](https://github.com/SAP-samples/hana-developer-cli-tool-example/issues/75) by [Meyer-J](https://github.com/Meyer-J)
- Initial support for Node.js 18. Technically some of the inner modules don't support 18. We've tested many scenarios of this tool with 18. Use at your own risk.
- Minor dependency updates

## [3.202205.1] - 2022-05-09

**Changed**
Expand Down
2 changes: 2 additions & 0 deletions bin/systemInfo.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,9 @@ export async function sysInfo(prompts) {

export async function basicOutput() {
const dbStatus = await base.createDBConnection()
console.log(`${colors.green(base.bundle.getText("dbx.user"))}: ${await base.getUserName()}`)
base.outputTable(await dbInspect.getHANAVersion(dbStatus))


let results = await dbStatus.execSQL(`SELECT TOP 100 * FROM "M_SYSTEM_OVERVIEW"`)
base.outputTable(results)
Expand Down
78 changes: 38 additions & 40 deletions npm-shrinkwrap.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "hana-cli",
"version": "3.202205.2",
"version": "3.202205.3",
"description": "HANA Developer Command Line Interface",
"main": "index.js",
"bin": {
"hana-cli": "./bin/cli.js"
},
"type": "module",
"engines": {
"node": "^14.0.0 || ^16.0.0"
"node": "^14.0.0 || ^16.0.0 || ^18.0.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
Expand All @@ -35,11 +35,11 @@
"cli-highlight": "^2.1.11",
"console.table": "~0.10",
"debug": "^4.3.4",
"dotenv": "^16.0.0",
"dotenv": "^16.0.1",
"easy-table": "1.2.0",
"express": "^4.18.1",
"express-graphql": "^0.12.0",
"glob": "^8.0.1",
"glob": "^8.0.2",
"graphql": "^15.8.0",
"hdb": "0.19.2",
"js-convert-case": "^4.2.0",
Expand All @@ -64,7 +64,7 @@
"uuid": "^8.3",
"ws": "^8.6.0",
"yargonaut": "1.1",
"yargs": "^17.4.1"
"yargs": "^17.5.0"
},
"peerDependencies": {
"@sap/cds-dk": ">=4"
Expand Down

0 comments on commit a14b48e

Please sign in to comment.