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

Commit 3e44279

Browse files
authored
Merge pull request #2803 from ethereum/release/1.0.0-beta.55
Release - 1.0.0-beta.55
2 parents 16a12b1 + 847deb1 commit 3e44279

Some content is hidden

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

50 files changed

+426
-281
lines changed

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ node_js:
44
- "9"
55
- "10"
66
- "11"
7+
- "12"
78
env:
89
- CXX=g++-4.8
910
addons:

docs/index.rst

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ Contents:
3939
web3-eth-net
4040
web3-eth-abi
4141
web3-net
42+
web3-bzz
4243
web3-shh
4344
web3-utils
4445
web3-module

docs/web3-bzz.rst

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
.. _bzz:
2+
3+
.. include:: include_announcement.rst
4+
5+
========
6+
web3.bzz
7+
========
8+
9+
The ``web3-bzz`` does no longer exists in the web3.js project. Check out the `Swarm Docs <http://swarm-guide.readthedocs.io/en/latest/>`_
10+
for seeing possible alternatives to interact with the Swarm API.

docs/web3-eth.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -538,7 +538,7 @@ Returns
538538
- ``size`` - ``Number``: Integer the size of this block in bytes.
539539
- ``gasLimit`` - ``Number``: The maximum gas allowed in this block.
540540
- ``gasUsed`` - ``Number``: The total used gas by all transactions in this block.
541-
- ``timestamp`` - ``Number | String`: The unix timestamp for when the block was collated (returns a string if a overflow got detected).
541+
- ``timestamp`` - ``Number | String``: The unix timestamp for when the block was collated (returns a string if a overflow got detected).
542542
- ``transactions`` - ``Array``: Array of transaction objects, or 32 Bytes transaction hashes depending on the ``returnTransactionObjects`` parameter.
543543
- ``uncles`` - ``Array``: Array of uncle hashes.
544544

docs/web3-module.rst

+16-2
Original file line numberDiff line numberDiff line change
@@ -51,21 +51,35 @@ Example
5151
/**
5252
* @param {AbstractSocketProvider|HttpProvider|CustomProvider|String} provider
5353
* @param {Web3ModuleOptions} options
54-
* @param {Net.Socket} nodeNet
54+
* @param {Net.Socket} net
5555
*
5656
* @constructor
5757
*/
5858
constructor(provider, net, options) {
5959
super(provider, net, new MethodFactory(Utils, formatters), options;
6060
}
6161
62+
/**
63+
* Executes the eth_sign JSON-RPC method
64+
*
65+
* @method sign
66+
*
67+
* @returns {Promise}
68+
*/
6269
sign() {
63-
const method = new AbstractMethod('eth_sign', 2, utils, formatters, this);
70+
const method = new AbstractMethod('eth_sign', 2, Utils, formatters, this);
6471
method.setArguments(arguments)
6572
6673
return method.execute();
6774
}
6875
76+
/**
77+
* Executes the eth_subscribe JSON-RPC method with the subscription type logs
78+
*
79+
* @method logs
80+
*
81+
* @returns {LogSubscription}
82+
*/
6983
logs(options) {
7084
return new LogSubscription(
7185
options,

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0-beta.54",
2+
"version": "1.0.0-beta.55",
33
"lerna": "2.0.0",
44
"command": {
55
"init": {

package-lock.json

+20-38
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "web3",
33
"namespace": "ethereum",
4-
"version": "1.0.0-beta.54",
4+
"version": "1.0.0-beta.55",
55
"description": "Ethereum JavaScript API wrapper repository",
66
"license": "LGPL-3.0",
77
"main": "./packages/web3/src/index.js",
@@ -15,7 +15,7 @@
1515
"install:all": "lerna add",
1616
"remove:all": "lerna exec npm uninstall",
1717
"install:dev:all": "lerna exec npm install --save-dev",
18-
"publish": "npm run clean && npm run bootstrap && npm run travis && lerna publish --skip-git",
18+
"publish": "npm run bootstrap && npm run travis && lerna publish --skip-git",
1919
"build": "lerna run build",
2020
"test": "lerna run test",
2121
"test:coverage": "lerna run test -- --coverage && npm run istanbulCombine",

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

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/web3-core-helpers/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "web3-core-helpers",
33
"namespace": "ethereum",
4-
"version": "1.0.0-beta.54",
4+
"version": "1.0.0-beta.55",
55
"description": "Web3 core tools helper for sub packages. This is an internal package.",
66
"repository": "https://github.com/ethereum/web3.js/tree/1.0/packages/web3-core-helpers",
77
"license": "LGPL-3.0",
@@ -18,9 +18,9 @@
1818
"dependencies": {
1919
"@babel/runtime": "^7.3.1",
2020
"lodash": "^4.17.11",
21-
"web3-eth-iban": "1.0.0-beta.54",
22-
"web3-utils": "1.0.0-beta.54",
23-
"web3-core": "1.0.0-beta.54"
21+
"web3-core": "1.0.0-beta.55",
22+
"web3-eth-iban": "1.0.0-beta.55",
23+
"web3-utils": "1.0.0-beta.55"
2424
},
2525
"devDependencies": {
2626
"definitelytyped-header-parser": "^1.0.1",
@@ -30,5 +30,5 @@
3030
"dist",
3131
"types/index.d.ts"
3232
],
33-
"gitHead": "b3f8427438e5bfe1daca7a63f4eb7cd8e9e4d6c0"
33+
"gitHead": "37347fd46344f45d1c57104920bdda0779f0d51c"
3434
}

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

+5-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/web3-core-method/package.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "web3-core-method",
33
"namespace": "ethereum",
4-
"version": "1.0.0-beta.54",
4+
"version": "1.0.0-beta.55",
55
"description": "Handles the JSON-RPC methods. This package is also internally used by web3.",
66
"repository": "https://github.com/ethereum/web3.js/tree/1.0/packages/web3-core-method",
77
"license": "LGPL-3.0",
@@ -19,21 +19,21 @@
1919
"dependencies": {
2020
"@babel/runtime": "^7.3.1",
2121
"eventemitter3": "3.1.0",
22+
"lodash": "^4.17.11",
2223
"rxjs": "^6.4.0",
23-
"web3-core": "1.0.0-beta.54",
24-
"web3-core-helpers": "1.0.0-beta.54",
25-
"web3-utils": "1.0.0-beta.54",
26-
"web3-core-subscriptions": "1.0.0-beta.54",
27-
"lodash": "^4.17.11"
24+
"web3-core": "1.0.0-beta.55",
25+
"web3-core-helpers": "1.0.0-beta.55",
26+
"web3-core-subscriptions": "1.0.0-beta.55",
27+
"web3-utils": "1.0.0-beta.55"
2828
},
2929
"devDependencies": {
3030
"definitelytyped-header-parser": "^1.0.1",
3131
"dtslint": "0.4.2",
32-
"web3-providers": "1.0.0-beta.54"
32+
"web3-providers": "1.0.0-beta.55"
3333
},
3434
"files": [
3535
"dist",
3636
"types/index.d.ts"
3737
],
38-
"gitHead": "b3f8427438e5bfe1daca7a63f4eb7cd8e9e4d6c0"
38+
"gitHead": "37347fd46344f45d1c57104920bdda0779f0d51c"
3939
}

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

+16-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/web3-core-subscriptions/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "web3-core-subscriptions",
33
"namespace": "ethereum",
4-
"version": "1.0.0-beta.54",
4+
"version": "1.0.0-beta.55",
55
"description": "Manages web3 subscriptions. This is an internal package.",
66
"repository": "https://github.com/ethereum/web3.js/tree/1.0/packages/web3-core-subscriptions",
77
"license": "LGPL-3.0",
@@ -22,11 +22,11 @@
2222
"devDependencies": {
2323
"definitelytyped-header-parser": "^1.0.1",
2424
"dtslint": "0.4.2",
25-
"web3-core-helpers": "1.0.0-beta.54",
26-
"web3-utils": "1.0.0-beta.54"
25+
"web3-core-helpers": "1.0.0-beta.55",
26+
"web3-utils": "1.0.0-beta.55"
2727
},
2828
"files": [
2929
"dist"
3030
],
31-
"gitHead": "b3f8427438e5bfe1daca7a63f4eb7cd8e9e4d6c0"
31+
"gitHead": "37347fd46344f45d1c57104920bdda0779f0d51c"
3232
}

0 commit comments

Comments
 (0)