diff --git a/README.md b/README.md index 1485e02..fbbb7b1 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ This library follows the [same support policy as Go](https://go.dev/doc/devel/release#policy). The last two major Go releases are actively supported and compatibility issues will be fixed. While you may find that older versions of Go may work, we will not actively test and fix compatibility issues with these versions. -- Go 1.19+ +- Go 1.22+ ### Installation @@ -159,4 +159,4 @@ Please do not report security vulnerabilities on the public Github issue tracker

Auth0 is an easy to implement, adaptable authentication and authorization platform.
To learn more checkout Why Auth0?

-

This project is licensed under the MIT license. See the LICENSE file for more info.

\ No newline at end of file +

This project is licensed under the MIT license. See the LICENSE file for more info.

diff --git a/examples/echo-example/go.mod b/examples/echo-example/go.mod index 90bf703..8cd76ba 100644 --- a/examples/echo-example/go.mod +++ b/examples/echo-example/go.mod @@ -1,6 +1,6 @@ module example.com/echo -go 1.20 +go 1.23 require ( github.com/auth0/go-jwt-middleware/v2 v2.1.0 diff --git a/examples/gin-example/go.mod b/examples/gin-example/go.mod index 47ed0a0..07ce463 100644 --- a/examples/gin-example/go.mod +++ b/examples/gin-example/go.mod @@ -1,6 +1,6 @@ module example.com/gin -go 1.19 +go 1.23 require ( github.com/auth0/go-jwt-middleware/v2 v2.1.0 diff --git a/examples/http-example/go.mod b/examples/http-example/go.mod index d0974ad..3217ddc 100644 --- a/examples/http-example/go.mod +++ b/examples/http-example/go.mod @@ -1,6 +1,6 @@ module example.com/http -go 1.19 +go 1.23 require ( github.com/auth0/go-jwt-middleware/v2 v2.1.0 diff --git a/examples/http-jwks-example/go.mod b/examples/http-jwks-example/go.mod index 5b7c874..3d37ad2 100644 --- a/examples/http-jwks-example/go.mod +++ b/examples/http-jwks-example/go.mod @@ -1,6 +1,6 @@ module example.com/http-jwks -go 1.19 +go 1.23 require ( github.com/auth0/go-jwt-middleware/v2 v2.1.0 diff --git a/examples/iris-example/go.mod b/examples/iris-example/go.mod index 947c8ee..ed2caed 100644 --- a/examples/iris-example/go.mod +++ b/examples/iris-example/go.mod @@ -1,8 +1,6 @@ module example.com/iris -go 1.21 - -toolchain go1.21.3 +go 1.23 require ( github.com/auth0/go-jwt-middleware/v2 v2.1.0 diff --git a/go.mod b/go.mod index 1ffc23d..7056740 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/auth0/go-jwt-middleware/v2 -go 1.19 +go 1.22 require ( github.com/google/go-cmp v0.6.0