Skip to content

Commit

Permalink
fix: update valory version
Browse files Browse the repository at this point in the history
  • Loading branch information
jfrconley committed Apr 28, 2020
1 parent fda62ba commit 037e93f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "valory-adaptor-alb",
"version": "2.0.0-beta.2",
"version": "2.0.0-beta.3",
"main": "dist/albAdaptor.js",
"typings": "dist/albAdaptor.d.ts",
"license": "MIT",
Expand All @@ -14,7 +14,7 @@
"semantic-release": "^16.0.4",
"tslint": "^6.1.0",
"typescript": "^3.8.3",
"valory-runtime": "^4.0.0-v4.14"
"valory-runtime": "^4.0.0-v4.16"
},
"peerDependencies": {
"valory-runtime": "^4.0.0-v4.5"
Expand Down
3 changes: 1 addition & 2 deletions src/albAdaptor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,10 @@ export class ALBAdaptor implements ApiAdaptor {
const content = (request.isBase64Encoded) ? Buffer.from("base64").toString() : request.body;
const tranRequest = new ApiContext({
headers: request.headers,
queryParams: request.queryStringParameters,
pathParams: params,
rawBody: content,
method,
path
url: `${request.url}?${qs.stringify(request.queryStringParameters)}`
});
tranRequest.attachments.putAttachment(ALBAdaptor.LambdaContextKey, request.context);
await handler(tranRequest);
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5673,10 +5673,10 @@ validate-npm-package-name@^3.0.0, validate-npm-package-name@~3.0.0:
dependencies:
builtins "^1.0.3"

valory-runtime@^4.0.0-v4.14:
version "4.0.0-v4.14"
resolved "https://registry.yarnpkg.com/valory-runtime/-/valory-runtime-4.0.0-v4.14.tgz#fa37f27513a27b4e04f1ee6ea1c73d4b9f37b226"
integrity sha512-FgEXAqDahaCDQIw5dciTjQHxTBqblIArwwhrNGmwjiZ7jghz13YW/SF9PJ3ls3RO91c0LmhKZVWOTVvQ4KbsQA==
valory-runtime@^4.0.0-v4.16:
version "4.0.0-v4.16"
resolved "https://registry.yarnpkg.com/valory-runtime/-/valory-runtime-4.0.0-v4.16.tgz#32f725895d752e6806ff6c217619309db65f27db"
integrity sha512-rqFyX6kgfakCHKLNOryxLJs/nkqafKggXIS3hy+l5GUysNAHI9mLnMScFtupBbMFJ73tPFIEaR8INLhevglf8w==
dependencies:
"@types/pino" "^6.0.0"
openapi-types "^1.3.5"
Expand Down

0 comments on commit 037e93f

Please sign in to comment.