Skip to content

Commit

Permalink
Updated dist files.
Browse files Browse the repository at this point in the history
  • Loading branch information
ricmoo committed Dec 8, 2020
1 parent 0a6c15e commit 8e3cfd8
Show file tree
Hide file tree
Showing 26 changed files with 130 additions and 86 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Expand Up @@ -3,6 +3,12 @@ Changelog

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

ethers/v5.0.24 (2020-12-08 01:43)
---------------------------------

- Fixed EIP-712 getPayload dropping EIP712Domain from types for JSON-RPC calls. ([#687](https://github.com/ethers-io/ethers.js/issues/687); [d3b1ac0](https://github.com/ethers-io/ethers.js/commit/d3b1ac046aaf2a46f6c3efbd93c55adb0cb8f16d))
- Remvoed dead files. ([70c2b1b](https://github.com/ethers-io/ethers.js/commit/70c2b1b3002f44c39f4fd87fc2cfc3f5dc6555ed))

ethers/v5.0.23 (2020-11-25 15:25)
---------------------------------

Expand Down
144 changes: 85 additions & 59 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions packages/ethers/dist/ethers.esm.js
Expand Up @@ -7564,7 +7564,7 @@ function id(text) {
return keccak256(toUtf8Bytes(text));
}

const version$8 = "hash/5.0.8";
const version$8 = "hash/5.0.9";

const logger$b = new Logger(version$8);
const Zeros = new Uint8Array(32);
Expand Down Expand Up @@ -8006,6 +8006,9 @@ class TypedDataEncoder {
const encoder = TypedDataEncoder.from(types);
const typesWithDomain = shallowCopy(types);
if (typesWithDomain.EIP712Domain) {
logger$c.throwArgumentError("types must not contain EIP712Domain type", "types.EIP712Domain", types);
}
else {
typesWithDomain.EIP712Domain = domainTypes;
}
// Validate the data structures and types
Expand Down Expand Up @@ -21912,7 +21915,7 @@ var utils$1 = /*#__PURE__*/Object.freeze({
Indexed: Indexed
});

const version$o = "ethers/5.0.23";
const version$o = "ethers/5.0.24";

"use strict";
const logger$H = new Logger(version$o);
Expand Down
2 changes: 1 addition & 1 deletion packages/ethers/dist/ethers.esm.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/ethers/dist/ethers.esm.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/ethers/dist/ethers.esm.min.js.map

Large diffs are not rendered by default.

7 changes: 5 additions & 2 deletions packages/ethers/dist/ethers.umd.js
Expand Up @@ -8297,7 +8297,7 @@
var _version$g = createCommonjsModule(function (module, exports) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.version = "hash/5.0.8";
exports.version = "hash/5.0.9";

});

Expand Down Expand Up @@ -8834,6 +8834,9 @@
var encoder = TypedDataEncoder.from(types);
var typesWithDomain = lib$3.shallowCopy(types);
if (typesWithDomain.EIP712Domain) {
logger.throwArgumentError("types must not contain EIP712Domain type", "types.EIP712Domain", types);
}
else {
typesWithDomain.EIP712Domain = domainTypes;
}
// Validate the data structures and types
Expand Down Expand Up @@ -25295,7 +25298,7 @@
var _version$M = createCommonjsModule(function (module, exports) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.version = "ethers/5.0.23";
exports.version = "ethers/5.0.24";

});

Expand Down
2 changes: 1 addition & 1 deletion packages/ethers/dist/ethers.umd.js.map

Large diffs are not rendered by default.

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/dist/ethers.umd.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/ethers/lib.esm/_version.d.ts
@@ -1 +1 @@
export declare const version = "ethers/5.0.23";
export declare const version = "ethers/5.0.24";
2 changes: 1 addition & 1 deletion packages/ethers/lib.esm/_version.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/ethers/lib/_version.d.ts
@@ -1 +1 @@
export declare const version = "ethers/5.0.23";
export declare const version = "ethers/5.0.24";
2 changes: 1 addition & 1 deletion packages/ethers/lib/_version.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions packages/ethers/package.json
Expand Up @@ -12,7 +12,7 @@
"@ethersproject/bytes": "5.0.8",
"@ethersproject/constants": "5.0.7",
"@ethersproject/contracts": "5.0.8",
"@ethersproject/hash": "5.0.8",
"@ethersproject/hash": "5.0.9",
"@ethersproject/hdnode": "5.0.7",
"@ethersproject/json-wallets": "5.0.9",
"@ethersproject/keccak256": "5.0.6",
Expand Down Expand Up @@ -62,7 +62,7 @@
"test": "echo \"Error: no test specified\" && exit 1"
},
"sideEffects": false,
"tarballHash": "0x83b17f3e49b95f2126bb624832a0199300d914fbebcc9a404fef2917ee0b87eb",
"tarballHash": "0x29af40c513a6ae9f1f3d3b9281e9dab348f682dd7cc6a69f4f8977a03eb651eb",
"types": "./lib/index.d.ts",
"version": "5.0.23"
"version": "5.0.24"
}
2 changes: 1 addition & 1 deletion packages/ethers/src.ts/_version.ts
@@ -1 +1 @@
export const version = "ethers/5.0.23";
export const version = "ethers/5.0.24";
2 changes: 1 addition & 1 deletion packages/hash/lib.esm/_version.d.ts
@@ -1 +1 @@
export declare const version = "hash/5.0.8";
export declare const version = "hash/5.0.9";
2 changes: 1 addition & 1 deletion packages/hash/lib.esm/_version.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 8e3cfd8

Please sign in to comment.