Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ go 1.24

require (
github.com/aws/aws-lambda-go v1.46.0
github.com/go-chi/chi v1.5.5
github.com/go-chi/chi/v5 v5.2.2
github.com/google/uuid v1.6.0
github.com/jessevdk/go-flags v1.5.0
github.com/sirupsen/logrus v1.9.3
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ github.com/aws/aws-lambda-go v1.46.0/go.mod h1:dpMpZgvWx5vuQJfBt0zqBha60q7Dd7Rfg
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/go-chi/chi v1.5.5 h1:vOB/HbEMt9QqBqErz07QehcOKHaWFtuj87tTDVz2qXE=
github.com/go-chi/chi v1.5.5/go.mod h1:C9JqLr3tIYjDOZpzn+BCuxY8z8vmca43EeMgyZt7irw=
github.com/go-chi/chi/v5 v5.2.2 h1:CMwsvRVTbXVytCk1Wd72Zy1LAsAh9GxMmSNWLHCG618=
github.com/go-chi/chi/v5 v5.2.2/go.mod h1:L2yAIGWB3H+phAw1NxKwWM+7eUH/lU8pOMm5hHcoops=
github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
github.com/jessevdk/go-flags v1.5.0 h1:1jKYvbxEjfUl0fmqTCOfonvskHHXMjBySTLW4y9LFvc=
Expand Down
2 changes: 1 addition & 1 deletion lambda/core/directinvoke/directinvoke.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"strconv"
"strings"

"github.com/go-chi/chi"
"github.com/go-chi/chi/v5"
"go.amzn.com/lambda/core/bandwidthlimiter"
"go.amzn.com/lambda/fatalerror"
"go.amzn.com/lambda/interop"
Expand Down
2 changes: 1 addition & 1 deletion lambda/core/directinvoke/directinvoke_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
"testing"
"time"

"github.com/go-chi/chi"
"github.com/go-chi/chi/v5"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"go.amzn.com/lambda/fatalerror"
Expand Down
2 changes: 1 addition & 1 deletion lambda/rapi/handler/invocationerror.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
"go.amzn.com/lambda/core"
"go.amzn.com/lambda/rapi/rendering"

"github.com/go-chi/chi"
"github.com/go-chi/chi/v5"
log "github.com/sirupsen/logrus"
)

Expand Down
2 changes: 1 addition & 1 deletion lambda/rapi/handler/invocationerror_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
"go.amzn.com/lambda/rapi/model"
"go.amzn.com/lambda/testdata"

"github.com/go-chi/chi"
"github.com/go-chi/chi/v5"
"github.com/stretchr/testify/assert"
)

Expand Down
2 changes: 1 addition & 1 deletion lambda/rapi/handler/invocationresponse.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"go.amzn.com/lambda/interop"
"go.amzn.com/lambda/rapi/rendering"

"github.com/go-chi/chi"
"github.com/go-chi/chi/v5"
log "github.com/sirupsen/logrus"
)

Expand Down
2 changes: 1 addition & 1 deletion lambda/rapi/middleware/middleware.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"go.amzn.com/lambda/rapi/handler"
"go.amzn.com/lambda/rapi/rendering"

"github.com/go-chi/chi"
"github.com/go-chi/chi/v5"
"go.amzn.com/lambda/appctx"

log "github.com/sirupsen/logrus"
Expand Down
2 changes: 1 addition & 1 deletion lambda/rapi/middleware/middleware_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"net/http/httptest"
"testing"

"github.com/go-chi/chi"
"github.com/go-chi/chi/v5"
"github.com/google/uuid"
"github.com/stretchr/testify/assert"
"go.amzn.com/lambda/appctx"
Expand Down
2 changes: 1 addition & 1 deletion lambda/rapi/router.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"go.amzn.com/lambda/rapi/middleware"
"go.amzn.com/lambda/telemetry"

"github.com/go-chi/chi"
"github.com/go-chi/chi/v5"

"go.amzn.com/lambda/core"
"go.amzn.com/lambda/rapi/rendering"
Expand Down
2 changes: 1 addition & 1 deletion lambda/rapi/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"net"
"net/http"

"github.com/go-chi/chi"
"github.com/go-chi/chi/v5"
"go.amzn.com/lambda/appctx"

"go.amzn.com/lambda/core"
Expand Down
2 changes: 1 addition & 1 deletion lambda/rapidcore/standalone/middleware.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ package standalone
import (
"net/http"

"github.com/go-chi/chi/middleware"
"github.com/go-chi/chi/v5/middleware"
log "github.com/sirupsen/logrus"
)

Expand Down
2 changes: 1 addition & 1 deletion lambda/rapidcore/standalone/router.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"go.amzn.com/lambda/rapidcore"
"go.amzn.com/lambda/rapidcore/standalone/telemetry"

"github.com/go-chi/chi"
"github.com/go-chi/chi/v5"
)

type InteropServer interface {
Expand Down