@travetto/model-s3 8.0.2 → 8.0.4

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.
package/README.md CHANGED
@@ -91,6 +91,8 @@ export class S3ModelConfig {
91
91
  const isAws = !this.endpoint || hostname === 'amazonaws.com' || hostname.endsWith('.amazonaws.com');
92
92
 
93
93
  this.config = {
94
+ responseChecksumValidation: 'WHEN_REQUIRED',
95
+ requestChecksumCalculation: 'WHEN_REQUIRED',
94
96
  ...(this.config ?? {}),
95
97
  region: this.region,
96
98
  endpoint: this.endpoint || undefined,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@travetto/model-s3",
3
- "version": "8.0.2",
3
+ "version": "8.0.4",
4
4
  "description": "S3 backing for the travetto model module.",
5
5
  "keywords": [
6
6
  "model",
@@ -29,14 +29,14 @@
29
29
  "access": "public"
30
30
  },
31
31
  "dependencies": {
32
- "@aws-sdk/client-s3": "^3.1127.0",
33
- "@aws-sdk/credential-provider-ini": "^3.973.15",
34
- "@aws-sdk/s3-request-presigner": "^3.1127.0",
35
- "@travetto/config": "^8.0.1",
36
- "@travetto/model": "^8.0.1"
32
+ "@aws-sdk/client-s3": "^3.1131.0",
33
+ "@aws-sdk/credential-provider-ini": "^3.973.16",
34
+ "@aws-sdk/s3-request-presigner": "^3.1131.0",
35
+ "@travetto/config": "^8.0.3",
36
+ "@travetto/model": "^8.0.3"
37
37
  },
38
38
  "peerDependencies": {
39
- "@travetto/cli": "^8.0.1"
39
+ "@travetto/cli": "^8.0.2"
40
40
  },
41
41
  "peerDependenciesMeta": {
42
42
  "@travetto/cli": {
package/src/config.ts CHANGED
@@ -59,6 +59,8 @@ export class S3ModelConfig {
59
59
  const isAws = !this.endpoint || hostname === 'amazonaws.com' || hostname.endsWith('.amazonaws.com');
60
60
 
61
61
  this.config = {
62
+ responseChecksumValidation: 'WHEN_REQUIRED',
63
+ requestChecksumCalculation: 'WHEN_REQUIRED',
62
64
  ...(this.config ?? {}),
63
65
  region: this.region,
64
66
  endpoint: this.endpoint || undefined,
@@ -1,6 +1,6 @@
1
1
  import type { ServiceDescriptor } from '@travetto/cli';
2
2
 
3
- const version = '4.12.4';
3
+ const version = '5.2.2';
4
4
 
5
5
  export const service: ServiceDescriptor = {
6
6
  name: 's3',