forked from ethereum/go-ethereum
-
Notifications
You must be signed in to change notification settings - Fork 2
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
chore: release v1.13.14-0.1.0.rc.3
#142
Merged
ARR4N
merged 11 commits into
release/v1.13.14-0.1.0.rc.3
from
arr4n/release/v1.13.14-0.1.0.rc.3
Feb 17, 2025
Merged
chore: release v1.13.14-0.1.0.rc.3
#142
ARR4N
merged 11 commits into
release/v1.13.14-0.1.0.rc.3
from
arr4n/release/v1.13.14-0.1.0.rc.3
Feb 17, 2025
Conversation
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
6fa557f
to
f8eba9e
Compare
3 tasks
- Pin golangci-lint action to v6 now that goheader doesn't run on the default branch pushes - This addresses the goheader step misbehaving and linting all files on pushes
f8eba9e
to
842c1e1
Compare
842c1e1
to
b3e5d55
Compare
## Why this should be merged A separately cherry-picked commit, the fix for `StateDB.Copy()`, requires Go 1.23 for use of the `maps` package. This, however, breaks `memsize`, which was later removed later from `geth` for the same reason. ## How this works All release branches will now cherry-pick ethereum#30253. ## How this was tested Updated list of cherry-picks applied to #142, which [passed tests](https://github.com/ava-labs/libevm/actions/runs/13371460014/job/37340683594).
v1.13.14 0.1.0.rc.3
v1.13.14-0.1.0.rc.3
b3e5d55
to
4a64c63
Compare
…hereum#29223) Co-authored-by: Felix Lange <fjl@twurst.com>
…ion (ethereum#29563) This change removes an unnecessary preallocation and fixes a flaw with no-op copies of some parts of the statedb
…thereum#29644) * eth/gasprice: add query limit for FeeHistory to defend DDOS attack * fix return values after cherry-pick --------- Co-authored-by: Eric <45141191+zlacfzy@users.noreply.github.com>
* upgrade lock usage * revert unnecessary change
Removing because memsize will very likely be broken by Go 1.23. See fjl/memsize#4
Fixes an error when the block is not found in debug methods.
4a64c63
to
b4a92df
Compare
darioush
approved these changes
Feb 17, 2025
qdm12
reviewed
Feb 17, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Go 1.23
As described in #146, one of the cherry-picks requires Go 1.23. As we'll be building
libevm
throughava-labs/avalanchego
, which already uses 1.23.6, it's also beneficial to have our release branch tested with this version.Tip
By design, all UI-based merge strategies are blocked for release branches. This PR MUST be
--ff-only
merged locally and then pushed to avoid an unnecessary merge commit. The GitHubgit
implementation is smart enough to check the branch rules (e.g. this PR is approved).