Skip to content

Commit de997a9

Browse files
Merge pull request dapr#1234 from pravinpushkar/merge_to_master
Merge to master from release 1.10 branch
2 parents 25cc689 + 8884bb9 commit de997a9

File tree

6 files changed

+16
-18
lines changed

6 files changed

+16
-18
lines changed

.github/workflows/dapr_cli.yaml

+1-3
Original file line numberDiff line numberDiff line change
@@ -163,8 +163,6 @@ jobs:
163163
name: Publish to winget-pkgs
164164
needs: publish
165165
if: startswith(github.ref, 'refs/tags/v')
166-
env:
167-
WINGETCREATE_VERSION: 1.1.2.0
168166
runs-on: windows-latest
169167
steps:
170168
- name: Check out code
@@ -175,7 +173,7 @@ jobs:
175173
shell: pwsh
176174
run: |
177175
$url = "https://github.com/dapr/cli/releases/download/v${{ env.REL_VERSION }}/dapr.msi"
178-
iwr https://github.com/microsoft/winget-create/releases/download/v${{ env.WINGETCREATE_VERSION }}/wingetcreate.exe -OutFile wingetcreate.exe
176+
iwr https://aka.ms/wingetcreate/latest -OutFile wingetcreate.exe
179177
if("${{ env.REL_VERSION }}".Contains("-rc.")){
180178
$PackageIdentifier="Dapr.CLI.Preview"
181179
} else{

.github/workflows/kind_e2e.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@ jobs:
5151
runs-on: ubuntu-latest
5252
env:
5353
GOVER: 1.19.3
54-
DAPR_RUNTIME_PINNED_VERSION: 1.10.0-rc.4
55-
DAPR_DASHBOARD_PINNED_VERSION: 0.11.0
54+
DAPR_RUNTIME_PINNED_VERSION: 1.10.0
55+
DAPR_DASHBOARD_PINNED_VERSION: 0.12.0
5656
DAPR_RUNTIME_LATEST_STABLE_VERSION:
5757
DAPR_DASHBOARD_LATEST_STABLE_VERSION:
58-
DAPR_TGZ: dapr-1.10.0-rc.4.tgz
58+
DAPR_TGZ: dapr-1.10.0.tgz
5959
strategy:
6060
fail-fast: false # Keep running if one leg fails.
6161
matrix:

.github/workflows/self_hosted_e2e.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ jobs:
4040
GOARCH: ${{ matrix.target_arch }}
4141
GOPROXY: https://proxy.golang.org
4242
ARCHIVE_OUTDIR: dist/archives
43-
DAPR_RUNTIME_PINNED_VERSION: "1.10.0-rc.4"
44-
DAPR_DASHBOARD_PINNED_VERSION: 0.11.0
43+
DAPR_RUNTIME_PINNED_VERSION: "1.10.0"
44+
DAPR_DASHBOARD_PINNED_VERSION: 0.12.0
4545
DAPR_RUNTIME_LATEST_STABLE_VERSION:
4646
DAPR_DASHBOARD_LATEST_STABLE_VERSION:
4747
strategy:

go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ require (
77
github.com/Azure/go-autorest/autorest/adal v0.9.22 // indirect
88
github.com/Pallinder/sillyname-go v0.0.0-20130730142914-97aeae9e6ba1
99
github.com/briandowns/spinner v1.19.0
10-
github.com/dapr/dapr v1.10.0-rc.4
10+
github.com/dapr/dapr v1.10.0
1111
github.com/dapr/go-sdk v1.6.0
1212
github.com/docker/docker v20.10.21+incompatible
1313
github.com/fatih/color v1.13.0
@@ -67,7 +67,7 @@ require (
6767
github.com/containerd/containerd v1.6.15 // indirect
6868
github.com/containerd/continuity v0.3.0 // indirect
6969
github.com/cyphar/filepath-securejoin v0.2.3 // indirect
70-
github.com/dapr/components-contrib v1.10.0-rc.4 // indirect
70+
github.com/dapr/components-contrib v1.10.0-rc.9 // indirect
7171
github.com/dapr/kit v0.0.4 // indirect
7272
github.com/davecgh/go-spew v1.1.1 // indirect
7373
github.com/docker/cli v20.10.21+incompatible // indirect

go.sum

+4-4
Original file line numberDiff line numberDiff line change
@@ -327,10 +327,10 @@ github.com/d2g/dhcp4 v0.0.0-20170904100407-a1d1b6c41b1c/go.mod h1:Ct2BUK8SB0YC1S
327327
github.com/d2g/dhcp4client v1.0.0/go.mod h1:j0hNfjhrt2SxUOw55nL0ATM/z4Yt3t2Kd1mW34z5W5s=
328328
github.com/d2g/dhcp4server v0.0.0-20181031114812-7d4a0a7f59a5/go.mod h1:Eo87+Kg/IX2hfWJfwxMzLyuSZyxSoAug2nGa1G2QAi8=
329329
github.com/d2g/hardwareaddr v0.0.0-20190221164911-e7d9fbe030e4/go.mod h1:bMl4RjIciD2oAxI7DmWRx6gbeqrkoLqv3MV0vzNad+I=
330-
github.com/dapr/components-contrib v1.10.0-rc.4 h1:qpA9l8e7X7ZLHnhtnqRB6iwcSAn1KiViyg6fLx41R4I=
331-
github.com/dapr/components-contrib v1.10.0-rc.4/go.mod h1:8OvVS4m3kK/ocDqhVYKdu4j7OS4gPlbXMi+eRjlPAwc=
332-
github.com/dapr/dapr v1.10.0-rc.4 h1:FH3CNjhglEp3kMls5ykwtQnx+JYm2pRFsGft8XuGjWU=
333-
github.com/dapr/dapr v1.10.0-rc.4/go.mod h1:hHGc3P6ZXrWMlIKmXOMgZc70xCdIDUVSuJgfzOPeycs=
330+
github.com/dapr/components-contrib v1.10.0-rc.9 h1:iHVmtJ1Tc4Y1XaxA+LMLpKEfAanwSudXRAD+/+kgG8Q=
331+
github.com/dapr/components-contrib v1.10.0-rc.9/go.mod h1:JM3xDSSDVb+ot246VZndZZK1K8Ft/6Ch2FtXW1Jbbhk=
332+
github.com/dapr/dapr v1.10.0 h1:oQhHaQ0ryJIwcjPnlIzIGzDpbnQsbaw+7mKBGVUoS4Q=
333+
github.com/dapr/dapr v1.10.0/go.mod h1:FoDlQyiJm0BSgPGwxGsTvQZ5zVeE0SWNzq8PAs5c6gc=
334334
github.com/dapr/go-sdk v1.6.0 h1:jg5A2khSCHF8bGZsig5RWN/gD0jjitszc2V6Uq2pPdY=
335335
github.com/dapr/go-sdk v1.6.0/go.mod h1:KLQBltoD9K0w5hKTihdcyg9Epob9gypwL5dYcQzPro4=
336336
github.com/dapr/kit v0.0.4 h1:i+7TIN4crC1Mo0JFyWpIkwAE8orlliA0O6/ibvs2AaE=

tests/e2e/upgrade/upgrade_test.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ var supportedUpgradePaths = []upgradePath{
7070
CustomResourceDefs: []string{"components.dapr.io", "configurations.dapr.io", "subscriptions.dapr.io", "resiliencies.dapr.io"},
7171
},
7272
next: common.VersionDetails{
73-
RuntimeVersion: "1.10.0-rc.4",
74-
DashboardVersion: "0.11.0",
73+
RuntimeVersion: "1.10.0",
74+
DashboardVersion: "0.12.0",
7575
ClusterRoles: []string{"dapr-dashboard", "dapr-injector", "dapr-operator-admin", "dapr-placement", "dapr-sentry"},
7676
ClusterRoleBindings: []string{"dapr-operator-admin", "dapr-dashboard", "dapr-injector", "dapr-placement", "dapr-sentry"},
7777
CustomResourceDefs: []string{"components.dapr.io", "configurations.dapr.io", "subscriptions.dapr.io", "resiliencies.dapr.io"},
@@ -80,8 +80,8 @@ var supportedUpgradePaths = []upgradePath{
8080
// test downgrade.
8181
{
8282
previous: common.VersionDetails{
83-
RuntimeVersion: "1.10.0-rc.4",
84-
DashboardVersion: "0.11.0",
83+
RuntimeVersion: "1.10.0",
84+
DashboardVersion: "0.12.0",
8585
ClusterRoles: []string{"dapr-dashboard", "dapr-injector", "dapr-operator-admin", "dapr-placement", "dapr-sentry"},
8686
ClusterRoleBindings: []string{"dapr-operator-admin", "dapr-dashboard", "dapr-injector", "dapr-placement", "dapr-sentry"},
8787
CustomResourceDefs: []string{"components.dapr.io", "configurations.dapr.io", "subscriptions.dapr.io", "resiliencies.dapr.io"},

0 commit comments

Comments
 (0)