-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Kristoffer Dalby <[email protected]>
- Loading branch information
Showing
1 changed file
with
24 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,6 +52,30 @@ require ( | |
zombiezen.com/go/postgrestest v1.0.1 | ||
) | ||
|
||
// NOTE: modernc sqlite has a fragile dependency | ||
// chain and it is important that they are updated | ||
// in lockstep to ensure that they do not break | ||
// some architectures and similar at runtime: | ||
// https://github.com/juanfont/headscale/issues/2188 | ||
// | ||
// Fragile libc dependency: | ||
// https://pkg.go.dev/modernc.org/sqlite#hdr-Fragile_modernc_org_libc_dependency | ||
// https://gitlab.com/cznic/sqlite/-/issues/177 | ||
// | ||
// To upgrade, determine the new SQLite version to | ||
// be used, and consult the `go.mod` file: | ||
// https://gitlab.com/cznic/sqlite/-/blob/master/go.mod | ||
// to find | ||
// the appropriate `libc` version, then upgrade them | ||
// together, e.g: | ||
// go get modernc.org/[email protected] modernc.org/[email protected] | ||
require ( | ||
modernc.org/libc v1.55.3 // indirect | ||
modernc.org/mathutil v1.6.0 // indirect | ||
modernc.org/memory v1.8.0 // indirect | ||
modernc.org/sqlite v1.33.1 // indirect | ||
) | ||
|
||
require ( | ||
atomicgo.dev/cursor v0.2.0 // indirect | ||
atomicgo.dev/keyboard v0.2.9 // indirect | ||
|
@@ -205,8 +229,4 @@ require ( | |
google.golang.org/genproto/googleapis/rpc v0.0.0-20240903143218-8af14fe29dc1 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gvisor.dev/gvisor v0.0.0-20240722211153-64c016c92987 // indirect | ||
modernc.org/libc v1.55.3 // indirect | ||
modernc.org/mathutil v1.6.0 // indirect | ||
modernc.org/memory v1.8.0 // indirect | ||
modernc.org/sqlite v1.33.1 // indirect | ||
) |