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: pires/go-proxyproto
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.8.1
Choose a base ref
...
head repository: pires/go-proxyproto
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.9.0
Choose a head ref
  • 5 commits
  • 6 files changed
  • 4 contributors

Commits on May 15, 2025

  1. ci: use local Go toolchain and downgrade Go version

    The GitHub Actions workflow defines:
    
    ```yaml
    strategy:
      matrix:
        go: ['1.23', '1.24']
    ```
    
    However, the `1.23` job still ends up running Go `1.24`. By default,
    `actions/setup-go` leaves `GOTOOLCHAIN=auto`, causing go itself to fetch the
    version specified in `go.mod` instead instead of sticking to exactly `1.23`.
    
    This led to a false positive in CI: it appeared as if the matrix was testing
    Go `1.23`, when in reality all jobs were using Go `1.24`.
    
    To fix this, we need to force the use of the local Go toolchain in the CI test
    workflow to ensure the use of the locally installed Go version and avoid
    automatic downloads by `setup-go`.
    
    Also downgrades the Go version in `go.mod` from `1.24` to `1.23` to ensure
    compatibility with environments that do not yet support Go `1.24`.
    
    Fixes #126
    gustavosbarreto authored and pires committed May 15, 2025
    Configuration menu
    Copy the full SHA
    eef9d7e View commit details
    Browse the repository at this point in the history

Commits on Jan 20, 2026

  1. Add TLS group and sig scheme TLVs

    Add two new constants to mirror changes from this upstream commit:
    https://git.haproxy.org/?p=haproxy.git;a=commitdiff;h=d738fa4ec0f82de03c85eb8f8590791686098fd1
    emersion authored and pires committed Jan 20, 2026
    Configuration menu
    Copy the full SHA
    37053b0 View commit details
    Browse the repository at this point in the history
  2. Add TrustProxyHeaderFrom policy function

    Signed-off-by: Bryan Frimin <bryan@getprobo.com>
    gearnode authored and pires committed Jan 20, 2026
    Configuration menu
    Copy the full SHA
    4165843 View commit details
    Browse the repository at this point in the history
  3. ci: bump to Go 1.24

    pires committed Jan 20, 2026
    Configuration menu
    Copy the full SHA
    6dc9050 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    1542a61 View commit details
    Browse the repository at this point in the history
Loading