lean-s3 0.1.5 → 0.1.6

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 +6 -6
package/README.md CHANGED
@@ -79,7 +79,7 @@ BUT...
79
79
 
80
80
  Due to its scalability, portability and AWS integrations, pre-signing URLs is `async` and performs poorly in high-performance scenarios. By taking different trade-offs, lean-s3 can presign URLs much faster. I promise! This is the reason you cannot use lean-s3 in the browser.
81
81
 
82
- lean-s3 is currently about 20x faster than AWS SDK when it comes to pre-signing URLs[^1]:
82
+ lean-s3 is currently about 30x faster than AWS SDK when it comes to pre-signing URLs[^1]:
83
83
  ```
84
84
  benchmark avg (min … max) p75 / p99
85
85
  -------------------------------------------- ---------
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "lean-s3",
3
3
  "author": "Niklas Mollenhauer",
4
4
  "license": "MIT",
5
- "version": "0.1.5",
5
+ "version": "0.1.6",
6
6
  "description": "A server-side S3 API for the regular user.",
7
7
  "keywords": [
8
8
  "s3",
@@ -27,14 +27,14 @@
27
27
  "format": "biome format --write ./src && biome lint --write ./src && biome check --write ./src"
28
28
  },
29
29
  "devDependencies": {
30
- "@aws-sdk/client-s3": "^3.812.0",
30
+ "@aws-sdk/client-s3": "^3.821.0",
31
31
  "@biomejs/biome": "^1.9.4",
32
- "@testcontainers/localstack": "^10.27.0",
33
- "@testcontainers/minio": "^10.27.0",
34
- "@types/node": "^22.15.20",
32
+ "@testcontainers/localstack": "^11.0.0",
33
+ "@testcontainers/minio": "^11.0.0",
34
+ "@types/node": "^22.15.29",
35
35
  "expect": "^29.7.0",
36
36
  "lefthook": "^1.11.13",
37
- "typedoc": "^0.28.4"
37
+ "typedoc": "^0.28.5"
38
38
  },
39
39
  "engines": {
40
40
  "node": "^20.19.0 || ^22.14.0 || ^24.0.0"