Skip to content

Commit fe86198

Browse files
authored
Merge pull request #6186 from wileyj/chore/3.1.0.0.12_develop
Merge release/3.1.0.0.12 to develop
2 parents c457f41 + f557107 commit fe86198

File tree

3 files changed

+37
-2
lines changed

3 files changed

+37
-2
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,27 @@ and this project adheres to the versioning scheme outlined in the [README.md](RE
1111

1212
- Added a new RPC endpoint `/v3/health` to query the node's health status. The endpoint returns a 200 status code with relevant synchronization information (including the node's current Stacks tip height, the maximum Stacks tip height among its neighbors, and the difference between these two). A user can use the `difference_from_max_peer` value to decide what is a good threshold for them before considering the node out of sync. The endpoint returns a 500 status code if the query cannot retrieve viable data.
1313

14+
## [3.1.0.0.12]
15+
16+
### Added
17+
18+
- Document missing config structs
19+
- Document MinerConfig parameters
20+
- Document BurnchainConfig parameters
21+
- Document NodeConfig parameters
22+
23+
### Changed
24+
25+
- `get_fresh_random_neighbors` to include allowed neigbors
26+
- Logging improvements and cleanup
27+
- Move serde serializers to stacks_common
28+
- Depend on clarity backing store interface
29+
- Updated `./docs/event-dispacher.md`
30+
31+
### Fixed
32+
33+
- Handle Bitcoin reorgs during Stacks tenure extend
34+
1435
## [3.1.0.0.11]
1536

1637
- Hotfix for p2p stack misbehavior in mempool syncing conditions

stacks-signer/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,20 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to the versioning scheme outlined in the [README.md](README.md).
77

8+
## [3.1.0.0.12.0]
9+
10+
### Changed
11+
12+
- Refactor / cleanup signerDB migrations code
13+
- Signers should not infinitely loop when pushing a block to stacks-node
14+
- Logging improvements and cleanup
15+
16+
### Fixed
17+
18+
- Fix `capitulate_miner_view` so stacks-node won't swap between multiple miners
19+
- Mark current miner as invalid on capitulation
20+
- Fix flaky `miner_recovers_when_broadcast_block_delay_across_tenures_occurs` test
21+
822
## [3.1.0.0.10.0]
923

1024
### Added

versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Update these values when a new release is created.
22
# `stacks-common/build.rs` will automatically update `versions.rs` with these values.
3-
stacks_node_version = "3.1.0.0.11"
4-
stacks_signer_version = "3.1.0.0.11.0"
3+
stacks_node_version = "3.1.0.0.12"
4+
stacks_signer_version = "3.1.0.0.12.0"

0 commit comments

Comments
 (0)