-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Proposed 2.1.0 #4920
Proposed 2.1.0 #4920
Conversation
* Commit 01c37fe introduced a change to the STTx unit test where a local "defaultRules" object was created with a temporary inline "presets" value provided to the ctor. Rules::Impl stores a const ref to the presets provided to the ctor. This particular call provided an inline temp variable, which goes out of scope as soon as the object is created. On Windows, attempting to use the presets (e.g. via the enabled() function) causes an access violation, which crashes the test run. * An audit of the code indicates that all other instances of Rules use the Application's config.features list, which will have a sufficient lifetime.
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## release #4920 +/- ##
===========================================
- Coverage 61.52% 61.50% -0.02%
===========================================
Files 797 797
Lines 70158 70157 -1
Branches 36261 36261
===========================================
- Hits 43163 43152 -11
- Misses 19753 19757 +4
- Partials 7242 7248 +6 ☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Comparison with 2.0.1 (last stable release): 2.0.1...3895468
Target release date: Feb 20, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like RELEASENOTES.md
needs to be updated.
3895468
to
d7d15a9
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I added the release notes. No code changes, so no need to wait for CI.
So it turns out that I can't push to Edit: Got it pushed to |
High Level Overview of Change
This release introduces two amendments:
Additionally, there are test improvements, improvements to
libxrpl
, and relaxed validation forport_grpc
inrippled.cfg
.The base branch is
release
. All releases (including betas) go inrelease
. This PR will be merged with--ff-only
(not squashed or rebased, and not using the GitHub UI).Type of Change
API Impact
Improvements to
libxrpl
help dependents likevalidator-keys-tool
andxbridge_witness
.If/when amendments activate, changes to transaction processing - as implemented by those amendments - will take effect.