-
Notifications
You must be signed in to change notification settings - Fork 174
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
5.4.2.0, 2023-03-26, leisure, "LaVerne"
Added - key, wallet: HD wallets #2540 (@div72) - ARMv8 SHA2 Intrinsics #2612 (@barton2526) - build: vendor bdb 5.3 #2620 (@div72) - scraper, gui: Add external adapter projects indication #2625 (@jamescowens) - gui: implement INSUFFICIENT_MATURE_FUNDS status for the mrcmodel #2628 (@jamescowens) - gui, accrual: Implement accrual limit warning #2636 (@jamescowens) - rpc: add `getnodeaddresses` #2646 (@Pythonix) - consensus: Add new checkpoints #2651 (@barton2526) Changed - voting: Optimize poll locks #2619 (@jamescowens) - util: move threadinterrupt.{cpp,h} to util #2613 (@Pythonix) - gui, voting: Update pool cpids and avw rules #2624 (@jamescowens) - ci: bump python and setup-python action version #2626 (@div72) - gui: Change text from username to name (real name or nickname) #2633 (@jamescowens) - locale: Translation update, phase 1 #2637 (@jamescowens) - gui: Change MRC too soon to submit error to be less confusing #2645 (@jamescowens) - locale: Update translations prior to release (phase 2/2) #2658 (@jamescowens) - gui: Enhance MRC request form to avoid fee boost field confusion #2659 (@jamescowens) Removed none Fixed - net: Turn net structures into dumb storage classes (backport) #2561 (@Pythonix) - build: Include native_X.mk before X.mk #2609 (@barton2526) - depends: fix OpenSSL for Darwin builds #2610 (@div72) - build: Change actions runner image to Focal, Force Lint to use 22.04, Change cd runner version #2611 (@barton2526) - gui: don't show datadir error msgbox if arg isn't specified #2617 (@div72) - rpc: Repair auditsnapshotaccrual rpc function #2621 (@jamescowens) - gui: Correct updateBeaconIcon() function in bitcoingui.cpp #2622 (@jamescowens) - wallet: Strengthen CWalletTx::RevalidateTransactions #2627 (@jamescowens) - test: Fix Wambiguous-reversed-operator compiler warning, drop boost::assign #2632 (@barton2526) - gui: Fix wallet overview displaying lower-case poll name #2640 (@delta1513) - Fix and optimize ResendWalletTransactions #2642 (@jamescowens) - build(nsis): Write registry keys to HKLM instead of HKCU, Install shortcuts for all users, Fix INSTALLDIR removal bug #2643 (@sitiom) - gui: Fix TransactionRecord::decomposeTransaction to properly display self-sidestake #2647 (@jamescowens) - rpc: Fixed the RPC error when running `help voting` while syncing #2649 (@delta1513) - build: Fix compilation with GCC 13 #2653 (@theMarix) - rpc: Formatting - typo correction rpc help for listresearcheraccounts #2654 (@PrestackI)
- Loading branch information
Showing
9,394 changed files
with
2,440,033 additions
and
3,053 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ env: | |
jobs: | ||
test-linux: | ||
name: ${{ matrix.name }} | ||
runs-on: ubuntu-18.04 | ||
runs-on: ubuntu-20.04 | ||
strategy: | ||
matrix: | ||
include: | ||
|
@@ -67,31 +67,21 @@ jobs: | |
restore-keys: | | ||
${{ runner.os }}- | ||
- name: install-packages | ||
# We run the contrib/install_db4.sh script rather than installing the | ||
# Homebrew berkeley-db4 formula to add the Berkeley DB 4.8 dependency | ||
# to avoid a quirk with macOS on GitHub Actions. This script compiles | ||
# BDB with the "--disable-replication" flag. The tests failed because | ||
# BDB complained that "replication requires locking support". | ||
# | ||
# As of Xcode 12, Clang fails by default for functions called without | ||
# an explicit declaration. This breaks the mutex detection in the BDB | ||
# configure script so we switch it back to a warning: | ||
run: | | ||
brew install autoconf automake boost miniupnpc qrencode ccache leveldb librsvg libtool libzip [email protected] pkg-config python qt@5 xquartz | ||
CFLAGS="-Wno-error=implicit-function-declaration" contrib/install_db4.sh . | ||
- name: test | ||
run: | | ||
./ci/test_run_all.sh | ||
lint: | ||
name: Lint | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v3 | ||
- name: setup-python | ||
uses: actions/setup-python@v3 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.9 | ||
python-version: 3.11 | ||
- name: lint | ||
run: | | ||
set -o errexit; source ./ci/lint/04_install.sh | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.