Bump go.etcd.io/etcd/api/v3 from 3.5.1 to 3.5.2 #15

Closed
dependabot[bot] wants to merge 1 commits from dependabot/go_modules/go.etcd.io/etcd/api/v3-3.5.2 into master
dependabot[bot] commented 2022-02-02 01:29:40 +03:00 (Migrated from github.com)

Bumps go.etcd.io/etcd/api/v3 from 3.5.1 to 3.5.2.

Release notes

Sourced from go.etcd.io/etcd/api/v3's releases.

v3.5.2

Please see Announcing etcd 3.5 blog post.

Please check out CHANGELOG for a full list of changes. And make sure to read upgrade guide before upgrading etcd (there may be breaking changes).

For installation guides, please check out play.etcd.io and operating etcd. Latest support status for common architectures and operating systems can be found at supported platforms.

Linux
ETCD_VER=v3.5.2

choose either URL

GOOGLE_URL=https://storage.googleapis.com/etcd GITHUB_URL=https://github.com/etcd-io/etcd/releases/download DOWNLOAD_URL=${GOOGLE_URL}

rm -f /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test

curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-linux-amd64.tar.gz -o /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz tar xzvf /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz -C /tmp/etcd-download-test --strip-components=1 rm -f /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz

/tmp/etcd-download-test/etcd --version /tmp/etcd-download-test/etcdctl version /tmp/etcd-download-test/etcdutl version

# start a local etcd server
/tmp/etcd-download-test/etcd

write,read to etcd

/tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 put foo bar
/tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 get foo

macOS (Darwin)
ETCD_VER=v3.5.2

choose either URL

GOOGLE_URL=https://storage.googleapis.com/etcd GITHUB_URL=https://github.com/etcd-io/etcd/releases/download DOWNLOAD_URL=${GOOGLE_URL}

rm -f /tmp/etcd-${ETCD_VER}-darwin-amd64.zip rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test </tr></table>

... (truncated)

Commits
  • 99018a7 version: bump up to 3.5.2
  • a624446 Merge pull request #13616 from ptabor/20220117-update-yaml
  • 74f33d6 Update dep: require gopkg.in/yaml.v2 v2.2.8 -> v2.4.0 due to: CVE-2019-11254.
  • 7291ed3 Merge pull request #13541 from michaljasionowski/backport-runlock-fix
  • 55c16df fix runlock bug
  • 73080a7 Merge pull request #13501 from ahrtr/reset_ci_after_reload_db_3.5
  • e84c611 Merge pull request #13515 from serathius/checkpoints-fix-3.5
  • d00e89d server: Require either cluster version v3.6 or --experimental-enable-lease-ch...
  • eddfb42 etcdserver,integration: Store remaining TTL on checkpoint
  • 21634a9 lease,integration: add checkpoint scheduling after leader change
  • Additional commits viewable in compare view

Dependabot compatibility score

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 commands and options

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 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)
Bumps [go.etcd.io/etcd/api/v3](https://github.com/etcd-io/etcd) from 3.5.1 to 3.5.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/etcd-io/etcd/releases">go.etcd.io/etcd/api/v3's releases</a>.</em></p> <blockquote> <h2>v3.5.2</h2> <p>Please see <a href="https://etcd.io/blog/2021/announcing-etcd-3.5/">Announcing etcd 3.5 blog post</a>.</p> <p>Please check out <a href="https://github.com/etcd-io/etcd/blob/main/CHANGELOG/CHANGELOG-3.5.md">CHANGELOG</a> for a full list of changes. And make sure to read <a href="https://github.com/etcd-io/website/blob/main/content/en/docs/v3.5/upgrades/upgrade_3_5.md">upgrade guide</a> before upgrading etcd (there may be breaking changes).</p> <p>For installation guides, please check out <a href="http://play.etcd.io">play.etcd.io</a> and <a href="https://github.com/etcd-io/etcd/tree/master/Documentation#operating-etcd-clusters">operating etcd</a>. Latest support status for common architectures and operating systems can be found at <a href="https://etcd.io/docs/v3.5/op-guide/supported-platform/">supported platforms</a>.</p> <h6>Linux</h6> <pre lang="bash"><code>ETCD_VER=v3.5.2 <h1>choose either URL</h1> <p>GOOGLE_URL=<a href="https://storage.googleapis.com/etcd">https://storage.googleapis.com/etcd</a> GITHUB_URL=<a href="https://github.com/etcd-io/etcd/releases/download">https://github.com/etcd-io/etcd/releases/download</a> DOWNLOAD_URL=${GOOGLE_URL}</p> <p>rm -f /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz rm -rf /tmp/etcd-download-test &amp;&amp; mkdir -p /tmp/etcd-download-test</p> <p>curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-linux-amd64.tar.gz -o /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz tar xzvf /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz -C /tmp/etcd-download-test --strip-components=1 rm -f /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz</p> <p>/tmp/etcd-download-test/etcd --version /tmp/etcd-download-test/etcdctl version /tmp/etcd-download-test/etcdutl version </code></pre></p> <pre lang="bash"><code># start a local etcd server /tmp/etcd-download-test/etcd # write,read to etcd /tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 put foo bar /tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 get foo </code></pre> <h6>macOS (Darwin)</h6> <pre lang="bash"><code>ETCD_VER=v3.5.2 <h1>choose either URL</h1> <p>GOOGLE_URL=<a href="https://storage.googleapis.com/etcd">https://storage.googleapis.com/etcd</a> GITHUB_URL=<a href="https://github.com/etcd-io/etcd/releases/download">https://github.com/etcd-io/etcd/releases/download</a> DOWNLOAD_URL=${GOOGLE_URL}</p> <p>rm -f /tmp/etcd-${ETCD_VER}-darwin-amd64.zip rm -rf /tmp/etcd-download-test &amp;&amp; mkdir -p /tmp/etcd-download-test &lt;/tr&gt;&lt;/table&gt; </code></pre></p> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/etcd-io/etcd/commit/99018a77bea9a9d29962e5169876c64e02739c52"><code>99018a7</code></a> version: bump up to 3.5.2</li> <li><a href="https://github.com/etcd-io/etcd/commit/a62444690780fd1eb72615b0cd6d804ea54cc771"><code>a624446</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/etcd-io/etcd/issues/13616">#13616</a> from ptabor/20220117-update-yaml</li> <li><a href="https://github.com/etcd-io/etcd/commit/74f33d666559659f065f3249079b8dc7ac58e4b1"><code>74f33d6</code></a> Update dep: require gopkg.in/yaml.v2 v2.2.8 -&gt; v2.4.0 due to: CVE-2019-11254.</li> <li><a href="https://github.com/etcd-io/etcd/commit/7291ed3c4ae7ba61df72e7b610d6c351f995a3db"><code>7291ed3</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/etcd-io/etcd/issues/13541">#13541</a> from michaljasionowski/backport-runlock-fix</li> <li><a href="https://github.com/etcd-io/etcd/commit/55c16df99702cacc387433c4d7d9bdb8da04262c"><code>55c16df</code></a> fix runlock bug</li> <li><a href="https://github.com/etcd-io/etcd/commit/73080a716634f45d50d0593e0454ed3206a52f5b"><code>73080a7</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/etcd-io/etcd/issues/13501">#13501</a> from ahrtr/reset_ci_after_reload_db_3.5</li> <li><a href="https://github.com/etcd-io/etcd/commit/e84c61104c0d7152f4e2864c887574c163efad4f"><code>e84c611</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/etcd-io/etcd/issues/13515">#13515</a> from serathius/checkpoints-fix-3.5</li> <li><a href="https://github.com/etcd-io/etcd/commit/d00e89db2edec433bff0f6e8bb726058bb66ad2c"><code>d00e89d</code></a> server: Require either cluster version v3.6 or --experimental-enable-lease-ch...</li> <li><a href="https://github.com/etcd-io/etcd/commit/eddfb4232f09cbaeaf1627452611f912eb98e335"><code>eddfb42</code></a> etcdserver,integration: Store remaining TTL on checkpoint</li> <li><a href="https://github.com/etcd-io/etcd/commit/21634a98c68e7041b5cf3d0779ceaa21b304f441"><code>21634a9</code></a> lease,integration: add checkpoint scheduling after leader change</li> <li>Additional commits viewable in <a href="https://github.com/etcd-io/etcd/compare/v3.5.1...v3.5.2">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=go.etcd.io/etcd/api/v3&package-manager=go_modules&previous-version=3.5.1&new-version=3.5.2)](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 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>
vtolstov (Migrated from github.com) reviewed 2022-02-02 01:29:59 +03:00
vtolstov (Migrated from github.com) reviewed 2022-02-25 09:35:17 +03:00
vtolstov (Migrated from github.com) approved these changes 2022-02-25 09:57:46 +03:00
dependabot[bot] commented 2022-02-25 10:16:15 +03:00 (Migrated from github.com)

Looks like go.etcd.io/etcd/api/v3 is up-to-date now, so this is no longer needed.

Looks like go.etcd.io/etcd/api/v3 is up-to-date now, so this is no longer needed.

Pull request closed

Sign in to join this conversation.
No description provided.