Skip to content

Commit a1b9778

Browse files
committed
Releases: add 0.16.3
1 parent d8409e8 commit a1b9778

File tree

2 files changed

+158
-0
lines changed

2 files changed

+158
-0
lines changed
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
---
2+
title: Bitcoin Core 0.16.3 Released
3+
name: blog-release-0.16.3
4+
id: en-blog-release-0.16.3
5+
lang: en
6+
type: posts
7+
layout: post
8+
share: true
9+
10+
## If this is a new post, reset this counter to 1.
11+
version: 1
12+
13+
excerpt: >
14+
Bitcoin Core 0.16.3 is now available with a fix for a
15+
denial-of-service vulnerability affecting earlier versions of Bitcoin
16+
Core.
17+
---
18+
Bitcoin Core version 0.16.3 is now available for [download][download
19+
page] with a fix for a denial-of-service vulnerability introduced in
20+
Bitcoin Core 0.14.0 and affecting all subsequent versions though to
21+
0.16.2. We highly recommend users of all affected versions immediately
22+
upgrade to 0.16.3.
23+
24+
Security issue: it was discovered that older versions of Bitcoin Core
25+
will crash if they try to process a block containing a transaction that
26+
attempts to spend the same input twice. Such blocks are invalid, so
27+
they can only be created by a miner willing to sacrifice their allowed
28+
income for creating a block of at least 12.5 BTC (about $80,000 USD as
29+
of this writing). This release eliminates the crash, allowing the
30+
software to quietly reject such invalid blocks.
31+
32+
For a complete list of changes, please see the [release notes][]. If
33+
have any questions, please stop by our [IRC chatroom][irc] and we’ll do
34+
our best to help you.
35+
36+
[release notes]: /en/releases/0.16.3/
37+
[IRC]: https://en.bitcoin.it/wiki/IRC_channels
38+
[download page]: /en/download
39+
40+
{% include references.md %}

_releases/0.16.3.md

Lines changed: 118 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,118 @@
1+
---
2+
title: Bitcoin Core 0.16.3
3+
id: en-release-0.16.3
4+
name: release-0.16.3
5+
permalink: /en/releases/0.16.3/
6+
excerpt: Bitcoin Core version 0.16.3 is now available
7+
date: 2018-09-18
8+
9+
## Use a YAML array for the version number to allow other parts of the
10+
## site to correctly sort in "natural sort of version numbers"
11+
release: [0, 16, 3]
12+
13+
## Optional magnet link. To get it, open the torrent in a good BitTorrent client
14+
## and View Details, or install the transmission-cli Debian/Ubuntu package
15+
## and run: transmission-show -m <torrent file>
16+
#
17+
## Link should be enclosed in quotes and start with: "magnet:?
18+
#optional_magnetlink: "magnet:?xt=urn:btih:b64eacae7d6e5f7ba50de3da8aca4368c27f0823&dn=bitcoin-core-0.16.2&tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A80&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969&tr=udp%3A%2F%2Ftracker.leechers-paradise.org%3A6969&tr=udp%3A%2F%2Fzer0day.ch%3A1337&tr=udp%3A%2F%2Fexplodie.org%3A6969"
19+
20+
# Note: it is recommended to check all links to ensure they use
21+
# absolute urls (https://github.com/bitcoin/bitcoin/doc/foo)
22+
# rather than relative urls (/bitcoin/bitcoin/doc/foo).
23+
24+
## Notes from bitcoin/bitcoin 2018-09-18 commit 49e34e288
25+
---
26+
{% include download.html %}
27+
{% githubify https://github.com/bitcoin/bitcoin %}
28+
Bitcoin Core version 0.16.3 is now available from:
29+
30+
<https://bitcoincore.org/bin/bitcoin-core-0.16.3/>
31+
32+
This is a new minor version release, with various bugfixes
33+
as well as updated translations.
34+
35+
Please report bugs using the issue tracker at GitHub:
36+
37+
<https://github.com/bitcoin/bitcoin/issues>
38+
39+
To receive security and update notifications, please subscribe to:
40+
41+
<https://bitcoincore.org/en/list/announcements/join/>
42+
43+
How to Upgrade
44+
==============
45+
46+
If you are running an older version, shut it down. Wait until it has completely
47+
shut down (which might take a few minutes for older versions), then run the
48+
installer (on Windows) or just copy over `/Applications/Bitcoin-Qt` (on Mac)
49+
or `bitcoind`/`bitcoin-qt` (on Linux).
50+
51+
The first time you run version 0.15.0 or newer, your chainstate database will be converted to a
52+
new format, which will take anywhere from a few minutes to half an hour,
53+
depending on the speed of your machine.
54+
55+
Note that the block database format also changed in version 0.8.0 and there is no
56+
automatic upgrade code from before version 0.8 to version 0.15.0 or higher. Upgrading
57+
directly from 0.7.x and earlier without re-downloading the blockchain is not supported.
58+
However, as usual, old wallet versions are still supported.
59+
60+
Downgrading warning
61+
-------------------
62+
63+
Wallets created in 0.16 and later are not compatible with versions prior to 0.16
64+
and will not work if you try to use newly created wallets in older versions. Existing
65+
wallets that were created with older versions are not affected by this.
66+
67+
Compatibility
68+
==============
69+
70+
Bitcoin Core is extensively tested on multiple operating systems using
71+
the Linux kernel, macOS 10.8+, and Windows Vista and later. Windows XP is not supported.
72+
73+
Bitcoin Core should also work on most other Unix-like systems but is not
74+
frequently tested on them.
75+
76+
Notable changes
77+
===============
78+
79+
Denial-of-Service vulnerability
80+
-------------------------------
81+
82+
A denial-of-service vulnerability exploitable by miners has been discovered in
83+
Bitcoin Core versions 0.14.0 up to 0.16.2. It is recommended to upgrade any of
84+
the vulnerable versions to 0.16.3 as soon as possible.
85+
86+
0.16.3 change log
87+
------------------
88+
89+
### Consensus
90+
- #14249 `696b936` Fix crash bug with duplicate inputs within a transaction (TheBlueMatt, sdaftuar)
91+
92+
### RPC and other APIs
93+
- #13547 `212ef1f` Make `signrawtransaction*` give an error when amount is needed but missing (ajtowns)
94+
95+
### Miscellaneous
96+
- #13655 `1cdbea7` bitcoinconsensus: invalid flags error should be set to `bitcoinconsensus_err` (afk11)
97+
98+
### Documentation
99+
- #13844 `11b9dbb` correct the help output for -prune (hebasto)
100+
101+
Credits
102+
=======
103+
104+
Thanks to everyone who directly contributed to this release:
105+
106+
- Anthony Towns
107+
- Hennadii Stepanov
108+
- Matt Corallo
109+
- Suhas Daftuar
110+
- Thomas Kerin
111+
- Wladimir J. van der Laan
112+
113+
And to those that reported security issues:
114+
115+
- beardnboobies
116+
117+
As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/bitcoin/).
118+
{% endgithubify %}

0 commit comments

Comments
 (0)