Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.

Commit 2e4bbf4

Browse files
authored
Merge pull request #3470 from ethereum/release/1.2.7
Release - 1.2.7
2 parents fab4ce7 + c42d3e8 commit 2e4bbf4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+1583
-1544
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,4 +184,4 @@ Released with 1.0.0-beta.37 code base.
184184

185185
### Fixed
186186

187-
- Fix intermittent CI build issues with `dtslint`. (#3479)
187+
- Fix intermittent CI build issues with `dtslint`. (#3479)

dist/web3.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gulpfile.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ var ugliyOptions = {
119119
}
120120
};
121121

122+
// Apply lerna.json version to root package.json
122123
gulp.task('version', function() {
123124
if (!lernaJSON.version) {
124125
throw new Error('version property is missing from lerna.json');
@@ -143,6 +144,7 @@ gulp.task('lint', function() {
143144
.pipe(jshint.reporter('default'));
144145
});
145146

147+
// Delete dist folder
146148
gulp.task('clean', gulp.series('lint', function(cb) {
147149
del([DEST]).then(cb.bind(null, null));
148150
}));

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.2.5",
2+
"version": "1.2.7",
33
"lerna": "2.0.0",
44
"command": {
55
"init": {

package.json

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "web3",
2+
"name": "web3.js",
33
"private": true,
4-
"version": "1.2.6",
4+
"version": "1.2.7",
55
"description": "Ethereum JavaScript API wrapper repository",
66
"license": "LGPL-3.0",
77
"engines": {
@@ -20,10 +20,11 @@
2020
}
2121
],
2222
"scripts": {
23+
"version": "npm run build-all",
2324
"postinstall": "lerna bootstrap",
24-
"build": "gulp",
25-
"build-all": "gulp all",
26-
"release": "lerna bootstrap; lerna publish",
25+
"build": "lerna bootstrap && gulp",
26+
"build-all": "lerna bootstrap && gulp all",
27+
"publish": "lerna publish",
2728
"bootstrap": "lerna bootstrap",
2829
"watch": "gulp watch",
2930
"docs": "cd docs; make html;",
@@ -132,7 +133,7 @@
132133
"karma-firefox-launcher": "^1.2.0",
133134
"karma-mocha": "^1.3.0",
134135
"karma-spec-reporter": "0.0.32",
135-
"lerna": "^3.18.3",
136+
"lerna": "^3.20.2",
136137
"mocha": "^6.2.1",
137138
"nyc": "^14.1.1",
138139
"pify": "^4.0.1",

packages/web3-bzz/package-lock.json

Lines changed: 6 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/web3-bzz/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web3-bzz",
3-
"version": "1.2.6",
3+
"version": "1.2.7",
44
"description": "Web3 module to interact with the Swarm network.",
55
"repository": "https://github.com/ethereum/web3.js/tree/1.x/packages/web3-bzz",
66
"license": "LGPL-3.0",

packages/web3-core-helpers/package-lock.json

Lines changed: 6 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/web3-core-helpers/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web3-core-helpers",
3-
"version": "1.2.6",
3+
"version": "1.2.7",
44
"description": "Web3 core tools helper for sub packages. This is an internal package.",
55
"repository": "https://github.com/ethereum/web3.js/tree/1.x/packages/web3-core-helpers",
66
"license": "LGPL-3.0",
@@ -14,8 +14,8 @@
1414
"main": "src/index.js",
1515
"dependencies": {
1616
"underscore": "1.9.1",
17-
"web3-eth-iban": "1.2.6",
18-
"web3-utils": "1.2.6"
17+
"web3-eth-iban": "1.2.7",
18+
"web3-utils": "1.2.7"
1919
},
2020
"devDependencies": {
2121
"@types/node": "^12.12.5",

packages/web3-core-method/package-lock.json

Lines changed: 6 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/web3-core-method/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web3-core-method",
3-
"version": "1.2.6",
3+
"version": "1.2.7",
44
"description": "Creates the methods on the web3 modules. This is an internal package.",
55
"repository": "https://github.com/ethereum/web3.js/tree/1.x/packages/web3-core-method",
66
"license": "LGPL-3.0",
@@ -14,10 +14,10 @@
1414
"main": "src/index.js",
1515
"dependencies": {
1616
"underscore": "1.9.1",
17-
"web3-core-helpers": "1.2.6",
18-
"web3-core-promievent": "1.2.6",
19-
"web3-core-subscriptions": "1.2.6",
20-
"web3-utils": "1.2.6"
17+
"web3-core-helpers": "1.2.7",
18+
"web3-core-promievent": "1.2.7",
19+
"web3-core-subscriptions": "1.2.7",
20+
"web3-utils": "1.2.7"
2121
},
2222
"devDependencies": {
2323
"dtslint": "^3.4.1",

packages/web3-core-promievent/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/web3-core-promievent/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web3-core-promievent",
3-
"version": "1.2.6",
3+
"version": "1.2.7",
44
"description": "This package extends the EventEmitter with the Promise class to allow chaining as well as multiple final states of a function.",
55
"repository": "https://github.com/ethereum/web3.js/tree/1.x/packages/web3-core-promievent",
66
"license": "LGPL-3.0",

packages/web3-core-requestmanager/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web3-core-requestmanager",
3-
"version": "1.2.6",
3+
"version": "1.2.7",
44
"description": "Web3 module to handle requests to external providers.",
55
"repository": "https://github.com/ethereum/web3.js/tree/1.x/packages/web3-core-requestmanager",
66
"license": "LGPL-3.0",
@@ -10,9 +10,9 @@
1010
"main": "src/index.js",
1111
"dependencies": {
1212
"underscore": "1.9.1",
13-
"web3-core-helpers": "1.2.6",
14-
"web3-providers-http": "1.2.6",
15-
"web3-providers-ipc": "1.2.6",
16-
"web3-providers-ws": "1.2.6"
13+
"web3-core-helpers": "1.2.7",
14+
"web3-providers-http": "1.2.7",
15+
"web3-providers-ipc": "1.2.7",
16+
"web3-providers-ws": "1.2.7"
1717
}
1818
}

packages/web3-core-subscriptions/package-lock.json

Lines changed: 6 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/web3-core-subscriptions/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web3-core-subscriptions",
3-
"version": "1.2.6",
3+
"version": "1.2.7",
44
"description": "Manages web3 subscriptions. This is an internal package.",
55
"repository": "https://github.com/ethereum/web3.js/tree/1.x/packages/web3-core-subscriptions",
66
"license": "LGPL-3.0",
@@ -15,7 +15,7 @@
1515
"dependencies": {
1616
"eventemitter3": "3.1.2",
1717
"underscore": "1.9.1",
18-
"web3-core-helpers": "1.2.6"
18+
"web3-core-helpers": "1.2.7"
1919
},
2020
"devDependencies": {
2121
"dtslint": "^3.4.1",

packages/web3-core/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/web3-core/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web3-core",
3-
"version": "1.2.6",
3+
"version": "1.2.7",
44
"description": "Web3 core tools for sub packages. This is an internal package.",
55
"repository": "https://github.com/ethereum/web3.js/tree/1.x/packages/web3-core",
66
"license": "LGPL-3.0",
@@ -16,10 +16,10 @@
1616
"@types/bn.js": "^4.11.4",
1717
"@types/node": "^12.6.1",
1818
"bignumber.js": "^9.0.0",
19-
"web3-core-helpers": "1.2.6",
20-
"web3-core-method": "1.2.6",
21-
"web3-core-requestmanager": "1.2.6",
22-
"web3-utils": "1.2.6"
19+
"web3-core-helpers": "1.2.7",
20+
"web3-core-method": "1.2.7",
21+
"web3-core-requestmanager": "1.2.7",
22+
"web3-utils": "1.2.7"
2323
},
2424
"devDependencies": {
2525
"dtslint": "^3.4.1",

packages/web3-eth-abi/package-lock.json

Lines changed: 6 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/web3-eth-abi/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web3-eth-abi",
3-
"version": "1.2.6",
3+
"version": "1.2.7",
44
"description": "Web3 module encode and decode EVM in/output.",
55
"repository": "https://github.com/ethereum/web3.js/tree/1.x/packages/web3-eth-abi",
66
"license": "LGPL-3.0",
@@ -15,7 +15,7 @@
1515
"dependencies": {
1616
"ethers": "4.0.0-beta.3",
1717
"underscore": "1.9.1",
18-
"web3-utils": "1.2.6"
18+
"web3-utils": "1.2.7"
1919
},
2020
"devDependencies": {
2121
"dtslint": "^3.4.1",

packages/web3-eth-accounts/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)