Skip to content

Commit 6f83848

Browse files
committed
Merge #991: Bitcoin Core 25.1
b6650ed Bitcoin Core 25.1 (fanquake) Pull request description: Release annoucement for `25.1`. ACKs for top commit: glozow: reACK b6650ed Tree-SHA512: 937f72eaf095f6f3baf2eaf980bf67803fe8e69a05096afc86e76be79c85a97b34e86a202b16665354ec1606a659d220758b1f3ef5e85bfbdd1693c73b17321b
2 parents fa9b206 + b6650ed commit 6f83848

File tree

2 files changed

+166
-0
lines changed

2 files changed

+166
-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 25.1 released
3+
name: blog-release-25.1
4+
id: en-blog-release-25.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 25.1 is now available.
17+
---
18+
Bitcoin Core version 25.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/25.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/25.1.md

Lines changed: 136 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,136 @@
1+
---
2+
title: Bitcoin Core 25.1
3+
id: en-release-25.1
4+
name: release-25.1
5+
permalink: /en/releases/25.1/
6+
excerpt: Bitcoin Core version 25.1 is now available
7+
date: 2023-10-19
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: [25, 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:aa13e74abc8e389d4271813e9d0415890f9d8058&dn=bitcoin-core-25.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&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+
25.1 Release Notes
29+
==================
30+
31+
Bitcoin Core version 25.1 is now available from:
32+
33+
<https://bitcoincore.org/bin/bitcoin-core-25.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+
Notable changes
68+
===============
69+
70+
### P2P
71+
72+
- #27626 Parallel compact block downloads, take 3
73+
- #27743 p2p: Unconditionally return when compact block status == READ_STATUS_FAILED
74+
75+
### Fees
76+
77+
- #27622 Fee estimation: avoid serving stale fee estimate
78+
79+
### RPC
80+
81+
- #27727 rpc: Fix invalid bech32 address handling
82+
83+
### Rest
84+
85+
- #27853 rest: fix crash error when calling /deploymentinfo
86+
- #28551 http: bugfix: allow server shutdown in case of remote client disconnection
87+
88+
### Wallet
89+
90+
- #28038 wallet: address book migration bug fixes
91+
- #28067 descriptors: do not return top-level only funcs as sub descriptors
92+
- #28125 wallet: bugfix, disallow migration of invalid scripts
93+
- #28542 wallet: Check for uninitialized last processed and conflicting heights in MarkConflicted
94+
95+
### Build
96+
97+
- #27724 build: disable boost multi index safe mode in debug mode
98+
- #28097 depends: xcb-proto 1.15.2
99+
- #28543 build, macos: Fix qt package build with new Xcode 15 linker
100+
- #28571 depends: fix unusable memory_resource in macos qt build
101+
102+
### Gui
103+
104+
- gui#751 macOS, do not process actions during shutdown
105+
106+
### Miscellaneous
107+
108+
- #28452 Do not use std::vector = {} to release memory
109+
110+
### CI
111+
112+
- #27777 ci: Prune dangling images on RESTART_CI_DOCKER_BEFORE_RUN
113+
- #27834 ci: Nuke Android APK task, Use credits for tsan
114+
- #27844 ci: Use podman stop over podman kill
115+
- #27886 ci: Switch to amd64 container in "ARM" task
116+
117+
Credits
118+
=======
119+
120+
Thanks to everyone who directly contributed to this release:
121+
122+
- Abubakar Sadiq Ismail
123+
- Andrew Chow
124+
- Bruno Garcia
125+
- Gregory Sanders
126+
- Hennadii Stepanov
127+
- MacroFake
128+
- Matias Furszyfer
129+
- Michael Ford
130+
- Pieter Wuille
131+
- stickies-v
132+
- Will Clark
133+
134+
As well as to everyone that helped with translations on
135+
[Transifex](https://www.transifex.com/bitcoin/bitcoin/).
136+
{% endgithubify %}

0 commit comments

Comments
 (0)