Upgrade to v0.48
March 11, 2025 ยท View on GitHub
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').