-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/develop' into ws-async-close
* upstream/develop: Set version to 2.0.0 Set version to 2.0.0-rc7 Set version to 2.0.0-rc6 Revert "Apply transaction batches in periodic intervals (4504)" (4852) Revert "Add ProtocolStart and GracefulClose P2P protocol messages (3839)" (4850)
- Loading branch information
Showing
39 changed files
with
501 additions
and
966 deletions.
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
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 |
---|---|---|
|
@@ -4,9 +4,204 @@ | |
|
||
This document contains the release notes for `rippled`, the reference server implementation of the XRP Ledger protocol. To learn more about how to build, run or update a `rippled` server, visit https://xrpl.org/install-rippled.html | ||
|
||
|
||
Have new ideas? Need help with setting up your node? [Please open an issue here](https://github.com/xrplf/rippled/issues/new/choose). | ||
|
||
# Introducing XRP Ledger version 2.0.0 | ||
|
||
Version 2.0.0 of `rippled`, the reference server implementation of the XRP Ledger protocol, is now available. This release adds new features and bug fixes, and introduces these amendments: | ||
|
||
- `DID` | ||
- `XChainBridge` | ||
- `fixDisallowIncomingV1` | ||
- `fixFillOrKill` | ||
|
||
[Sign Up for Future Release Announcements](https://groups.google.com/g/ripple-server) | ||
|
||
<!-- BREAK --> | ||
|
||
|
||
## Action Required | ||
|
||
Four new amendments are now open for voting according to the XRP Ledger's [amendment process](https://xrpl.org/amendments.html), which enables protocol changes following two weeks of >80% support from trusted validators. | ||
|
||
If you operate an XRP Ledger server, upgrade to version 2.0.0 by January 22, 2024 to ensure service continuity. The exact time that protocol changes take effect depends on the voting decisions of the decentralized network. | ||
|
||
|
||
## Changelog | ||
|
||
|
||
### Amendments, New Features, and Changes | ||
(These are changes which may impact or be useful to end users. For example, you may be able to update your code/workflow to take advantage of these changes.) | ||
|
||
- **XChainBridge**: Introduces cross-chain bridges, enabling interoperability between the XRP Ledger and sidechains. [#4292](https://github.com/XRPLF/rippled/pull/4292) | ||
|
||
- **DID**: Introduces decentralized identifiers. [#4636](https://github.com/XRPLF/rippled/pull/4636) | ||
|
||
- **fixDisallowIncomingV1**: Fixes an issue that occurs when users try to authorize a trustline while the `lsfDisallowIncomingTrustline` flag is enabled on their account. [#4721](https://github.com/XRPLF/rippled/pull/4721) | ||
|
||
- **fixFillOrKill**: Fixes an issue introduced in the `flowCross` amendment. The `tfFillOrKill` and `tfSell` flags are now properly handled to allow offers to cross in certain scenarios. [#4694](https://github.com/XRPLF/rippled/pull/4694) | ||
|
||
- **API v2 released with these changes:** | ||
|
||
- Accepts currency codes in ASCII, using the full alphabet. [#4566](https://github.com/XRPLF/rippled/pull/4566) | ||
- Added test to verify the `check` field is a string. [#4630](https://github.com/XRPLF/rippled/pull/4630) | ||
- Added errors for malformed `account_tx` and `noripple_check` fields. [#4620](https://github.com/XRPLF/rippled/pull/4620) | ||
- Added errors for malformed `gateway_balances` and `channel_authorize` requests. [#4618](https://github.com/XRPLF/rippled/pull/4618) | ||
- Added a `DeliverMax` alias to `Amount` and removed `Amount`. [#4733](https://github.com/XRPLF/rippled/pull/4733) | ||
- Removed `tx_history` and `ledger_header` methods. Also updated `RPC::Handler` to allow for version-specific methods. [#4759](https://github.com/XRPLF/rippled/pull/4759) | ||
- Standardized the JSON serialization format of transactions. [#4727](https://github.com/XRPLF/rippled/issues/4727) | ||
- Bumped API support to v2, but kept the command-line interface for `rippled` and unit tests at v1. [#4803](https://github.com/XRPLF/rippled/pull/4803) | ||
- Standardized `ledger_index` to return as a number. [#4820](https://github.com/XRPLF/rippled/pull/4820) | ||
|
||
- Added a `server_definitions` command that returns an SDK-compatible `definitions.json` file, generated from the `rippled` instance currently running. [#4703](https://github.com/XRPLF/rippled/pull/4703) | ||
|
||
- Improved unit test command line input and run times. [#4634](https://github.com/XRPLF/rippled/pull/4634) | ||
|
||
- Added the link compression setting to the the `rippled-example.cfg` file. [#4753](https://github.com/XRPLF/rippled/pull/4753) | ||
|
||
- Changed the reserved hook error code name from `tecHOOK_ERROR` to `tecHOOK_REJECTED`. [#4559](https://github.com/XRPLF/rippled/pull/4559) | ||
|
||
|
||
### Bug Fixes and Performance Improvements | ||
(These are behind-the-scenes improvements, such as internal changes to the code, which are not expected to impact end users.) | ||
|
||
- Simplified `TxFormats` common fields logic. [#4637](https://github.com/XRPLF/rippled/pull/4637) | ||
|
||
- Improved transaction throughput by asynchronously writing batches to *NuDB*. [#4503](https://github.com/XRPLF/rippled/pull/4503) | ||
|
||
- Removed 2 unused functions. [#4708](https://github.com/XRPLF/rippled/pull/4708) | ||
|
||
- Removed an unused variable that caused clang 14 build errors. [#4672](https://github.com/XRPLF/rippled/pull/4672) | ||
|
||
- Fixed comment about return value of `LedgerHistory::fixIndex`. [#4574](https://github.com/XRPLF/rippled/pull/4574) | ||
|
||
- Updated `secp256k1` to 0.3.2. [#4653](https://github.com/XRPLF/rippled/pull/4653) | ||
|
||
- Removed built-in SNTP clock issues. [#4628](https://github.com/XRPLF/rippled/pull/4628) | ||
|
||
- Fixed amendment flapping. This issue usually occurred when an amendment was on the verge of gaining majority, but a validator not in favor of the amendment went offline. [#4410](https://github.com/XRPLF/rippled/pull/4410) | ||
|
||
- Fixed asan stack-use-after-scope issue. [#4676](https://github.com/XRPLF/rippled/pull/4676) | ||
|
||
- Transactions and pseudo-transactions share the same `commonFields` again. [#4715](https://github.com/XRPLF/rippled/pull/4715) | ||
|
||
- Reduced boilerplate in `applySteps.cpp`. When a new transactor is added, only one function needs to be modified now. [#4710](https://github.com/XRPLF/rippled/pull/4710) | ||
|
||
- Removed an incorrect assert. [#4743](https://github.com/XRPLF/rippled/pull/4743) | ||
|
||
- Replaced some asserts in `PeerFinder::Logic` with `LogicError` to better indicate the nature of server crashes. [#4562](https://github.com/XRPLF/rippled/pull/4562) | ||
|
||
- Fixed an issue with enabling new amendments on a network with an ID greater than 1024. [#4737](https://github.com/XRPLF/rippled/pull/4737) | ||
|
||
|
||
### Docs and Build System | ||
|
||
- Updated `rippled-example.cfg` docs to clarify usage of *ssl_cert* vs *ssl_chain*. [#4667](https://github.com/XRPLF/rippled/pull/4667) | ||
|
||
- Updated `BUILD.md`: | ||
- Made the `environment.md` link easier to find. Also made it easier to find platform-specific info. [#4507](https://github.com/XRPLF/rippled/pull/4507) | ||
- Fixed typo. [#4718](https://github.com/XRPLF/rippled/pull/4718) | ||
- Updated the minimum compiler requirements. [#4700](https://github.com/XRPLF/rippled/pull/4700) | ||
- Added note about enabling `XRPFees`. [#4741](https://github.com/XRPLF/rippled/pull/4741) | ||
|
||
- Updated `API-CHANGELOG.md`: | ||
- Explained API v2 is releasing with `rippled` 2.0.0. [#4633](https://github.com/XRPLF/rippled/pull/4633) | ||
- Clarified the location of the `signer_lists` field in the `account_info` response for API v2. [#4724](https://github.com/XRPLF/rippled/pull/4724) | ||
- Added documentation for the new `DeliverMax` field. [#4784](https://github.com/XRPLF/rippled/pull/4784) | ||
- Removed references to API v2 being "in progress" and "in beta". [#4828](https://github.com/XRPLF/rippled/pull/4828) | ||
- Clarified that all breaking API changes will now occur in API v3 or later. [#4773](https://github.com/XRPLF/rippled/pull/4773) | ||
|
||
- Fixed a mistake in the overlay README. [#4635](https://github.com/XRPLF/rippled/pull/4635) | ||
|
||
- Fixed an early return from `RippledRelease.cmake` that prevented targets from being created during packaging. [#4707](https://github.com/XRPLF/rippled/pull/4707) | ||
|
||
- Fixed a build error with Intel Macs. [#4632](https://github.com/XRPLF/rippled/pull/4632) | ||
|
||
- Added `.build` to `.gitignore`. [#4722](https://github.com/XRPLF/rippled/pull/4722) | ||
|
||
- Fixed a `uint is not universally defined` Windows build error. [#4731](https://github.com/XRPLF/rippled/pull/4731) | ||
|
||
- Reenabled Windows CI build with Artifactory support. [#4596](https://github.com/XRPLF/rippled/pull/4596) | ||
|
||
- Fixed output of remote step in Nix workflow. [#4746](https://github.com/XRPLF/rippled/pull/4746) | ||
|
||
- Fixed a broken link in `conan.md`. [#4740](https://github.com/XRPLF/rippled/pull/4740) | ||
|
||
- Added a `python` call to fix the `pip` upgrade command in Windows CI. [#4768](https://github.com/XRPLF/rippled/pull/4768) | ||
|
||
- Added an API Impact section to `pull_request_template.md`. [#4757](https://github.com/XRPLF/rippled/pull/4757) | ||
|
||
- Set permissions for the Doxygen workflow. [#4756](https://github.com/XRPLF/rippled/pull/4756) | ||
|
||
- Switched to Unity builds to speed up Windows CI. [#4780](https://github.com/XRPLF/rippled/pull/4780) | ||
|
||
- Clarified what makes concensus healthy in `FeeEscalation.md`. [#4729](https://github.com/XRPLF/rippled/pull/4729) | ||
|
||
- Removed a dependency on the <ranges> header for unit tests. [#4788](https://github.com/XRPLF/rippled/pull/4788) | ||
|
||
- Fixed a clang `unused-but-set-variable` warning. [#4677](https://github.com/XRPLF/rippled/pull/4677) | ||
|
||
- Removed an unused Dockerfile. [#4791](https://github.com/XRPLF/rippled/pull/4791) | ||
|
||
- Fixed unit tests to work with API v2. [#4785](https://github.com/XRPLF/rippled/pull/4785) | ||
|
||
- Added support for the mold linker on Linux. [#4807](https://github.com/XRPLF/rippled/pull/4807) | ||
|
||
- Updated Linux distribtuions `rippled` smoke tests run on. [#4813](https://github.com/XRPLF/rippled/pull/4813) | ||
|
||
- Added codename `bookworm` to the distribution matrix during Artifactory uploads, enabling Debian 12 clients to install `rippled` packages. [#4836](https://github.com/XRPLF/rippled/pull/4836) | ||
|
||
- Added a workaround for compilation errors with GCC 13 and other compilers relying on libstdc++ version 13. [#4817](https://github.com/XRPLF/rippled/pull/4817) | ||
|
||
- Fixed a minor typo in the code comments of `AMMCreate.h`. [4821](https://github.com/XRPLF/rippled/pull/4821) | ||
|
||
|
||
### GitHub | ||
|
||
The public source code repository for `rippled` is hosted on GitHub at <https://github.com/XRPLF/rippled>. | ||
|
||
We welcome all contributions and invite everyone to join the community of XRP Ledger developers to help build the Internet of Value. | ||
|
||
|
||
## Credits | ||
|
||
The following people contributed directly to this release: | ||
|
||
- Bronek Kozicki <[email protected]> | ||
- Chenna Keshava B S <[email protected]> | ||
- Denis Angell <[email protected]> | ||
- Ed Hennis <[email protected]> | ||
- Elliot Lee <[email protected]> | ||
- Florent <[email protected]> | ||
- ForwardSlashBack <[email protected]> | ||
- Gregory Tsipenyuk <[email protected]> | ||
- Howard Hinnant <[email protected]> | ||
- Hussein Badakhchani <[email protected]> | ||
- Jackson Mills <[email protected]> | ||
- John Freeman <[email protected]> | ||
- Manoj Doshi <[email protected]> | ||
- Mark Pevec <[email protected]> | ||
- Mark Travis <[email protected]> | ||
- Mayukha Vadari <[email protected]> | ||
- Michael Legleux <[email protected]> | ||
- Nik Bougalis <[email protected]> | ||
- Peter Chen <[email protected]> | ||
- Rome Reginelli <[email protected]> | ||
- Scott Determan <[email protected]> | ||
- Scott Schurr <[email protected]> | ||
- Sophia Xie <[email protected]> | ||
- Stefan van Kessel <[email protected]> | ||
- pwang200 <[email protected]> | ||
- shichengsg002 <[email protected]> | ||
- sokkaofthewatertribe <[email protected]> | ||
|
||
Bug Bounties and Responsible Disclosures: | ||
|
||
We welcome reviews of the rippled code and urge researchers to responsibly disclose any issues they may find. | ||
|
||
To report a bug, please send a detailed report to: <[email protected]> | ||
|
||
|
||
# Introducing XRP Ledger version 1.12.0 | ||
|
||
Version 1.12.0 of `rippled`, the reference server implementation of the XRP Ledger protocol, is now available. This release adds new features and bug fixes, and introduces these amendments: | ||
|
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
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.