uber-go / cadence-client

Framework for authoring workflows and activities running on top of the Cadence orchestration engine.
https://cadenceworkflow.io
MIT License
339 stars 128 forks source link

The checksum for release version 1.2.9 has changed #1332

Open ltetreault-va opened 2 months ago

ltetreault-va commented 2 months ago

Describe the bug The checksum for release 1.2.9 has changed since it was initially released. We have a repository that was updated to 1.2.9 on April 2nd, 2024, but now running go mod vendor on that same repo spits out a checksum error as seen in the screenshots below.

Here is a diff between an instance of the package previously downloaded for v1.2.9 vs what is downloaded now for the same version

diff --color -r ./vendor/go.uber.org/cadence/CHANGELOG.md ../<new-go-project>/vendor/go.uber.org/cadence/CHANGELOG.md
8,14d7
< ## [v1.2.9] - 2024-03-01
< ### Added
< - retract directive for v1.2.8
< 
< ### Changed
< - Revert breaking changes from v1.2.8 (#1315)
< 
diff --color -r ./vendor/go.uber.org/cadence/internal/version.go ../<new-go-project>/vendor/go.uber.org/cadence/internal/version.go
46c46
< const LibraryVersion = "1.2.9"
---
> const LibraryVersion = "1.2.8"

Old Repo go.sum:

go.uber.org/cadence v1.2.9 h1:+jo3lVHy9XSGfmbOLVEh6mSmgHnALcBdoSvIQqSdnOc=
go.uber.org/cadence v1.2.9/go.mod h1:EL7wjwJZVbFvNWkp39NQh9jB1ZLWsu9Gy3Z7Jecx2Z8=

New Repo go.sum:

go.uber.org/cadence v1.2.9 h1:oGERGAnF8RwLMzW2POR2iKKbrcsntkkdNQ1Kuh7tD2w=
go.uber.org/cadence v1.2.9/go.mod h1:EL7wjwJZVbFvNWkp39NQh9jB1ZLWsu9Gy3Z7Jecx2Z8=

To Reproduce Is the issue reproducible?

Steps to reproduce the behavior:

Expected behavior The checksum should not have changed on a released version of the package

Screenshots

image

Additional context Go version: 1.22.2