Skip to content

Commit 161aeac

Browse files
committed
update deps
1 parent 650f6bf commit 161aeac

File tree

3 files changed

+84
-113
lines changed

3 files changed

+84
-113
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1.4
22

3-
FROM golang:1.21-alpine AS build-dev
3+
FROM golang:1.24-alpine AS build-dev
44
WORKDIR /go/src/app
55
COPY --link go.mod go.sum ./
66
RUN apk add --no-cache upx || \

go.mod

Lines changed: 25 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,49 @@
11
module github.com/mattn/nostr-webhook
22

3-
go 1.21
4-
5-
toolchain go1.21.1
3+
go 1.24
64

75
require (
86
github.com/dgrijalva/jwt-go v3.2.0+incompatible
9-
github.com/labstack/echo/v4 v4.12.0
7+
github.com/labstack/echo/v4 v4.13.3
108
github.com/lib/pq v1.10.9
11-
github.com/nbd-wtf/go-nostr v0.31.2
9+
github.com/nbd-wtf/go-nostr v0.49.7
1210
github.com/robfig/cron/v3 v3.0.1
13-
github.com/uptrace/bun v1.2.1
14-
github.com/uptrace/bun/dialect/pgdialect v1.2.1
15-
github.com/uptrace/bun/extra/bundebug v1.2.1
16-
github.com/uptrace/bun/extra/bunslog v1.2.1
11+
github.com/uptrace/bun v1.2.9
12+
github.com/uptrace/bun/dialect/pgdialect v1.2.9
13+
github.com/uptrace/bun/extra/bundebug v1.2.9
14+
github.com/uptrace/bun/extra/bunslog v1.2.9
1715
)
1816

1917
require (
20-
github.com/btcsuite/btcd/btcec/v2 v2.3.3 // indirect
21-
github.com/btcsuite/btcd/btcutil v1.1.5 // indirect
18+
github.com/btcsuite/btcd/btcec/v2 v2.3.4 // indirect
19+
github.com/btcsuite/btcd/btcutil v1.1.6 // indirect
2220
github.com/btcsuite/btcd/chaincfg/chainhash v1.1.0 // indirect
23-
github.com/decred/dcrd/crypto/blake256 v1.0.1 // indirect
21+
github.com/coder/websocket v1.8.12 // indirect
22+
github.com/decred/dcrd/crypto/blake256 v1.1.0 // indirect
2423
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 // indirect
25-
github.com/fatih/color v1.17.0 // indirect
26-
github.com/gobwas/httphead v0.1.0 // indirect
27-
github.com/gobwas/pool v0.2.1 // indirect
28-
github.com/gobwas/ws v1.4.0 // indirect
29-
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
24+
github.com/fatih/color v1.18.0 // indirect
3025
github.com/jinzhu/inflection v1.0.0 // indirect
3126
github.com/josharian/intern v1.0.0 // indirect
27+
github.com/json-iterator/go v1.1.12 // indirect
3228
github.com/labstack/gommon v0.4.2 // indirect
33-
github.com/mailru/easyjson v0.7.7 // indirect
34-
github.com/mattn/go-colorable v0.1.13 // indirect
29+
github.com/mailru/easyjson v0.9.0 // indirect
30+
github.com/mattn/go-colorable v0.1.14 // indirect
3531
github.com/mattn/go-isatty v0.0.20 // indirect
36-
github.com/puzpuzpuz/xsync/v2 v2.5.1 // indirect
37-
github.com/puzpuzpuz/xsync/v3 v3.1.0 // indirect
38-
github.com/tidwall/gjson v1.17.1 // indirect
32+
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
33+
github.com/modern-go/reflect2 v1.0.2 // indirect
34+
github.com/puzpuzpuz/xsync/v3 v3.5.0 // indirect
35+
github.com/tidwall/gjson v1.18.0 // indirect
3936
github.com/tidwall/match v1.1.1 // indirect
4037
github.com/tidwall/pretty v1.2.1 // indirect
4138
github.com/tmthrgd/go-hex v0.0.0-20190904060850-447a3041c3bc // indirect
4239
github.com/valyala/bytebufferpool v1.0.0 // indirect
4340
github.com/valyala/fasttemplate v1.2.2 // indirect
4441
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
4542
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
46-
golang.org/x/crypto v0.23.0 // indirect
47-
golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842 // indirect
48-
golang.org/x/net v0.25.0 // indirect
49-
golang.org/x/sys v0.20.0 // indirect
50-
golang.org/x/text v0.15.0 // indirect
51-
golang.org/x/time v0.5.0 // indirect
43+
golang.org/x/crypto v0.33.0 // indirect
44+
golang.org/x/exp v0.0.0-20250210185358-939b2ce775ac // indirect
45+
golang.org/x/net v0.35.0 // indirect
46+
golang.org/x/sys v0.30.0 // indirect
47+
golang.org/x/text v0.22.0 // indirect
48+
golang.org/x/time v0.10.0 // indirect
5249
)

0 commit comments

Comments
 (0)