Bump go.etcd.io/etcd/api/v3 from 3.5.6 to 3.5.7 #66

Merged
dependabot[bot] merged 1 commits from dependabot/go_modules/go.etcd.io/etcd/api/v3-3.5.7 into v3 2023-01-31 06:52:24 +03:00
dependabot[bot] commented 2023-01-21 01:05:38 +03:00 (Migrated from github.com)

Bumps go.etcd.io/etcd/api/v3 from 3.5.6 to 3.5.7.

Release notes

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

v3.5.7

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.7

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.7

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

curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-darwin-amd64.zip -o /tmp/etcd-${ETCD_VER}-darwin-amd64.zip </tr></table>

... (truncated)

Commits
  • 215b53c version: bump up to 3.5.7
  • 638c6f1 Merge pull request #15096 from ahrtr/3.5_promote_non_exist_id_20230113
  • 53300ec etcdserver: return membership.ErrIDNotFound when the memberID not found
  • 816c2e2 Merge pull request #15069 from ahrtr/last_wal_rec_corrupt_3.5_20230108
  • e1fc545 etcdserver: process the scenaro of the last WAL record being partially synced...
  • 9e3966f Merge pull request #15041 from ahrtr/update_nsswitch_3.5
  • cff3045 update nsswitch.conf for 3.5
  • dd30268 Merge pull request #15037 from ahrtr/remove_busybox_3.5_20221223
  • 1293f5d 3.5: remove the dependency on busybox
  • f12f162 Merge pull request #15018 from ahrtr/deps_3.5_20221219
  • 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.6 to 3.5.7. <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.7</h2> <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://github.com/etcd-io/website/blob/main/content/en/docs/v3.5/op-guide/supported-platform.md">supported platforms</a>.</p> <h6>Linux</h6> <pre lang="bash"><code>ETCD_VER=v3.5.7 <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.7 <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</p> <p>curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-darwin-amd64.zip -o /tmp/etcd-${ETCD_VER}-darwin-amd64.zip &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/215b53cf3b48ee761f4c40908b3874b2e5e95e9f"><code>215b53c</code></a> version: bump up to 3.5.7</li> <li><a href="https://github.com/etcd-io/etcd/commit/638c6f1bb16f2562d1fac840559112bf40f8a851"><code>638c6f1</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/etcd-io/etcd/issues/15096">#15096</a> from ahrtr/3.5_promote_non_exist_id_20230113</li> <li><a href="https://github.com/etcd-io/etcd/commit/53300ece3bf849fe9a876c7813b0191fe54693e2"><code>53300ec</code></a> etcdserver: return membership.ErrIDNotFound when the memberID not found</li> <li><a href="https://github.com/etcd-io/etcd/commit/816c2e2b8a00d8b47ed9013cf04a6b309cb1a28b"><code>816c2e2</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/etcd-io/etcd/issues/15069">#15069</a> from ahrtr/last_wal_rec_corrupt_3.5_20230108</li> <li><a href="https://github.com/etcd-io/etcd/commit/e1fc545d8a2e189f68e5bd9090a1949b3ea703d7"><code>e1fc545</code></a> etcdserver: process the scenaro of the last WAL record being partially synced...</li> <li><a href="https://github.com/etcd-io/etcd/commit/9e3966fbce6dccd2271b7ade588fefeb4ca7b247"><code>9e3966f</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/etcd-io/etcd/issues/15041">#15041</a> from ahrtr/update_nsswitch_3.5</li> <li><a href="https://github.com/etcd-io/etcd/commit/cff304502c92727b535e6783f1b4740dc52cce11"><code>cff3045</code></a> update nsswitch.conf for 3.5</li> <li><a href="https://github.com/etcd-io/etcd/commit/dd30268727d612d587fac6d94c88a52cb1def817"><code>dd30268</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/etcd-io/etcd/issues/15037">#15037</a> from ahrtr/remove_busybox_3.5_20221223</li> <li><a href="https://github.com/etcd-io/etcd/commit/1293f5d4b7ba94918e60d07e0b61cec2b35bb7c2"><code>1293f5d</code></a> 3.5: remove the dependency on busybox</li> <li><a href="https://github.com/etcd-io/etcd/commit/f12f162587714f7876262d0de29b37308c06d739"><code>f12f162</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/etcd-io/etcd/issues/15018">#15018</a> from ahrtr/deps_3.5_20221219</li> <li>Additional commits viewable in <a href="https://github.com/etcd-io/etcd/compare/v3.5.6...v3.5.7">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.6&new-version=3.5.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 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>
github-actions[bot] (Migrated from github.com) reviewed 2023-01-21 01:05:52 +03:00
github-actions[bot] (Migrated from github.com) reviewed 2023-01-24 09:59:13 +03:00
github-actions[bot] (Migrated from github.com) reviewed 2023-01-30 21:28:28 +03:00
github-actions[bot] (Migrated from github.com) reviewed 2023-01-30 22:35:56 +03:00
github-actions[bot] (Migrated from github.com) approved these changes 2023-01-31 01:14:54 +03:00
Sign in to join this conversation.
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: unistack-org/micro-register-etcd#66
No description provided.