Skip to content

Commit f081694

Browse files
committed
multi: add v1.2.0 release notes.
This adds v1.2.0 release notes and updates the app version.
1 parent 103a84d commit f081694

2 files changed

Lines changed: 41 additions & 1 deletion

File tree

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
## Breaking Changes.
2+
1. `--cpuport`, `--d9port`, `--dr3port`,`--dr5port`,`--d1port` and `--dcr1port` have been removed in favour of `--minerport` ([#274](https://github.com/decred/dcrpool/pull/274)).
3+
4+
2. `--homedir` has been renamed to `--appdata` in order to be consistent wih dcrd and dcrwallet ([#312](https://github.com/decred/dcrpool/pull/312)).
5+
6+
## Bug Fixes.
7+
1. Payment processing now handles dust payments by filtering them out of transactions generated by the pool. ([#254](https://github.com/decred/dcrpool/pull/254))
8+
9+
2. Fixed a solo pool work submission related bug where valid submissions less than the pool target were being rejected. ([#286](https://github.com/decred/dcrpool/pull/286))
10+
11+
3. Fixed a gui related bug where the gui would fail to update because the cache was not being properly updated on block connections. ([#297](https://github.com/decred/dcrpool/pull/297))
12+
13+
4. Fixed a cpu miner related bug where the authorization request was being sent regardless of the state of the subscribtion request. ([#297](https://github.com/decred/dcrpool/pull/297))
14+
15+
5. Fixed a bug related to marshaling and unmarshaling stratum errors. ([#304](https://github.com/decred/dcrpool/pull/304))
16+
17+
18+
## Improvements.
19+
20+
1. Error types have been updated to leverage go 1.13 errors.Is/As functionality. ([#245](https://github.com/decred/dcrpool/pull/245))
21+
22+
2. `--conftimeout` has been added to control coinbase confirmation durations when sourcing payment transaction inputs. ([#250](https://github.com/decred/dcrpool/pull/250))
23+
24+
3. Added postgres support to facilitate multi-instance deployments. ([#282](https://github.com/decred/dcrpool/pull/282))
25+
26+
4. A single miner endpoint configurable via `--minerport` has been added to simplify the connection process. ([#274](https://github.com/decred/dcrpool/pull/274))
27+
28+
5. `--monitorcycle` and `--maxupgradetries` have been added to allow miner monitoring and upgrade cycles. ([#274](https://github.com/decred/dcrpool/pull/274))
29+
30+
6. Client hash data is now persisted to ensure coherent and unifom data access for multi-instance deployments. ([#293](https://github.com/decred/dcrpool/pull/293))
31+
32+
7. Facilitate reverse proxy deployments by allowing serving the pool over HTTP and allowing further endpoint configurability by updating `--minerport` and `--guiport` to `--minerlisten` and `--guilisten`. ([#301](https://github.com/decred/dcrpool/pull/301))
33+
34+
8. The pool now properly handles `mining.extranonce.subscribe` requests by explicitly stating no support for it. ([#304](https://github.com/decred/dcrpool/pull/304))
35+
36+
37+
## Code Contributors (alphabetical order):
38+
- David Hill
39+
- Donald Adu-Poku
40+
- Jamie Holdstock

version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const (
2525
// versioning 2.0.0 spec (http://semver.org/).
2626
const (
2727
appMajor uint = 1
28-
appMinor uint = 1
28+
appMinor uint = 2
2929
appPatch uint = 0
3030
)
3131

0 commit comments

Comments
 (0)