Skip to content
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

fix(deps): update all go dependencies main (main) (patch) #25414

Merged
merged 1 commit into from May 15, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 12, 2023

Mend Renovate

This PR contains the following updates:

Package Type Update Change
github.com/aliyun/alibaba-cloud-sdk-go require patch v1.62.301 -> v1.62.318
github.com/prometheus/client_golang require patch v1.15.0 -> v1.15.1
github.com/shirou/gopsutil/v3 require patch v3.23.3 -> v3.23.4
go.etcd.io/etcd/api/v3 require patch v3.5.8 -> v3.5.9
go.etcd.io/etcd/client/pkg/v3 require patch v3.5.8 -> v3.5.9
go.etcd.io/etcd/client/v3 require patch v3.5.8 -> v3.5.9

⚠ Dependency Lookup Warnings ⚠

Warnings were logged while processing this repo. Please check the Dependency Dashboard for more information.


Release Notes

aliyun/alibaba-cloud-sdk-go

v1.62.318

Compare Source

  • Generated 2017-08-01 for polardb.
  • Update some parameters.

v1.62.317

Compare Source

  • Generated 2015-01-09 for Alidns.
  • Supported sorting for DescribeDnsProduceInstances.

v1.62.316

Compare Source

  • Generated 2018-01-20 for Iot.
  • Pub Support MessageExpiryInterval and Retained.

v1.62.315

Compare Source

  • Generated 2018-01-20 for Linkvisual.
  • Support Live Streaming and VOD P2P.

v1.62.314

Compare Source

  • Generated 2020-06-29 for alinlp.
  • Supported more api for user.

v1.62.313

Compare Source

  • Generated 2020-06-29 for alinlp.
  • Supported more api for user.

v1.62.312

Compare Source

  • Generated 2022-01-01 for quickbi-public.
  • Add AllotDatasetAccelerationTask API.
  • Update error code description.

v1.62.311

Compare Source

  • Generated 2017-09-12 for Cbn.
  • Update API DescribeGrantRulesToCen support ChildInstanceOwnerId and ChildInstanceId.

v1.62.310

Compare Source

  • Generated 2020-02-17 for Dytnsapi.
  • Supported insufficient balance check.
  • Other improvements.

v1.62.309

Compare Source

  • Generated 2022-01-30 for avatar.
  • SendMessage add Feedback param

v1.62.308

Compare Source

  • Generated 2020-07-01 for CCC.
  • Supported GetVideo Api.

v1.62.307

Compare Source

  • Generated 2020-07-01 for CCC.
  • Supported GetVideo Api.

v1.62.306

Compare Source

  • Generated 2019-11-11 for nlp-automl.
  • Add The billingCount return value to the RunPreTrainService Api.

v1.62.305

Compare Source

  • Generated 2020-06-29 for alinlp.
  • Supported more api for user.

v1.62.304

Compare Source

  • Generated 2018-05-10 for Cdn.
  • Add SetCdnDomainSSLCertificate.

v1.62.303

Compare Source

  • Generated 2017-05-25 for Dyplsapi.
  • Add new API.

v1.62.302

Compare Source

  • Generated 2016-04-28 for Vpc.
  • Supported Zone for AllocateEipAddress.
  • Support HA-VPN.
  • CreateFullNatEntry, ModifyFullNatEntryAttribute, DeleteFullNatEntry support idempotent.
  • Support VBR allow prefixes.
  • Support adDetailLocation.
  • Fix ErrorCode.
prometheus/client_golang

v1.15.1

Compare Source

Changes

  • [BUGFIX] Fixed promhttp.Instrument* handlers wrongly trying to attach exemplar to unsupported metrics (e.g. summary),
    causing panics #​1253

Full Changelog: prometheus/client_golang@v1.15.0...v1.15.1

shirou/gopsutil

v3.23.4

Compare Source

What's Changed

cpu
process
Other Changes

New Contributors

Full Changelog: shirou/gopsutil@v3.23.3...v3.23.4

etcd-io/etcd

v3.5.9

Compare Source

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

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

##### 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
mv /tmp/etcd-${ETCD_VER}-darwin-amd64/* /tmp/etcd-download-test && rm -rf mv /tmp/etcd-${ETCD_VER}-darwin-amd64

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

etcd uses gcr.io/etcd-development/etcd as a primary container registry, and quay.io/coreos/etcd as secondary.

rm -rf /tmp/etcd-data.tmp && mkdir -p /tmp/etcd-data.tmp && \
  docker rmi gcr.io/etcd-development/etcd:v3.5.9 || true && \
  docker run \
  -p 2379:2379 \
  -p 2380:2380 \
  --mount type=bind,source=/tmp/etcd-data.tmp,destination=/etcd-data \
  --name etcd-gcr-v3.5.9 \
  gcr.io/etcd-development/etcd:v3.5.9 \
  /usr/local/bin/etcd \
  --name s1 \
  --data-dir /etcd-data \
  --listen-client-urls http://0.0.0.0:2379 \
  --advertise-client-urls http://0.0.0.0:2379 \
  --listen-peer-urls http://0.0.0.0:2380 \
  --initial-advertise-peer-urls http://0.0.0.0:2380 \
  --initial-cluster s1=http://0.0.0.0:2380 \
  --initial-cluster-token tkn \
  --initial-cluster-state new \
  --log-level info \
  --logger zap \
  --log-outputs stderr

docker exec etcd-gcr-v3.5.9 /usr/local/bin/etcd --version
docker exec etcd-gcr-v3.5.9 /usr/local/bin/etcdctl version
docker exec etcd-gcr-v3.5.9 /usr/local/bin/etcdutl version
docker exec etcd-gcr-v3.5.9 /usr/local/bin/etcdctl endpoint health
docker exec etcd-gcr-v3.5.9 /usr/local/bin/etcdctl put foo bar
docker exec etcd-gcr-v3.5.9 /usr/local/bin/etcdctl get foo

Configuration

📅 Schedule: Branch creation - "on friday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

Signed-off-by: renovate[bot] <bot@renovateapp.com>
@renovate renovate bot requested a review from a team as a code owner May 12, 2023 12:22
@renovate renovate bot requested a review from rolinh May 12, 2023 12:22
@renovate renovate bot added kind/enhancement This would improve or streamline existing functionality. release-note/misc This PR makes changes that have no direct user impact. labels May 12, 2023
@maintainer-s-little-helper maintainer-s-little-helper bot added dont-merge/needs-release-note-label The author needs to describe the release impact of these changes. and removed dont-merge/needs-release-note-label The author needs to describe the release impact of these changes. labels May 12, 2023
@github-actions github-actions bot added the kind/community-contribution This was a contribution made by a community member. label May 12, 2023
@aanm aanm added the renovate/stop-updating Tell Renovate to stop updating PR label May 12, 2023
@aanm
Copy link
Member

aanm commented May 12, 2023

/test

Job 'Cilium-PR-K8s-1.26-kernel-net-next' failed:

Click to show.

Test Name

K8sDatapathServicesTest Checks N/S loadbalancing With host policy Tests NodePort

Failure Output

FAIL: Request from k8s1 to service http://192.168.56.11:31662 failed

Jenkins URL: https://jenkins.cilium.io/job/Cilium-PR-K8s-1.26-kernel-net-next/2253/

If it is a flake and a GitHub issue doesn't already exist to track it, comment /mlh new-flake Cilium-PR-K8s-1.26-kernel-net-next so I can create one.

Then please upload the Jenkins artifacts to that issue.

@rolinh
Copy link
Member

rolinh commented May 15, 2023

Looks like CI hit #25411, marking as ready to merge.

@rolinh rolinh added the ready-to-merge This PR has passed all tests and received consensus from code owners to merge. label May 15, 2023
@aditighag aditighag merged commit 19c2c53 into main May 15, 2023
58 of 59 checks passed
@aditighag aditighag deleted the renovate/main-patch-all-go-deps-main branch May 15, 2023 22:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
kind/community-contribution This was a contribution made by a community member. kind/enhancement This would improve or streamline existing functionality. ready-to-merge This PR has passed all tests and received consensus from code owners to merge. release-note/misc This PR makes changes that have no direct user impact. renovate/stop-updating Tell Renovate to stop updating PR
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants