@aws-sdk/xhr-http-handler 3.193.0 → 3.198.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,22 @@
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.198.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.197.0...v3.198.0) (2022-10-27)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/xhr-http-handler
9
+
10
+
11
+
12
+
13
+
14
+ # [3.197.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.196.0...v3.197.0) (2022-10-26)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/xhr-http-handler
17
+
18
+
19
+
20
+
21
+
6
22
  # [3.193.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.192.0...v3.193.0) (2022-10-20)
7
23
 
8
24
  **Note:** Version bump only for package @aws-sdk/xhr-http-handler
package/README.md CHANGED
@@ -82,12 +82,12 @@ handler.on(XhrHttpHandler.EVENTS.PROGRESS, (progress, request) => {
82
82
  if (progress.lengthComputable) {
83
83
  console.log(
84
84
  progress.loaded, // bytes
85
- progress.total, // bytes
85
+ progress.total // bytes
86
86
  );
87
87
  console.log(
88
88
  request // contains the request information to differentiate
89
- // requests from the same handler.
90
- )
89
+ // requests from the same handler.
90
+ );
91
91
  }
92
92
  });
93
93
 
@@ -127,5 +127,5 @@ await client.send(new GetObjectCommand(/*...*/));
127
127
  ```
128
128
 
129
129
  You can check the source `.ts` file or published `.d.ts` file
130
- for the full list of events, or inspect the `XhrHttpHandler.EVENTS`
130
+ for the full list of events, or inspect the `XhrHttpHandler.EVENTS`
131
131
  object at runtime.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/xhr-http-handler",
3
- "version": "3.193.0",
3
+ "version": "3.198.0",
4
4
  "description": "Provides a way to make requests using XMLHttpRequest",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
@@ -18,15 +18,15 @@
18
18
  "module": "./dist-es/index.js",
19
19
  "types": "./dist-types/index.d.ts",
20
20
  "dependencies": {
21
- "@aws-sdk/protocol-http": "3.193.0",
22
- "@aws-sdk/querystring-builder": "3.193.0",
23
- "@aws-sdk/types": "3.193.0",
21
+ "@aws-sdk/protocol-http": "3.198.0",
22
+ "@aws-sdk/querystring-builder": "3.198.0",
23
+ "@aws-sdk/types": "3.198.0",
24
24
  "@aws-sdk/util-base64-browser": "3.188.0",
25
25
  "events": "3.3.0",
26
26
  "tslib": "^2.3.1"
27
27
  },
28
28
  "devDependencies": {
29
- "@aws-sdk/abort-controller": "3.193.0",
29
+ "@aws-sdk/abort-controller": "3.198.0",
30
30
  "@tsconfig/recommended": "1.0.1",
31
31
  "concurrently": "7.0.0",
32
32
  "downlevel-dts": "0.10.1",