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) #29593

Merged
merged 1 commit into from
Dec 12, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 4, 2023

Mend Renovate

This PR contains the following updates:

Package Type Update Change
github.com/aliyun/alibaba-cloud-sdk-go require patch v1.62.619 -> v1.62.631
github.com/go-openapi/runtime require patch v0.26.0 -> v0.26.2
github.com/go-openapi/strfmt require patch v0.21.8 -> v0.21.9
go.etcd.io/etcd/api/v3 require patch v3.5.10 -> v3.5.11
go.etcd.io/etcd/client/pkg/v3 require patch v3.5.10 -> v3.5.11
go.etcd.io/etcd/client/v3 require patch v3.5.10 -> v3.5.11

Release Notes

aliyun/alibaba-cloud-sdk-go (github.com/aliyun/alibaba-cloud-sdk-go)

v1.62.631

Compare Source

  • Generated 2023-07-01 for DdosDiversion.
    -sdk release.

v1.62.630

Compare Source

  • Generated 2020-06-15 for hitsdb.
  • CreateLindormInstance api support auto renew

v1.62.629

Compare Source

  • Generated 2020-05-18 for dataworks-public.

v1.62.628

Compare Source

  • Generated 2023-07-01 for DdosDiversion.
    -sdk release.

v1.62.627

Compare Source

  • Generated 2023-07-01 for DdosDiversion.
  • Sdk version release.

v1.62.626

Compare Source

  • Generated 2014-05-26 for Ecs.
  • ECS SDK publish full package.

v1.62.625

Compare Source

  • Generated 2018-11-01 for dms-enterprise.
  • Support CreateProcCorrectOrder request param of ExecMode.

v1.62.624

Compare Source

  • Generated 2014-08-28 for Ess.
  • ScaleWithAdjustment supports ECI overrides.

v1.62.623

Compare Source

  • Generated 2019-12-30 for imageseg.
  • Update SegmentCloth.

v1.62.622

Compare Source

  • Generated 2019-12-30 for ocr.
  • Update RecognizeIdentityCard.
  • Update RecognizeDriverLicense.
  • Update RecognizeDrivingLicense.

v1.62.621

Compare Source

  • Generated 2016-06-15 for Oms.
  • Add DeleteMeasureData

v1.62.620

Compare Source

  • Generated 2014-08-28 for Ess.
  • ScalingConfiguration support StorageSet.
go-openapi/runtime (github.com/go-openapi/runtime)

v0.26.2

Compare Source

go-openapi/strfmt (github.com/go-openapi/strfmt)

v0.21.9

Compare Source

etcd-io/etcd (go.etcd.io/etcd/api/v3)

v3.5.11

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

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

### 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.11 || 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.11 \
  gcr.io/etcd-development/etcd:v3.5.11 \
  /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.11 /usr/local/bin/etcd --version
docker exec etcd-gcr-v3.5.11 /usr/local/bin/etcdctl version
docker exec etcd-gcr-v3.5.11 /usr/local/bin/etcdutl version
docker exec etcd-gcr-v3.5.11 /usr/local/bin/etcdctl endpoint health
docker exec etcd-gcr-v3.5.11 /usr/local/bin/etcdctl put foo bar
docker exec etcd-gcr-v3.5.11 /usr/local/bin/etcdctl get foo

Configuration

πŸ“… Schedule: Branch creation - "on monday" (UTC), Automerge - At any time (no schedule defined).

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

β™» Rebasing: Never, 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.

@renovate renovate bot requested a review from a team as a code owner December 4, 2023 11:25
@renovate renovate bot requested a review from rolinh December 4, 2023 11:25
@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. renovate/stop-updating Tell Renovate to stop updating PR labels Dec 4, 2023
@github-actions github-actions bot added the kind/community-contribution This was a contribution made by a community member. label Dec 4, 2023
@aanm aanm enabled auto-merge December 4, 2023 11:43
@aanm
Copy link
Member

aanm commented Dec 8, 2023

/test

Signed-off-by: renovate[bot] <bot@renovateapp.com>
@renovate renovate bot force-pushed the renovate/main-patch-all-go-deps-main branch from 7b03c5d to 8e593f3 Compare December 12, 2023 16:42
@renovate renovate bot changed the title fix(deps): update module github.com/aliyun/alibaba-cloud-sdk-go to v1.62.620 (main) fix(deps): update all go dependencies main (main) (patch) Dec 12, 2023
@ldelossa
Copy link
Contributor

/test

@aanm aanm added this pull request to the merge queue Dec 12, 2023
Merged via the queue into main with commit deaff32 Dec 12, 2023
215 checks passed
@aanm aanm deleted the renovate/main-patch-all-go-deps-main branch December 12, 2023 19:31
@maintainer-s-little-helper maintainer-s-little-helper bot added the ready-to-merge This PR has passed all tests and received consensus from code owners to merge. label Dec 12, 2023
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