@aws-sdk/node-http-handler
Advanced tools
Comparing version 3.82.0 to 3.94.0
@@ -6,2 +6,13 @@ # Change Log | ||
# [3.94.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.93.0...v3.94.0) (2022-05-18) | ||
### Bug Fixes | ||
* **node-http-handler:** handle close event in H2 from server side ([#3619](https://github.com/aws/aws-sdk-js-v3/issues/3619)) ([c528661](https://github.com/aws/aws-sdk-js-v3/commit/c5286610dc0e5b51873d68243defbacb5ea5631c)) | ||
# [3.82.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.81.0...v3.82.0) (2022-05-02) | ||
@@ -8,0 +19,0 @@ |
@@ -126,2 +126,3 @@ "use strict"; | ||
newSession.on("frameError", destroySessionCb); | ||
newSession.on("close", () => this.deleteSessionFromCache(authority, newSession)); | ||
if ((_a = this.config) === null || _a === void 0 ? void 0 : _a.sessionTimeout) { | ||
@@ -128,0 +129,0 @@ newSession.setTimeout(this.config.sessionTimeout, destroySessionCb); |
@@ -148,2 +148,3 @@ import { __assign, __awaiter, __generator, __values } from "tslib"; | ||
newSession.on("frameError", destroySessionCb); | ||
newSession.on("close", function () { return _this.deleteSessionFromCache(authority, newSession); }); | ||
if ((_a = this.config) === null || _a === void 0 ? void 0 : _a.sessionTimeout) { | ||
@@ -150,0 +151,0 @@ newSession.setTimeout(this.config.sessionTimeout, destroySessionCb); |
{ | ||
"name": "@aws-sdk/node-http-handler", | ||
"version": "3.82.0", | ||
"version": "3.94.0", | ||
"description": "Provides a way to make requests", | ||
@@ -39,8 +39,2 @@ "scripts": { | ||
}, | ||
"jest": { | ||
"coveragePathIgnorePatterns": [ | ||
"/node_modules/", | ||
"<rootDir>/*.mock.ts" | ||
] | ||
}, | ||
"engines": { | ||
@@ -47,0 +41,0 @@ "node": ">= 12.0.0" |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
117795
1226