Updated dist files.

This commit is contained in:
Richard Moore 2019-06-04 16:08:07 -04:00
parent 5bf763fe23
commit 69bfc6b736
No known key found for this signature in database
GPG Key ID: 525F70A6FCABC295
12 changed files with 23 additions and 26 deletions

@ -3,15 +3,20 @@ Changelog
This change log is managed by `scripts/cmd/update-versions` but may be manually updated. This change log is managed by `scripts/cmd/update-versions` but may be manually updated.
ethers/v5.0.0-beta.138 (2019-06-04 16:05)
-----------------------------------------
- Fixed INFURA project ID checking. ([#534](https://github.com/ethers-io/ethers.js/issues/534); [5bf763f](https://github.com/ethers-io/ethers.js/commit/5bf763fe2307e8570ab5e91e30c43e2e5731fc39))
ethers/v5.0.0-beta.137 (2019-06-01 14:06) ethers/v5.0.0-beta.137 (2019-06-01 14:06)
----------------------------------------- -----------------------------------------
- Fixed invalid arrayify value in browser for SHA2-HMAC. ([#530](https://github.com/ethers-io/ethers.js/issues/ + issue); [c4a494b](https://github.com/ethers-io/ethers.js/commit/c4a494b528f2e5f706c159d916d8ff0ffd96a211)) - Fixed invalid arrayify value in browser for SHA2-HMAC. ([#530](https://github.com/ethers-io/ethers.js/issues/530); [c4a494b](https://github.com/ethers-io/ethers.js/commit/c4a494b528f2e5f706c159d916d8ff0ffd96a211))
- Fix event and function fragment formatting. ([a2d4b29](https://github.com/ethers-io/ethers.js/commit/a2d4b2907184d9480a72fe6f67652489074af86e)) - Fix event and function fragment formatting. ([a2d4b29](https://github.com/ethers-io/ethers.js/commit/a2d4b2907184d9480a72fe6f67652489074af86e))
- Fixed default JsonRpcSigner. ([#532](https://github.com/ethers-io/ethers.js/issues/ + issue); [5ba6a61](https://github.com/ethers-io/ethers.js/commit/5ba6a616a6f969b1f28f8c6367c21488f497a7ae)) - Fixed default JsonRpcSigner. ([#532](https://github.com/ethers-io/ethers.js/issues/532); [5ba6a61](https://github.com/ethers-io/ethers.js/commit/5ba6a616a6f969b1f28f8c6367c21488f497a7ae))
- Added changelog management to update-versions. ([4a3f719](https://github.com/ethers-io/ethers.js/commit/4a3f7190dc04275030d313289e1ba6a2b31407ec)) - Added changelog management to update-versions. ([4a3f719](https://github.com/ethers-io/ethers.js/commit/4a3f7190dc04275030d313289e1ba6a2b31407ec))
ethers/5.0.0-beta.136 ethers/v5.0.0-beta.136
--------------------- ---------------------
- Added queryFilter to Contracts. ([#463](https://github.com/ethers-io/ethers.js/issues/463); [eea53bb](https://github.com/ethers-io/ethers.js/commit/eea53bb1be29ad2bd1b229a13c85b12be264b019)) - Added queryFilter to Contracts. ([#463](https://github.com/ethers-io/ethers.js/issues/463); [eea53bb](https://github.com/ethers-io/ethers.js/commit/eea53bb1be29ad2bd1b229a13c85b12be264b019))

@ -1 +1 @@
export declare const version = "5.0.0-beta.137"; export declare const version = "5.0.0-beta.138";

@ -1,3 +1,3 @@
"use strict"; "use strict";
Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "__esModule", { value: true });
exports.version = "5.0.0-beta.137"; exports.version = "5.0.0-beta.138";

@ -13328,7 +13328,7 @@ exports.info = info;
},{}],67:[function(require,module,exports){ },{}],67:[function(require,module,exports){
"use strict"; "use strict";
Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "__esModule", { value: true });
exports.version = "5.0.0-beta.137"; exports.version = "5.0.0-beta.138";
},{}],68:[function(require,module,exports){ },{}],68:[function(require,module,exports){
"use strict"; "use strict";
@ -16876,7 +16876,6 @@ var __importStar = (this && this.__importStar) || function (mod) {
return result; return result;
}; };
Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "__esModule", { value: true });
var bytes_1 = require("@ethersproject/bytes");
var errors = __importStar(require("@ethersproject/errors")); var errors = __importStar(require("@ethersproject/errors"));
var url_json_rpc_provider_1 = require("./url-json-rpc-provider"); var url_json_rpc_provider_1 = require("./url-json-rpc-provider");
var defaultProjectId = "84842078b09946638c03157f83405213"; var defaultProjectId = "84842078b09946638c03157f83405213";
@ -16894,9 +16893,6 @@ var InfuraProvider = /** @class */ (function (_super) {
if (apiKey == null) { if (apiKey == null) {
return defaultProjectId; return defaultProjectId;
} }
if (!bytes_1.isHexString(apiKey, 16)) {
errors.throwArgumentError("invalid projectId", "projectId", apiKey);
}
return apiKey; return apiKey;
}; };
InfuraProvider.getUrl = function (network, apiKey) { InfuraProvider.getUrl = function (network, apiKey) {
@ -16923,13 +16919,13 @@ var InfuraProvider = /** @class */ (function (_super) {
value: network value: network
}); });
} }
return "https://" + host + "/v3/" + apiKey; return "https:/" + "/" + host + "/v3/" + apiKey;
}; };
return InfuraProvider; return InfuraProvider;
}(url_json_rpc_provider_1.UrlJsonRpcProvider)); }(url_json_rpc_provider_1.UrlJsonRpcProvider));
exports.InfuraProvider = InfuraProvider; exports.InfuraProvider = InfuraProvider;
},{"./url-json-rpc-provider":93,"@ethersproject/bytes":63,"@ethersproject/errors":66}],91:[function(require,module,exports){ },{"./url-json-rpc-provider":93,"@ethersproject/errors":66}],91:[function(require,module,exports){
"use strict"; "use strict";
var __extends = (this && this.__extends) || (function () { var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) { var extendStatics = function (d, b) {

File diff suppressed because one or more lines are too long

@ -1,6 +1,6 @@
{ {
"name": "ethers", "name": "ethers",
"version": "5.0.0-beta.137", "version": "5.0.0-beta.138",
"description": "Error utility functions for ethers.", "description": "Error utility functions for ethers.",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
@ -56,5 +56,5 @@
"publishConfig": { "publishConfig": {
"tag": "next" "tag": "next"
}, },
"tarballHash": "0x2801b27d64ade38d8da12df67d8677dbd20e00079f4cecc2355e1f3aaf70c5b6" "tarballHash": "0xef52885515a9a06622a97875560ac417533a0a6584f580cfed7a2db0a8e4b1f6"
} }

@ -1 +1 @@
export const version = "5.0.0-beta.137"; export const version = "5.0.0-beta.138";

@ -1 +1 @@
export declare const version = "5.0.0-beta.132"; export declare const version = "5.0.0-beta.133";

@ -1,3 +1,3 @@
"use strict"; "use strict";
Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "__esModule", { value: true });
exports.version = "5.0.0-beta.132"; exports.version = "5.0.0-beta.133";

@ -20,7 +20,6 @@ var __importStar = (this && this.__importStar) || function (mod) {
return result; return result;
}; };
Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "__esModule", { value: true });
var bytes_1 = require("@ethersproject/bytes");
var errors = __importStar(require("@ethersproject/errors")); var errors = __importStar(require("@ethersproject/errors"));
var url_json_rpc_provider_1 = require("./url-json-rpc-provider"); var url_json_rpc_provider_1 = require("./url-json-rpc-provider");
var defaultProjectId = "84842078b09946638c03157f83405213"; var defaultProjectId = "84842078b09946638c03157f83405213";
@ -38,9 +37,6 @@ var InfuraProvider = /** @class */ (function (_super) {
if (apiKey == null) { if (apiKey == null) {
return defaultProjectId; return defaultProjectId;
} }
if (!bytes_1.isHexString(apiKey, 16)) {
errors.throwArgumentError("invalid projectId", "projectId", apiKey);
}
return apiKey; return apiKey;
}; };
InfuraProvider.getUrl = function (network, apiKey) { InfuraProvider.getUrl = function (network, apiKey) {
@ -67,7 +63,7 @@ var InfuraProvider = /** @class */ (function (_super) {
value: network value: network
}); });
} }
return "https://" + host + "/v3/" + apiKey; return "https:/" + "/" + host + "/v3/" + apiKey;
}; };
return InfuraProvider; return InfuraProvider;
}(url_json_rpc_provider_1.UrlJsonRpcProvider)); }(url_json_rpc_provider_1.UrlJsonRpcProvider));

@ -1,6 +1,6 @@
{ {
"name": "@ethersproject/providers", "name": "@ethersproject/providers",
"version": "5.0.0-beta.132", "version": "5.0.0-beta.133",
"description": "Error utility functions for ethers.", "description": "Error utility functions for ethers.",
"main": "index.js", "main": "index.js",
"browser": { "browser": {
@ -39,5 +39,5 @@
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"
}, },
"tarballHash": "0xfb5a993721671c86bec1248c88f39a5867f66c914c73d9ec3cc509705b845945" "tarballHash": "0xf0a2a7f427f8113a474fd63f14d5720941f05530fbe98d383e55dfc9bae29286"
} }

@ -1 +1 @@
export const version = "5.0.0-beta.132"; export const version = "5.0.0-beta.133";