Skip to content

Commit 5ff3dc9

Browse files
committed
admin: updated dist files with update-versions
1 parent 808153e commit 5ff3dc9

9 files changed

+1404
-694
lines changed

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ Changelog
44
This change log is managed by `admin/cmds/update-versions` but may be manually updated.
55

66

7-
ethers/v5.8.0 (2024-08-12 21:25)
7+
ethers/v5.8.0 (2025-02-25 19:15)
88
--------------------------------
99

10+
- Updated to latest elliptic library to fix audit warnings. ([f8deaae](https://github.com/ethers-io/ethers.js/commit/f8deaae8d16e0ebc8ec632c76c29833c67047c7b))
1011
- Added ENS to Sepolia. ([0065547](https://github.com/ethers-io/ethers.js/commit/006554730e4fc3ba558f808e91039711c4b6bfe1))
1112
- Bump ws package version to address DoS security concern. ([#4791](https://github.com/ethers-io/ethers.js/issues/4791); [f345816](https://github.com/ethers-io/ethers.js/commit/f345816cf202fbaffa046bff7083c2c25d21f6cd))
1213
- Added modern networks, updated third-party backend URLs and added QuickNode. ([#3935](https://github.com/ethers-io/ethers.js/issues/3935), [#4010](https://github.com/ethers-io/ethers.js/issues/4010); [f7c813d](https://github.com/ethers-io/ethers.js/commit/f7c813d3130f4790be4381c06ee5e56c8d513c79))
13-
- Updated tests for goerli. ([706d3ca](https://github.com/ethers-io/ethers.js/commit/706d3ca27c233385944877eb64c099c74109b6c2))
1414

1515
ethers/v5.7.2 (2022-10-19 04:19)
1616
--------------------------------

package-lock.json

+1,391-681
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/ethers/dist/ethers.umd.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -11820,16 +11820,16 @@
1182011820
var w = this.words[i];
1182111821
var word = (((w << off) | carry) & 0xffffff).toString(16);
1182211822
carry = (w >>> (24 - off)) & 0xffffff;
11823-
if (carry !== 0 || i !== this.length - 1) {
11824-
out = zeros[6 - word.length] + word + out;
11825-
} else {
11826-
out = word + out;
11827-
}
1182811823
off += 2;
1182911824
if (off >= 26) {
1183011825
off -= 26;
1183111826
i--;
1183211827
}
11828+
if (carry !== 0 || i !== this.length - 1) {
11829+
out = zeros[6 - word.length] + word + out;
11830+
} else {
11831+
out = word + out;
11832+
}
1183311833
}
1183411834
if (carry !== 0) {
1183511835
out = carry.toString(16) + out;

packages/ethers/dist/ethers.umd.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/ethers/dist/ethers.umd.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/ethers/dist/ethers.umd.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/ethers/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
"test": "echo \"Error: no test specified\" && exit 1"
6666
},
6767
"sideEffects": false,
68-
"tarballHash": "0x1bda3f9dfc51708b90192808272885388f59362e6ac1f71063190721529addcf",
68+
"tarballHash": "0xb1840e76759f7769fa71f489bb53a37560ddbd5973941d581c8ee4fd4d209305",
6969
"types": "./lib/index.d.ts",
7070
"version": "5.8.0"
7171
}

packages/signing-key/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"test": "echo \"Error: no test specified\" && exit 1"
4444
},
4545
"sideEffects": false,
46-
"tarballHash": "0x61a2744af5231513b7dcef6f3f57e268cd0a14989b881d7a7dc6a68ef4aa947c",
46+
"tarballHash": "0x7a09f564e1d852a8af8518d18359e1e9488c8978f394607cf154d5ec779f2f1a",
4747
"types": "./lib/index.d.ts",
4848
"version": "5.8.0"
4949
}

packages/testcases/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
"scripts": {
5555
"test": "echo \"Error: no test specified\" && exit 1"
5656
},
57-
"tarballHash": "0x65001d2fa476e1832de7103d86ba2f8de4f16cd3f819ade267af8a0112e7e85c",
57+
"tarballHash": "0x94bcb41ef486da3806e280b827bf8c7e847730705a80693b53c3027d3783a3bc",
5858
"types": "./lib/index.d.ts",
5959
"version": "5.8.0"
6060
}

0 commit comments

Comments
 (0)