Bump go.etcd.io/etcd/client/v3 from 3.5.5 to 3.5.6 #54

Merged
dependabot[bot] merged 1 commits from dependabot/go_modules/go.etcd.io/etcd/client/v3-3.5.6 into v3 2022-12-01 09:52:09 +03:00
dependabot[bot] commented 2022-11-23 01:39:43 +03:00 (Migrated from github.com)

Bumps go.etcd.io/etcd/client/v3 from 3.5.5 to 3.5.6.

Release notes

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

v3.5.6

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

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

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

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 unzip /tmp/etcd-${ETCD_VER}-darwin-amd64.zip -d /tmp && rm -f /tmp/etcd-${ETCD_VER}-darwin-amd64.zip </tr></table>

... (truncated)

Commits
  • cecbe35 version: bump up to 3.5.6
  • d0424a7 Merge pull request #14816 from serathius/trim-v3.5
  • 1a9742c release: build with consistent paths
  • 7ccca08 Merge pull request #14799 from serathius/fix-client-fileutil-log
  • c919780 client/pkg/fileutil: add missing logger to {Create,Touch}DirAll
  • b282163 Merge pull request #14790 from ahrtr/auth_3.5_20221117
  • 4097c24 test: add test case to cover the CommonName based authentication
  • 9849fa7 test: add certificate with root CommonName
  • 69aace2 clientv3: do not refresh token when using TLS CommonName based authentication
  • 5f387e6 Merge pull request #14733 from ahrtr/rev_inconsistency_3.5
  • 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/client/v3](https://github.com/etcd-io/etcd) from 3.5.5 to 3.5.6. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/etcd-io/etcd/releases">go.etcd.io/etcd/client/v3's releases</a>.</em></p> <blockquote> <h2>v3.5.6</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.6 <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 </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.6 <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 unzip /tmp/etcd-${ETCD_VER}-darwin-amd64.zip -d /tmp &amp;&amp; rm -f /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/cecbe35ce0703cd0f8d2063dad4a9e541ae317e5"><code>cecbe35</code></a> version: bump up to 3.5.6</li> <li><a href="https://github.com/etcd-io/etcd/commit/d0424a7bf10651482e84ff2fb07c3247702f0b57"><code>d0424a7</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/etcd-io/etcd/issues/14816">#14816</a> from serathius/trim-v3.5</li> <li><a href="https://github.com/etcd-io/etcd/commit/1a9742c9c425085caec8b8ad66cbecdfe728c93a"><code>1a9742c</code></a> release: build with consistent paths</li> <li><a href="https://github.com/etcd-io/etcd/commit/7ccca083eb307f76d22a3ae0f53f35b8d9cdba81"><code>7ccca08</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/etcd-io/etcd/issues/14799">#14799</a> from serathius/fix-client-fileutil-log</li> <li><a href="https://github.com/etcd-io/etcd/commit/c91978077b1c89129e2f2340568060935bec0f2a"><code>c919780</code></a> client/pkg/fileutil: add missing logger to {Create,Touch}DirAll</li> <li><a href="https://github.com/etcd-io/etcd/commit/b2821631aa6d49211dd5bd6beb2f871ef5d427f0"><code>b282163</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/etcd-io/etcd/issues/14790">#14790</a> from ahrtr/auth_3.5_20221117</li> <li><a href="https://github.com/etcd-io/etcd/commit/4097c247837e2acdf155cca0b9a60f13e3ea5a47"><code>4097c24</code></a> test: add test case to cover the CommonName based authentication</li> <li><a href="https://github.com/etcd-io/etcd/commit/9849fa7c66a1b686df630df7bd0b1bdcbf827c62"><code>9849fa7</code></a> test: add certificate with root CommonName</li> <li><a href="https://github.com/etcd-io/etcd/commit/69aace20c82cbc7388d72f62a885dcb6c77431d3"><code>69aace2</code></a> clientv3: do not refresh token when using TLS CommonName based authentication</li> <li><a href="https://github.com/etcd-io/etcd/commit/5f387e6b7dbdda63642dde618c422b11ecae0e63"><code>5f387e6</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/etcd-io/etcd/issues/14733">#14733</a> from ahrtr/rev_inconsistency_3.5</li> <li>Additional commits viewable in <a href="https://github.com/etcd-io/etcd/compare/v3.5.5...v3.5.6">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=go.etcd.io/etcd/client/v3&package-manager=go_modules&previous-version=3.5.5&new-version=3.5.6)](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 2022-11-23 01:39:58 +03:00
github-actions[bot] (Migrated from github.com) reviewed 2022-11-28 16:30:03 +03:00
github-actions[bot] (Migrated from github.com) approved these changes 2022-11-29 01:21:04 +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#54
No description provided.