Skip to content

Commit 22132b9

Browse files
committed
Release v29.4
1 parent ee595fe commit 22132b9

2 files changed

Lines changed: 165 additions & 0 deletions

File tree

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
title: Bitcoin Core 29.4 released
3+
name: blog-release-29.4
4+
id: en-blog-release-29.4
5+
lang: en
6+
type: posts
7+
layout: post
8+
9+
## If this is a new post, reset this counter to 1.
10+
version: 1
11+
12+
## Only true if release announcement or security annoucement. English posts only
13+
announcement: 1
14+
15+
excerpt: >
16+
Bitcoin Core 29.4 is now available.
17+
---
18+
Bitcoin Core version 29.4 is now available for [download][download
19+
page]. See the [release notes][] for more information about the
20+
bug fixes in this release.
21+
22+
If you have any questions, please stop by the #bitcoin IRC chatroom
23+
([IRC][irc], [web][web irc]) and we’ll do our best to help you.
24+
25+
[release notes]: /en/releases/29.4/
26+
[IRC]: irc://irc.libera.chat/bitcoin
27+
[web irc]: https://web.libera.chat/#bitcoin
28+
[download page]: /en/download
29+
30+
{% include references.md %}

_releases/29.4.md

Lines changed: 135 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,135 @@
1+
---
2+
title: Bitcoin Core 29.4
3+
id: en-release-29.4
4+
name: release-29.4
5+
permalink: /en/releases/29.4/
6+
excerpt: Bitcoin Core version 29.4 is now available
7+
date: 2026-07-13
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+
## Use the same number of elements as decimal places, e.g. "0.1.2 => [0,
12+
## 1, 2]" versus "1.2 => [1, 2]"
13+
release: [29, 4]
14+
15+
## Optional magnet link. To get it, open the torrent in a good BitTorrent client
16+
## and View Details, or install the transmission-cli Debian/Ubuntu package
17+
## and run: transmission-show -m <torrent file>
18+
#
19+
## Link should be enclosed in quotes and start with: "magnet:?
20+
optional_magnetlink: "magnet:?xt=urn:btih:7e73999fe5f548559f2c4591c248d529438c99e4&dn=bitcoin-core-29.4&tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A80&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.leechers-paradise.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fexplodie.org%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.bitcoin.sprovoost.nl%3A6969&ws=http%3A%2F%2Fbitcoincore.org%2Fbin%2F"
21+
22+
# Note: it is recommended to check all links to ensure they use
23+
# absolute urls (https://github.com/bitcoin/bitcoin/doc/foo)
24+
# rather than relative urls (/bitcoin/bitcoin/doc/foo).
25+
---
26+
{% include download.html %}
27+
{% githubify https://github.com/bitcoin/bitcoin %}
28+
Bitcoin Core version 29.4 is now available from:
29+
30+
<https://bitcoincore.org/bin/bitcoin-core-29.4/>
31+
32+
This release includes various bug fixes and performance
33+
improvements, 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 in some cases), then run the
48+
installer (on Windows) or just copy over `/Applications/Bitcoin-Qt` (on macOS)
49+
or `bitcoind`/`bitcoin-qt` (on Linux).
50+
51+
Upgrading directly from a version of Bitcoin Core that has reached its EOL is
52+
possible, but it might take some time if the data directory needs to be migrated. Old
53+
wallet versions of Bitcoin Core are generally supported.
54+
55+
Compatibility
56+
==============
57+
58+
Bitcoin Core is supported and tested on operating systems using the
59+
Linux Kernel 3.17+, macOS 13+, and Windows 10+. Bitcoin
60+
Core should also work on most other Unix-like systems but is not as
61+
frequently tested on them. It is not recommended to use Bitcoin Core on
62+
unsupported systems.
63+
64+
Notable changes
65+
===============
66+
67+
This release fixes an issue where the chainstate database would repeatedly
68+
rewrite large portions of itself, causing excessive disk reads and writes
69+
during normal operation.
70+
71+
### Validation
72+
73+
- #35209 validation: correct lifetime of precomputed tx data
74+
- #35465 coins: compact chainstate regularly
75+
76+
### Leveldb
77+
78+
- leveldb-subtree#61: Disable seek compaction
79+
80+
### Net
81+
82+
- #34093 netif: fix compilation warning in QueryDefaultGatewayImpl()
83+
84+
### Wallet
85+
86+
- #35228 wallet: use outpoint when estimating input size
87+
88+
### Build
89+
90+
- #34228 depends: Unset SOURCE_DATE_EPOCH in gen_id script
91+
- #34848 cmake: Migrate away from deprecated SQLite3 target
92+
93+
### Test
94+
95+
- #34918 fuzz: [refactor] Remove unused g_setup pointers
96+
97+
### Doc
98+
99+
- #34510 doc: fix broken bpftrace installation link
100+
- #34561 wallet: rpc: manpage: fix example missing `fee_rate` argument
101+
- #34671 doc: Update Guix install for Debian/Ubuntu
102+
- #35283 doc: mention -DWITH_ZMQ=ON in BSD build guides
103+
104+
### CI
105+
106+
- #35202 ci: restore sockets in i686, no IPC job
107+
- #35378 ci: switch runners from cirrus to warpbuild
108+
- #35408 ci: 35378 followups
109+
110+
### Misc
111+
112+
- #35175 multi_index: fix compilation failure with boost >= 1.91
113+
114+
Credits
115+
=======
116+
117+
Thanks to everyone who directly contributed to this release:
118+
119+
- andrewtoth
120+
- Cory Fields
121+
- Daniel Pfeifer
122+
- darosior
123+
- fanquake
124+
- Hennadii Stepanov
125+
- jayvaliya
126+
- junbyjun1238
127+
- Lőrinc
128+
- MarcoFalke
129+
- SomberNight
130+
- ToRyVand
131+
- willcl-ark
132+
133+
As well as to everyone that helped with translations on
134+
[Transifex](https://explore.transifex.com/bitcoin/bitcoin/).
135+
{% endgithubify %}

0 commit comments

Comments
 (0)