Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rc/v0.6.0 #266

Closed
wants to merge 127 commits into from
Closed

Rc/v0.6.0 #266

wants to merge 127 commits into from

Conversation

doitian
Copy link
Member

@doitian doitian commented Feb 11, 2019

Bug Fixes

Features

BREAKING CHANGES

  • RPC local_node_id no longer exists, use new added RPC local_node_info to get node addresses.
  • The chain spec path in node's configuration JSON file changed from "ckb.chain" to "chain.spec".
  • Config file must be updated with new DB configurations as below
{
+    "db": {
+        "path": "db"
+    }
}
  • RPC get_block_template adds a new option block_assembler in config file.
  • Miner has its own config file now, the default is nodes_template/miner.json
  • The flatbuffers schema adopts the new MerkleProof structure.

zhangsoledad and others added 30 commits January 18, 2019 13:49
chore: bump rust-toolchain from 1.31.1 to 1.32.0
…-0.2.8

chore(deps): bump criterion from 0.2.5 to 0.2.8
Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.35 to 1.0.36.
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.35...v1.0.36)

Signed-off-by: dependabot[bot] <support@dependabot.com>
…n-1.0.36

chore(deps): bump serde_json from 1.0.35 to 1.0.36
…-1.3.0

chore(deps): bump byteorder from 1.2.7 to 1.3.0
Bumps [serde_derive](https://github.com/serde-rs/serde) from 1.0.84 to 1.0.85.
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.84...v1.0.85)

Signed-off-by: dependabot[bot] <support@dependabot.com>
…ive-1.0.85

chore(deps): bump serde_derive from 1.0.84 to 1.0.85
Bumps [serde](https://github.com/serde-rs/serde) from 1.0.84 to 1.0.85.
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.84...v1.0.85)

Signed-off-by: dependabot[bot] <support@dependabot.com>
chore(deps): bump serde from 1.0.84 to 1.0.85
blocktemplate refresh when the best block changes, OR 3 seconds has passed and there are more
transactions and uncles
BREAKING CHANGE: The chainspec path in node's configuration
json file changed from "ckb.chain" to "chain.spec".
BREAKING CHANGE: Config file must be updated with new db configurations
as below otherwise node won't start.

```json
{
+    "db": {
+        "backend": "rocksdb",
+        "rocksdb": {
+            "path": "db"
+        }
+    }
}
```
Jan Xie and others added 29 commits February 15, 2019 17:07
Bumps [bincode](https://github.com/TyOverby/bincode) from 1.1.1 to 1.1.2.
- [Release notes](https://github.com/TyOverby/bincode/releases)
- [Commits](bincode-org/bincode@v1.1.1...v1.1.2)

Signed-off-by: dependabot[bot] <support@dependabot.com>
Bumps [hyper](https://github.com/hyperium/hyper) from 0.12.23 to 0.12.24.
- [Release notes](https://github.com/hyperium/hyper/releases)
- [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md)
- [Commits](hyperium/hyper@v0.12.23...v0.12.24)

Signed-off-by: dependabot[bot] <support@dependabot.com>
Bumps [serde](https://github.com/serde-rs/serde) from 1.0.87 to 1.0.88.
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.87...v1.0.88)

Signed-off-by: dependabot[bot] <support@dependabot.com>
Bumps [unsigned-varint](https://github.com/paritytech/unsigned-varint) from `2fe0e98` to `881f02d`.
- [Release notes](https://github.com/paritytech/unsigned-varint/releases)
- [Commits](paritytech/unsigned-varint@2fe0e98...881f02d)

Signed-off-by: dependabot[bot] <support@dependabot.com>
….1.2

chore(deps): bump bincode from 1.1.1 to 1.1.2
chore(deps): bump serde from 1.0.87 to 1.0.88
Bumps [tempfile](https://github.com/Stebalien/tempfile) from 3.0.6 to 3.0.7.
- [Release notes](https://github.com/Stebalien/tempfile/releases)
- [Changelog](https://github.com/Stebalien/tempfile/blob/master/NEWS)
- [Commits](Stebalien/tempfile@v3.0.6...v3.0.7)

Signed-off-by: dependabot[bot] <support@dependabot.com>
…2.24

chore(deps): bump hyper from 0.12.23 to 0.12.24
…varint-881f02d

chore(deps): bump unsigned-varint from `2fe0e98` to `881f02d`
…3.0.7

chore(deps): bump tempfile from 3.0.6 to 3.0.7
…1.10.0

chore(deps): bump num_cpus from 1.9.0 to 1.10.0
Bumps [serde_derive](https://github.com/serde-rs/serde) from 1.0.87 to 1.0.88.
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.87...v1.0.88)

Signed-off-by: dependabot[bot] <support@dependabot.com>
…ive-1.0.88

chore(deps): bump serde_derive from 1.0.87 to 1.0.88
feat: allow disable txs_verify_cache
chore(deps): bump jsonrpc from 10.0.1 to 10.1.0
feat: skip verifing those transactions that from pool
@doitian doitian closed this Feb 25, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

7 participants