Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Go Version from 1.19 to 1.22 #281

Merged
merged 3 commits into from
Aug 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -159,4 +159,4 @@ Please do not report security vulnerabilities on the public Github issue tracker

<p align="center">Auth0 is an easy to implement, adaptable authentication and authorization platform.<br />To learn more checkout <a href="https://auth0.com/why-auth0">Why Auth0?</a></p>

<p align="center">This project is licensed under the MIT license. See the <a href="./LICENSE.md"> LICENSE</a> file for more info.</p>
<p align="center">This project is licensed under the MIT license. See the <a href="./LICENSE.md"> LICENSE</a> file for more info.</p>
2 changes: 1 addition & 1 deletion examples/echo-example/go.mod
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/gin-example/go.mod
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/http-example/go.mod
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/http-jwks-example/go.mod
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 1 addition & 3 deletions examples/iris-example/go.mod
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Loading