Skip to content

Commit c042575

Browse files
authored
[deps + party]: update dependencies + add sound effect (#24)
* update dependencies + add sound effect * docker build dependencies
1 parent 7fbf770 commit c042575

File tree

17 files changed

+2695
-2106
lines changed

17 files changed

+2695
-2106
lines changed

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Go
2-
FROM golang:1.21-alpine AS go-builder
2+
FROM golang:1.23-alpine AS go-builder
33
RUN apk add --no-cache upx
44

55
WORKDIR /app
@@ -11,10 +11,10 @@ RUN upx bin/group-challenge
1111
#########
1212

1313
# React Frontend
14-
FROM node:20.10-alpine AS react-builder
14+
FROM node:22.12-alpine AS react-builder
1515

1616
WORKDIR /app
17-
ENV PATH /app/node_modules/.bin:$PATH
17+
ENV PATH=/app/node_modules/.bin:$PATH
1818
COPY frontend/package.json .
1919
COPY frontend/package-lock.json .
2020
RUN npm ci --silent
@@ -24,7 +24,7 @@ RUN npm run build
2424
#########
2525

2626
# Executable
27-
FROM alpine:3.19.0
27+
FROM alpine:3.21.0
2828
RUN apk --no-cache add ca-certificates
2929

3030
WORKDIR /app

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Alternatively you can start all services with the following commands:
5656

5757
```sh
5858
mkdir /tmp/group-challenge-cache
59-
docker-compose up
59+
docker compose up
6060
```
6161

6262
2. **API:** start the go api server at port `8080`.

api/go.mod

Lines changed: 39 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,54 +1,60 @@
11
module group-challenge
22

3-
go 1.21
3+
go 1.23
44

55
require (
6-
github.com/gin-contrib/cors v1.5.0
7-
github.com/gin-gonic/contrib v0.0.0-20221130124618-7e01895a63f2
8-
github.com/gin-gonic/gin v1.9.1
9-
github.com/go-pg/pg/v10 v10.12.0
6+
github.com/gin-contrib/cors v1.7.3
7+
github.com/gin-gonic/contrib v0.0.0-20241229022435-d12709533de6
8+
github.com/gin-gonic/gin v1.10.0
9+
github.com/go-pg/pg/v10 v10.14.0
1010
github.com/gofrs/uuid v4.4.0+incompatible
11-
github.com/gorilla/websocket v1.5.1
12-
github.com/jellydator/ttlcache/v3 v3.1.1
13-
github.com/prometheus/client_golang v1.18.0
14-
github.com/spf13/viper v1.18.2
15-
golang.org/x/crypto v0.17.0
11+
github.com/gorilla/websocket v1.5.3
12+
github.com/jellydator/ttlcache/v3 v3.3.0
13+
github.com/prometheus/client_golang v1.20.5
14+
github.com/spf13/viper v1.19.0
15+
golang.org/x/crypto v0.31.0
1616
)
1717

1818
require (
1919
github.com/beorn7/perks v1.0.1 // indirect
20-
github.com/bytedance/sonic v1.10.2 // indirect
21-
github.com/cespare/xxhash/v2 v2.2.0 // indirect
20+
github.com/bytedance/sonic v1.12.6 // indirect
21+
github.com/bytedance/sonic/loader v0.2.1 // indirect
22+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
2223
github.com/chenzhuoyu/base64x v0.0.0-20230717121745-296ad89f973d // indirect
2324
github.com/chenzhuoyu/iasm v0.9.1 // indirect
24-
github.com/fsnotify/fsnotify v1.7.0 // indirect
25-
github.com/gabriel-vasile/mimetype v1.4.3 // indirect
25+
github.com/cloudwego/base64x v0.1.4 // indirect
26+
github.com/cloudwego/iasm v0.2.0 // indirect
27+
github.com/fsnotify/fsnotify v1.8.0 // indirect
28+
github.com/gabriel-vasile/mimetype v1.4.7 // indirect
2629
github.com/gin-contrib/sse v0.1.0 // indirect
2730
github.com/go-pg/zerochecker v0.2.0 // indirect
2831
github.com/go-playground/locales v0.14.1 // indirect
2932
github.com/go-playground/universal-translator v0.18.1 // indirect
30-
github.com/go-playground/validator/v10 v10.16.0 // indirect
31-
github.com/goccy/go-json v0.10.2 // indirect
33+
github.com/go-playground/validator/v10 v10.23.0 // indirect
34+
github.com/goccy/go-json v0.10.4 // indirect
3235
github.com/hashicorp/hcl v1.0.0 // indirect
3336
github.com/jinzhu/inflection v1.0.0 // indirect
3437
github.com/json-iterator/go v1.1.12 // indirect
35-
github.com/klauspost/cpuid/v2 v2.2.6 // indirect
36-
github.com/leodido/go-urn v1.2.4 // indirect
37-
github.com/magiconair/properties v1.8.7 // indirect
38+
github.com/klauspost/compress v1.17.11 // indirect
39+
github.com/klauspost/cpuid/v2 v2.2.9 // indirect
40+
github.com/knz/go-libedit v1.10.1 // indirect
41+
github.com/leodido/go-urn v1.4.0 // indirect
42+
github.com/magiconair/properties v1.8.9 // indirect
3843
github.com/mattn/go-isatty v0.0.20 // indirect
3944
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect
4045
github.com/mitchellh/mapstructure v1.5.0 // indirect
4146
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
4247
github.com/modern-go/reflect2 v1.0.2 // indirect
43-
github.com/pelletier/go-toml/v2 v2.1.1 // indirect
44-
github.com/prometheus/client_model v0.5.0 // indirect
45-
github.com/prometheus/common v0.45.0 // indirect
46-
github.com/prometheus/procfs v0.12.0 // indirect
47-
github.com/sagikazarmark/locafero v0.4.0 // indirect
48+
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
49+
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
50+
github.com/prometheus/client_model v0.6.1 // indirect
51+
github.com/prometheus/common v0.61.0 // indirect
52+
github.com/prometheus/procfs v0.15.1 // indirect
53+
github.com/sagikazarmark/locafero v0.6.0 // indirect
4854
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
4955
github.com/sourcegraph/conc v0.3.0 // indirect
5056
github.com/spf13/afero v1.11.0 // indirect
51-
github.com/spf13/cast v1.6.0 // indirect
57+
github.com/spf13/cast v1.7.1 // indirect
5258
github.com/spf13/pflag v1.0.5 // indirect
5359
github.com/subosito/gotenv v1.6.0 // indirect
5460
github.com/tmthrgd/go-hex v0.0.0-20190904060850-447a3041c3bc // indirect
@@ -59,14 +65,14 @@ require (
5965
github.com/vmihailenco/tagparser v0.1.2 // indirect
6066
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
6167
go.uber.org/multierr v1.11.0 // indirect
62-
golang.org/x/arch v0.6.0 // indirect
63-
golang.org/x/exp v0.0.0-20231226003508-02704c960a9b // indirect
64-
golang.org/x/net v0.19.0 // indirect
65-
golang.org/x/sync v0.5.0 // indirect
66-
golang.org/x/sys v0.15.0 // indirect
67-
golang.org/x/text v0.14.0 // indirect
68-
google.golang.org/protobuf v1.32.0 // indirect
68+
golang.org/x/arch v0.12.0 // indirect
69+
golang.org/x/exp v0.0.0-20241217172543-b2144cdd0a67 // indirect
70+
golang.org/x/net v0.33.0 // indirect
71+
golang.org/x/sync v0.10.0 // indirect
72+
golang.org/x/sys v0.28.0 // indirect
73+
golang.org/x/text v0.21.0 // indirect
74+
google.golang.org/protobuf v1.36.1 // indirect
6975
gopkg.in/ini.v1 v1.67.0 // indirect
7076
gopkg.in/yaml.v3 v3.0.1 // indirect
71-
mellium.im/sasl v0.3.1 // indirect
77+
mellium.im/sasl v0.3.2 // indirect
7278
)

0 commit comments

Comments
 (0)