Skip to content

Commit

Permalink
Release 7.20.0 (#618)
Browse files Browse the repository at this point in the history
  • Loading branch information
frederikprijck authored May 17, 2023
1 parent 5087458 commit e27eb60
Show file tree
Hide file tree
Showing 11 changed files with 504 additions and 9 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## [7.20.0](https://github.com/auth0/auth0.net/tree/7.20.0) (2023-05-16)
[Full Changelog](https://github.com/auth0/auth0.net/compare/7.19.1...7.20.0)

**Added**
- Added revoke refresh token endpoint support [\#617](https://github.com/auth0/auth0.net/pull/617) ([msmolka](https://github.com/msmolka))

## [7.19.1](https://github.com/auth0/auth0.net/tree/7.19.1) (2023-04-25)
[Full Changelog](https://github.com/auth0/auth0.net/compare/7.19.0...7.19.1)

Expand Down
2 changes: 1 addition & 1 deletion build/common.props
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
</PropertyGroup>
<PropertyGroup>
<LangVersion>7.1</LangVersion>
<Version>7.19.1</Version>
<Version>7.20.0</Version>
<Suffix/>
</PropertyGroup>
<PropertyGroup>
Expand Down
49 changes: 49 additions & 0 deletions docs/api/Auth0.AuthenticationApi.AuthenticationApiClient.html
Original file line number Diff line number Diff line change
Expand Up @@ -851,6 +851,55 @@ <h5 class="returns">Returns</h5>
<h5 id="Auth0_AuthenticationApi_AuthenticationApiClient_GetUserInfoAsync_System_String_System_Threading_CancellationToken__remarks">Remarks</h5>
<div class="markdown level1 remarks"><p>Information included in the response depends on the scopes initially granted.</p>
</div>
<a id="Auth0_AuthenticationApi_AuthenticationApiClient_RevokeRefreshTokenAsync_" data-uid="Auth0.AuthenticationApi.AuthenticationApiClient.RevokeRefreshTokenAsync*"></a>
<h4 id="Auth0_AuthenticationApi_AuthenticationApiClient_RevokeRefreshTokenAsync_Auth0_AuthenticationApi_Models_RevokeRefreshTokenRequest_System_Threading_CancellationToken_" data-uid="Auth0.AuthenticationApi.AuthenticationApiClient.RevokeRefreshTokenAsync(Auth0.AuthenticationApi.Models.RevokeRefreshTokenRequest,System.Threading.CancellationToken)">RevokeRefreshTokenAsync(RevokeRefreshTokenRequest, CancellationToken)</h4>
<div class="markdown level1 summary"><p>Revokes refresh token provided in request.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public Task RevokeRefreshTokenAsync(RevokeRefreshTokenRequest request, CancellationToken cancellationToken = default(CancellationToken))</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Auth0.AuthenticationApi.Models.RevokeRefreshTokenRequest.html">RevokeRefreshTokenRequest</a></td>
<td><span class="parametername">request</span></td>
<td><p><a class="xref" href="Auth0.AuthenticationApi.Models.RevokeRefreshTokenRequest.html">RevokeRefreshTokenRequest</a> containing Refresh Token and associated parameters.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Threading.CancellationToken</span></td>
<td><span class="parametername">cancellationToken</span></td>
<td><p>The cancellation token to cancel operation.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Threading.Tasks.Task</span></td>
<td><p><span class="xref">System.Threading.Tasks.Task</span> representing the async operation.</p>
</td>
</tr>
</tbody>
</table>
<a id="Auth0_AuthenticationApi_AuthenticationApiClient_SignupUserAsync_" data-uid="Auth0.AuthenticationApi.AuthenticationApiClient.SignupUserAsync*"></a>
<h4 id="Auth0_AuthenticationApi_AuthenticationApiClient_SignupUserAsync_Auth0_AuthenticationApi_Models_SignupUserRequest_System_Threading_CancellationToken_" data-uid="Auth0.AuthenticationApi.AuthenticationApiClient.SignupUserAsync(Auth0.AuthenticationApi.Models.SignupUserRequest,System.Threading.CancellationToken)">SignupUserAsync(SignupUserRequest, CancellationToken)</h4>
<div class="markdown level1 summary"><p>Creates a new user given the user details specified.</p>
Expand Down
49 changes: 49 additions & 0 deletions docs/api/Auth0.AuthenticationApi.IAuthenticationApiClient.html
Original file line number Diff line number Diff line change
Expand Up @@ -681,6 +681,55 @@ <h5 class="returns">Returns</h5>
<h5 id="Auth0_AuthenticationApi_IAuthenticationApiClient_GetUserInfoAsync_System_String_System_Threading_CancellationToken__remarks">Remarks</h5>
<div class="markdown level1 remarks"><p>Information included in the response depends on the scopes initially granted.</p>
</div>
<a id="Auth0_AuthenticationApi_IAuthenticationApiClient_RevokeRefreshTokenAsync_" data-uid="Auth0.AuthenticationApi.IAuthenticationApiClient.RevokeRefreshTokenAsync*"></a>
<h4 id="Auth0_AuthenticationApi_IAuthenticationApiClient_RevokeRefreshTokenAsync_Auth0_AuthenticationApi_Models_RevokeRefreshTokenRequest_System_Threading_CancellationToken_" data-uid="Auth0.AuthenticationApi.IAuthenticationApiClient.RevokeRefreshTokenAsync(Auth0.AuthenticationApi.Models.RevokeRefreshTokenRequest,System.Threading.CancellationToken)">RevokeRefreshTokenAsync(RevokeRefreshTokenRequest, CancellationToken)</h4>
<div class="markdown level1 summary"><p>Revokes refresh token provided in request.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">Task RevokeRefreshTokenAsync(RevokeRefreshTokenRequest request, CancellationToken cancellationToken = default(CancellationToken))</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Auth0.AuthenticationApi.Models.RevokeRefreshTokenRequest.html">RevokeRefreshTokenRequest</a></td>
<td><span class="parametername">request</span></td>
<td><p><a class="xref" href="Auth0.AuthenticationApi.Models.RevokeRefreshTokenRequest.html">RevokeRefreshTokenRequest</a> containing Refresh Token and associated parameters.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Threading.CancellationToken</span></td>
<td><span class="parametername">cancellationToken</span></td>
<td><p>The cancellation token to cancel operation.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Threading.Tasks.Task</span></td>
<td><p><span class="xref">System.Threading.Tasks.Task</span> representing the async operation.</p>
</td>
</tr>
</tbody>
</table>
<a id="Auth0_AuthenticationApi_IAuthenticationApiClient_SignupUserAsync_" data-uid="Auth0.AuthenticationApi.IAuthenticationApiClient.SignupUserAsync*"></a>
<h4 id="Auth0_AuthenticationApi_IAuthenticationApiClient_SignupUserAsync_Auth0_AuthenticationApi_Models_SignupUserRequest_System_Threading_CancellationToken_" data-uid="Auth0.AuthenticationApi.IAuthenticationApiClient.SignupUserAsync(Auth0.AuthenticationApi.Models.SignupUserRequest,System.Threading.CancellationToken)">SignupUserAsync(SignupUserRequest, CancellationToken)</h4>
<div class="markdown level1 summary"><p>Creates a new user given the user details specified.</p>
Expand Down
Loading

0 comments on commit e27eb60

Please sign in to comment.