Skip to content

v6.0.0

Compare
Choose a tag to compare
@pioug pioug released this 23 Jan 12:25
· 34 commits to master since this release
1783053
  • Migrate from aws-sdk (69.6 MB) to @aws-sdk/client-s3 (3.91 MB) #200

Breaking changes

  • _buildDeleteMultiple() requires passing bucket as argument
  • _toAwsParams() requires passing bucket as argument
  • Credentials passed to create() must be nested under credentials:
var publisher = awspublish.create({
  region: "your-region-id",
  params: {
    Bucket: "..."
  },
--  accessKeyId: "akid",
--  secretAccessKey: "secret"
++  credentials: {
++    accessKeyId: "akid",
++    secretAccessKey: "secret"
++  }
});