admin: update dist files

This commit is contained in:
Richard Moore 2023-04-19 17:30:37 +09:00
parent 6b9305886f
commit 10e03e095b
22 changed files with 33 additions and 28 deletions

View File

@ -3,6 +3,11 @@ Change Log
This change log is maintained by `src.ts/_admin/update-changelog.ts` but may also be manually updated.
ethers/v6.3.1 (2023-04-19 17:30)
--------------------------------
- Populate any missing log.removed with false ([#3959](https://github.com/ethers-io/ethers.js/issues/3959); [4e478e6](https://github.com/ethers-io/ethers.js/commit/4e478e625d5648f2172631eef5fda5776ee776b0)).
ethers/v6.3.0 (2023-04-06 04:35)
--------------------------------
@ -10,7 +15,7 @@ ethers/v6.3.0 (2023-04-06 04:35)
- Add _in_ operator support for contract and contract.filters ([#3901](https://github.com/ethers-io/ethers.js/issues/3901); [c58ab3a](https://github.com/ethers-io/ethers.js/commit/c58ab3a97687e15a3ffe30b038089c5f4b570bb9)).
- Fixed TypedData unsigned value range ([#3873](https://github.com/ethers-io/ethers.js/issues/3873); [a851b24](https://github.com/ethers-io/ethers.js/commit/a851b24d0af009ecf277766d2a5f81f9b3e7f9f8)).
- Added missing export for getIndexedAccountPath ([#3875](https://github.com/ethers-io/ethers.js/issues/3875); [356ff2b](https://github.com/ethers-io/ethers.js/commit/356ff2becb4f4d3622b281d3825770af5caf71ca)).
- Fixed TypedData payloads for JSON-restricted chainId field ([#3868](https://github.com/ethers-io/ethers.js/issues/3868); [50b74b8](https://github.com/ethers-io/ethers.js/commit/50b74b8806ef2064f2764b09f89c7ac75fda3a3c)).
- Fixed TypedData payloads for JSON-restricted chainId field ([#3836](https://github.com/ethers-io/ethers.js/issues/3836); [50b74b8](https://github.com/ethers-io/ethers.js/commit/50b74b8806ef2064f2764b09f89c7ac75fda3a3c)).
ethers/v6.2.3 (2023-03-27 21:22)
--------------------------------

6
dist/ethers.js vendored
View File

@ -3,7 +3,7 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
/**
* The current version of Ethers.
*/
const version = "6.3.0";
const version = "6.3.1";
/**
* Property helper functions.
@ -7466,7 +7466,7 @@ class TupleCoder extends Coder {
/**
* A simple hashing function which operates on UTF-8 strings to
* compute an 32-byte irentifier.
* compute an 32-byte identifier.
*
* This simply computes the [UTF-8 bytes](toUtf8Bytes) and computes
* the [[keccak256]].
@ -14909,7 +14909,7 @@ const _formatLog = object({
blockNumber: getNumber,
data: formatData,
index: getNumber,
removed: formatBoolean,
removed: allowNull(formatBoolean, false),
topics: arrayOf(formatHash),
transactionHash: formatHash,
transactionIndex: getNumber,

2
dist/ethers.js.map vendored

File diff suppressed because one or more lines are too long

2
dist/ethers.min.js vendored

File diff suppressed because one or more lines are too long

6
dist/ethers.umd.js vendored
View File

@ -9,7 +9,7 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
/**
* The current version of Ethers.
*/
const version = "6.3.0";
const version = "6.3.1";
/**
* Property helper functions.
@ -7472,7 +7472,7 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
/**
* A simple hashing function which operates on UTF-8 strings to
* compute an 32-byte irentifier.
* compute an 32-byte identifier.
*
* This simply computes the [UTF-8 bytes](toUtf8Bytes) and computes
* the [[keccak256]].
@ -14915,7 +14915,7 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
blockNumber: getNumber,
data: formatData,
index: getNumber,
removed: formatBoolean,
removed: allowNull(formatBoolean, false),
topics: arrayOf(formatHash),
transactionHash: formatHash,
transactionIndex: getNumber,

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -149,7 +149,7 @@ const u64 = {
/**
* The current version of Ethers.
*/
const version = "6.3.0";
const version = "6.3.1";
/**
* Property helper functions.
@ -846,7 +846,7 @@ Object.freeze(keccak256);
/**
* A simple hashing function which operates on UTF-8 strings to
* compute an 32-byte irentifier.
* compute an 32-byte identifier.
*
* This simply computes the [UTF-8 bytes](toUtf8Bytes) and computes
* the [[keccak256]].

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -5,5 +5,5 @@ exports.version = void 0;
/**
* The current version of Ethers.
*/
exports.version = "6.3.0";
exports.version = "6.3.1";
//# sourceMappingURL=_version.js.map

View File

@ -1,6 +1,6 @@
/**
* A simple hashing function which operates on UTF-8 strings to
* compute an 32-byte irentifier.
* compute an 32-byte identifier.
*
* This simply computes the [UTF-8 bytes](toUtf8Bytes) and computes
* the [[keccak256]].

View File

@ -5,7 +5,7 @@ const index_js_1 = require("../crypto/index.js");
const index_js_2 = require("../utils/index.js");
/**
* A simple hashing function which operates on UTF-8 strings to
* compute an 32-byte irentifier.
* compute an 32-byte identifier.
*
* This simply computes the [UTF-8 bytes](toUtf8Bytes) and computes
* the [[keccak256]].

View File

@ -93,7 +93,7 @@ const _formatLog = object({
blockNumber: index_js_4.getNumber,
data: formatData,
index: index_js_4.getNumber,
removed: formatBoolean,
removed: allowNull(formatBoolean, false),
topics: arrayOf(formatHash),
transactionHash: formatHash,
transactionIndex: index_js_4.getNumber,

File diff suppressed because one or more lines are too long

View File

@ -2,5 +2,5 @@
/**
* The current version of Ethers.
*/
export const version = "6.3.0";
export const version = "6.3.1";
//# sourceMappingURL=_version.js.map

View File

@ -2,7 +2,7 @@ import { keccak256 } from "../crypto/index.js";
import { toUtf8Bytes } from "../utils/index.js";
/**
* A simple hashing function which operates on UTF-8 strings to
* compute an 32-byte irentifier.
* compute an 32-byte identifier.
*
* This simply computes the [UTF-8 bytes](toUtf8Bytes) and computes
* the [[keccak256]].

View File

@ -83,7 +83,7 @@ const _formatLog = object({
blockNumber: getNumber,
data: formatData,
index: getNumber,
removed: formatBoolean,
removed: allowNull(formatBoolean, false),
topics: arrayOf(formatHash),
transactionHash: formatHash,
transactionIndex: getNumber,

File diff suppressed because one or more lines are too long

View File

@ -116,7 +116,7 @@
"url": "https://www.buymeacoffee.com/ricmoo"
}
],
"gitHead": "8c5973e3a9b8d4d4ed80bdf209d8a0b6cc6b8d6d",
"gitHead": "6b9305886f9a80ccc23cb9663d635892ba037895",
"homepage": "https://ethers.org",
"keywords": [
"ethereum",
@ -157,5 +157,5 @@
"sideEffects": false,
"type": "module",
"types": "./types/index.d.ts",
"version": "6.3.0"
"version": "6.3.1"
}

View File

@ -3,4 +3,4 @@
/**
* The current version of Ethers.
*/
export const version: string = "6.3.0";
export const version: string = "6.3.1";

2
types/hash/id.d.ts vendored
View File

@ -1,6 +1,6 @@
/**
* A simple hashing function which operates on UTF-8 strings to
* compute an 32-byte irentifier.
* compute an 32-byte identifier.
*
* This simply computes the [UTF-8 bytes](toUtf8Bytes) and computes
* the [[keccak256]].