Summary
Take the payjoin-cli out of alpha now that the wire protocol is presumed to be stable.
Changelog
- Bump payjoin to 0.23.0 with stable wire protocol
- Allow mixed input scripts #367 #505
- Fix bug to propagate missing config parameter or argument error #441
- Don't pause between long polling requests #463
- Hide danger-local-https feature with _ prefix #423
- Allow specifying a max-feerate for receivers #332
- Fix e2e tests and coverage reporting #443 #497 #532
- Handle recoverable receiver errors by replying to sender with error response #474 #526 #534
- Make config.toml hierarchical #538
- Make v1/v2 features additive #538
What's Changed
- Upgrade rustls v0.22.4 by @DanGould in #290
- Use More Semantic HTTP by @DanGould in #346
- Always clean up the tmp db in e2e tests by @DanGould in #347
- Move common boilerplate in
integration
module by @spacebear21 in #348 - Enable hyper-util/tokio for TokioIo by @DanGould in #349
- Add amount checks to integration tests by @spacebear21 in #351
- Remove superfluous debug print by @DanGould in #352
- Depend on bitcoin-ohttp by @DanGould in #354
- Pin tokio-util 0.7.11 for msrv 1.63.0 by @DanGould in #356
- Tx cut-through by @spacebear21 in #332
- Add Cargo-{minimal,recent}.lock to test deps by @DanGould in #357
- Implement client e2ee using HPKE by @DanGould in #355
- Make
try_preserving_privacy
param generic by @DanGould in #361 - Use native rust-bitcoin methods for weight calculations by @spacebear21 in #360
- Allow mixed input scripts in v2 by @spacebear21 in #367
- Make Session Initialization Implicit by @DanGould in #364
- Test that the encrypted payloads are uniform. by @DanGould in #374
- Derive Debug Clone on send,receive mod types by @DanGould in #376
- Add a script to update lock files by @DanGould in #379
- Modify try_preserving_privacy function signature by @spacebear21 in #377
- Minor test script fixes by @nothingmuch in #384
- Expose Sender::extract_v2 for bindings by @DanGould in #382
- Fix clippy warnings and add linting to CI by @spacebear21 in #383
- trivial: chmod a+x contrib/lint.sh by @nothingmuch in #387
- Add code coverage to CI with Coveralls integration by @spacebear21 in #385
- Shorten subdirectory IDs by @nothingmuch in #386
- Avoid uih naming by @DanGould in #400
- Remove unnecessary channel_name helper by @spacebear21 in #409
- Rust bitcoin 0.32.4 by @spacebear21 in #410
- docs: clarify send,receive function documentation by @0xBEEFCAF3 in #407
- Pad ohttp req/res messages to consistent 8192 bytes by @DanGould in #395
- Hide danger-local-https feature with _ prefix by @DanGould in #423
- Work around '#' escaping bug in bip21 crate by @nothingmuch in #373
- Reflect current Contributing practices by @DanGould in #424
- Bump payjoin version to 0.21.0 by @DanGould in #415
- Lint docs by @DanGould in #426
- Document Testing in Contributing section of README by @DanGould in #429
- Tag payjoin-directory v0.0.1 by @DanGould in #413
- Propagate ParseError when retrieving ohttp parameter by @shinghim in #428
- update gitignore with vscode workspace dir by @0xBEEFCAF3 in #438
- fix: the attribute
version
is obsolete by @ethicnology in #439 - Don't pause between long polls by @DanGould in #436
- Propagate errors when retrieving exp parameter by @shinghim in #441
- Propagate error if the fs read for ohttp keys fails during config by @shinghim in #435
- Fix unresumable Sender by @DanGould in #443
- Lint with new rust 1.85.0-nightly by @DanGould in #447
- Make _danger-local-https feature additive by @DanGould in #430
- Join subdir to base pj URL to preserve path by @DanGould in #448
- Fix test flakiness by @spacebear21 in #388
- Fix tests following additive feature changes by @DanGould in #450
- Separate send version modules (part 1) by @DanGould in #453
- add nix flake with dev shells and limited crane based checks by @nothingmuch in #455
- fix #! line in ./contrib/test_local.sh by @nothingmuch in #462
- Abstract send feature error variants into separate feature-specific abstractions by @DanGould in #464
- Make Request impl fns pub(crate) by @DanGould in #467
- Move v1 response handling to V1Context by @DanGould in #469
- Separate receive submodules to be additive by @DanGould in #466
- Remove ohttp_relay from SessionContext by @DanGould in #470
- Handle v2 error by @DanGould in #474
- Avoid stringly typed arguments in payjoin-cli App trait by @nothingmuch in #479
- Enumerate errors for peek_with_timeout by @shinghim in #456
- Set
disableoutputsubstitution
to 'true' if used by @0xBEEFCAF3 in #485 - Separate receive::{v1,v2} error modules by @DanGould in #482
- Follow up from #456: Update path qualifier and introduce module-specific
Result
by @shinghim in #488 - Use FeeRate::BROADCAST_MIN for minfeerate defaults by @DanGould in #493
- send SIGINT instead of SIGKILL in e2e test by @nothingmuch in #497
- use compressed representation for reply key by @nothingmuch in #496
- Organize feature separation for ergonomics by @DanGould in #501
- Introduce
directory
feature module by @DanGould in #502 - Expose test helpers by @spacebear21 in #484
- Accomodate Updated BIP 78 Spec by @DanGould in #505
- Add cargo llvm-cov to flake devshell by @nothingmuch in #495
- use FeeRate for max_fee_rate arg, and default it to BROADCAST_MIN by @nothingmuch in #491
- Move redis container initialization to test utils by @spacebear21 in #507
- Add appropriate docstrings to test-utils by @DanGould in #510
- Produce
receive::JsonError
accurately so thatsend
can properly handle it by @DanGould in #506 - Validate_utxo treats missing utxos as an error by @benalleng in #516
- Update lib.rs, Cargo.toml docs by @DanGould in #517
- Remove unwrap() in integration/e2e tests by @spacebear21 in #512
- Clean up feature/module documentation with docs.rs features by @DanGould in #518
- Abstract away
additionalfeecontribution
to its own struct by @0xBEEFCAF3 in #521 - Add support for merging unique psbts by @0xBEEFCAF3 in #523
- Cleanup test assertions by @spacebear21 in #519
- Refactor new Request impls to use reference types in the signature by @benalleng in #524
- Remove
merge_unsigned_tx
doctest by @0xBEEFCAF3 in #531 - Fix payjoin-cli v1 coverage by @spacebear21 in #532
- Only derive JsonError for errors that can return Json by @DanGould in #526
- Fall back to first candidate if avoid_uih fails by @DanGould in #533
- Remove
map_err
s for ImplementationError by @spacebear21 in #536 - Handle receiver contribution errors as
unavailable
by @DanGould in #534 - Add missing
#[cfg(test)]
tosend::v2
test module by @0xBEEFCAF3 in #541 - Use IntoUrl for more ergonomic function signatures by @DanGould in #520
- feat: removed
unwrap
from v2 of send and recieve by @Gmin2 in #544 - don't accept invalid certs even in tests by @nothingmuch in #550
- Document contributing commit message rules by @DanGould in #548
- Make payjoin-cli v1 / v2 features additive by @DanGould in #538
- Multiparty Senders: NS1R by @0xBEEFCAF3 in #434
- Code spell by @0xBEEFCAF3 in #562
- Change HpkeError::Secp256k1 into the opaque InvalidPublicKey error by @shinghim in #511
- Clean up e2e test temp dirs on panic by @0xBEEFCAF3 in #565
- Create new lowercase error catch for uri endpoint fragments by @benalleng in #558
- Fix broken links by @thebrandonlucas in #568
- RFC 9540 directory and receiver by @nothingmuch in #549
- Fix confusing and incorrect test condition by @nothingmuch in #571
- Add additional tests for v2 send module by @benalleng in #554
- Check independent features by @DanGould in #567
- Add additional tests for v1 send module by @benalleng in #556
- Propagate sub-config parsing error by @DanGould in #575
- Handle fetch_ohttp_keys response status by @DanGould in #576
- Use actual ohttp-relay in integration tests by @nothingmuch in #572
- Make InputContributionError public by @spacebear21 in #580
- Make serialize_url and extract_v1 infallible by @spacebear21 in #579
- Opt-in to traffic from arbitrary relays in directory by @nothingmuch in #569
- Specify OHTTP gateway for opt-in respecting ohttp-relay by @nothingmuch in #570
- Update ohttp-relay to 0.0.10 by @DanGould in #587
- Refactor replacement outputs to be an Iterator of ref TxOuts by @benalleng in #529
- Remove redundant
UrlExt
import by @0xBEEFCAF3 in #593 - Fix Payjoin directory docker build by @0xBEEFCAF3 in #592
- Make WellKnownError public by @spacebear21 in #598
- Fix replacement_outputs type in v2 WantsOutputs by @spacebear21 in #597
- Replace OutputSubstitutionDisabled string context with sub variants by @benalleng in #590
- Correct the pjos parameter parity by @Gmin2 in #546
- Add additional tests for uri module by @benalleng in #578
- Introduce cargo mutants cron job by @benalleng in #573
- Update
select_first_candidate
to returnInternalSelectionError::Empty
by @pseudoramdom in #542 - Ignore mutants.out* in .gitignore by @spacebear21 in #603
- Use explicit error conversion where there might be ambiguity by @DanGould in #585
- Make feature = "v2" ⇒
pub send::V1Context
by @DanGould in #604 - Reply json by @DanGould in #606
- Link to crates.io to get
$VERSION
by @thebrandonlucas in #608 - Error fixes for bindings by @spacebear21 in #610
- Persistable payjoin types by @0xBEEFCAF3 in #552
- Add more test coverage for receive v1 by @benalleng in #602
- Move testing constants to payjoin-test-utils by @shinghim in #613
- Fix cli conf: cookie and db by @riverKanies in #609
- Persist ohttp keys by @DanGould in #616
- Update directory Docker rustc version to 1.81 by @0xBEEFCAF3 in #619
- Update minor-release.md template by @spacebear21 in #621
- Cleanup for 0.23 release by @spacebear21 in #622
- Bump payjoin version to 0.23.0 by @spacebear21 in #620
- Remove redundant sender imports by @0xBEEFCAF3 in #626
- Propagate DbError as Internal by @DanGould in #630
- Add "Quick Start" minimal tutorial, "Configuration", and "Reference" to
payjoin-cli
README by @thebrandonlucas in #624 - Bump payjoin-cli version to 0.1.0 by @spacebear21 in #629
New Contributors
- @0xBEEFCAF3 made their first contribution in #407
- @shinghim made their first contribution in #428
- @ethicnology made their first contribution in #439
- @benalleng made their first contribution in #516
- @Gmin2 made their first contribution in #544
- @pseudoramdom made their first contribution in #542
- @riverKanies made their first contribution in #609
Full Changelog: payjoin-cli-0.0.9-alpha...payjoin-cli-0.1.0