Skip to content

Commit

Permalink
Fix Issue #57
Browse files Browse the repository at this point in the history
  • Loading branch information
jung-thomas committed Jul 1, 2021
1 parent 62385f5 commit 0c348b6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ All notable changes to this project will be documented in this file.

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

## 2.202106.1
## 2.202106.3

### Fixed
- 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)

## 2.202106.2
### Added
- New commands schemaInstances, securestore, and sbss to list cf/xs services instances of these plan types

Expand Down
2 changes: 1 addition & 1 deletion bin/massConvert.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const base = require("../utils/base")

const fsp = require('fs/promises')
const fsp = require('fs').promises
const path = require("path")


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hana-cli",
"version": "2.202106.2",
"version": "2.202106.3",
"description": "HANA Developer Command Line Interface",
"main": "index.js",
"bin": {
Expand Down

0 comments on commit 0c348b6

Please sign in to comment.