Skip to content

Commit 9350729

Browse files
fix(deps): update all non-major dependencies
1 parent b097731 commit 9350729

11 files changed

Lines changed: 27 additions & 27 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
uses: actions/checkout@v6
3636
- name: Build and push Docker image
3737
id: push
38-
uses: revotale/docker-multi-arch-release-action@v1.0.5
38+
uses: revotale/docker-multi-arch-release-action@v1.2.0
3939
with:
4040
registry: ghcr.io
4141
username: ${{ github.actor }}

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Set up Go
1919
uses: actions/setup-go@v6
2020
with:
21-
go-version: '1.25'
21+
go-version: '1.26'
2222
- name: Install dependencies
2323
run: go mod tidy
2424
- name: Check generated code is up-to-date
@@ -73,7 +73,7 @@ jobs:
7373
- name: Set up Go
7474
uses: actions/setup-go@v6
7575
with:
76-
go-version: '1.25'
76+
go-version: '1.26'
7777
- name: Install dependencies
7878
run: go mod download
7979
- name: Build tracker asset

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ COPY ./dashboard .
1515
RUN bun run build
1616

1717
# Stage 2: Build the Go server
18-
FROM golang:1.25-alpine AS builder
18+
FROM golang:1.26-alpine AS builder
1919

2020
WORKDIR /app
2121
COPY ./server/go.mod ./server/go.sum ./

dashboard/bun.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dashboard/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"clsx": "^2.1.1",
3030
"date-fns": "^4.1.0",
3131
"graphql": "^16.12.0",
32-
"lucide-react": "^0.563.0",
32+
"lucide-react": "^0.574.0",
3333
"react": "^19.2.3",
3434
"react-day-picker": "^9.13.0",
3535
"react-dom": "^19.2.3",

docker/docker-compose.migrations-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
services:
22
# PostgreSQL database for migration testing
33
postgres:
4-
image: postgres:18.1-alpine
4+
image: postgres:18.2-alpine
55
environment:
66
- POSTGRES_USER=test
77
- POSTGRES_PASSWORD=test

docker/docker-compose.postgres.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ services:
3737
- lovely-eye-net
3838

3939
lovely-eye-db:
40-
image: postgres:18.1-alpine
40+
image: postgres:18.2-alpine
4141
environment:
4242
- POSTGRES_USER=${POSTGRES_USER:-lovely}
4343
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD:-lovely}

server/go.mod

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/lovely-eye/server
33
go 1.25
44

55
require (
6-
ariga.io/atlas v1.0.0
6+
ariga.io/atlas v1.1.0
77
ariga.io/atlas-provider-bun v0.0.3
88
github.com/99designs/gqlgen v0.17.86
99
github.com/Khan/genqlient v0.8.1
@@ -19,8 +19,8 @@ require (
1919
github.com/uptrace/bun/extra/bundebug v1.2.16
2020
github.com/urfave/cli/v3 v3.6.2
2121
github.com/vektah/gqlparser/v2 v2.5.31
22-
golang.org/x/crypto v0.47.0
23-
modernc.org/sqlite v1.44.3
22+
golang.org/x/crypto v0.48.0
23+
modernc.org/sqlite v1.46.1
2424
)
2525

2626
require (
@@ -57,8 +57,8 @@ require (
5757
golang.org/x/exp v0.0.0-20260112195511-716be5621a96 // indirect
5858
golang.org/x/mod v0.32.0 // indirect
5959
golang.org/x/sync v0.19.0 // indirect
60-
golang.org/x/sys v0.40.0 // indirect
61-
golang.org/x/text v0.33.0 // indirect
60+
golang.org/x/sys v0.41.0 // indirect
61+
golang.org/x/text v0.34.0 // indirect
6262
golang.org/x/tools v0.41.0 // indirect
6363
gopkg.in/yaml.v2 v2.4.0 // indirect
6464
gopkg.in/yaml.v3 v3.0.1 // indirect

server/go.sum

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
ariga.io/atlas v1.0.0 h1:v9DQH49xK+SM2kKwk4OQBjfz/KNRMUR+pvDiEIxSJto=
2-
ariga.io/atlas v1.0.0/go.mod h1:esBbk3F+pi/mM2PvbCymDm+kWhaOk4PaaiegQdNELk8=
1+
ariga.io/atlas v1.1.0 h1:Dk9Xemh6pr5RogNCsFylf/9ozhSPWDqzHb8EkR2rA78=
2+
ariga.io/atlas v1.1.0/go.mod h1:esBbk3F+pi/mM2PvbCymDm+kWhaOk4PaaiegQdNELk8=
33
ariga.io/atlas-provider-bun v0.0.3 h1:Qv/ZnSL2XGthvlPJqVjoBZj/qF9B0qtmO0jRhwhQLFs=
44
ariga.io/atlas-provider-bun v0.0.3/go.mod h1:y0+OG2FrM9dmN48jZzJib1Ro5suVYERyEjV89x/geiI=
55
github.com/99designs/gqlgen v0.17.86 h1:C8N3UTa5heXX6twl+b0AJyGkTwYL6dNmFrgZNLRcU6w=
@@ -113,19 +113,19 @@ go.opentelemetry.io/otel v1.39.0 h1:8yPrr/S0ND9QEfTfdP9V+SiwT4E0G7Y5MO7p85nis48=
113113
go.opentelemetry.io/otel v1.39.0/go.mod h1:kLlFTywNWrFyEdH0oj2xK0bFYZtHRYUdv1NklR/tgc8=
114114
go.opentelemetry.io/otel/trace v1.39.0 h1:2d2vfpEDmCJ5zVYz7ijaJdOF59xLomrvj7bjt6/qCJI=
115115
go.opentelemetry.io/otel/trace v1.39.0/go.mod h1:88w4/PnZSazkGzz/w84VHpQafiU4EtqqlVdxWy+rNOA=
116-
golang.org/x/crypto v0.47.0 h1:V6e3FRj+n4dbpw86FJ8Fv7XVOql7TEwpHapKoMJ/GO8=
117-
golang.org/x/crypto v0.47.0/go.mod h1:ff3Y9VzzKbwSSEzWqJsJVBnWmRwRSHt/6Op5n9bQc4A=
116+
golang.org/x/crypto v0.48.0 h1:/VRzVqiRSggnhY7gNRxPauEQ5Drw9haKdM0jqfcCFts=
117+
golang.org/x/crypto v0.48.0/go.mod h1:r0kV5h3qnFPlQnBSrULhlsRfryS2pmewsg+XfMgkVos=
118118
golang.org/x/exp v0.0.0-20260112195511-716be5621a96 h1:Z/6YuSHTLOHfNFdb8zVZomZr7cqNgTJvA8+Qz75D8gU=
119119
golang.org/x/exp v0.0.0-20260112195511-716be5621a96/go.mod h1:nzimsREAkjBCIEFtHiYkrJyT+2uy9YZJB7H1k68CXZU=
120120
golang.org/x/mod v0.32.0 h1:9F4d3PHLljb6x//jOyokMv3eX+YDeepZSEo3mFJy93c=
121121
golang.org/x/mod v0.32.0/go.mod h1:SgipZ/3h2Ci89DlEtEXWUk/HteuRin+HHhN+WbNhguU=
122122
golang.org/x/sync v0.19.0 h1:vV+1eWNmZ5geRlYjzm2adRgW2/mcpevXNg50YZtPCE4=
123123
golang.org/x/sync v0.19.0/go.mod h1:9KTHXmSnoGruLpwFjVSX0lNNA75CykiMECbovNTZqGI=
124124
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
125-
golang.org/x/sys v0.40.0 h1:DBZZqJ2Rkml6QMQsZywtnjnnGvHza6BTfYFWY9kjEWQ=
126-
golang.org/x/sys v0.40.0/go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks=
127-
golang.org/x/text v0.33.0 h1:B3njUFyqtHDUI5jMn1YIr5B0IE2U0qck04r6d4KPAxE=
128-
golang.org/x/text v0.33.0/go.mod h1:LuMebE6+rBincTi9+xWTY8TztLzKHc/9C1uBCG27+q8=
125+
golang.org/x/sys v0.41.0 h1:Ivj+2Cp/ylzLiEU89QhWblYnOE9zerudt9Ftecq2C6k=
126+
golang.org/x/sys v0.41.0/go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks=
127+
golang.org/x/text v0.34.0 h1:oL/Qq0Kdaqxa1KbNeMKwQq0reLCCaFtqu2eNuSeNHbk=
128+
golang.org/x/text v0.34.0/go.mod h1:homfLqTYRFyVYemLBFl5GgL/DWEiH5wcsQ5gSh1yziA=
129129
golang.org/x/tools v0.41.0 h1:a9b8iMweWG+S0OBnlU36rzLp20z1Rp10w+IY2czHTQc=
130130
golang.org/x/tools v0.41.0/go.mod h1:XSY6eDqxVNiYgezAVqqCeihT4j1U2CCsqvH3WhQpnlg=
131131
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
@@ -161,8 +161,8 @@ modernc.org/opt v0.1.4 h1:2kNGMRiUjrp4LcaPuLY2PzUfqM/w9N23quVwhKt5Qm8=
161161
modernc.org/opt v0.1.4/go.mod h1:03fq9lsNfvkYSfxrfUhZCWPk1lm4cq4N+Bh//bEtgns=
162162
modernc.org/sortutil v1.2.1 h1:+xyoGf15mM3NMlPDnFqrteY07klSFxLElE2PVuWIJ7w=
163163
modernc.org/sortutil v1.2.1/go.mod h1:7ZI3a3REbai7gzCLcotuw9AC4VZVpYMjDzETGsSMqJE=
164-
modernc.org/sqlite v1.44.3 h1:+39JvV/HWMcYslAwRxHb8067w+2zowvFOUrOWIy9PjY=
165-
modernc.org/sqlite v1.44.3/go.mod h1:CzbrU2lSB1DKUusvwGz7rqEKIq+NUd8GWuBBZDs9/nA=
164+
modernc.org/sqlite v1.46.1 h1:eFJ2ShBLIEnUWlLy12raN0Z1plqmFX9Qe3rjQTKt6sU=
165+
modernc.org/sqlite v1.46.1/go.mod h1:CzbrU2lSB1DKUusvwGz7rqEKIq+NUd8GWuBBZDs9/nA=
166166
modernc.org/strutil v1.2.1 h1:UneZBkQA+DX2Rp35KcM69cSsNES9ly8mQWD71HKlOA0=
167167
modernc.org/strutil v1.2.1/go.mod h1:EHkiggD70koQxjVdSBM3JKM7k6L0FbGE5eymy9i3B9A=
168168
modernc.org/token v1.1.0 h1:Xl7Ap9dKaEs5kLoOQeQmPWevfnk/DM5qcLcYlA8ys6Y=

server/static/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ module github.com/lovely-eye/static
22

33
go 1.25
44

5-
require github.com/evanw/esbuild v0.27.2
5+
require github.com/evanw/esbuild v0.27.3
66

77
require golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8 // indirect

0 commit comments

Comments
 (0)