chore: update E2E tests to use Dapr runtime v1.18.0#1658
chore: update E2E tests to use Dapr runtime v1.18.0#1658nelson-parente wants to merge 3 commits into
Conversation
Signed-off-by: Nelson Parente <nelson_parente@live.com.pt>
| runs-on: ubuntu-latest | ||
| env: | ||
| DAPR_RUNTIME_PINNED_VERSION: 1.18.0-rc.4 | ||
| DAPR_RUNTIME_PINNED_VERSION: 1.18.0 |
There was a problem hiding this comment.
| DAPR_RUNTIME_PINNED_VERSION: 1.18.0 | |
| DAPR_RUNTIME_PINNED_VERSION: 1.18.1 |
There was a problem hiding this comment.
Done — applied in c1a9b08. Also bumped latestRuntimeVersion in tests/e2e/upgrade/upgrade_test.go to 1.18.1 to keep the upgrade test's latest version consistent with the pinned runtime.
| GOPROXY: https://proxy.golang.org | ||
| ARCHIVE_OUTDIR: dist/archives | ||
| DAPR_RUNTIME_PINNED_VERSION: "1.18.0-rc.4" | ||
| DAPR_RUNTIME_PINNED_VERSION: "1.18.0" |
There was a problem hiding this comment.
| DAPR_RUNTIME_PINNED_VERSION: "1.18.0" | |
| DAPR_RUNTIME_PINNED_VERSION: "1.18.1" |
There was a problem hiding this comment.
Done — applied in c1a9b08. Also bumped latestRuntimeVersion in tests/e2e/upgrade/upgrade_test.go to 1.18.1 to keep the upgrade test's latest version consistent with the pinned runtime.
Addresses review feedback: bump the pinned/latest Dapr runtime version used by the E2E and upgrade tests from 1.18.0 to 1.18.1 (latest 1.18 patch). The dapr/dapr Go module dependency stays at v1.18.0 (stable within the 1.18.x line). Signed-off-by: Nelson Parente <nelson_parente@live.com.pt>
|
This pull request has been automatically marked as stale because it has not had activity in the last 30 days. It will be closed in 7 days if no further activity occurs. Please feel free to give a status update now, ping for review, or re-open when it's ready. Thank you for your contributions! |
Description
Post-release update of
masterto the stable Dapr v1.18.0 release (released 2026-06-10).masterwas still on1.18.0-rc.4after the release was cut. Part of the 1.18 endgame post-release checklist (dapr/dapr#9856 → "Update E2E tests in CLI to latest runtime version").Changes:
go.mod/go.sum:github.com/dapr/daprv1.18.0-rc.4→v1.18.0,github.com/dapr/go-sdkv1.15.0-rc.1→v1.15.0,github.com/dapr/components-contribv1.18.0-rc.1→v1.18.0(+go mod tidy).github/workflows/kind_e2e.yaml&self_hosted_e2e.yaml:DAPR_RUNTIME_PINNED_VERSION1.18.0-rc.4→1.18.0tests/e2e/upgrade/upgrade_test.go:latestRuntimeVersion→1.18.0,latestRuntimeVersionMinusOne→1.17.9,latestRuntimeVersionMinusTwo→1.16.15tests/apps/scheduler&tests/apps/workflowmodules:dapr/dapr→v1.18.0,dapr/go-sdk→v1.15.0Verification
go build ./...andgo vetpass for the root module and both test-app modules;go vet -tags e2e ./tests/e2e/upgrade/passes.