Skip to content

Commit 4a8b877

Browse files
Update packages (#2026)
* fix: typos Co-authored-by: friendlyping <friendlyping@icloud.com> * fix: bump packages --------- Co-authored-by: friendlyping <friendlyping@icloud.com>
1 parent c5aef44 commit 4a8b877

12 files changed

Lines changed: 360 additions & 168 deletions

File tree

.changeset/rare-apes-double.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
"@api3/airnode-operation": patch
3+
"@api3/airnode-validator": patch
4+
"@api3/airnode-deployer": patch
5+
"@api3/airnode-examples": patch
6+
"@api3/airnode-protocol": patch
7+
"@api3/airnode-adapter": patch
8+
"@api3/airnode-admin": patch
9+
"@api3/airnode-node": patch
10+
---
11+
12+
Bump dependencies and fix typos

packages/airnode-adapter/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"dependencies": {
2222
"@api3/ois": "2.3.2",
2323
"@api3/promise-utils": "^0.4.0",
24-
"axios": "^1.6.7",
24+
"axios": "^1.7.9",
2525
"bignumber.js": "^9.1.2",
2626
"ethers": "^5.7.2",
2727
"lodash": "^4.17.21"

packages/airnode-adapter/src/response-processing/extraction.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ describe('extract and encode multiple values', () => {
245245
).toThrow('Parameter "_path" must be empty string or undefined when "_type" is "timestamp", but it was "1"');
246246
});
247247

248-
it('throws if _times is present for non numberic types', () => {
248+
it('throws if _times is present for non numeric types', () => {
249249
const encodedString = ethers.utils.formatBytes32String('simplestring');
250250
expect(() => extractAndEncodeResponse(encodedString, { _type: 'bytes32', _times: '1000' })).toThrow(
251251
'Parameter "_times" can only be used with numeric types, but "_type" was "bytes32"'

packages/airnode-admin/test/e2e/cli.feature.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ describe('CLI', () => {
125125
it('derives airnode xpub', () => {
126126
const airnodeMnemonic = airnodeWallet.mnemonic.phrase;
127127

128-
// Derive the xpub programatically
128+
// Derive the xpub programmatically
129129
const airnodeXpub = admin.deriveAirnodeXpub(airnodeMnemonic);
130130

131131
// Derive the xpub using CLI
@@ -172,7 +172,7 @@ describe('CLI', () => {
172172
['--sponsor-address', sponsorAddress]
173173
);
174174

175-
// Derive the wallet programatically
175+
// Derive the wallet programmatically
176176
const sponsorWallet = await deriveSponsorWallet(airnodeWallet.mnemonic.phrase, sponsorAddress);
177177

178178
// Check that they generate the same wallet address

packages/airnode-deployer/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@
3232
"@aws-sdk/client-s3": "^3.525.0",
3333
"@aws-sdk/signature-v4-crt": "^3.525.0",
3434
"@google-cloud/storage": "^7.7.0",
35-
"adm-zip": "^0.5.10",
35+
"adm-zip": "^0.5.16",
3636
"chalk": "^4.1.2",
3737
"cli-table3": "^0.6.3",
38-
"compare-versions": "^6.1.0",
38+
"compare-versions": "^6.1.1",
3939
"date-fns": "^3.6.0",
40-
"date-fns-tz": "^3.1.2",
41-
"dotenv": "^16.4.5",
40+
"date-fns-tz": "^3.2.0",
41+
"dotenv": "^16.4.7",
4242
"ethers": "^5.7.2",
4343
"lodash": "^4.17.21",
4444
"ora": "^5.4.1",
@@ -48,7 +48,7 @@
4848
"devDependencies": {
4949
"@aws-sdk/util-stream-node": "^3.374.0",
5050
"@google-cloud/functions-framework": "^3.4.0",
51-
"@types/adm-zip": "^0.5.5",
51+
"@types/adm-zip": "^0.5.7",
5252
"@types/aws-lambda": "^8.10.137",
5353
"@types/lodash": "^4.17.0",
5454
"@types/node": "^20.17.0",
@@ -62,7 +62,7 @@
6262
"ts-jest": "^29.1.2",
6363
"ts-node": "^10.9.2",
6464
"typescript": "^5.4.5",
65-
"webpack": "^5.91.0",
65+
"webpack": "^5.97.1",
6666
"webpack-cli": "^5.1.4",
6767
"webpack-ignore-dynamic-require": "^1.0.0"
6868
}

packages/airnode-examples/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"@types/node": "^20.17.0",
5050
"@types/prompts": "^2.4.9",
5151
"chalk": "^4.1.2",
52-
"dotenv": "^16.4.5",
52+
"dotenv": "^16.4.7",
5353
"ethereum-waffle": "^4.0.10",
5454
"hardhat": "^2.22.18",
5555
"jest": "^29.7.0",

packages/airnode-examples/src/scripts/derive-and-fund-sponsor-wallet.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const main = async () => {
1010
// NOTE: When doing this manually, you can use the 'derive-airnode-xpub' command from the admin CLI package
1111
const airnodeXpub = deriveAirnodeXpub(airnodeWallet.mnemonic.phrase);
1212

13-
// Derive the sponsor wallet address programatically
13+
// Derive the sponsor wallet address programmatically
1414
// NOTE: When doing this manually, you can use the 'derive-sponsor-wallet-address' command from the admin CLI package
1515
const sponsorWalletAddress = await deriveSponsorWalletAddress(airnodeXpub, airnodeWallet.address, sponsor.address);
1616

packages/airnode-node/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@
3535
"@api3/promise-utils": "^0.4.0",
3636
"@aws-sdk/client-lambda": "^3.525.0",
3737
"date-fns": "^3.6.0",
38-
"dotenv": "^16.4.5",
38+
"dotenv": "^16.4.7",
3939
"ethers": "^5.7.2",
40-
"express": "^4.18.3",
40+
"express": "^4.21.2",
4141
"google-auth-library": "^9.6.3",
4242
"lodash": "^4.17.21",
4343
"yargs": "^17.7.2",

packages/airnode-operation/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"@api3/airnode-protocol": "^0.14.0",
3333
"@api3/airnode-utilities": "^0.14.0",
3434
"ethers": "^5.7.2",
35-
"express": "^4.18.3",
35+
"express": "^4.21.2",
3636
"hardhat": "^2.22.18",
3737
"morgan": "^1.10.0",
3838
"pm2": "^5.3.1"

packages/airnode-protocol/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"typescript": "^5.4.5"
4747
},
4848
"dependencies": {
49-
"@api3/airnode-protocol-v1": "^3.3.0",
49+
"@api3/airnode-protocol-v1": "^3.4.0",
5050
"@openzeppelin/contracts": "4.4.2",
5151
"ethers": "^5.7.2"
5252
}

0 commit comments

Comments
 (0)