@strapi/provider-upload-aws-s3 0.0.0-next.c58b405b44c71a93df733024d1f15c069cb6bdca → 0.0.0-next.dff425769af4d4d006725a10c395f59637403653

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/lib/index.js +2 -0
  2. package/package.json +3 -3
package/lib/index.js CHANGED
@@ -7,6 +7,8 @@
7
7
  /* eslint-disable no-unused-vars */
8
8
  // Public node modules.
9
9
  const { getOr } = require('lodash/fp');
10
+ // TODO V5: Migrate to aws-sdk v3
11
+ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
10
12
  const AWS = require('aws-sdk');
11
13
  const { getBucketFromUrl } = require('./utils');
12
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@strapi/provider-upload-aws-s3",
3
- "version": "0.0.0-next.c58b405b44c71a93df733024d1f15c069cb6bdca",
3
+ "version": "0.0.0-next.dff425769af4d4d006725a10c395f59637403653",
4
4
  "description": "AWS S3 provider for strapi upload",
5
5
  "keywords": [
6
6
  "upload",
@@ -39,12 +39,12 @@
39
39
  "lint": "run -T eslint ."
40
40
  },
41
41
  "dependencies": {
42
- "aws-sdk": "2.1287.0",
42
+ "aws-sdk": "2.1351.0",
43
43
  "lodash": "4.17.21"
44
44
  },
45
45
  "engines": {
46
46
  "node": ">=14.19.1 <=18.x.x",
47
47
  "npm": ">=6.0.0"
48
48
  },
49
- "gitHead": "c58b405b44c71a93df733024d1f15c069cb6bdca"
49
+ "gitHead": "dff425769af4d4d006725a10c395f59637403653"
50
50
  }