Skip to content

Commit

Permalink
Add v0.16.0 changelog (#182)
Browse files Browse the repository at this point in the history
  • Loading branch information
ewanharris authored Mar 15, 2023
1 parent 3f73421 commit de0ad5d
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Change Log

<a name="v0.16.0"></a>

## [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))


<a name="v0.15.1"></a>

## [v0.15.1](https://github.com/auth0/go-auth0/tree/v0.15.1) (2023-01-30)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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
Expand Down

0 comments on commit de0ad5d

Please sign in to comment.