From acc5416c198c8a4954f3605f45fa7ff8ca1f0d0b Mon Sep 17 00:00:00 2001 From: Pravin Pushkar Date: Wed, 6 Apr 2022 12:44:09 +0530 Subject: [PATCH] Updating dapr to v1.7.0-rc.3 (#951) * Updating dapr to v1.7.0-rc.3 Signed-off-by: Pravin Pushkar * Updating dapr v.1.7.0-rc.3 refs in test and workflows Signed-off-by: Pravin Pushkar --- .github/workflows/kind_e2e.yaml | 4 ++-- .github/workflows/self_hosted_e2e.yaml | 4 ++-- go.mod | 2 +- go.sum | 4 ++-- tests/e2e/upgrade/upgrade_test.go | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/kind_e2e.yaml b/.github/workflows/kind_e2e.yaml index 647a61508..c616b7399 100644 --- a/.github/workflows/kind_e2e.yaml +++ b/.github/workflows/kind_e2e.yaml @@ -46,9 +46,9 @@ jobs: runs-on: ubuntu-latest env: GOVER: 1.17 - DAPR_RUNTIME_VERSION: 1.7.0-rc.2 + DAPR_RUNTIME_VERSION: 1.7.0-rc.3 DAPR_DASHBOARD_VERSION: 0.10.0-rc.1 - DAPR_TGZ: dapr-1.7.0-rc.2.tgz + DAPR_TGZ: dapr-1.7.0-rc.3.tgz strategy: fail-fast: false # Keep running if one leg fails. matrix: diff --git a/.github/workflows/self_hosted_e2e.yaml b/.github/workflows/self_hosted_e2e.yaml index b67f0dd78..55c8cf4be 100644 --- a/.github/workflows/self_hosted_e2e.yaml +++ b/.github/workflows/self_hosted_e2e.yaml @@ -36,9 +36,9 @@ jobs: GOARCH: ${{ matrix.target_arch }} GOPROXY: https://proxy.golang.org ARCHIVE_OUTDIR: dist/archives - DAPR_RUNTIME_VERSION: "1.7.0-rc.2" + DAPR_RUNTIME_VERSION: "1.7.0-rc.3" DAPR_DASHBOARD_VERSION: 0.10.0-rc.1 - DAPR_TGZ: dapr-1.7.0-rc.2.tgz + DAPR_TGZ: dapr-1.7.0-rc.3.tgz strategy: matrix: os: [ubuntu-latest, macos-latest] diff --git a/go.mod b/go.mod index 44b2ee160..5fa61639e 100644 --- a/go.mod +++ b/go.mod @@ -5,7 +5,7 @@ go 1.17 require ( github.com/Pallinder/sillyname-go v0.0.0-20130730142914-97aeae9e6ba1 github.com/briandowns/spinner v1.6.1 - github.com/dapr/dapr v1.7.0-rc.1 + github.com/dapr/dapr v1.7.0-rc.3 github.com/dapr/go-sdk v1.0.0 github.com/docker/docker v20.10.12+incompatible github.com/fatih/color v1.13.0 diff --git a/go.sum b/go.sum index 0b294c352..883daf09f 100644 --- a/go.sum +++ b/go.sum @@ -345,8 +345,8 @@ github.com/d2g/dhcp4client v1.0.0/go.mod h1:j0hNfjhrt2SxUOw55nL0ATM/z4Yt3t2Kd1mW github.com/d2g/dhcp4server v0.0.0-20181031114812-7d4a0a7f59a5/go.mod h1:Eo87+Kg/IX2hfWJfwxMzLyuSZyxSoAug2nGa1G2QAi8= github.com/d2g/hardwareaddr v0.0.0-20190221164911-e7d9fbe030e4/go.mod h1:bMl4RjIciD2oAxI7DmWRx6gbeqrkoLqv3MV0vzNad+I= github.com/danieljoos/wincred v1.1.0/go.mod h1:XYlo+eRTsVA9aHGp7NGjFkPla4m+DCL7hqDjlFjiygg= -github.com/dapr/dapr v1.7.0-rc.1 h1:NEXZXuMHQZsd0I3Pi5bTJQdK1anDt0TRHLA1JzQnR78= -github.com/dapr/dapr v1.7.0-rc.1/go.mod h1:YbacMSteh7nGRP777IJDuCn5sgJxL9cRVdiWEirBXbM= +github.com/dapr/dapr v1.7.0-rc.3 h1:Qc1ezpsW5g2+AAi/X3zqJNxdMyifIqh8wpXRGbKaBPs= +github.com/dapr/dapr v1.7.0-rc.3/go.mod h1:MIXtm4c4Vv1Z7GScHOgctDcjZ28W2jGYxXvr28+LGpM= github.com/dapr/go-sdk v1.0.0 h1:3nOmFzsPaHzzgINQQD9AFofVX6LV8QYJtpogaBfwkUg= github.com/dapr/go-sdk v1.0.0/go.mod h1:zyhsocIKv4pqQ2VtvWvf2CK1UhP7Z2OAOXgEpVxMgIs= github.com/dapr/kit v0.0.2-0.20210614175626-b9074b64d233 h1:M0dWIG8kUxEFU57IqTWeqptNqlBsfosFgsA5Ov7rJ8g= diff --git a/tests/e2e/upgrade/upgrade_test.go b/tests/e2e/upgrade/upgrade_test.go index c679ae613..1b495a90a 100644 --- a/tests/e2e/upgrade/upgrade_test.go +++ b/tests/e2e/upgrade/upgrade_test.go @@ -70,7 +70,7 @@ var supportedUpgradePaths = []upgradePath{ CustomResourceDefs: []string{"components.dapr.io", "configurations.dapr.io", "subscriptions.dapr.io"}, }, next: common.VersionDetails{ - RuntimeVersion: "1.7.0-rc.1", + RuntimeVersion: "1.7.0-rc.3", DashboardVersion: "0.10.0-rc.1", ClusterRoles: []string{"dapr-operator-admin", "dashboard-reader"}, ClusterRoleBindings: []string{"dapr-operator", "dapr-role-tokenreview-binding", "dashboard-reader-global"},