@aws-sdk/client-cloudfront 3.142.0 → 3.154.0

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/CHANGELOG.md CHANGED
@@ -3,6 +3,33 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.154.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.153.0...v3.154.0) (2022-08-19)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-cloudfront
9
+
10
+
11
+
12
+
13
+
14
+ # [3.150.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.149.0...v3.150.0) (2022-08-15)
15
+
16
+
17
+ ### Features
18
+
19
+ * **client-cloudfront:** Adds Http 3 support to distributions ([0f250fe](https://github.com/aws/aws-sdk-js-v3/commit/0f250fe532116c548bcee919174ec0896601cc5f))
20
+
21
+
22
+
23
+
24
+
25
+ # [3.145.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.144.0...v3.145.0) (2022-08-08)
26
+
27
+ **Note:** Version bump only for package @aws-sdk/client-cloudfront
28
+
29
+
30
+
31
+
32
+
6
33
  # [3.142.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.141.0...v3.142.0) (2022-08-02)
7
34
 
8
35
 
@@ -1861,7 +1861,7 @@ export interface DefaultCacheBehavior {
1861
1861
  */
1862
1862
  MaxTTL?: number;
1863
1863
  }
1864
- export declare type HttpVersion = "http1.1" | "http2";
1864
+ export declare type HttpVersion = "http1.1" | "http2" | "http2and3" | "http3";
1865
1865
  /**
1866
1866
  * <p>A complex type that controls whether access logs are written for the
1867
1867
  * distribution.</p>
@@ -2667,14 +2667,16 @@ export interface DistributionConfig {
2667
2667
  */
2668
2668
  WebACLId?: string;
2669
2669
  /**
2670
- * <p>(Optional) Specify the maximum HTTP version that you want viewers to use to communicate
2671
- * with CloudFront. The default value for new web distributions is http2. Viewers that don't support
2672
- * HTTP/2 automatically use an earlier HTTP version.</p>
2673
- * <p>For viewers and CloudFront to use HTTP/2, viewers must support TLS 1.2 or later, and must
2674
- * support Server Name Identification (SNI).</p>
2675
- * <p>In general, configuring CloudFront to communicate with viewers using HTTP/2 reduces latency.
2676
- * You can improve performance by optimizing for HTTP/2. For more information, do an Internet
2677
- * search for "http/2 optimization." </p>
2670
+ * <p>(Optional) Specify the maximum HTTP version(s) that you want viewers to use to communicate
2671
+ * with CloudFront. The default value for new web distributions is <code>http2</code>. Viewers
2672
+ * that don't support HTTP/2 automatically use an earlier HTTP version.</p>
2673
+ * <p>For viewers and CloudFront to use HTTP/2, viewers must support TLSv1.2 or later, and must
2674
+ * support Server Name Indication (SNI).</p>
2675
+ * <p>For viewers and CloudFront to use HTTP/3, viewers must support TLSv1.3 and Server Name
2676
+ * Indication (SNI). CloudFront supports HTTP/3 connection migration to allow the
2677
+ * viewer to switch networks without losing connection. For more information
2678
+ * about connection migration, see <a href="https://www.rfc-editor.org/rfc/rfc9000.html#name-connection-migration">Connection Migration</a> at RFC 9000. For more information about
2679
+ * supported TLSv1.3 ciphers, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/secure-connections-supported-viewer-protocols-ciphers.html">Supported protocols and ciphers between viewers and CloudFront</a>.</p>
2678
2680
  */
2679
2681
  HttpVersion?: HttpVersion | string;
2680
2682
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-cloudfront",
3
3
  "description": "AWS SDK for JavaScript Cloudfront Client for Node.js, Browser and React Native",
4
- "version": "3.142.0",
4
+ "version": "3.154.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -18,9 +18,9 @@
18
18
  "dependencies": {
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
- "@aws-sdk/client-sts": "3.142.0",
21
+ "@aws-sdk/client-sts": "3.154.0",
22
22
  "@aws-sdk/config-resolver": "3.130.0",
23
- "@aws-sdk/credential-provider-node": "3.142.0",
23
+ "@aws-sdk/credential-provider-node": "3.154.0",
24
24
  "@aws-sdk/fetch-http-handler": "3.131.0",
25
25
  "@aws-sdk/hash-node": "3.127.0",
26
26
  "@aws-sdk/invalid-dependency": "3.127.0",
@@ -41,7 +41,7 @@
41
41
  "@aws-sdk/url-parser": "3.127.0",
42
42
  "@aws-sdk/util-base64-browser": "3.109.0",
43
43
  "@aws-sdk/util-base64-node": "3.55.0",
44
- "@aws-sdk/util-body-length-browser": "3.55.0",
44
+ "@aws-sdk/util-body-length-browser": "3.154.0",
45
45
  "@aws-sdk/util-body-length-node": "3.55.0",
46
46
  "@aws-sdk/util-defaults-mode-browser": "3.142.0",
47
47
  "@aws-sdk/util-defaults-mode-node": "3.142.0",
@@ -65,6 +65,11 @@
65
65
  "typedoc": "0.19.2",
66
66
  "typescript": "~4.6.2"
67
67
  },
68
+ "overrides": {
69
+ "typedoc": {
70
+ "typescript": "~4.6.2"
71
+ }
72
+ },
68
73
  "engines": {
69
74
  "node": ">=12.0.0"
70
75
  },