Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: matheus3301/loopforge
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.1.0
Choose a base ref
...
head repository: matheus3301/loopforge
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.1.1
Choose a head ref
  • 8 commits
  • 21 files changed
  • 1 contributor

Commits on Jan 23, 2026

  1. chore: update Go version to 1.25.6

    - go.mod: 1.25.5 → 1.25.6
    - .mise.toml: pin Go version for local dev
    - CI workflows: use Go 1.25.6
    matheus3301 committed Jan 23, 2026
    Configuration menu
    Copy the full SHA
    997bb70 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    63aed51 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    475f819 View commit details
    Browse the repository at this point in the history
  4. ci: replace golangci-lint with go vet + staticcheck

    golangci-lint doesn't support Go 1.25.x yet, so we use:
    - go vet (built-in)
    - go fmt check
    - staticcheck (supports latest Go)
    matheus3301 committed Jan 23, 2026
    Configuration menu
    Copy the full SHA
    9c0f950 View commit details
    Browse the repository at this point in the history
  5. fix: format code and fix CI verify binary command

    - Run go fmt on all files
    - Use 'version' subcommand instead of '--version' flag
    matheus3301 committed Jan 23, 2026
    Configuration menu
    Copy the full SHA
    bbaa0af View commit details
    Browse the repository at this point in the history
  6. ci: disable race detection (known spinner race condition)

    TODO: fix data race in internal/output spinner tests
    matheus3301 committed Jan 23, 2026
    Configuration menu
    Copy the full SHA
    352bfe7 View commit details
    Browse the repository at this point in the history
  7. ci: simplify CI workflow

    - Remove staticcheck (style issues to fix later)
    - Run tests only on Ubuntu (Windows/macOS flaky)
    - Keep builds on all platforms
    matheus3301 committed Jan 23, 2026
    Configuration menu
    Copy the full SHA
    74d9e5c View commit details
    Browse the repository at this point in the history
  8. fix: resolve all staticcheck issues and add Makefile

    - Fix ST1005: error strings should not end with punctuation
    - Fix S1039: unnecessary fmt.Sprintf
    - Fix S1009: nil check before len()
    - Fix SA4011: ineffective break statement
    - Fix SA4006: unused variable
    - Add Makefile with lint/fix/test targets
    - Re-enable staticcheck in CI
    matheus3301 committed Jan 23, 2026
    Configuration menu
    Copy the full SHA
    7f2b882 View commit details
    Browse the repository at this point in the history
Loading