Skip to content

Commit 364cd84

Browse files
committed
v0.8.7
1 parent e6bfb93 commit 364cd84

File tree

7 files changed

+71
-17
lines changed

7 files changed

+71
-17
lines changed

CHANGELOG.md

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,59 @@
11
# Change Log
22

3+
## [v0.8.7](https://github.com/input-output-hk/jormungandr/tree/v0.8.7) (2020-01-23)
4+
5+
[Full Changelog](https://github.com/input-output-hk/jormungandr/compare/v0.8.6...v0.8.7)
6+
7+
**Implemented enhancements:**
8+
9+
- Added p2p stats to node stat output [\#1611](https://github.com/input-output-hk/jormungandr/pull/1611)
10+
- cleanup the sync Mutex from the PeerMap [\#1594](https://github.com/input-output-hk/jormungandr/pull/1594)
11+
- keep more room for nodes that are actually giving us blocks [\#1587](https://github.com/input-output-hk/jormungandr/pull/1587)
12+
- Apply ref on each synchronized block during bootstrap [\#1582](https://github.com/input-output-hk/jormungandr/pull/1582)
13+
- display the whole 'reason' of some errors with Debug formatting [\#1577](https://github.com/input-output-hk/jormungandr/pull/1577)
14+
- Switch actix-web to rustls [\#1568](https://github.com/input-output-hk/jormungandr/pull/1568)
15+
16+
**Fixed bugs:**
17+
18+
- Rest - `/api/v0/shutdown` - doesn't shut the node down, just the rest service [\#1563](https://github.com/input-output-hk/jormungandr/issues/1563)
19+
- use path instead of open option for in-memory sqlite [\#1614](https://github.com/input-output-hk/jormungandr/pull/1614)
20+
- Fix node not shutting down when inner process finishes [\#1605](https://github.com/input-output-hk/jormungandr/pull/1605)
21+
22+
**Closed issues:**
23+
24+
- Configuration issue with Windows version of Jormungandr poolsecret1.yaml [\#1618](https://github.com/input-output-hk/jormungandr/issues/1618)
25+
- It still gets stuck [\#1615](https://github.com/input-output-hk/jormungandr/issues/1615)
26+
- Add Peer Stats to Node Stats Output [\#1610](https://github.com/input-output-hk/jormungandr/issues/1610)
27+
- Misleading documentation for max\_connections\_threshold default value [\#1602](https://github.com/input-output-hk/jormungandr/issues/1602)
28+
- Jormungandr Install issues on NixOS [\#1600](https://github.com/input-output-hk/jormungandr/issues/1600)
29+
- Can a setting be added to throttle blocks uploaded? [\#1595](https://github.com/input-output-hk/jormungandr/issues/1595)
30+
- remove the sync Mutex to an async Mutex in the PeerMap collection [\#1591](https://github.com/input-output-hk/jormungandr/issues/1591)
31+
- Ticker not appear [\#1590](https://github.com/input-output-hk/jormungandr/issues/1590)
32+
- data consistent between node and chain [\#1571](https://github.com/input-output-hk/jormungandr/issues/1571)
33+
- Consider Rebranding "jormungandr" to "cardano-node-rust" [\#1562](https://github.com/input-output-hk/jormungandr/issues/1562)
34+
- make public address mandatory for stake pool operators [\#1537](https://github.com/input-output-hk/jormungandr/issues/1537)
35+
- MultiAddress invalid public\_address [\#1519](https://github.com/input-output-hk/jormungandr/issues/1519)
36+
- Lowlevel network improvements [\#1489](https://github.com/input-output-hk/jormungandr/issues/1489)
37+
- Network Thread Panic at Shutdown [\#1466](https://github.com/input-output-hk/jormungandr/issues/1466)
38+
39+
**Merged pull requests:**
40+
41+
- Async-friendly lock on P2P topology [\#1623](https://github.com/input-output-hk/jormungandr/pull/1623)
42+
- \[Tests\] compilation fix for perf tests [\#1619](https://github.com/input-output-hk/jormungandr/pull/1619)
43+
- \[Tests\] test\_jormungandr\_passive\_node\_starts\_successfull fix [\#1616](https://github.com/input-output-hk/jormungandr/pull/1616)
44+
- Upgrade Actix-web to 2.0 [\#1613](https://github.com/input-output-hk/jormungandr/pull/1613)
45+
- Update actix-web to 1.0 [\#1606](https://github.com/input-output-hk/jormungandr/pull/1606)
46+
- \[Tests\] Private network tests - logging fix [\#1604](https://github.com/input-output-hk/jormungandr/pull/1604)
47+
- Update network.md [\#1598](https://github.com/input-output-hk/jormungandr/pull/1598)
48+
- \[Tests\] Remove genesis model duplication [\#1589](https://github.com/input-output-hk/jormungandr/pull/1589)
49+
- \[Tests\] Remove linear fees duplication [\#1588](https://github.com/input-output-hk/jormungandr/pull/1588)
50+
- \[Tests\]\[Perf tests\] updated tests parameters [\#1584](https://github.com/input-output-hk/jormungandr/pull/1584)
51+
- \[Tests\] Removed duplicated Funds struct from jormungandr-integration-tests [\#1583](https://github.com/input-output-hk/jormungandr/pull/1583)
52+
- \[Tests\] Refresh grpc mock tests [\#1578](https://github.com/input-output-hk/jormungandr/pull/1578)
53+
- use a global runtime instead of a local one and new future [\#1572](https://github.com/input-output-hk/jormungandr/pull/1572)
54+
- \[Tests\] extended bootstrap timeout for testnet integration test [\#1567](https://github.com/input-output-hk/jormungandr/pull/1567)
55+
- Added common vscode and idea workspace folders to gitignore [\#1566](https://github.com/input-output-hk/jormungandr/pull/1566)
56+
357
## [v0.8.6](https://github.com/input-output-hk/jormungandr/tree/v0.8.6) (2020-01-15)
458

559
[Full Changelog](https://github.com/input-output-hk/jormungandr/compare/v0.8.5...v0.8.6)

Cargo.lock

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

jcli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jcli"
3-
version = "0.8.6"
3+
version = "0.8.7"
44
authors = [ "[email protected]" ]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/input-output-hk/jormungandr"

jormungandr-integration-tests/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jormungandr-integration-tests"
3-
version = "0.8.6"
3+
version = "0.8.7"
44
authors = [ "[email protected]" ]
55
edition = "2018"
66

jormungandr-lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jormungandr-lib"
3-
version = "0.8.6"
3+
version = "0.8.7"
44
authors = ["[email protected]"]
55
edition = "2018"
66

jormungandr-scenario-tests/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jormungandr-scenario-tests"
3-
version = "0.8.6"
3+
version = "0.8.7"
44
authors = [ "[email protected]" ]
55
edition = "2018"
66

jormungandr/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jormungandr"
3-
version = "0.8.6"
3+
version = "0.8.7"
44
authors = [ "[email protected]" ]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/input-output-hk/jormungandr"

0 commit comments

Comments
 (0)