Skip to content

Commit 98ed85a

Browse files
committed
Merge #968: Bitcoin Core 24.1
e9e0e69 Bitcoin Core 24.1 (fanquake) Pull request description: Add release pages for Bitcoin Core `v24.1`. ACKs for top commit: glozow: ACK e9e0e69 hebasto: ACK e9e0e69, I've downloaded binaries via the torrent magnetic link and verified their hashes. Tree-SHA512: b980a2a57bc8157a5de56976b08c898840b56717d7052798c55758b9b0789b3d377d6fdaf8de53ecd0d057abf40e9a8a280a02c514b24de9874162388599937b
2 parents 06202de + e9e0e69 commit 98ed85a

File tree

2 files changed

+157
-0
lines changed

2 files changed

+157
-0
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
title: Bitcoin Core 24.1 released
3+
name: blog-release-24.1
4+
id: en-blog-release-24.1
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 24.1 is now available.
17+
---
18+
Bitcoin Core version 24.1 is now available for [download][download
19+
page]. See the [release notes][] for more information about the many
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/24.1/
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/24.1.md

Lines changed: 127 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,127 @@
1+
---
2+
title: Bitcoin Core 24.1
3+
id: en-release-24.1
4+
name: release-24.1
5+
permalink: /en/releases/24.1/
6+
excerpt: Bitcoin Core version 24.1 is now available
7+
date: 2023-05-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+
## 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: [24, 1]
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:ebb58d7495a8aaed2f20ec4ce3e5ae27aff69529&dn=bitcoin-core-24.1&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"
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+
24.1 Release Notes
29+
==================
30+
31+
Bitcoin Core version 24.1 is now available from:
32+
33+
<https://bitcoincore.org/bin/bitcoin-core-24.1/>
34+
35+
This release includes various bug fixes and performance
36+
improvements, as well as updated translations.
37+
38+
Please report bugs using the issue tracker at GitHub:
39+
40+
<https://github.com/bitcoin/bitcoin/issues>
41+
42+
To receive security and update notifications, please subscribe to:
43+
44+
<https://bitcoincore.org/en/list/announcements/join/>
45+
46+
How to Upgrade
47+
==============
48+
49+
If you are running an older version, shut it down. Wait until it has completely
50+
shut down (which might take a few minutes in some cases), then run the
51+
installer (on Windows) or just copy over `/Applications/Bitcoin-Qt` (on macOS)
52+
or `bitcoind`/`bitcoin-qt` (on Linux).
53+
54+
Upgrading directly from a version of Bitcoin Core that has reached its EOL is
55+
possible, but it might take some time if the data directory needs to be migrated. Old
56+
wallet versions of Bitcoin Core are generally supported.
57+
58+
Compatibility
59+
==============
60+
61+
Bitcoin Core is supported and extensively tested on operating systems
62+
using the Linux kernel, macOS 10.15+, and Windows 7 and newer. Bitcoin
63+
Core should also work on most other Unix-like systems but is not as
64+
frequently tested on them. It is not recommended to use Bitcoin Core on
65+
unsupported systems.
66+
67+
### P2P
68+
69+
- #26878 I2P network optimizations
70+
- #26909 net: prevent peers.dat corruptions by only serializing once
71+
- #27608 p2p: Avoid prematurely clearing download state for other peers
72+
- #27610 Improve performance of p2p inv to send queues
73+
74+
### RPC and other APIs
75+
76+
- #26515 rpc: Require NodeStateStats object in getpeerinfo
77+
- #27279 doc: fix/improve warning helps in {create,load,unload,restore}wallet
78+
- #27468 rest: avoid segfault for invalid URI
79+
80+
### Build System
81+
82+
- #26944 depends: fix systemtap download URL
83+
- #27462 depends: fix compiling bdb with clang-16 on aarch64
84+
85+
### Wallet
86+
87+
- #26595 wallet: be able to specify a wallet name and passphrase to migratewallet
88+
- #26675 wallet: For feebump, ignore abandoned descendant spends
89+
- #26679 wallet: Skip rescanning if wallet is more recent than tip
90+
- #26761 wallet: fully migrate address book entries for watchonly/solvable wallets
91+
- #27053 wallet: reuse change dest when re-creating TX with avoidpartialspends
92+
- #27080 wallet: Zero out wallet master key upon locking so it doesn't persist in memory
93+
- #27473 wallet: Properly handle "unknown" Address Type
94+
95+
### GUI changes
96+
97+
- gui#687 Load PSBTs using istreambuf_iterator rather than istream_iterator
98+
- gui#704 Correctly limit overview transaction list
99+
100+
### Miscellaneous
101+
102+
- #26880 ci: replace Intel macOS CI job
103+
- #26924 refactor: Add missing includes to fix gcc-13 compile error
104+
105+
Credits
106+
=======
107+
108+
Thanks to everyone who directly contributed to this release:
109+
110+
- Andrew Chow
111+
- Anthony Towns
112+
- Hennadii Stepanov
113+
- John Moffett
114+
- Jon Atack
115+
- Marco Falke
116+
- Martin Zumsande
117+
- Matthew Zipkin
118+
- Michael Ford
119+
- pablomartin4btc
120+
- Sebastian Falbesoner
121+
- Suhas Daftuar
122+
- Thomas Nguyen
123+
- Vasil Dimov
124+
125+
As well as to everyone that helped with translations on
126+
[Transifex](https://www.transifex.com/bitcoin/bitcoin/).
127+
{% endgithubify %}

0 commit comments

Comments
 (0)