Skip to content

Commit 41da780

Browse files
mbfredergregfurman
authored andcommitted
chore(deps): Update go-chi to v5.2.2 (aws#149)
* chore(deps): Update go-chi to v5.2.2
1 parent fcbb59f commit 41da780

File tree

13 files changed

+14
-11
lines changed

13 files changed

+14
-11
lines changed

go.mod

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ require (
99
github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575
1010
github.com/fsnotify/fsnotify v1.6.0
1111
github.com/go-chi/chi v1.5.5
12+
github.com/go-chi/chi/v5 v5.2.3
1213
github.com/google/uuid v1.6.0
1314
github.com/jessevdk/go-flags v1.5.0
1415
github.com/shirou/gopsutil v2.19.10+incompatible

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ github.com/fsnotify/fsnotify v1.6.0 h1:n+5WquG0fcWoWp6xPWfHdbskMCQaFnG6PfBrh1Ky4
1515
github.com/fsnotify/fsnotify v1.6.0/go.mod h1:sl3t1tCWJFWoRz9R8WJCbQihKKwmorjAbSClcnxKAGw=
1616
github.com/go-chi/chi v1.5.5 h1:vOB/HbEMt9QqBqErz07QehcOKHaWFtuj87tTDVz2qXE=
1717
github.com/go-chi/chi v1.5.5/go.mod h1:C9JqLr3tIYjDOZpzn+BCuxY8z8vmca43EeMgyZt7irw=
18+
github.com/go-chi/chi/v5 v5.2.3 h1:WQIt9uxdsAbgIYgid+BpYc+liqQZGMHRaUwp0JUcvdE=
19+
github.com/go-chi/chi/v5 v5.2.3/go.mod h1:L2yAIGWB3H+phAw1NxKwWM+7eUH/lU8pOMm5hHcoops=
1820
github.com/go-ole/go-ole v1.2.4 h1:nNBDSCOigTSiarFpYE9J/KtEA1IOW4CNeqT9TQDqCxI=
1921
github.com/go-ole/go-ole v1.2.4/go.mod h1:XCwSNxSkXRo4vlyPy93sltvi/qJq0jqQhjqQNIwKuxM=
2022
github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=

lambda/core/directinvoke/directinvoke.go

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

15-
"github.com/go-chi/chi"
15+
"github.com/go-chi/chi/v5"
1616
"go.amzn.com/lambda/core/bandwidthlimiter"
1717
"go.amzn.com/lambda/fatalerror"
1818
"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)