Skip to content

Commit 85e5302

Browse files
authored
chore(deps): Update go-chi to v5.2.2 (#149)
* chore(deps): Update go-chi to v5.2.2
1 parent 3a0772e commit 85e5302

File tree

13 files changed

+14
-14
lines changed

13 files changed

+14
-14
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.24
44

55
require (
66
github.com/aws/aws-lambda-go v1.46.0
7-
github.com/go-chi/chi v1.5.5
7+
github.com/go-chi/chi/v5 v5.2.2
88
github.com/google/uuid v1.6.0
99
github.com/jessevdk/go-flags v1.5.0
1010
github.com/sirupsen/logrus v1.9.3

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ github.com/aws/aws-lambda-go v1.46.0/go.mod h1:dpMpZgvWx5vuQJfBt0zqBha60q7Dd7Rfg
33
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
44
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
55
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
6-
github.com/go-chi/chi v1.5.5 h1:vOB/HbEMt9QqBqErz07QehcOKHaWFtuj87tTDVz2qXE=
7-
github.com/go-chi/chi v1.5.5/go.mod h1:C9JqLr3tIYjDOZpzn+BCuxY8z8vmca43EeMgyZt7irw=
6+
github.com/go-chi/chi/v5 v5.2.2 h1:CMwsvRVTbXVytCk1Wd72Zy1LAsAh9GxMmSNWLHCG618=
7+
github.com/go-chi/chi/v5 v5.2.2/go.mod h1:L2yAIGWB3H+phAw1NxKwWM+7eUH/lU8pOMm5hHcoops=
88
github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
99
github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
1010
github.com/jessevdk/go-flags v1.5.0 h1:1jKYvbxEjfUl0fmqTCOfonvskHHXMjBySTLW4y9LFvc=

lambda/core/directinvoke/directinvoke.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"strconv"
1212
"strings"
1313

14-
"github.com/go-chi/chi"
14+
"github.com/go-chi/chi/v5"
1515
"go.amzn.com/lambda/core/bandwidthlimiter"
1616
"go.amzn.com/lambda/fatalerror"
1717
"go.amzn.com/lambda/interop"

lambda/core/directinvoke/directinvoke_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717
"testing"
1818
"time"
1919

20-
"github.com/go-chi/chi"
20+
"github.com/go-chi/chi/v5"
2121
"github.com/stretchr/testify/assert"
2222
"github.com/stretchr/testify/require"
2323
"go.amzn.com/lambda/fatalerror"

lambda/rapi/handler/invocationerror.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
"go.amzn.com/lambda/core"
1919
"go.amzn.com/lambda/rapi/rendering"
2020

21-
"github.com/go-chi/chi"
21+
"github.com/go-chi/chi/v5"
2222
log "github.com/sirupsen/logrus"
2323
)
2424

lambda/rapi/handler/invocationerror_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import (
1919
"go.amzn.com/lambda/rapi/model"
2020
"go.amzn.com/lambda/testdata"
2121

22-
"github.com/go-chi/chi"
22+
"github.com/go-chi/chi/v5"
2323
"github.com/stretchr/testify/assert"
2424
)
2525

lambda/rapi/handler/invocationresponse.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"go.amzn.com/lambda/interop"
1313
"go.amzn.com/lambda/rapi/rendering"
1414

15-
"github.com/go-chi/chi"
15+
"github.com/go-chi/chi/v5"
1616
log "github.com/sirupsen/logrus"
1717
)
1818

lambda/rapi/middleware/middleware.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"go.amzn.com/lambda/rapi/handler"
1313
"go.amzn.com/lambda/rapi/rendering"
1414

15-
"github.com/go-chi/chi"
15+
"github.com/go-chi/chi/v5"
1616
"go.amzn.com/lambda/appctx"
1717

1818
log "github.com/sirupsen/logrus"

lambda/rapi/middleware/middleware_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"net/http/httptest"
1313
"testing"
1414

15-
"github.com/go-chi/chi"
15+
"github.com/go-chi/chi/v5"
1616
"github.com/google/uuid"
1717
"github.com/stretchr/testify/assert"
1818
"go.amzn.com/lambda/appctx"

lambda/rapi/router.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"go.amzn.com/lambda/rapi/middleware"
1212
"go.amzn.com/lambda/telemetry"
1313

14-
"github.com/go-chi/chi"
14+
"github.com/go-chi/chi/v5"
1515

1616
"go.amzn.com/lambda/core"
1717
"go.amzn.com/lambda/rapi/rendering"

0 commit comments

Comments
 (0)