Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 95f2d06d78 | |||
| 20bd659c63 | |||
| 3fd070fbf3 | |||
| 94959bda94 | |||
| 920a6c1349 | |||
| 2cf360533e |
@@ -2,6 +2,19 @@
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
## [0.7.4] - 2026-05-04
|
||||
|
||||
### 🐛 Bug Fixes
|
||||
|
||||
- *(deps)* Update module github.com/lestrrat-go/jwx/v4 to v4.0.1 (#306)
|
||||
|
||||
### ⚙️ Miscellaneous Tasks
|
||||
|
||||
- *(deps)* Update golang:1.26 docker digest to f715906 (#301)
|
||||
- *(deps)* Update golang:1.26 docker digest to 1e598ea (#303)
|
||||
- *(deps)* Update golang:1.26 docker digest to b54cbf5 (#305)
|
||||
- Update import paths and registry refs after move to gitea (#307)
|
||||
|
||||
## [0.7.3] - 2026-04-22
|
||||
|
||||
### 🐛 Bug Fixes
|
||||
|
||||
+1
-5
@@ -1,11 +1,7 @@
|
||||
FROM golang:1.26@sha256:46d487a9216d9d3563ae7be4ee0f6a4aa9a3f6befdf62c384fd5118a7e254c4d AS build
|
||||
|
||||
ARG GITLAB_USER
|
||||
ARG GITLAB_TOKEN
|
||||
FROM golang:1.26@sha256:b54cbf583d390341599d7bcbc062425c081105cc5ef6d170ced98ef9d047c716 AS build
|
||||
|
||||
WORKDIR /build
|
||||
ENV CGO_ENABLED=0
|
||||
ENV GOPRIVATE=gitlab.com/unboundsoftware/*
|
||||
ENV GOEXPERIMENT=jsonv2
|
||||
|
||||
COPY go.mod go.sum ./
|
||||
|
||||
@@ -15,9 +15,9 @@ import (
|
||||
"github.com/alecthomas/kong"
|
||||
"github.com/rs/cors"
|
||||
|
||||
"gitlab.com/unboundsoftware/auth0mock/auth"
|
||||
"gitlab.com/unboundsoftware/auth0mock/handlers"
|
||||
"gitlab.com/unboundsoftware/auth0mock/store"
|
||||
"git.unbound.se/unboundsoftware/auth0mock/auth"
|
||||
"git.unbound.se/unboundsoftware/auth0mock/handlers"
|
||||
"git.unbound.se/unboundsoftware/auth0mock/store"
|
||||
)
|
||||
|
||||
var (
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
module gitlab.com/unboundsoftware/auth0mock
|
||||
module git.unbound.se/unboundsoftware/auth0mock
|
||||
|
||||
go 1.26.0
|
||||
|
||||
require (
|
||||
github.com/alecthomas/kong v1.15.0
|
||||
github.com/google/uuid v1.6.0
|
||||
github.com/lestrrat-go/jwx/v4 v4.0.0
|
||||
github.com/lestrrat-go/jwx/v4 v4.0.1
|
||||
github.com/rs/cors v1.11.1
|
||||
)
|
||||
|
||||
|
||||
@@ -12,8 +12,8 @@ github.com/hexops/gotextdiff v1.0.3 h1:gitA9+qJrrTCsiCl7+kh75nPqQt1cx4ZkudSTLoUq
|
||||
github.com/hexops/gotextdiff v1.0.3/go.mod h1:pSWU5MAI3yDq+fZBTazCSJysOMbxWL1BSow5/V2vxeg=
|
||||
github.com/lestrrat-go/dsig v1.3.0 h1:phjMOCXvYzhuIgn7Voe2rex8z166vGfxRxmqM25P9/Q=
|
||||
github.com/lestrrat-go/dsig v1.3.0/go.mod h1:RD2eOaidyPvpc7IJQoO3Qq52RWdy8ZcJs8lrOnoa1Kc=
|
||||
github.com/lestrrat-go/jwx/v4 v4.0.0 h1:r870BWSrLNaSErF5apqHSwF/mtgGgXT/H2G1dSI65xE=
|
||||
github.com/lestrrat-go/jwx/v4 v4.0.0/go.mod h1:F2a0rSyXsqLAL0orBZGOXrzQGv018Tx4eiEWWYR7Yzo=
|
||||
github.com/lestrrat-go/jwx/v4 v4.0.1 h1:E/pDfwunh7sRynGSjR80hgHjLgiVK/2san6Mb5Aycdw=
|
||||
github.com/lestrrat-go/jwx/v4 v4.0.1/go.mod h1:F2a0rSyXsqLAL0orBZGOXrzQGv018Tx4eiEWWYR7Yzo=
|
||||
github.com/lestrrat-go/option/v3 v3.0.0-alpha1 h1:dvdzLwm/Ba5CJUF3jQP7w/iNYSLfy7yyh9XXNa1WjxI=
|
||||
github.com/lestrrat-go/option/v3 v3.0.0-alpha1/go.mod h1:5KSg20dfsKkNJtjDmaQRLZVXuUrzuCCcz/gbDK0pfKk=
|
||||
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
|
||||
|
||||
@@ -4,7 +4,7 @@ import (
|
||||
"encoding/json"
|
||||
"net/http"
|
||||
|
||||
"gitlab.com/unboundsoftware/auth0mock/auth"
|
||||
"git.unbound.se/unboundsoftware/auth0mock/auth"
|
||||
)
|
||||
|
||||
// DiscoveryHandler handles OIDC discovery endpoints
|
||||
|
||||
@@ -7,7 +7,7 @@ import (
|
||||
"net/http"
|
||||
"strings"
|
||||
|
||||
"gitlab.com/unboundsoftware/auth0mock/store"
|
||||
"git.unbound.se/unboundsoftware/auth0mock/store"
|
||||
)
|
||||
|
||||
// ManagementHandler handles Auth0 Management API endpoints
|
||||
|
||||
+2
-2
@@ -9,8 +9,8 @@ import (
|
||||
"net/http"
|
||||
"net/url"
|
||||
|
||||
"gitlab.com/unboundsoftware/auth0mock/auth"
|
||||
"gitlab.com/unboundsoftware/auth0mock/store"
|
||||
"git.unbound.se/unboundsoftware/auth0mock/auth"
|
||||
"git.unbound.se/unboundsoftware/auth0mock/store"
|
||||
)
|
||||
|
||||
//go:embed templates/login.html
|
||||
|
||||
+2
-2
@@ -5,8 +5,8 @@ import (
|
||||
"log/slog"
|
||||
"net/http"
|
||||
|
||||
"gitlab.com/unboundsoftware/auth0mock/auth"
|
||||
"gitlab.com/unboundsoftware/auth0mock/store"
|
||||
"git.unbound.se/unboundsoftware/auth0mock/auth"
|
||||
"git.unbound.se/unboundsoftware/auth0mock/store"
|
||||
)
|
||||
|
||||
// SessionHandler handles session-related endpoints
|
||||
|
||||
+1
-1
@@ -9,7 +9,7 @@
|
||||
"kubernetes"
|
||||
],
|
||||
"matchPackageNames": [
|
||||
"registry.gitlab.com/unboundsoftware/auth0mock"
|
||||
"oci.unbound.se/unboundsoftware/auth0mock"
|
||||
],
|
||||
"enabled": false
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user