Skip to content

Commit

Permalink
Updated dist files.
Browse files Browse the repository at this point in the history
  • Loading branch information
ricmoo committed Apr 28, 2020
1 parent 84c68ac commit 9f80251
Show file tree
Hide file tree
Showing 11 changed files with 29 additions and 11 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@ Changelog

This change log is managed by `scripts/cmds/update-versions` but may be manually updated.

ethers/v5.0.0-beta.184 (2020-04-27 06:28)
ethers/v5.0.0-beta.184 (2020-04-28 04:58)
-----------------------------------------

- Removed old EIP-1193 experimental provider; it can now be supported by Web3Provider as EIP-1193 is now backwards compatible. ([84c68ac](https://github.com/ethers-io/ethers.js/commit/84c68ac5c17b10897ade966d6c8fac1f1f66a4af))
- Fixed getLogs filter deserialization. ([#805](https://github.com/ethers-io/ethers.js/issues/805); [393c0c7](https://github.com/ethers-io/ethers.js/commit/393c0c74a91175adca2e25026dcdb9e6445afd8f))
- Added EIP-1193 support to Web3Provider. ([56af441](https://github.com/ethers-io/ethers.js/commit/56af4413b1dd1787db68985e0b612b63d86fdf7c))
- Minor typing-detected fixes. ([d1f3a42](https://github.com/ethers-io/ethers.js/commit/d1f3a42c119d5588eab667ec7bb6e71042cfb656))
- Added initial support for recoverable coding erros. ([#800](https://github.com/ethers-io/ethers.js/issues/800); [bda6623](https://github.com/ethers-io/ethers.js/commit/bda66230916e58e25a522e8430ce4de25091eb6b))
Expand Down
2 changes: 1 addition & 1 deletion packages/ethers/dist/ethers-all.esm.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/ethers/dist/ethers-all.umd.min.js

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion packages/ethers/dist/ethers.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -16366,9 +16366,13 @@ function deserializeTopics(data) {
return [];
}
return data.split(/&/g).map((topic) => {
return topic.split("|").map((topic) => {
if (topic === "") {
return [];
}
const comps = topic.split("|").map((topic) => {
return ((topic === "null") ? null : topic);
});
return ((comps.length === 1) ? comps[0] : comps);
});
}
function getEventTag$1(eventName) {
Expand Down
2 changes: 1 addition & 1 deletion packages/ethers/dist/ethers.esm.min.js

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion packages/ethers/dist/ethers.umd.js
Original file line number Diff line number Diff line change
Expand Up @@ -18110,9 +18110,13 @@
return [];
}
return data.split(/&/g).map(function (topic) {
return topic.split("|").map(function (topic) {
if (topic === "") {
return [];
}
var comps = topic.split("|").map(function (topic) {
return ((topic === "null") ? null : topic);
});
return ((comps.length === 1) ? comps[0] : comps);
});
}
function getEventTag(eventName) {
Expand Down
2 changes: 1 addition & 1 deletion packages/ethers/dist/ethers.umd.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/ethers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"tarballHash": "0xe03bfe094069b37c6d5e9033490799e7bd69f2b7e42e378f7292c4ad4807d542",
"tarballHash": "0xec76c84163413853fccd51f97b45a9db44799fddf3ff010421b5bd654933c0d8",
"types": "./lib/index.d.ts",
"version": "5.0.0-beta.184"
}
6 changes: 5 additions & 1 deletion packages/providers/lib.esm/base-provider.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,13 @@ function deserializeTopics(data) {
return [];
}
return data.split(/&/g).map((topic) => {
return topic.split("|").map((topic) => {
if (topic === "") {
return [];
}
const comps = topic.split("|").map((topic) => {
return ((topic === "null") ? null : topic);
});
return ((comps.length === 1) ? comps[0] : comps);
});
}
function getEventTag(eventName) {
Expand Down
6 changes: 5 additions & 1 deletion packages/providers/lib/base-provider.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,13 @@ function deserializeTopics(data) {
return [];
}
return data.split(/&/g).map(function (topic) {
return topic.split("|").map(function (topic) {
if (topic === "") {
return [];
}
var comps = topic.split("|").map(function (topic) {
return ((topic === "null") ? null : topic);
});
return ((comps.length === 1) ? comps[0] : comps);
});
}
function getEventTag(eventName) {
Expand Down
2 changes: 1 addition & 1 deletion packages/providers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"tarballHash": "0xb0f4b9497fef99345ace68624b454d876fae52a272514e185063846f9cb28dfb",
"tarballHash": "0xfb3823fd0c40bca106bc0e8e766e37cb766bebb4d0d4a71bea92a59d468c6efa",
"types": "./lib/index.d.ts",
"version": "5.0.0-beta.164"
}

0 comments on commit 9f80251

Please sign in to comment.