Skip to content

Commit 245971e

Browse files
committed
Update dependencies
1 parent 8d274e0 commit 245971e

File tree

4 files changed

+317
-268
lines changed

4 files changed

+317
-268
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.16-buster as builder
1+
FROM golang:1.17-buster as builder
22
RUN GO111MODULE=on GOOS=linux go get -ldflags "-linkmode external -extldflags -static" github.com/jaeles-project/jaeles
33

44
FROM alpine:latest

go.mod

+89-25
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,104 @@
11
module github.com/jaeles-project/jaeles
22

3-
go 1.16
3+
go 1.20
44

55
require (
6-
github.com/Jeffail/gabs/v2 v2.6.1
7-
github.com/Masterminds/sprig/v3 v3.2.2
8-
github.com/PuerkitoBio/goquery v1.7.0
9-
github.com/appleboy/gin-jwt/v2 v2.6.4
10-
github.com/chromedp/cdproto v0.0.0-20220515234810-83d799542a04
11-
github.com/chromedp/chromedp v0.8.2
6+
github.com/Jeffail/gabs/v2 v2.7.0
7+
github.com/Masterminds/sprig/v3 v3.2.3
8+
github.com/PuerkitoBio/goquery v1.8.1
9+
github.com/appleboy/gin-jwt/v2 v2.9.1
10+
github.com/chromedp/cdproto v0.0.0-20230625224106-7fafe342e117
11+
github.com/chromedp/chromedp v0.9.1
1212
github.com/davecgh/go-spew v1.1.1
13-
github.com/fatih/color v1.12.0
14-
github.com/gin-contrib/cors v1.3.1
13+
github.com/fatih/color v1.15.0
14+
github.com/gin-contrib/cors v1.4.0
1515
github.com/gin-contrib/static v0.0.1
16-
github.com/gin-gonic/gin v1.7.2
17-
github.com/go-resty/resty/v2 v2.6.0
18-
github.com/google/uuid v1.2.0
19-
github.com/gorilla/websocket v1.4.2
20-
github.com/jinzhu/copier v0.3.2
16+
github.com/gin-gonic/gin v1.9.1
17+
github.com/go-resty/resty/v2 v2.7.0
18+
github.com/google/uuid v1.3.0
19+
github.com/gorilla/websocket v1.5.0
20+
github.com/jinzhu/copier v0.3.5
2121
github.com/jinzhu/gorm v1.9.16
22-
github.com/json-iterator/go v1.1.11
22+
github.com/json-iterator/go v1.1.12
2323
github.com/lixiangzhong/dnsutil v1.4.0
2424
github.com/logrusorgru/aurora/v3 v3.0.0
25-
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect
2625
github.com/mitchellh/go-homedir v1.1.0
27-
github.com/onsi/ginkgo v1.16.4 // indirect
28-
github.com/onsi/gomega v1.13.0 // indirect
2926
github.com/panjf2000/ants v1.3.0
30-
github.com/robertkrimen/otto v0.0.0-20210614181706-373ff5438452
31-
github.com/sirupsen/logrus v1.8.1
32-
github.com/spf13/cast v1.3.1
33-
github.com/spf13/cobra v1.2.1
34-
github.com/spf13/viper v1.8.1
35-
github.com/thoas/go-funk v0.8.0
27+
github.com/robertkrimen/otto v0.2.1
28+
github.com/sirupsen/logrus v1.9.3
29+
github.com/spf13/cast v1.5.1
30+
github.com/spf13/cobra v1.7.0
31+
github.com/spf13/viper v1.16.0
32+
github.com/thoas/go-funk v0.9.3
3633
github.com/x-cray/logrus-prefixed-formatter v0.5.2
37-
gopkg.in/sourcemap.v1 v1.0.5 // indirect
3834
gopkg.in/src-d/go-git.v4 v4.13.1
3935
gopkg.in/yaml.v2 v2.4.0
4036
)
37+
38+
require (
39+
github.com/Masterminds/goutils v1.1.1 // indirect
40+
github.com/Masterminds/semver/v3 v3.2.0 // indirect
41+
github.com/andybalholm/cascadia v1.3.1 // indirect
42+
github.com/bytedance/sonic v1.9.1 // indirect
43+
github.com/chenzhuoyu/base64x v0.0.0-20221115062448-fe3a3abad311 // indirect
44+
github.com/chromedp/sysutil v1.0.0 // indirect
45+
github.com/emirpasic/gods v1.12.0 // indirect
46+
github.com/fsnotify/fsnotify v1.6.0 // indirect
47+
github.com/gabriel-vasile/mimetype v1.4.2 // indirect
48+
github.com/gin-contrib/sse v0.1.0 // indirect
49+
github.com/go-playground/locales v0.14.1 // indirect
50+
github.com/go-playground/universal-translator v0.18.1 // indirect
51+
github.com/go-playground/validator/v10 v10.14.0 // indirect
52+
github.com/gobwas/httphead v0.1.0 // indirect
53+
github.com/gobwas/pool v0.2.1 // indirect
54+
github.com/gobwas/ws v1.1.0 // indirect
55+
github.com/goccy/go-json v0.10.2 // indirect
56+
github.com/golang-jwt/jwt/v4 v4.4.3 // indirect
57+
github.com/hashicorp/hcl v1.0.0 // indirect
58+
github.com/huandu/xstrings v1.3.3 // indirect
59+
github.com/imdario/mergo v0.3.11 // indirect
60+
github.com/inconshreveable/mousetrap v1.1.0 // indirect
61+
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
62+
github.com/jinzhu/inflection v1.0.0 // indirect
63+
github.com/josharian/intern v1.0.0 // indirect
64+
github.com/kevinburke/ssh_config v0.0.0-20190725054713-01f96b0aa0cd // indirect
65+
github.com/klauspost/cpuid/v2 v2.2.4 // indirect
66+
github.com/leodido/go-urn v1.2.4 // indirect
67+
github.com/magiconair/properties v1.8.7 // indirect
68+
github.com/mailru/easyjson v0.7.7 // indirect
69+
github.com/mattn/go-colorable v0.1.13 // indirect
70+
github.com/mattn/go-isatty v0.0.19 // indirect
71+
github.com/mattn/go-sqlite3 v1.14.0 // indirect
72+
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect
73+
github.com/miekg/dns v1.1.40 // indirect
74+
github.com/mitchellh/copystructure v1.0.0 // indirect
75+
github.com/mitchellh/mapstructure v1.5.0 // indirect
76+
github.com/mitchellh/reflectwalk v1.0.0 // indirect
77+
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
78+
github.com/modern-go/reflect2 v1.0.2 // indirect
79+
github.com/onsi/ginkgo v1.16.5 // indirect
80+
github.com/onsi/gomega v1.27.8 // indirect
81+
github.com/pelletier/go-toml/v2 v2.0.8 // indirect
82+
github.com/sergi/go-diff v1.0.0 // indirect
83+
github.com/shopspring/decimal v1.2.0 // indirect
84+
github.com/spf13/afero v1.9.5 // indirect
85+
github.com/spf13/jwalterweatherman v1.1.0 // indirect
86+
github.com/spf13/pflag v1.0.5 // indirect
87+
github.com/src-d/gcfg v1.4.0 // indirect
88+
github.com/subosito/gotenv v1.4.2 // indirect
89+
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
90+
github.com/ugorji/go/codec v1.2.11 // indirect
91+
github.com/xanzy/ssh-agent v0.2.1 // indirect
92+
golang.org/x/arch v0.3.0 // indirect
93+
golang.org/x/crypto v0.9.0 // indirect
94+
golang.org/x/net v0.10.0 // indirect
95+
golang.org/x/sys v0.8.0 // indirect
96+
golang.org/x/term v0.8.0 // indirect
97+
golang.org/x/text v0.9.0 // indirect
98+
google.golang.org/protobuf v1.30.0 // indirect
99+
gopkg.in/ini.v1 v1.67.0 // indirect
100+
gopkg.in/sourcemap.v1 v1.0.5 // indirect
101+
gopkg.in/src-d/go-billy.v4 v4.3.2 // indirect
102+
gopkg.in/warnings.v0 v0.1.2 // indirect
103+
gopkg.in/yaml.v3 v3.0.1 // indirect
104+
)

0 commit comments

Comments
 (0)