Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): Bump github.com/ethereum/go-ethereum from 1.13.5 to 1.13…
….7 (#2956) Bumps [github.com/ethereum/go-ethereum](https://github.com/ethereum/go-ethereum) from 1.13.5 to 1.13.7. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/ethereum/go-ethereum/releases">github.com/ethereum/go-ethereum's releases</a>.</em></p> <blockquote> <h2>Fargeluse (v1.13.7)</h2> <p>We're issuing this release to fix an issue with our build pipeline. There are also some other changes:</p> <ul> <li>The <code>eth_sendTransaction</code> RPC method now behaves more correctly for low-fee transactions. (<a href="https://redirect.github.com/ethereum/go-ethereum/pull/27834">#27834</a>)</li> <li>We have upgraded the golang.org/x/crypto module dependency. The Go team has issued a new version to fix a vulnerability in the ssh package. While we do not use this package, we have upgraded the dependency in order to stop dependabot warnings. (<a href="https://redirect.github.com/ethereum/go-ethereum/pull/28702">#28702</a>)</li> </ul> <p>For a full rundown of the changes please consult the Geth 1.13.7 <a href="https://github.com/ethereum/go-ethereum/milestone/155?closed=1">release milestone</a>.</p> <hr /> <p>As with all our previous releases, you can find the:</p> <ul> <li>Pre-built binaries for all platforms on our <a href="https://geth.ethereum.org/downloads/">downloads page</a>.</li> <li>Docker images published under <a href="https://cloud.docker.com/u/ethereum/repository/docker/ethereum/client-go"><code>ethereum/client-go</code></a>.</li> <li>Ubuntu packages in our <a href="https://launchpad.net/~ethereum/+archive/ubuntu/ethereum">Launchpad PPA repository</a>.</li> <li>OSX packages in our <a href="https://github.com/ethereum/homebrew-ethereum">Homebrew Tap repository</a>.</li> </ul> <h2>Porolan (v1.13.6)</h2> <p>Geth v1.13.6 is a scheduled maintenance release, but it also contains some changes which might affect node operators, concerning logging.</p> <h3>Gas estimation changes</h3> <p>The gas estimator was heavily reworked (<a href="https://redirect.github.com/ethereum/go-ethereum/pull/28600">#28600</a>, <a href="https://redirect.github.com/ethereum/go-ethereum/pull/28618">#28618</a>). The new version runs quite a bit faster (normally completing in 7-8 attempts rather than 18-20). However, the results have an error ratio of <code>1.5%</code>, and the estimation outcome won't always be deterministic.</p> <h3>Logging changes</h3> <p>In the absence of an 'official' Go logging framework, go-ethereum has, for a very long time, used a custom in-house logger. However, just such an 'official' Go logging framework has now arrived, with the <a href="https://go.dev/blog/slog"><code>slog</code></a> package.</p> <p>As of <code>v1.13.6</code> , geth now uses <code>slog</code>, which will affect Geth users in different ways.</p> <p>Main changes are as follows:</p> <ul> <li>Verbosity level constants are changed to match slog constant values. Internal translation is done to make this opaque to the user and backwards compatible with existing <code>--verbosity</code> and <code>--vmodule</code> options.</li> <li><code>--log.backtraceat</code> and <code>--log.debug</code> are removed.</li> <li>Removes interface <code>log.Format</code> and the method <code>log.FormatFunc</code>,</li> <li>Unexports <code>TerminalHandler.TerminalFormat</code> formatting methods (renamed to <code>TerminalHandler.format</code>)</li> <li>Removes the notion of <code>log.Lazy</code> values</li> </ul> <p>The external-facing API is largely the same as the existing Geth logger. Method signatures remain unchanged. A small semantic difference is that a <code>Handler</code> can only be set once per <code>Logger</code> and not changed dynamically. This just means that a new logger must be instantiated every time the handler of the root logger is changed.</p> <p>For users of the <code>github.com/ethereum/go-ethereum/log</code> package: If you were using this package for your own project, you will need to change the initialization. If you previously did</p> <pre lang="go"><code> log.Root().SetHandler(log.LvlFilterHandler(log.LvlInfo, log.StreamHandler(os.Stderr, log.TerminalFormat(true)))) </code></pre> <p>You now instead need to do</p> <pre lang="go"><code> log.SetDefault(log.NewLogger(log.NewTerminalHandlerWithLevel(os.Stderr, log.LevelInfo, true))) </tr></table> </code></pre> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/ethereum/go-ethereum/commit/c3d9ca62c1534250f40a19f231f437d09ebc8a0a"><code>c3d9ca6</code></a> all: release go-ethereum v1.13.7</li> <li><a href="https://github.com/ethereum/go-ethereum/commit/3fd568855f1e6d1370e61a30d10a4055ab682851"><code>3fd5688</code></a> params: go-ethereum v1.13.7 stable</li> <li><a href="https://github.com/ethereum/go-ethereum/commit/0cc192bd3a89cae6d3c2a787b9265dda631d6529"><code>0cc192b</code></a> build(deps): bump golang.org/x/crypto from 0.15.0 to 0.17.0 (<a href="https://redirect.github.com/ethereum/go-ethereum/issues/28702">#28702</a>)</li> <li><a href="https://github.com/ethereum/go-ethereum/commit/435bed5da04a386198ca25c5e1264330c7a0da5b"><code>435bed5</code></a> ci: disable lint on travis (<a href="https://redirect.github.com/ethereum/go-ethereum/issues/28706">#28706</a>)</li> <li><a href="https://github.com/ethereum/go-ethereum/commit/5a9dda64ce17dda86720ed62d502831e5f616144"><code>5a9dda6</code></a> .travis: set lower GOGC value (<a href="https://redirect.github.com/ethereum/go-ethereum/issues/28705">#28705</a>)</li> <li><a href="https://github.com/ethereum/go-ethereum/commit/952b343cb3d319b77076ef3acb60e29e04cd51fd"><code>952b343</code></a> build: make linter emit output (<a href="https://redirect.github.com/ethereum/go-ethereum/issues/28704">#28704</a>)</li> <li><a href="https://github.com/ethereum/go-ethereum/commit/cd58897f18fdb12c5a1d41f8e73612c0d296211f"><code>cd58897</code></a> core/rawdb: implement size reporting for live items in freezer_table (<a href="https://redirect.github.com/ethereum/go-ethereum/issues/28525">#28525</a>)</li> <li><a href="https://github.com/ethereum/go-ethereum/commit/54a400ee717caf44603fac390314747c5592ee1b"><code>54a400e</code></a> internal/ethapi: ethSendTransaction check baseFee (<a href="https://redirect.github.com/ethereum/go-ethereum/issues/27834">#27834</a>)</li> <li><a href="https://github.com/ethereum/go-ethereum/commit/4410c1416abce38925c60550bf2bfb7f7db5c3f5"><code>4410c14</code></a> params: begin v1.13.7 release cycle</li> <li><a href="https://github.com/ethereum/go-ethereum/commit/da6cdaf6357df693b25aa9ecda1149a22584ec8d"><code>da6cdaf</code></a> all: release go-ethereum v1.13.6</li> <li>Additional commits viewable in <a href="https://github.com/ethereum/go-ethereum/compare/v1.13.5...v1.13.7">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/ethereum/go-ethereum&package-manager=go_modules&previous-version=1.13.5&new-version=1.13.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information