lean-s3 0.8.6 → 0.8.9

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/dist/index.js +1 -1
  2. package/package.json +11 -11
package/dist/index.js CHANGED
@@ -754,7 +754,7 @@ var S3Client = class {
754
754
  void 0,
755
755
  options.signal
756
756
  );
757
- if (response.statusCode !== 204 && response.statusCode !== 200) {
757
+ if (response.statusCode !== 204) {
758
758
  throw await getResponseError(response, path);
759
759
  }
760
760
  }
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.8.6",
5
+ "version": "0.8.9",
6
6
  "description": "A server-side S3 API for the regular user.",
7
7
  "keywords": [
8
8
  "s3",
@@ -43,20 +43,20 @@
43
43
  "prepublishOnly": "npm run build"
44
44
  },
45
45
  "dependencies": {
46
- "fast-xml-parser": "^5.2.5",
46
+ "fast-xml-parser": "^5.3.0",
47
47
  "undici": "^7.16.0"
48
48
  },
49
49
  "devDependencies": {
50
- "@biomejs/biome": "2.2.4",
51
- "@testcontainers/localstack": "^11.6.0",
52
- "@testcontainers/minio": "^11.6.0",
53
- "@types/node": "^24.5.2",
54
- "@typescript/native-preview": "^7.0.0-dev.20250922.1",
55
- "expect": "^30.1.2",
56
- "lefthook": "^1.13.2",
57
- "testcontainers": "^11.6.0",
50
+ "@biomejs/biome": "2.2.5",
51
+ "@testcontainers/localstack": "^11.7.1",
52
+ "@testcontainers/minio": "^11.7.1",
53
+ "@types/node": "^24.7.0",
54
+ "@typescript/native-preview": "^7.0.0-dev.20251006.1",
55
+ "expect": "^30.2.0",
56
+ "lefthook": "^1.13.6",
57
+ "testcontainers": "^11.7.1",
58
58
  "tsup": "^8.5.0",
59
- "tsx": "^4.20.5",
59
+ "tsx": "^4.20.6",
60
60
  "typedoc": "^0.28.13"
61
61
  },
62
62
  "engines": {