Skip to content

Commit

Permalink
fix(deps): update dependencies (non-major) (#1811)
Browse files Browse the repository at this point in the history
* fix: encoding changes for aws client-lambda

* fix: hold back hardhat to v2.14.1

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Derek Croote <[email protected]>
  • Loading branch information
renovate[bot] and dcroote authored Jul 1, 2023
1 parent 86c9681 commit 0622fa8
Show file tree
Hide file tree
Showing 8 changed files with 597 additions and 595 deletions.
2 changes: 2 additions & 0 deletions .changeset/dirty-tips-provide.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
---
6 changes: 3 additions & 3 deletions packages/airnode-deployer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,16 @@
"@api3/airnode-utilities": "^0.11.0",
"@api3/airnode-validator": "^0.11.0",
"@api3/promise-utils": "^0.4.0",
"@aws-sdk/client-s3": "^3.345.0",
"@aws-sdk/signature-v4-crt": "^3.342.0",
"@aws-sdk/client-s3": "^3.360.0",
"@aws-sdk/signature-v4-crt": "^3.357.0",
"@google-cloud/storage": "^6.11.0",
"adm-zip": "^0.5.10",
"chalk": "^4.1.2",
"cli-table3": "^0.6.3",
"compare-versions": "^5.0.3",
"date-fns": "^2.30.0",
"date-fns-tz": "^2.0.0",
"dotenv": "^16.1.4",
"dotenv": "^16.3.1",
"ethers": "^5.7.2",
"lodash": "^4.17.21",
"ora": "^5.4.1",
Expand Down
4 changes: 2 additions & 2 deletions packages/airnode-node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@
"@api3/airnode-validator": "^0.11.0",
"@api3/ois": "2.1.0",
"@api3/promise-utils": "^0.4.0",
"@aws-sdk/client-lambda": "^3.346.0",
"@aws-sdk/client-lambda": "^3.360.0",
"date-fns": "^2.30.0",
"dotenv": "^16.1.4",
"dotenv": "^16.3.1",
"ethers": "^5.7.2",
"express": "^4.18.2",
"google-auth-library": "^8.8.0",
Expand Down
5 changes: 3 additions & 2 deletions packages/airnode-node/src/workers/cloud-platforms/aws.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import { logger } from '@api3/airnode-utilities';
import { go } from '@api3/promise-utils';
import { LambdaClient, InvokeCommand } from '@aws-sdk/client-lambda';
import { Uint8ArrayBlobAdapter } from '@aws-sdk/util-stream';
import { WorkerParameters, WorkerResponse } from '../../types';

export function encodeUtf8(input: string): Uint8Array {
return new TextEncoder().encode(input);
export function encodeUtf8(input: string) {
return new TextEncoder().encode(input) as Uint8ArrayBlobAdapter;
}

export function decodeUtf8(input: Uint8Array): string {
Expand Down
2 changes: 1 addition & 1 deletion packages/airnode-protocol/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"typescript": "^5.1.3"
},
"dependencies": {
"@api3/airnode-protocol-v1": "^2.6.1",
"@api3/airnode-protocol-v1": "^2.7.1",
"@openzeppelin/contracts": "4.4.2",
"ethers": "^5.7.2"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/airnode-validator/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"@api3/airnode-protocol": "^0.11.0",
"@api3/ois": "2.1.0",
"@api3/promise-utils": "^0.4.0",
"dotenv": "^16.1.4",
"dotenv": "^16.3.1",
"ethers": "^5.7.2",
"lodash": "^4.17.21",
"ora": "^5.4.1",
Expand Down
2 changes: 1 addition & 1 deletion renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"automergeType": "pr",
"packageRules": [
{
"matchPackageNames": ["chalk", "ora", "node", "@openzeppelin/contracts", "zod"],
"matchPackageNames": ["chalk", "hardhat", "ora", "node", "@openzeppelin/contracts", "zod"],
"enabled": false
},
{
Expand Down
Loading

0 comments on commit 0622fa8

Please sign in to comment.