Skip to content

Commit cc92cb8

Browse files
boehlkeclaude
andcommitted
fix: add replace directive for kryptance/openslides-go OIDC fork
CI fails because go.mod points to upstream openslides-go which doesn't have the OIDC auth changes. Add replace directive to use the kryptance fork with OIDC support. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 1d81638 commit cc92cb8

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

go.mod

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ go 1.25.0
55
require (
66
github.com/OpenSlides/openslides-go v0.0.0-20260224181653-ea61a49dacae
77
github.com/alecthomas/kong v1.14.0
8+
github.com/jackc/pgx/v5 v5.8.0
89
github.com/klauspost/compress v1.18.4
910
github.com/ostcar/topic v0.6.0
1011
github.com/zeebo/xxh3 v1.1.0
@@ -16,7 +17,6 @@ require (
1617
github.com/gomodule/redigo v1.9.3 // indirect
1718
github.com/jackc/pgpassfile v1.0.0 // indirect
1819
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
19-
github.com/jackc/pgx/v5 v5.8.0 // indirect
2020
github.com/jackc/puddle/v2 v2.2.2 // indirect
2121
github.com/klauspost/cpuid/v2 v2.3.0 // indirect
2222
github.com/mattn/go-colorable v0.1.14 // indirect
@@ -27,3 +27,5 @@ require (
2727
golang.org/x/sys v0.41.0 // indirect
2828
golang.org/x/text v0.34.0 // indirect
2929
)
30+
31+
replace github.com/OpenSlides/openslides-go => github.com/kryptance/openslides-go v0.0.0-20260302105349-d320ae868e3a

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ github.com/Microsoft/go-winio v0.6.2 h1:F2VQgta7ecxGYO8k3ZZz3RS8fVIXVxONVUPlNERo
66
github.com/Microsoft/go-winio v0.6.2/go.mod h1:yd8OoFMLzJbo9gZq8j5qaps8bJ9aShtEA8Ipt1oGCvU=
77
github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5 h1:TngWCqHvy9oXAN6lEVMRuU21PR1EtLVZJmdB18Gu3Rw=
88
github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5/go.mod h1:lmUJ/7eu/Q8D7ML55dXQrVaamCz2vxCfdQBasLZfHKk=
9-
github.com/OpenSlides/openslides-go v0.0.0-20260224181653-ea61a49dacae h1:1AqKjU4t2FIf3HGNcgBqqpsEcxy5UEdTfDetJdPfR4c=
10-
github.com/OpenSlides/openslides-go v0.0.0-20260224181653-ea61a49dacae/go.mod h1:cux3Aaojj2xnTPUfNFQpnWLfn/5mE0mbefu0xIoAwMo=
119
github.com/alecthomas/assert/v2 v2.11.0 h1:2Q9r3ki8+JYXvGsDyBXwH3LcJ+WK5D0gc5E8vS6K3D0=
1210
github.com/alecthomas/assert/v2 v2.11.0/go.mod h1:Bze95FyfUr7x34QZrjL+XP+0qgp/zg8yS+TtBj1WA3k=
1311
github.com/alecthomas/kong v1.14.0 h1:gFgEUZWu2ZmZ+UhyZ1bDhuutbKN1nTtJTwh19Wsn21s=
@@ -67,6 +65,8 @@ github.com/klauspost/compress v1.18.4 h1:RPhnKRAQ4Fh8zU2FY/6ZFDwTVTxgJ/EMydqSTzE
6765
github.com/klauspost/compress v1.18.4/go.mod h1:R0h/fSBs8DE4ENlcrlib3PsXS61voFxhIs2DeRhCvJ4=
6866
github.com/klauspost/cpuid/v2 v2.3.0 h1:S4CRMLnYUhGeDFDqkGriYKdfoFlDnMtqTiI/sFzhA9Y=
6967
github.com/klauspost/cpuid/v2 v2.3.0/go.mod h1:hqwkgyIinND0mEev00jJYCxPNVRVXFQeu1XKlok6oO0=
68+
github.com/kryptance/openslides-go v0.0.0-20260302105349-d320ae868e3a h1:LqL9dOf3SvgYUya6wxek/PyaD18Wuy0ziLni751E1d4=
69+
github.com/kryptance/openslides-go v0.0.0-20260302105349-d320ae868e3a/go.mod h1:cux3Aaojj2xnTPUfNFQpnWLfn/5mE0mbefu0xIoAwMo=
7070
github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovkB8vQcUbaXHg=
7171
github.com/mattn/go-colorable v0.1.14 h1:9A9LHSqF/7dyVVX6g0U9cwm9pG3kP9gSzcuIPHPsaIE=
7272
github.com/mattn/go-colorable v0.1.14/go.mod h1:6LmQG8QLFO4G5z1gPvYEzlUgJ2wF+stgPZH1UqBm1s8=

0 commit comments

Comments
 (0)