Skip to content

Commit 172fc69

Browse files
authored
[1.17] bump to official version (#1599)
* bump to official version Signed-off-by: Cassandra Coyle <cassie@diagrid.io> * go mod tidy Signed-off-by: Cassandra Coyle <cassie@diagrid.io> --------- Signed-off-by: Cassandra Coyle <cassie@diagrid.io>
1 parent 2a0a69a commit 172fc69

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

.github/workflows/kind_e2e.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
name: E2E tests for K8s (KinD)
5151
runs-on: ubuntu-latest
5252
env:
53-
DAPR_RUNTIME_PINNED_VERSION: 1.17.0-rc.11
53+
DAPR_RUNTIME_PINNED_VERSION: 1.17.0
5454
DAPR_DASHBOARD_PINNED_VERSION: 0.15.0
5555
DAPR_RUNTIME_LATEST_STABLE_VERSION:
5656
DAPR_DASHBOARD_LATEST_STABLE_VERSION:

.github/workflows/self_hosted_e2e.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
GOARCH: ${{ matrix.target_arch }}
3939
GOPROXY: https://proxy.golang.org
4040
ARCHIVE_OUTDIR: dist/archives
41-
DAPR_RUNTIME_PINNED_VERSION: "1.17.0-rc.11"
41+
DAPR_RUNTIME_PINNED_VERSION: "1.17.0"
4242
DAPR_DASHBOARD_PINNED_VERSION: 0.15.0
4343
DAPR_RUNTIME_LATEST_STABLE_VERSION: ""
4444
DAPR_DASHBOARD_LATEST_STABLE_VERSION: ""

go.mod

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ require (
77
github.com/Masterminds/semver/v3 v3.3.0
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.17.0-rc.11
10+
github.com/dapr/dapr v1.17.0
1111
github.com/dapr/durabletask-go v0.11.0
12-
github.com/dapr/go-sdk v1.13.0
13-
github.com/dapr/kit v0.16.2-0.20251124175541-3ac186dff64d
12+
github.com/dapr/go-sdk v1.14.0
13+
github.com/dapr/kit v0.17.0
1414
github.com/diagridio/go-etcd-cron v0.12.4
1515
github.com/docker/docker v28.5.2+incompatible
1616
github.com/evanphx/json-patch/v5 v5.9.0
@@ -90,7 +90,7 @@ require (
9090
github.com/coreos/go-semver v0.3.1 // indirect
9191
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
9292
github.com/cyphar/filepath-securejoin v0.6.1 // indirect
93-
github.com/dapr/components-contrib v1.17.0-rc.1 // indirect
93+
github.com/dapr/components-contrib v1.17.0 // indirect
9494
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
9595
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 // indirect
9696
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect

go.sum

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -158,16 +158,16 @@ github.com/creack/pty v1.1.18 h1:n56/Zwd5o6whRC5PMGretI4IdRLlmBXYNjScPaBgsbY=
158158
github.com/creack/pty v1.1.18/go.mod h1:MOBLtS5ELjhRRrroQr9kyvTxUAFNvYEK993ew/Vr4O4=
159159
github.com/cyphar/filepath-securejoin v0.6.1 h1:5CeZ1jPXEiYt3+Z6zqprSAgSWiggmpVyciv8syjIpVE=
160160
github.com/cyphar/filepath-securejoin v0.6.1/go.mod h1:A8hd4EnAeyujCJRrICiOWqjS1AX0a9kM5XL+NwKoYSc=
161-
github.com/dapr/components-contrib v1.17.0-rc.1 h1:LubqOCnPDABw4JpWR7IrjEeS2TBmMIuZkqSLQCxIvQg=
162-
github.com/dapr/components-contrib v1.17.0-rc.1/go.mod h1:xA5qPPtn8FLMadoHsg9Ks32V4ScTGOBuMa/N6IK5fSc=
163-
github.com/dapr/dapr v1.17.0-rc.11 h1:LAsASNvMZk1F8JmwFjqNOnkSnPXXq1SsOOKA1s6GR2M=
164-
github.com/dapr/dapr v1.17.0-rc.11/go.mod h1:bMRpfFEhE9lVsnemVB/ETPBIlwwIjP1fiTs2ej/r9oA=
161+
github.com/dapr/components-contrib v1.17.0 h1:UIra39ivC0r6Rzt8+UEtiOmyu6hZGhIZfMPW+dtGOQ0=
162+
github.com/dapr/components-contrib v1.17.0/go.mod h1:xA5qPPtn8FLMadoHsg9Ks32V4ScTGOBuMa/N6IK5fSc=
163+
github.com/dapr/dapr v1.17.0 h1:GI9uU7yZVTBkzGRJl4cA/LJObEcV0+SJJJ46Dtueayo=
164+
github.com/dapr/dapr v1.17.0/go.mod h1:r9fVhTqfzsZfeUNZ3JHJ1x3oieOeGPkoypmFWBM+d78=
165165
github.com/dapr/durabletask-go v0.11.0 h1:e9Ns/3a2b6JDKGuvksvx6gCHn7rd+nwZZyAXbg5Ley4=
166166
github.com/dapr/durabletask-go v0.11.0/go.mod h1:0Ts4rXp74JyG19gDWPcwNo5V6NBZzhARzHF5XynmA7Q=
167-
github.com/dapr/go-sdk v1.13.0 h1:Qw2BmUonClQ9yK/rrEEaFL1PyDgq616RrvYj0CT67Lk=
168-
github.com/dapr/go-sdk v1.13.0/go.mod h1:RsffVNZitDApmQqoS68tNKGMXDZUjTviAbKZupJSzts=
169-
github.com/dapr/kit v0.16.2-0.20251124175541-3ac186dff64d h1:csljij9d1IO6u9nqbg+TuSRmTZ+OXT8G49yh6zie1yI=
170-
github.com/dapr/kit v0.16.2-0.20251124175541-3ac186dff64d/go.mod h1:40ZWs5P6xfYf7O59XgwqZkIyDldTIXlhTQhGop8QoSM=
167+
github.com/dapr/go-sdk v1.14.0 h1:OAGOobBsKXhcqfxUEMDOtpkwKollokfZDIwNPly9ANU=
168+
github.com/dapr/go-sdk v1.14.0/go.mod h1:knMKBC95OCI3WdtitIsEXWy7eTpbZOMBh1NG/2QoV5Y=
169+
github.com/dapr/kit v0.17.0 h1:WCltVyKRMwk+3pbBs/3Qe5on4BZUnhy6tKgLObB2nMs=
170+
github.com/dapr/kit v0.17.0/go.mod h1:40ZWs5P6xfYf7O59XgwqZkIyDldTIXlhTQhGop8QoSM=
171171
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
172172
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
173173
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM=

tests/e2e/upgrade/upgrade_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ type upgradePath struct {
3030
}
3131

3232
const (
33-
latestRuntimeVersion = "1.17.0-rc.11"
33+
latestRuntimeVersion = "1.17.0"
3434
latestRuntimeVersionMinusOne = "1.16.9"
3535
latestRuntimeVersionMinusTwo = "1.15.13"
3636
dashboardVersion = "0.15.0"

0 commit comments

Comments
 (0)