diff --git a/CHANGELOG.md b/CHANGELOG.md index 86129a4f..535e514f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Change Log + + +## [v0.16.0](https://github.com/auth0/go-auth0/tree/v0.16.0) (2023-03-15) + +[Full Changelog](https://github.com/auth0/go-auth0/compare/v0.15.1...v0.16.0) + +### Added + +- Introduce sending client information with requests ([#164](https://github.com/auth0/go-auth0/pull/164)) +- Added support for `Ping Federate` connection ([#175](https://github.com/auth0/go-auth0/pull/175)) +- Added support for Factor Management endpoints ([#176](https://github.com/auth0/go-auth0/pull/176)) +- Added support for setting `disable_self_service_change_password` on database connections ([#178](https://github.com/auth0/go-auth0/pull/178)) + +### Fixed + +- Fixed issue when decoding `ConnectionOptionsGoogleOAuth2` with `allowed_audiences` set as an empty string ([#174](https://github.com/auth0/go-auth0/pull/174)) +- Fixed support for checkpoint pagination ([#179](https://github.com/auth0/go-auth0/pull/179)) + + ## [v0.15.1](https://github.com/auth0/go-auth0/tree/v0.15.1) (2023-01-30) diff --git a/README.md b/README.md index be854455..e2ceadf7 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ func main() { management.WithClientCredentials(clientID, clientSecret), ) if err != nil { - log.Fatal("failed to initialize the auth0 management API client: %w", err) + log.Fatalf("failed to initialize the auth0 management API client: %+v", err) } // Now we can interact with the Auth0 Management API. @@ -83,7 +83,7 @@ func main() { // to the client ID on the same client object. err = auth0API.Client.Create(client) if err != nil { - log.Fatal("failed to create a new client: %w", err) + log.Fatalf("failed to create a new client: %+v", err) } // Make use of the getter functions to safely access