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: go-chi/chi
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v5.2.1
Choose a base ref
...
head repository: go-chi/chi
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 8 commits
  • 16 files changed
  • 8 contributors

Commits on Feb 4, 2025

  1. Use strings.Cut in a few places (#971)

    Now that we're 1.20+ instead of 1.14+ we can use 1.18's strings.Cut in a
    few places to simplify code.
    JRaspass authored Feb 4, 2025
    Configuration menu
    Copy the full SHA
    877e876 View commit details
    Browse the repository at this point in the history

Commits on Feb 5, 2025

  1. Fix non-constant format strings in t.Fatalf (#972)

    This is a new go vet analysis pass that fires under go 1.24:
    
      $ go1.24rc2 vet ./...
      # github.com/go-chi/chi/v5
      # [github.com/go-chi/chi/v5]
      ./mux_test.go:236:12: non-constant format string in call to (*testing.common).Fatalf
      ...
    
    The strings would be parsed as format strings which is not intended.
    See golang/go#60529 for details.
    JRaspass authored Feb 5, 2025
    Configuration menu
    Copy the full SHA
    72fbe46 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e846b83 View commit details
    Browse the repository at this point in the history

Commits on Feb 11, 2025

  1. go 1.24 (#977)

    pkieltyka authored Feb 11, 2025
    Configuration menu
    Copy the full SHA
    c6225e3 View commit details
    Browse the repository at this point in the history

Commits on Feb 12, 2025

  1. chore: delint ioutil usage (#962)

    This also bumps the minimum supported version of Go to 1.16 (which itself has beel EOL for almost 3 years now)
    
    Co-authored-by: Vojtech Vitek (golang.cz) <vojtech.vitek@golang.cz>
    costela and VojtechVitek authored Feb 12, 2025
    Configuration menu
    Copy the full SHA
    1aae5b2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fe2c065 View commit details
    Browse the repository at this point in the history

Commits on Feb 18, 2025

  1. support tinygo (#978)

    efraimbart authored Feb 18, 2025
    Configuration menu
    Copy the full SHA
    d047034 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d7034fd View commit details
    Browse the repository at this point in the history
Loading