Skip to content

Latest commit

 

History

History
32 lines (18 loc) · 808 Bytes

File metadata and controls

32 lines (18 loc) · 808 Bytes

Upgrade to v0.48

Breaking change

Public API

Now, nodejs binding op.is_exist changed to op.exists to align with nodejs API style.

Upgrade to v0.47

Breaking change

Public API

Now, the append operation has been removed. You can use below code instead.

op.write("path/to/file", Buffer.from("hello world"), { append: true });

Upgrade to v0.44

Breaking change

Services

Because of a TLS lib issue, we temporarily disable the services-ftp feature.

Public API

Now, the list operation returns Array<Entry> instead of a lister. Also, we removed scan, you can use list('some/path', {recursive: true})/listSync('some/path', {recursive: true}) instead of scan('some/path')/scanSync('some/path').