Skip to content

Releases: bradenmacdonald/s3-lite-client

0.7.6

16 May 01:09
Compare
Choose a tag to compare

What's Changed

  • fix multipart uploads with customer provided encryption keys by @wyozi in #40

Full Changelog: 0.7.5...0.7.6

0.7.5

10 May 06:31
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 0.7.4...0.7.5

0.7.4

15 Mar 06:42
Compare
Choose a tag to compare

What's Changed

  • Adds a metadata option to copyObject() (now you can replace the metadata when copying an object). See #23.
  • Updates the README to clarify how to set custom headers, ACLs, and other metadata. See #34.
  • Adds stronger typing for some metadata fields like x-amz-acl

Full Changelog: 0.7.3...0.7.4

0.7.3

03 Mar 21:15
Compare
Choose a tag to compare

What's Changed

  • docs: add installation instructions
  • docs: fix JSdoc for errors, rename error base class to S3Error
  • Remove deps.ts and deps-test.ts

Full Changelog: 0.7.2...0.7.3

0.7.2

03 Mar 19:16
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.7.1...0.7.2

0.7.0

09 Feb 17:29
Compare
Choose a tag to compare

What's Changed

  • Added bucket operations (create/delete/check existence) - thanks @thepocp #27
  • Bump Deno std library to std@0.215.0
  • Slightly expanded README and usage examples
  • Updated integration tests and examples to use Array.fromAsync

New Contributors

Full Changelog: 0.6.2...0.7.0

0.6.2

13 Oct 03:49
Compare
Choose a tag to compare
  • Adds support for specifying metadata with getObject and getPartialObject (#21) - thanks @wyozi
  • Bumps to Deno std library version 0.204.0 (removes use of readableStreamFromIterable in favor of ReadableStream.from)

0.6.1

26 Jun 16:50
Compare
Choose a tag to compare
  • Fixed behavior of listObjectsGrouped when the server returns multiple <CommonPrefix> nodes (#19) Thanks @chromakode !

0.6.0

02 Jun 05:27
Compare
Choose a tag to compare
  • Fixed a bug where files with some special characters in their names would cause a signing error
  • Fixed a bug where large streaming uploads could fail, due to a re-used buffer causing data corruption (#12) - thanks @nestarz for reporting and helping to solve this issue and the above
  • Fixed a bug with validating the size argument to putObject - thanks @nestarz for the fix
  • Updated to use deno std lib version 0.190.0

0.5.0

10 Mar 23:01
Compare
Choose a tag to compare
  • Add sessionToken support / AWS STS (PR #10, issue #9) - thanks @wyozi for the contribution
  • Fixed improper signing of requests that had non-ASCII characters in the path (#8) - also thanks @wyozi for the report