From 69bf953e64570b35911f92d41477c398af087ae9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 16 Jun 2026 19:34:21 +0000 Subject: [PATCH 1/2] Bump goreleaser/goreleaser-action from 6.4.0 to 7.2.2 Bumps [goreleaser/goreleaser-action](https://github.com/goreleaser/goreleaser-action) from 6.4.0 to 7.2.2. - [Release notes](https://github.com/goreleaser/goreleaser-action/releases) - [Commits](https://github.com/goreleaser/goreleaser-action/compare/e435ccd777264be153ace6237001ef4d979d3a7a...5daf1e915a5f0af01ddbcd89a43b8061ff4f1a89) --- updated-dependencies: - dependency-name: goreleaser/goreleaser-action dependency-version: 7.2.2 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 95563991..13067b0a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,7 +29,7 @@ jobs: with: go-version: ${{ env.GO_VERSION }} cache: true - - uses: goreleaser/goreleaser-action@e435ccd777264be153ace6237001ef4d979d3a7a # v6 + - uses: goreleaser/goreleaser-action@5daf1e915a5f0af01ddbcd89a43b8061ff4f1a89 # v7.2.2 with: version: '~> v2' args: release --clean From 65ec8583c7ea7afb5a3c95dbdc1e4af5a4a293b7 Mon Sep 17 00:00:00 2001 From: KristjanPikhof Date: Sun, 21 Jun 2026 03:09:20 +0300 Subject: [PATCH 2/2] Stabilize same-SHA rewind test - Drive the regression with explicit wakes instead of idle ticks - Prevent slow CI runners from consuming synthetic branch-head state - Keep the assertion focused on cross-tick rewind detection --- internal/daemon/daemon_test.go | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/internal/daemon/daemon_test.go b/internal/daemon/daemon_test.go index dfd1c779..1bf9b91d 100644 --- a/internal/daemon/daemon_test.go +++ b/internal/daemon/daemon_test.go @@ -2933,6 +2933,11 @@ func TestRun_SameSHARewindAcrossTicksTriggersGrace(t *testing.T) { wakeCh := make(chan struct{}, 4) shutdownCh := make(chan struct{}, 1) + manual := Scheduler{ + Base: 1 * time.Hour, + IdleCeiling: 1 * time.Hour, + ErrorCeiling: 1 * time.Hour, + } runCtx, cancel := context.WithCancel(ctx) defer cancel() @@ -2944,7 +2949,7 @@ func TestRun_SameSHARewindAcrossTicksTriggersGrace(t *testing.T) { RepoPath: f.dir, GitDir: f.gitDir, DB: f.db, - Scheduler: fastScheduler(), + Scheduler: manual, BootGrace: 30 * time.Second, WakeCh: wakeCh, ShutdownCh: shutdownCh,