Skip to content

Commit 8404877

Browse files
committed
chore: Bump dependencies
Signed-off-by: Felicitas Pojtinger <[email protected]>
1 parent b894363 commit 8404877

File tree

10 files changed

+668
-427
lines changed

10 files changed

+668
-427
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ clean:
4747
# Dependencies
4848
depend:
4949
docker run -d --name weron-postgres -p 5432:5432 -e POSTGRES_HOST_AUTH_METHOD=trust -e POSTGRES_DB=weron_communities postgres
50-
docker run -d --name weron-redis -p 6379:6379 redis
50+
docker run -d --name weron-redis -p 6379:6379 valkey/valkey
5151
docker exec weron-postgres bash -c 'until pg_isready; do sleep 1; done'
5252
go install github.com/rubenv/sql-migrate/sql-migrate@latest
5353
go install github.com/volatiletech/sqlboiler/v4@latest

go.mod

Lines changed: 59 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -1,81 +1,86 @@
11
module github.com/pojntfx/weron
22

33
// +heroku goVersion go1.18
4-
go 1.18
4+
go 1.21
5+
6+
toolchain go1.22.5
57

68
require (
79
github.com/friendsofgo/errors v0.9.2
810
github.com/go-redis/redis/v8 v8.11.5
911
github.com/google/gopacket v1.1.19
10-
github.com/google/uuid v1.3.0
11-
github.com/gorilla/websocket v1.5.0
12+
github.com/google/uuid v1.6.0
13+
github.com/gorilla/websocket v1.5.3
1214
github.com/json-iterator/go v1.1.12
13-
github.com/lib/pq v1.10.5
15+
github.com/lib/pq v1.10.9
1416
github.com/mitchellh/mapstructure v1.5.0
15-
github.com/pion/webrtc/v3 v3.1.34
17+
github.com/pion/webrtc/v3 v3.2.44
1618
github.com/pojntfx/go-auth-utils v0.1.0
17-
github.com/rs/zerolog v1.26.1
18-
github.com/rubenv/sql-migrate v1.1.1
19+
github.com/rs/zerolog v1.33.0
20+
github.com/rubenv/sql-migrate v1.7.0
1921
github.com/songgao/water v0.0.0-20200317203138-2b4b6d7c09d8
20-
github.com/spf13/cobra v1.4.0
22+
github.com/spf13/cobra v1.8.1
2123
github.com/spf13/pflag v1.0.5
22-
github.com/spf13/viper v1.11.0
23-
github.com/teivah/broadcast v0.0.7-0.20220316095729-071f20229a32
24+
github.com/spf13/viper v1.19.0
25+
github.com/teivah/broadcast v0.1.0
2426
github.com/vishvananda/netlink v1.1.0
2527
github.com/volatiletech/null/v8 v8.1.2
26-
github.com/volatiletech/sqlboiler/v4 v4.11.0
27-
github.com/volatiletech/strmangle v0.0.4
28-
golang.org/x/crypto v0.0.0-20220427172511-eb4f295cb31f
29-
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
28+
github.com/volatiletech/sqlboiler/v4 v4.16.2
29+
github.com/volatiletech/strmangle v0.0.6
30+
golang.org/x/crypto v0.25.0
31+
golang.org/x/sync v0.7.0
3032
)
3133

3234
require (
33-
github.com/cespare/xxhash/v2 v2.1.2 // indirect
34-
github.com/coreos/go-oidc/v3 v3.2.0 // indirect
35+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
36+
github.com/coreos/go-oidc/v3 v3.11.0 // indirect
37+
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
3538
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
36-
github.com/fsnotify/fsnotify v1.5.1 // indirect
37-
github.com/go-gorp/gorp/v3 v3.0.2 // indirect
38-
github.com/gofrs/uuid v3.2.0+incompatible // indirect
39-
github.com/golang/protobuf v1.5.2 // indirect
39+
github.com/fsnotify/fsnotify v1.7.0 // indirect
40+
github.com/go-gorp/gorp/v3 v3.1.0 // indirect
41+
github.com/go-jose/go-jose/v4 v4.0.3 // indirect
42+
github.com/gofrs/uuid v4.4.0+incompatible // indirect
4043
github.com/hashicorp/hcl v1.0.0 // indirect
41-
github.com/inconshreveable/mousetrap v1.0.0 // indirect
42-
github.com/magiconair/properties v1.8.6 // indirect
44+
github.com/inconshreveable/mousetrap v1.1.0 // indirect
45+
github.com/magiconair/properties v1.8.7 // indirect
46+
github.com/mattn/go-colorable v0.1.13 // indirect
47+
github.com/mattn/go-isatty v0.0.20 // indirect
4348
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
4449
github.com/modern-go/reflect2 v1.0.2 // indirect
45-
github.com/pelletier/go-toml v1.9.4 // indirect
46-
github.com/pelletier/go-toml/v2 v2.0.0-beta.8 // indirect
47-
github.com/pion/datachannel v1.5.2 // indirect
48-
github.com/pion/dtls/v2 v2.1.3 // indirect
49-
github.com/pion/ice/v2 v2.2.6 // indirect
50-
github.com/pion/interceptor v0.1.10 // indirect
50+
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
51+
github.com/pion/datachannel v1.5.8 // indirect
52+
github.com/pion/dtls/v2 v2.2.11 // indirect
53+
github.com/pion/ice/v2 v2.3.28 // indirect
54+
github.com/pion/interceptor v0.1.29 // indirect
5155
github.com/pion/logging v0.2.2 // indirect
52-
github.com/pion/mdns v0.0.5 // indirect
56+
github.com/pion/mdns v0.0.12 // indirect
5357
github.com/pion/randutil v0.1.0 // indirect
54-
github.com/pion/rtcp v1.2.9 // indirect
55-
github.com/pion/rtp v1.7.13 // indirect
56-
github.com/pion/sctp v1.8.2 // indirect
57-
github.com/pion/sdp/v3 v3.0.4 // indirect
58-
github.com/pion/srtp/v2 v2.0.5 // indirect
59-
github.com/pion/stun v0.3.5 // indirect
60-
github.com/pion/transport v0.13.0 // indirect
61-
github.com/pion/turn/v2 v2.0.8 // indirect
62-
github.com/pion/udp v0.1.1 // indirect
63-
github.com/spf13/afero v1.8.2 // indirect
64-
github.com/spf13/cast v1.4.1 // indirect
65-
github.com/spf13/jwalterweatherman v1.1.0 // indirect
66-
github.com/subosito/gotenv v1.2.0 // indirect
67-
github.com/vishvananda/netns v0.0.0-20191106174202-0a2b9b5464df // indirect
58+
github.com/pion/rtcp v1.2.14 // indirect
59+
github.com/pion/rtp v1.8.6 // indirect
60+
github.com/pion/sctp v1.8.19 // indirect
61+
github.com/pion/sdp/v3 v3.0.9 // indirect
62+
github.com/pion/srtp/v2 v2.0.19 // indirect
63+
github.com/pion/stun v0.6.1 // indirect
64+
github.com/pion/transport/v2 v2.2.5 // indirect
65+
github.com/pion/turn/v2 v2.1.6 // indirect
66+
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
67+
github.com/sagikazarmark/locafero v0.6.0 // indirect
68+
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
69+
github.com/sourcegraph/conc v0.3.0 // indirect
70+
github.com/spf13/afero v1.11.0 // indirect
71+
github.com/spf13/cast v1.6.0 // indirect
72+
github.com/stretchr/testify v1.9.0 // indirect
73+
github.com/subosito/gotenv v1.6.0 // indirect
74+
github.com/vishvananda/netns v0.0.4 // indirect
6875
github.com/volatiletech/inflect v0.0.1 // indirect
6976
github.com/volatiletech/randomize v0.0.1 // indirect
70-
golang.org/x/net v0.0.0-20220412020605-290c469a71a5 // indirect
71-
golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5 // indirect
72-
golang.org/x/sys v0.0.0-20220412211240-33da011f77ad // indirect
73-
golang.org/x/text v0.3.7 // indirect
74-
golang.org/x/xerrors v0.0.0-20220411194840-2f41105eb62f // indirect
75-
google.golang.org/appengine v1.6.7 // indirect
76-
google.golang.org/protobuf v1.28.0 // indirect
77-
gopkg.in/ini.v1 v1.66.4 // indirect
78-
gopkg.in/square/go-jose.v2 v2.5.1 // indirect
79-
gopkg.in/yaml.v2 v2.4.0 // indirect
80-
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
77+
go.uber.org/multierr v1.11.0 // indirect
78+
golang.org/x/exp v0.0.0-20240707233637-46b078467d37 // indirect
79+
golang.org/x/net v0.27.0 // indirect
80+
golang.org/x/oauth2 v0.21.0 // indirect
81+
golang.org/x/sys v0.22.0 // indirect
82+
golang.org/x/text v0.16.0 // indirect
83+
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect
84+
gopkg.in/ini.v1 v1.67.0 // indirect
85+
gopkg.in/yaml.v3 v3.0.1 // indirect
8186
)

0 commit comments

Comments
 (0)