Commit Graph

12632 Commits

Author SHA1 Message Date
tobtoht 19a537b050 Merge pull request #10616
841ef74 workflows: fix ccache dir path (selsta)
2026-05-19 16:58:43 +00:00
tobtoht 687fdbfad5 Merge pull request #10576
eb025f7 common: validate Content-Range resume offset (iuyua9)
2026-05-19 16:31:26 +00:00
tobtoht a413c71a25 Merge pull request #10547
d31c3ca crypto: fix calloc warnings (ComputeryPony)
2026-05-19 16:29:55 +00:00
tobtoht 802194711a Merge pull request #10594
aa3abe2 net_ssl: Use EVP API to create EVP_PKEYs when available (jeffro256)
2026-05-19 16:28:05 +00:00
tobtoht 95e476b919 Merge pull request #10585
06d7bdd lmdb: mark Apple text_env section as code (selsta)
2026-05-19 16:26:37 +00:00
jeffro256 aa3abe2c03 net_ssl: Use EVP API to create EVP_PKEYs when available
The following functions are deprecated in OpenSSL 3.0 and used in net_ssl.cpp: `RSA_free`, `EC_KEY_free`, `RSA_new`, `RSA_generate_key_ex`, `EC_KEY_set_group`, `EC_KEY_generate_key`.

Since EVP_RSA_gen was added in OpenSSL 3.0 and since the aforementioned functions were deprecated in OpenSSL 3.0, I check if the OpenSSL version >= 3.0, and use EVP_RSA_gen instead of everything else up to assigning the private key to the certificate in `create_rsa_ssl_certificate`.

I also deleted `create_ec_ssl_certificate` since it wasn't used.
2026-05-18 23:47:46 -05:00
selsta 841ef74376 workflows: fix ccache dir path 2026-05-18 15:33:33 +02:00
tobtoht bbdd35c1e5 Merge pull request #10570
a82fdf9 Updated RandomX to v1.2.2 (SChernykh)
2026-05-17 11:16:40 +00:00
tobtoht 67c283c980 Merge pull request #10559
fe9b5de rpc: remove unused origin flag (selsta)
2026-05-15 20:07:00 +00:00
tobtoht 89f32b0869 Merge pull request #10558
4b58b63 tests: avoid braced scalar init in expect macros (selsta)
2026-05-15 20:06:14 +00:00
selsta 4b58b63083 tests: avoid braced scalar init in expect macros 2026-05-15 21:40:01 +02:00
tobtoht 747fa6fc53 Merge pull request #10556
bb92717 utils: add ZMQ safety flags to monerod fish completions (fuyua9)
2026-05-15 11:43:53 +00:00
tobtoht fdc4f2e032 Merge pull request #10534
f991cf2 zmq: switch to RapidJSON iterative parsing (selsta)
2026-05-15 11:31:17 +00:00
tobtoht b90dd8d3b1 Merge pull request #10549
5a3f57d epee: skip IPv4 TOS option for non-IPv4 peers (iuyua9)
2026-05-15 11:29:30 +00:00
tobtoht 552dd5bdfd Merge pull request #10567
4bec447 tests: remove obsolete memwipe optimization override (selsta)
2026-05-15 11:24:52 +00:00
tobtoht 57049d28af Merge pull request #10052
fbd7776 monero_blockchain_export: >2.5x blocksdat export speed (jeffro256)
2026-05-15 11:14:08 +00:00
jeffro256 fbd7776b7b monero_blockchain_export: >2.5x blocksdat export speed
Uses efficient DB traversal to slash disk read time, which is a large chunk of the run-time.
2026-05-13 14:30:30 -05:00
selsta 06d7bdd059 lmdb: mark Apple text_env section as code 2026-05-13 17:24:24 +02:00
tobtoht fb5b06bd3b Merge pull request #10520
a5ab8e5 net: replace deprecated boost::asio::strand::wrap with bind_executor (ryurt46)
2026-05-13 11:08:59 +00:00
tobtoht 7f86ea5d8d Merge pull request #10524
664a70c checkpoints: don't link apple libraries (tobtoht)
2026-05-13 11:07:30 +00:00
tobtoht b7e777412e Merge pull request #10536
681ea9f epee: remove LOCAL_ASSERT (jeffro256)
2026-05-13 11:06:54 +00:00
tobtoht 11b40b4363 Merge pull request #10537
617eb9d core_tests: remove unused --test_data_path CLI argument (jeffro256)
2026-05-13 11:06:24 +00:00
tobtoht 66f95b537a Merge pull request #10540
8419a91 net_service: fix broken log formatting (jpk68)
2026-05-13 11:05:57 +00:00
tobtoht fdbf139f12 Merge pull request #10541
dae0f4c wallet_rpc_server: add missing trusted daemon check (selsta)
2026-05-13 11:04:46 +00:00
tobtoht 664a70c952 checkpoints: don't link apple libraries 2026-05-13 12:47:19 +02:00
iuyua9 eb025f765e common: validate Content-Range resume offset 2026-05-12 18:34:37 +08:00
tobtoht 0d9accaeca Merge pull request #10526
b1a81cc cmake: require unbound idiomatically (tobtoht)
2026-05-11 18:40:01 +00:00
tobtoht 4f505d9413 Merge pull request #10538
0c3a013 docs: remove dead pull requests (jpk68)
2026-05-11 18:24:22 +00:00
tobtoht 315c003d12 Merge pull request #10528
d0798fc guix: turn off unused cmake options (tobtoht)
2026-05-11 16:26:08 +00:00
tobtoht 83f72066f0 Merge pull request #10527
5668549 cmake: clean up libusb dependencies (tobtoht)
3604cfb cmake: remove libusb compile checks (tobtoht)
2026-05-11 16:25:46 +00:00
tobtoht d450bbeb3e Merge pull request #10525
90fc50c cmake: only link Boost Chrono where needed (tobtoht)
2026-05-11 16:24:19 +00:00
tobtoht 495c7f18dd Merge pull request #10573
a00b7dd blockchain_db: fix remove_block     * remove_block should set the cursor before deletion (0xFFFC0000)
2026-05-10 17:45:50 +00:00
tobtoht d3d29d7312 Merge pull request #10518
eb9be9d p2p: initialize m_fallback_seed_nodes_added before first use (ComputeryPony)
2026-05-10 17:44:12 +00:00
tobtoht 43cb148952 Merge pull request #10517
a5abe71 epee: fix memory leak with readline (ComputeryPony)
2026-05-10 17:43:09 +00:00
tobtoht 14dc6241ac Merge pull request #10381
2210f85 ringct: make h2d fallible (jeffro256)
2026-05-10 17:41:49 +00:00
tobtoht 4766d3eb8c Merge pull request #10165
50c3c50 use latest hard fork block for get_approximate_blockchain_height & update approximate_rolled_back_blocks (SNeedlewoods)
2026-05-10 17:40:26 +00:00
0xFFFC0000 a00b7dd505 blockchain_db: fix remove_block
* remove_block should set the cursor before deletion
2026-05-10 11:40:57 +00:00
SChernykh a82fdf9775 Updated RandomX to v1.2.2 2026-05-10 11:44:23 +02:00
SNeedlewoods 50c3c50ba3 use latest hard fork block for get_approximate_blockchain_height & update approximate_rolled_back_blocks 2026-05-10 11:06:44 +02:00
selsta 4bec447496 tests: remove obsolete memwipe optimization override 2026-05-09 23:56:26 +02:00
ComputeryPony a5abe71486 epee: fix memory leak with readline 2026-05-09 16:30:13 -05:00
ComputeryPony eb9be9d145 p2p: initialize m_fallback_seed_nodes_added before first use 2026-05-09 16:28:03 -05:00
tobtoht 6767b97448 Merge pull request #10519
f73c72d crypto: implement CTHR_THREAD_CLOSE to avoid leaking memory (ComputeryPony)
2026-05-09 19:19:22 +00:00
selsta fe9b5de85f rpc: remove unused origin flag 2026-05-09 20:33:36 +02:00
fuyua9 bb92717b66 utils: add ZMQ safety flags to monerod fish completions 2026-05-10 01:24:10 +08:00
luigi1111 082b600a22 Merge pull request #9734
CoC: clarify who can approve and how
2026-05-09 11:18:35 -04:00
iuyua9 5a3f57d6c3 epee: skip IPv4 TOS option for non-IPv4 peers 2026-05-09 20:46:42 +08:00
ComputeryPony d31c3cad13 crypto: fix calloc warnings 2026-05-08 22:17:09 -05:00
tobtoht 89bbdf0aa0 docs: clarify who can approve and how 2026-05-08 23:44:45 +02:00
luigi1111 539012f5b4 Merge pull request #9741
CoC: remove 'Goals' section
2026-05-08 10:18:31 -04:00