@smithy/fetch-http-handler 3.2.2 → 3.2.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/dist-cjs/index.js CHANGED
@@ -118,7 +118,8 @@ var _FetchHttpHandler = class _FetchHttpHandler {
118
118
  if (keepAliveSupport.supported) {
119
119
  requestOptions.keepalive = keepAlive;
120
120
  }
121
- let removeSignalEventListener = null;
121
+ let removeSignalEventListener = /* @__PURE__ */ __name(() => {
122
+ }, "removeSignalEventListener");
122
123
  const fetchRequest = new Request(url, requestOptions);
123
124
  const raceOfPromises = [
124
125
  fetch(fetchRequest).then((response) => {
@@ -69,7 +69,7 @@ export class FetchHttpHandler {
69
69
  if (keepAliveSupport.supported) {
70
70
  requestOptions.keepalive = keepAlive;
71
71
  }
72
- let removeSignalEventListener = null;
72
+ let removeSignalEventListener = () => { };
73
73
  const fetchRequest = new Request(url, requestOptions);
74
74
  const raceOfPromises = [
75
75
  fetch(fetchRequest).then((response) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smithy/fetch-http-handler",
3
- "version": "3.2.2",
3
+ "version": "3.2.4",
4
4
  "description": "Provides a way to make requests",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types && yarn build:types:downlevel'",
@@ -24,7 +24,7 @@
24
24
  "module": "./dist-es/index.js",
25
25
  "types": "./dist-types/index.d.ts",
26
26
  "dependencies": {
27
- "@smithy/protocol-http": "^4.0.4",
27
+ "@smithy/protocol-http": "^4.1.0",
28
28
  "@smithy/querystring-builder": "^3.0.3",
29
29
  "@smithy/types": "^3.3.0",
30
30
  "@smithy/util-base64": "^3.0.0",