Skip to content

Conversation

@loft-bot
Copy link
Contributor

@loft-bot loft-bot commented Nov 14, 2025

Bumps MinimumVersionTag to the new Platform release v4.5.1.


Note

Update platform minimum compatible version from v4.5.0 to v4.5.1.

Written by Cursor Bugbot for commit 2009ec4. This will update automatically on new commits. Configure here.

var (
MinimumVersionTag = "v4.5.0"
MinimumVersionTag = "v4.5.1"
MinimumVersion = semver.MustParse(strings.TrimPrefix(MinimumVersionTag, "v"))

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Optional enhancement: Consider adding a compile-time validation test to ensure MinimumVersionTag is always a valid semver string. This would catch any future manual edits that might introduce invalid versions.

Example test:

func TestMinimumVersionTagIsValid(t *testing.T) {
    _, err := semver.Parse(strings.TrimPrefix(MinimumVersionTag, "v"))
    if err != nil {
        t.Fatalf("MinimumVersionTag %q is not a valid semver: %v", MinimumVersionTag, err)
    }
}

This is not blocking for this PR, just a suggestion for future robustness.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants