From 496bbe6c96b4c83fd2bca37b8894d95a087d6375 Mon Sep 17 00:00:00 2001 From: Kunal Dawar Date: Tue, 11 Mar 2025 18:50:54 +0530 Subject: [PATCH] Release v1.18.0 --- .version | 2 +- CHANGELOG.md | 15 +++++++++++++++ meta.go | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/.version b/.version index 07c3efad..f7201912 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -v1.17.0 +v1.18.0 diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f0f5438..8df27d3d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Change Log +## [v1.18.0](https://github.com/auth0/go-auth0/tree/v1.18.0) (2025-03-11) +[Full Changelog](https://github.com/auth0/go-auth0/compare/v1.17.0...v1.18.0) + +**Added** +- Add tenant OIDC logout configuration [\#517](https://github.com/auth0/go-auth0/pull/517) ([ErwinSteffens](https://github.com/ErwinSteffens)) +- Add `custom_headers` Attribute to `ConnectionOptionsOAuth2` in `ConnectionManager` [\#522](https://github.com/auth0/go-auth0/pull/522) ([developerkunal](https://github.com/developerkunal)) +- Add Support for `FCMv1 Server Credentials` in `MultiFactorPush` Sub-Manager of `GuardianManager` [\#512](https://github.com/auth0/go-auth0/pull/512) ([chrisnellis](https://github.com/chrisnellis)) + +**Changed** +- Bump Go version to 1.23 and upgrade golang.org/x/oauth2 to v0.28.0 [\#518](https://github.com/auth0/go-auth0/pull/518) ([developerkunal](https://github.com/developerkunal)) +- refactor: use a single client assertion audience [\#513](https://github.com/auth0/go-auth0/pull/513) ([panva](https://github.com/panva)) + +**Fixed** +- [GH-501] Fix Retry Mechanism to Handle Burst Limit Due to Clock Skew Issue [\#523](https://github.com/auth0/go-auth0/pull/523) ([developerkunal](https://github.com/developerkunal)) + ## [v1.17.0](https://github.com/auth0/go-auth0/tree/v1.17.0) (2025-02-14) [Full Changelog](https://github.com/auth0/go-auth0/compare/v1.16.0...v1.17.0) diff --git a/meta.go b/meta.go index 714ba1b0..78abaaa4 100644 --- a/meta.go +++ b/meta.go @@ -1,4 +1,4 @@ package auth0 // Version is the package version. -var Version = "1.17.0" +var Version = "1.18.0"