Skip to content

Commit 0c348b6

Browse files
committed
Fix Issue #57
1 parent 62385f5 commit 0c348b6

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ All notable changes to this project will be documented in this file.
44

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

7-
## 2.202106.1
7+
## 2.202106.3
8+
9+
### Fixed
10+
- massConvert - change `require('fs/promises')` to `require('fs').promises` for compatibility with Node 12.x - see [Update fs.md #35740](https://github.com/nodejs/node/issues/35740)
11+
12+
## 2.202106.2
813
### Added
914
- New commands schemaInstances, securestore, and sbss to list cf/xs services instances of these plan types
1015

bin/massConvert.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const base = require("../utils/base")
22

3-
const fsp = require('fs/promises')
3+
const fsp = require('fs').promises
44
const path = require("path")
55

66

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hana-cli",
3-
"version": "2.202106.2",
3+
"version": "2.202106.3",
44
"description": "HANA Developer Command Line Interface",
55
"main": "index.js",
66
"bin": {

0 commit comments

Comments
 (0)