Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
46862aa
fix: auto provisioning of users
0x0elliot Dec 19, 2025
528f17a
fix: increase expiry time for SSO challenge
0x0elliot Dec 19, 2025
9d44a46
fix: tiny bugs with provision
0x0elliot Dec 19, 2025
ed7e1a9
fix: changing fn names
0x0elliot Dec 19, 2025
a0593a1
fix: cleaning garbage
0x0elliot Dec 19, 2025
cd85e34
fix: removing code challenge necessity
0x0elliot Dec 19, 2025
3179d32
fix: SSO creating duplicate users
0x0elliot Dec 19, 2025
a407f99
fix: nil pointer in SSO link generation
0x0elliot Dec 19, 2025
8938448
fix: flexibility with suborgs
0x0elliot Dec 19, 2025
abb5027
fix: garbage cleaning
0x0elliot Dec 19, 2025
25c9e84
fix: always redirect to shuffler.io post SSO login
0x0elliot Jan 12, 2026
52eb47c
fix: handle Keycloak realm URLs in OIDC well-known config
0x0elliot Jan 22, 2026
d9b41e2
fix: syncing up functions
0x0elliot Jan 22, 2026
c59cb6f
fix: printing more for debug
0x0elliot Jan 28, 2026
fa4790d
fix: fail early if redirect_uri is wrong
0x0elliot Jan 29, 2026
e74cc7c
fix: fail early if redirect_uri is wrong
0x0elliot Jan 29, 2026
7cc9519
fix: fail early if redirect_uri is wrong (2)
0x0elliot Jan 29, 2026
6d82c00
fix: on code_verifier issue
0x0elliot Jan 29, 2026
9b6f515
fix: invalid argument
0x0elliot Jan 29, 2026
0b55deb
fix: more debug info
0x0elliot Jan 29, 2026
95b1a50
fix: making au sandbox region
0x0elliot Jan 30, 2026
34c46c9
fix: extracting data from IdToken
0x0elliot Jan 30, 2026
45026e5
chore: updating dependencies
0x0elliot Feb 5, 2026
aae4966
chore: updating dependencies (1)
0x0elliot Feb 5, 2026
da34005
Merge origin/main, keeping local OpenID/JWT functions
0x0elliot Feb 5, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
3 changes: 2 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ require (
github.com/containerd/errdefs v1.0.0 // indirect
github.com/containerd/errdefs/pkg v0.3.0 // indirect
github.com/containerd/log v0.1.0 // indirect
github.com/coreos/go-oidc/v3 v3.17.0 // indirect
github.com/cyphar/filepath-securejoin v0.4.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/distribution/reference v0.6.0 // indirect
Expand All @@ -73,7 +74,7 @@ require (
github.com/fxamacker/cbor/v2 v2.9.0 // indirect
github.com/ghodss/yaml v1.0.0 // indirect
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
github.com/go-jose/go-jose/v4 v4.0.5 // indirect
github.com/go-jose/go-jose/v4 v4.1.3 // indirect
github.com/go-logr/logr v1.4.2 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/go-openapi/jsonpointer v0.21.0 // indirect
Expand Down
Loading
Loading