Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit d4f086d

Browse files
authoredAug 23, 2024··
Update Go Version from 1.19 to 1.22 (#281)
1 parent 084ab8f commit d4f086d

File tree

7 files changed

+8
-10
lines changed

7 files changed

+8
-10
lines changed
 

‎README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
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.
2626

27-
- Go 1.19+
27+
- Go 1.22+
2828

2929
### Installation
3030

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

160160
<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>
161161

162-
<p align="center">This project is licensed under the MIT license. See the <a href="./LICENSE.md"> LICENSE</a> file for more info.</p>
162+
<p align="center">This project is licensed under the MIT license. See the <a href="./LICENSE.md"> LICENSE</a> file for more info.</p>

‎examples/echo-example/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module example.com/echo
22

3-
go 1.20
3+
go 1.23
44

55
require (
66
github.com/auth0/go-jwt-middleware/v2 v2.1.0

‎examples/gin-example/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module example.com/gin
22

3-
go 1.19
3+
go 1.23
44

55
require (
66
github.com/auth0/go-jwt-middleware/v2 v2.1.0

‎examples/http-example/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module example.com/http
22

3-
go 1.19
3+
go 1.23
44

55
require (
66
github.com/auth0/go-jwt-middleware/v2 v2.1.0

‎examples/http-jwks-example/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module example.com/http-jwks
22

3-
go 1.19
3+
go 1.23
44

55
require (
66
github.com/auth0/go-jwt-middleware/v2 v2.1.0

‎examples/iris-example/go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
module example.com/iris
22

3-
go 1.21
4-
5-
toolchain go1.21.3
3+
go 1.23
64

75
require (
86
github.com/auth0/go-jwt-middleware/v2 v2.1.0

‎go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/auth0/go-jwt-middleware/v2
22

3-
go 1.19
3+
go 1.22
44

55
require (
66
github.com/google/go-cmp v0.6.0

0 commit comments

Comments
 (0)
Please sign in to comment.