@aws-sdk/protocol-http
Advanced tools
Comparing version 3.54.1 to 3.55.0
@@ -6,2 +6,10 @@ # Change Log | ||
# [3.55.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.54.1...v3.55.0) (2022-03-21) | ||
**Note:** Version bump only for package @aws-sdk/protocol-http | ||
## [3.54.1](https://github.com/aws/aws-sdk-js-v3/compare/v3.54.0...v3.54.1) (2022-03-15) | ||
@@ -8,0 +16,0 @@ |
@@ -12,6 +12,6 @@ import { __assign, __read, __spreadArray } from "tslib"; | ||
? options.protocol.substr(-1) !== ":" | ||
? options.protocol + ":" | ||
? "".concat(options.protocol, ":") | ||
: options.protocol | ||
: "https:"; | ||
this.path = options.path ? (options.path.charAt(0) !== "/" ? "/" + options.path : options.path) : "/"; | ||
this.path = options.path ? (options.path.charAt(0) !== "/" ? "/".concat(options.path) : options.path) : "/"; | ||
} | ||
@@ -42,4 +42,4 @@ HttpRequest.isInstance = function (request) { | ||
var param = query[paramName]; | ||
return __assign(__assign({}, carry), (_a = {}, _a[paramName] = Array.isArray(param) ? __spreadArray([], __read(param)) : param, _a)); | ||
return __assign(__assign({}, carry), (_a = {}, _a[paramName] = Array.isArray(param) ? __spreadArray([], __read(param), false) : param, _a)); | ||
}, {}); | ||
} |
{ | ||
"name": "@aws-sdk/protocol-http", | ||
"version": "3.54.1", | ||
"version": "3.55.0", | ||
"scripts": { | ||
@@ -23,4 +23,4 @@ "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", | ||
"dependencies": { | ||
"@aws-sdk/types": "3.54.1", | ||
"tslib": "^2.3.0" | ||
"@aws-sdk/types": "3.55.0", | ||
"tslib": "^2.3.1" | ||
}, | ||
@@ -52,4 +52,4 @@ "engines": { | ||
"typedoc": "0.19.2", | ||
"typescript": "~4.3.5" | ||
"typescript": "~4.6.2" | ||
} | ||
} |
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
57319
+ Added@aws-sdk/types@3.55.0(transitive)
- Removed@aws-sdk/types@3.54.1(transitive)
Updated@aws-sdk/types@3.55.0
Updatedtslib@^2.3.1