Skip to content

Commit a5f5de5

Browse files
committed
update dependencies
1 parent 84434bd commit a5f5de5

File tree

6 files changed

+617
-817
lines changed

6 files changed

+617
-817
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,10 @@ If you want to run this service without a Docker container, you have to build it
1616

1717
Prerequisites:
1818

19-
- Go 1.21+
19+
- Go 1.23+
2020
- Node.js v16+
2121
- Corepack (`npm i -g corepack`)
22+
- templ (`go install github.com/a-h/templ/cmd/templ@latest`)
2223

2324
You can configure this via a `.env.local` file or via command options (for more information you can run `./ldap-manager --help`).
2425

@@ -71,9 +72,10 @@ docker run \
7172

7273
Prerequisites:
7374

74-
- Go 1.21+
75+
- Go 1.23+
7576
- Node.js v16+
7677
- Corepack (`npm i -g corepack`)
78+
- templ (`go install github.com/a-h/templ/cmd/templ@latest`)
7779

7880
```bash
7981
corepack enable

go.mod

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,35 @@
11
module github.com/netresearch/ldap-manager
22

3-
go 1.21
3+
go 1.23
4+
5+
toolchain go1.23.5
46

57
require (
6-
github.com/a-h/templ v0.2.731
7-
github.com/gofiber/fiber/v2 v2.52.5
8+
github.com/gofiber/fiber/v2 v2.52.6
89
github.com/gofiber/storage/bbolt/v2 v2.0.0
910
github.com/gofiber/storage/memory/v2 v2.0.1
1011
github.com/joho/godotenv v1.5.1
11-
github.com/netresearch/simple-ldap-go v1.0.1
12+
github.com/netresearch/simple-ldap-go v1.0.2
1213
github.com/rs/zerolog v1.33.0
1314
)
1415

1516
require (
1617
github.com/Azure/go-ntlmssp v0.0.0-20221128193559-754e69321358 // indirect
17-
github.com/andybalholm/brotli v1.1.0 // indirect
18+
github.com/andybalholm/brotli v1.1.1 // indirect
1819
github.com/go-asn1-ber/asn1-ber v1.5.7 // indirect
19-
github.com/go-ldap/ldap/v3 v3.4.8 // indirect
20-
github.com/gofiber/utils/v2 v2.0.0-beta.3 // indirect
20+
github.com/go-ldap/ldap/v3 v3.4.10 // indirect
21+
github.com/gofiber/utils/v2 v2.0.0-beta.7 // indirect
2122
github.com/google/uuid v1.6.0 // indirect
22-
github.com/klauspost/compress v1.17.0 // indirect
23-
github.com/mattn/go-colorable v0.1.13 // indirect
23+
github.com/klauspost/compress v1.17.11 // indirect
24+
github.com/mattn/go-colorable v0.1.14 // indirect
2425
github.com/mattn/go-isatty v0.0.20 // indirect
25-
github.com/mattn/go-runewidth v0.0.15 // indirect
26-
github.com/rivo/uniseg v0.4.4 // indirect
26+
github.com/mattn/go-runewidth v0.0.16 // indirect
27+
github.com/rivo/uniseg v0.4.7 // indirect
2728
github.com/valyala/bytebufferpool v1.0.0 // indirect
28-
github.com/valyala/fasthttp v1.51.0 // indirect
29+
github.com/valyala/fasthttp v1.58.0 // indirect
2930
github.com/valyala/tcplisten v1.0.0 // indirect
30-
go.etcd.io/bbolt v1.3.9 // indirect
31-
golang.org/x/crypto v0.25.0 // indirect
32-
golang.org/x/sys v0.22.0 // indirect
33-
golang.org/x/text v0.20.0 // indirect
31+
go.etcd.io/bbolt v1.3.11 // indirect
32+
golang.org/x/crypto v0.32.0 // indirect
33+
golang.org/x/sys v0.29.0 // indirect
34+
golang.org/x/text v0.21.0 // indirect
3435
)

0 commit comments

Comments
 (0)