Skip to content

Commit d6b1281

Browse files
committed
update old dependencies
1 parent 686c88b commit d6b1281

File tree

5 files changed

+157
-159
lines changed

5 files changed

+157
-159
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
*.out
1313

1414
.vscode
15+
.idea
1516
vendor/*/
1617
gin/aws-lambda-go-api-proxy-gin
1718
core/aws-lambda-go-api-proxy-core

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,7 @@ test:
1818
$(GOTEST) -v ./...
1919
clean:
2020
rm -f sample/$(SAMPLE_BINARY_NAME)
21-
rm -f sample/$(SAMPLE_BINARY_NAME).zip
21+
rm -f sample/$(SAMPLE_BINARY_NAME).zip
22+
23+
tidy:
24+
go mod tidy -compat=1.17

echo/adapter.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Packge echolambda add Echo support for the aws-severless-go-api library.
1+
// Package echoadapter add Echo support for the aws-severless-go-api library.
22
// Uses the core package behind the scenes and exposes the New method to
33
// get a new instance and Proxy method to send request to the echo.Echo
44
package echoadapter

go.mod

Lines changed: 65 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,78 @@
11
module github.com/awslabs/aws-lambda-go-api-proxy
22

3-
go 1.14
3+
go 1.17
44

55
require (
6+
github.com/aws/aws-lambda-go v1.27.0
7+
github.com/gin-gonic/gin v1.7.4
8+
github.com/go-chi/chi/v5 v5.0.5
9+
github.com/gofiber/fiber/v2 v2.21.0
10+
github.com/gorilla/mux v1.8.0
11+
github.com/kataras/iris/v12 v12.1.8
12+
github.com/labstack/echo/v4 v4.6.1
13+
github.com/onsi/ginkgo v1.16.5
14+
github.com/onsi/gomega v1.16.0
15+
github.com/urfave/negroni v1.0.0
16+
github.com/valyala/fasthttp v1.31.0
17+
)
18+
19+
require (
20+
github.com/BurntSushi/toml v0.3.1 // indirect
21+
github.com/CloudyKit/fastprinter v0.0.0-20200109182630-33d98a066a53 // indirect
22+
github.com/CloudyKit/jet/v3 v3.0.0 // indirect
23+
github.com/Shopify/goreferrer v0.0.0-20181106222321-ec9c9a553398 // indirect
624
github.com/ajg/form v1.5.1 // indirect
7-
github.com/andybalholm/brotli v1.0.1 // indirect
8-
github.com/aws/aws-lambda-go v1.19.1
9-
github.com/fasthttp-contrib/websocket v0.0.0-20160511215533-1f3b11f56072 // indirect
10-
github.com/gin-gonic/gin v1.7.2
11-
github.com/go-chi/chi/v5 v5.0.2
12-
github.com/gofiber/fiber/v2 v2.1.0
13-
github.com/google/go-querystring v1.0.0 // indirect
14-
github.com/gorilla/mux v1.7.4
25+
github.com/andybalholm/brotli v1.0.2 // indirect
26+
github.com/aymerick/raymond v2.0.3-0.20180322193309-b565731e1464+incompatible // indirect
27+
github.com/eknkc/amber v0.0.0-20171010120322-cdade1c07385 // indirect
28+
github.com/fatih/structs v1.1.0 // indirect
29+
github.com/fsnotify/fsnotify v1.4.9 // indirect
30+
github.com/gin-contrib/sse v0.1.0 // indirect
31+
github.com/go-playground/locales v0.13.0 // indirect
32+
github.com/go-playground/universal-translator v0.17.0 // indirect
33+
github.com/go-playground/validator/v10 v10.4.1 // indirect
34+
github.com/golang/protobuf v1.5.2 // indirect
35+
github.com/google/go-querystring v1.1.0 // indirect
1536
github.com/imkira/go-interpol v1.1.0 // indirect
16-
github.com/json-iterator/go v1.1.10 // indirect
17-
github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88 // indirect
18-
github.com/kataras/golog v0.0.18 // indirect
19-
github.com/kataras/iris/v12 v12.1.8
20-
github.com/klauspost/compress v1.11.1 // indirect
21-
github.com/labstack/echo/v4 v4.1.17
37+
github.com/iris-contrib/blackfriday v2.0.0+incompatible // indirect
38+
github.com/iris-contrib/jade v1.1.3 // indirect
39+
github.com/iris-contrib/pongo2 v0.0.1 // indirect
40+
github.com/iris-contrib/schema v0.0.1 // indirect
41+
github.com/json-iterator/go v1.1.9 // indirect
42+
github.com/kataras/golog v0.0.10 // indirect
43+
github.com/kataras/pio v0.0.2 // indirect
44+
github.com/kataras/sitemap v0.0.5 // indirect
45+
github.com/klauspost/compress v1.13.4 // indirect
46+
github.com/labstack/gommon v0.3.0 // indirect
47+
github.com/leodido/go-urn v1.2.0 // indirect
2248
github.com/mattn/go-colorable v0.1.8 // indirect
23-
github.com/microcosm-cc/bluemonday v1.0.15 // indirect
24-
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
25-
github.com/modern-go/reflect2 v1.0.1 // indirect
49+
github.com/mattn/go-isatty v0.0.14 // indirect
50+
github.com/microcosm-cc/bluemonday v1.0.2 // indirect
51+
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect
52+
github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742 // indirect
2653
github.com/moul/http2curl v1.0.0 // indirect
27-
github.com/onsi/ginkgo v1.14.0
28-
github.com/onsi/gomega v1.10.1
29-
github.com/sergi/go-diff v1.1.0 // indirect
30-
github.com/smartystreets/goconvey v1.6.4 // indirect
31-
github.com/urfave/negroni v1.0.0
32-
github.com/valyala/fasthttp v1.16.0
54+
github.com/nxadm/tail v1.4.8 // indirect
55+
github.com/ryanuber/columnize v2.1.0+incompatible // indirect
56+
github.com/schollz/closestmatch v2.1.0+incompatible // indirect
57+
github.com/sergi/go-diff v1.2.0 // indirect
58+
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
59+
github.com/smartystreets/goconvey v1.7.2 // indirect
60+
github.com/ugorji/go/codec v1.1.7 // indirect
61+
github.com/valyala/bytebufferpool v1.0.0 // indirect
62+
github.com/valyala/fasttemplate v1.2.1 // indirect
63+
github.com/valyala/tcplisten v1.0.0 // indirect
3364
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
3465
github.com/yalp/jsonpath v0.0.0-20180802001716-5cc68e5049a0 // indirect
3566
github.com/yudai/gojsondiff v1.0.0 // indirect
3667
github.com/yudai/golcs v0.0.0-20170316035057-ecda9a501e82 // indirect
37-
github.com/yudai/pp v2.0.1+incompatible // indirect
38-
golang.org/x/net v0.0.0-20210614182718-04defd469f4e // indirect
39-
google.golang.org/protobuf v1.25.0 // indirect
68+
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5 // indirect
69+
golang.org/x/net v0.0.0-20210913180222-943fd674d43e // indirect
70+
golang.org/x/sys v0.0.0-20210910150752-751e447fb3d0 // indirect
71+
golang.org/x/text v0.3.7 // indirect
72+
google.golang.org/protobuf v1.26.0 // indirect
73+
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
74+
gopkg.in/ini.v1 v1.51.1 // indirect
75+
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
76+
gopkg.in/yaml.v2 v2.4.0 // indirect
77+
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 // indirect
4078
)

0 commit comments

Comments
 (0)