admin: updated dist files.

This commit is contained in:
Richard Moore 2022-03-16 01:25:22 -04:00
parent 905e98aa39
commit b1c7f5c21a
11 changed files with 18 additions and 18 deletions

View File

@ -4,10 +4,10 @@ Changelog
This change log is managed by `admin/cmds/update-versions` but may be manually updated.
ethers/v5.6.1 (2022-03-15 22:03)
ethers/v5.6.1 (2022-03-16 01:25)
--------------------------------
- Fix issue with CCIP Read using wrong sender. ([#2478](https://github.com/ethers-io/ethers.js/issues/2478); [5998fea](https://github.com/ethers-io/ethers.js/commit/5998fea53d5ea26358c2f10939dfdf0bc679936d))
- Fix issue with CCIP Read using wrong sender. ([#2478](https://github.com/ethers-io/ethers.js/issues/2478); [5998fea](https://github.com/ethers-io/ethers.js/commit/5998fea53d5ea26358c2f10939dfdf0bc679936d), [905e98a](https://github.com/ethers-io/ethers.js/commit/905e98aa392e2a52d6b0339b21bfce5237fd8662))
ethers/v5.6.0 (2022-03-09 14:57)
--------------------------------
@ -472,4 +472,4 @@ ethers/v5.0.0 (2020-06-12 19:58)
--------------------------------
- Preserve config canary string. ([7157816](https://github.com/ethers-io/ethers.js/commit/7157816fa53f660d750811b293e3b1d5a2f70bd4))
- Updated docs. ([9e4c7e6](https://github.com/ethers-io/ethers.js/commit/9e4c7e609d9eeb5f2a11d6a90bfa9d32ee696431))
- Updated docs. ([9e4c7e6](https://github.com/ethers-io/ethers.js/commit/9e4c7e609d9eeb5f2a11d6a90bfa9d32ee696431))

View File

@ -1,2 +1,2 @@
export declare const version = "tests/5.6.0";
export declare const version = "tests/5.6.1";
//# sourceMappingURL=_version.d.ts.map

View File

@ -1,2 +1,2 @@
export const version = "tests/5.6.0";
export const version = "tests/5.6.1";
//# sourceMappingURL=_version.js.map

View File

@ -1308,7 +1308,7 @@ describe("Test CCIP execution", function () {
this.timeout(60000);
const data = "0x1234";
const result = yield contract.testGet(data, { ccipReadEnabled: true });
verify(ethers.constants.AddressZero, data, result);
verify(address, data, result);
});
});
it("testGet should fail with CCIP not explicitly enabled by overrides", function () {
@ -1419,7 +1419,7 @@ describe("Test CCIP execution", function () {
this.timeout(60000);
const data = "0x123456";
const result = yield contract.testGetFallback(data, { ccipReadEnabled: true });
verify(ethers.constants.AddressZero, data, result);
verify(address, data, result);
});
});
it("testPost passes under normal operation", function () {
@ -1427,7 +1427,7 @@ describe("Test CCIP execution", function () {
this.timeout(60000);
const data = "0x1234";
const result = yield contract.testPost(data, { ccipReadEnabled: true });
verify(ethers.constants.AddressZero, data, result);
verify(address, data, result);
});
});
});

File diff suppressed because one or more lines are too long

View File

@ -1,2 +1,2 @@
export declare const version = "tests/5.6.0";
export declare const version = "tests/5.6.1";
//# sourceMappingURL=_version.d.ts.map

View File

@ -1,5 +1,5 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.version = void 0;
exports.version = "tests/5.6.0";
exports.version = "tests/5.6.1";
//# sourceMappingURL=_version.js.map

View File

@ -1606,7 +1606,7 @@ describe("Test CCIP execution", function () {
return [4 /*yield*/, contract.testGet(data, { ccipReadEnabled: true })];
case 1:
result = _a.sent();
verify(ethers_1.ethers.constants.AddressZero, data, result);
verify(address, data, result);
return [2 /*return*/];
}
});
@ -1786,7 +1786,7 @@ describe("Test CCIP execution", function () {
return [4 /*yield*/, contract.testGetFallback(data, { ccipReadEnabled: true })];
case 1:
result = _a.sent();
verify(ethers_1.ethers.constants.AddressZero, data, result);
verify(address, data, result);
return [2 /*return*/];
}
});
@ -1803,7 +1803,7 @@ describe("Test CCIP execution", function () {
return [4 /*yield*/, contract.testPost(data, { ccipReadEnabled: true })];
case 1:
result = _a.sent();
verify(ethers_1.ethers.constants.AddressZero, data, result);
verify(address, data, result);
return [2 /*return*/];
}
});

File diff suppressed because one or more lines are too long

View File

@ -37,7 +37,7 @@
"scripts": {
"test": "exit 1"
},
"tarballHash": "0xf85cefbce9a9c5e18aa50766ed52ad6c85b7d46aa315820e7e73181df11202e6",
"tarballHash": "0x54b80192dfddc20772b05a61641bb764504ff0f9fb9572599aca4e49794dd720",
"types": "./lib/index.d.ts",
"version": "5.6.0"
"version": "5.6.1"
}

View File

@ -1 +1 @@
export const version = "tests/5.6.0";
export const version = "tests/5.6.1";