@anabranch/storage-s3 0.2.9 → 0.2.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -18,7 +18,7 @@ const connector = createS3({
18
18
  },
19
19
  })
20
20
 
21
- const storage = new Storage(await connector.connect())
21
+ const storage = await Storage.connect(connector).run()
22
22
 
23
23
  await storage.put('hello.txt', 'world').run()
24
24
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anabranch/storage-s3",
3
- "version": "0.2.9",
3
+ "version": "0.2.11",
4
4
  "description": "S3 adapter for @anabranch/storage using @aws-sdk/client-s3. Supports presigned URLs, multipart uploads, and all storage operations.",
5
5
  "repository": {
6
6
  "type": "git",