Skip to content

Commit

Permalink
Release 7.9.0 (#516)
Browse files Browse the repository at this point in the history
* Generate docs

* Update changelog

* Bump version
  • Loading branch information
frederikprijck authored Aug 24, 2021
1 parent 69b28a5 commit 8558543
Show file tree
Hide file tree
Showing 48 changed files with 5,165 additions and 1,536 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Change Log

## [release-7.9.0](https://github.com/auth0/auth0.net/tree/release-7.9.0) (2021-08-24)
[Full Changelog](https://github.com/auth0/auth0.net/compare/release-7.8.1...release-7.9.0)

**Added**
- Add cancellation token support [\#513](https://github.com/auth0/auth0.net/pull/513) ([hawxy](https://github.com/hawxy))
- Implement automatic rate-limit handling [\#512](https://github.com/auth0/auth0.net/pull/512) ([frederikprijck](https://github.com/frederikprijck))
- Add connection property to OrganizationConnection [\#511](https://github.com/auth0/auth0.net/pull/511) ([frederikprijck](https://github.com/frederikprijck))
- Update pagination interface to support 'from' and 'take' checkpoint pagination parameters [\#507](https://github.com/auth0/auth0.net/pull/514) ([evansims](https://github.com/evansims))

**Fixed**
- GetAllMemberRolesAsync should return a list of Role instances [\#514](https://github.com/auth0/auth0.net/pull/514) ([frederikprijck](https://github.com/frederikprijck))
- Ensure CustomDomainVerification.Methods can be serialized [\#509](https://github.com/auth0/auth0.net/pull/509) ([frederikprijck](https://github.com/frederikprijck))

**Note**: In the situation where you are providing your own implementation for `IManagementConnection` or `IAuthenticationConnection`, upgrading to `7.9.0` will require changing your implementations to also include the optional `CancellationToken` parameters.

## [release-7.8.1](https://github.com/auth0/auth0.net/tree/release-7.8.1) (2021-07-07)
[Full Changelog](https://github.com/auth0/auth0.net/compare/release-7.8.0...release-7.8.1)

Expand Down
4 changes: 2 additions & 2 deletions build/common.props
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
<PropertyGroup>
<LangVersion>7.1</LangVersion>
<Major>7</Major>
<Minor>8</Minor>
<Revision>1</Revision>
<Minor>9</Minor>
<Revision>0</Revision>
<Suffix/>
</PropertyGroup>
<PropertyGroup>
Expand Down
160 changes: 125 additions & 35 deletions docs/api/Auth0.AuthenticationApi.AuthenticationApiClient.html

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -219,14 +219,14 @@ <h5 class="parameters">Parameters</h5>
</tbody>
</table>
<a id="Auth0_AuthenticationApi_HttpClientAuthenticationConnection_GetAsync_" data-uid="Auth0.AuthenticationApi.HttpClientAuthenticationConnection.GetAsync*"></a>
<h4 id="Auth0_AuthenticationApi_HttpClientAuthenticationConnection_GetAsync__1_System_Uri_System_Collections_Generic_IDictionary_System_String_System_String__" data-uid="Auth0.AuthenticationApi.HttpClientAuthenticationConnection.GetAsync``1(System.Uri,System.Collections.Generic.IDictionary{System.String,System.String})">GetAsync&lt;T&gt;(Uri, IDictionary&lt;String, String&gt;)</h4>
<h4 id="Auth0_AuthenticationApi_HttpClientAuthenticationConnection_GetAsync__1_System_Uri_System_Collections_Generic_IDictionary_System_String_System_String__System_Threading_CancellationToken_" data-uid="Auth0.AuthenticationApi.HttpClientAuthenticationConnection.GetAsync``1(System.Uri,System.Collections.Generic.IDictionary{System.String,System.String},System.Threading.CancellationToken)">GetAsync&lt;T&gt;(Uri, IDictionary&lt;String, String&gt;, CancellationToken)</h4>
<div class="markdown level1 summary"><p>Send a HTTP GET request to the given <code data-dev-comment-type="paramref" class="paramref">uri</code> with optional <code data-dev-comment-type="paramref" class="paramref">headers</code> as
an asyncronous operation.</p>
an asynchronous operation.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public Task&lt;T&gt; GetAsync&lt;T&gt;(Uri uri, IDictionary&lt;string, string&gt; headers = null)</code></pre>
<pre><code class="lang-csharp hljs">public Task&lt;T&gt; GetAsync&lt;T&gt;(Uri uri, IDictionary&lt;string, string&gt; headers = null, CancellationToken cancellationToken = default(CancellationToken))</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
Expand All @@ -248,6 +248,12 @@ <h5 class="parameters">Parameters</h5>
<td><span class="xref">System.Collections.Generic.IDictionary</span>&lt;<span class="xref">System.String</span>, <span class="xref">System.String</span>&gt;</td>
<td><span class="parametername">headers</span></td>
<td><p>Optional dictionary containing additional headers to be sent.</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>
Expand Down Expand Up @@ -285,13 +291,13 @@ <h5 class="typeParameters">Type Parameters</h5>
</tbody>
</table>
<a id="Auth0_AuthenticationApi_HttpClientAuthenticationConnection_SendAsync_" data-uid="Auth0.AuthenticationApi.HttpClientAuthenticationConnection.SendAsync*"></a>
<h4 id="Auth0_AuthenticationApi_HttpClientAuthenticationConnection_SendAsync__1_System_Net_Http_HttpMethod_System_Uri_System_Object_System_Collections_Generic_IDictionary_System_String_System_String__" data-uid="Auth0.AuthenticationApi.HttpClientAuthenticationConnection.SendAsync``1(System.Net.Http.HttpMethod,System.Uri,System.Object,System.Collections.Generic.IDictionary{System.String,System.String})">SendAsync&lt;T&gt;(HttpMethod, Uri, Object, IDictionary&lt;String, String&gt;)</h4>
<h4 id="Auth0_AuthenticationApi_HttpClientAuthenticationConnection_SendAsync__1_System_Net_Http_HttpMethod_System_Uri_System_Object_System_Collections_Generic_IDictionary_System_String_System_String__System_Threading_CancellationToken_" data-uid="Auth0.AuthenticationApi.HttpClientAuthenticationConnection.SendAsync``1(System.Net.Http.HttpMethod,System.Uri,System.Object,System.Collections.Generic.IDictionary{System.String,System.String},System.Threading.CancellationToken)">SendAsync&lt;T&gt;(HttpMethod, Uri, Object, IDictionary&lt;String, String&gt;, CancellationToken)</h4>
<div class="markdown level1 summary"><p>Send an HTTP request to <code data-dev-comment-type="paramref" class="paramref">uri</code> using the HTTP <code data-dev-comment-type="paramref" class="paramref">method</code> as an asynchronous operation.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public Task&lt;T&gt; SendAsync&lt;T&gt;(HttpMethod method, Uri uri, object body, IDictionary&lt;string, string&gt; headers = null)</code></pre>
<pre><code class="lang-csharp hljs">public Task&lt;T&gt; SendAsync&lt;T&gt;(HttpMethod method, Uri uri, object body, IDictionary&lt;string, string&gt; headers = null, CancellationToken cancellationToken = default(CancellationToken))</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
Expand Down Expand Up @@ -325,6 +331,12 @@ <h5 class="parameters">Parameters</h5>
<td><span class="xref">System.Collections.Generic.IDictionary</span>&lt;<span class="xref">System.String</span>, <span class="xref">System.String</span>&gt;</td>
<td><span class="parametername">headers</span></td>
<td><p>Optional dictionary containing additional headers to be sent.</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>
Expand Down
Loading

0 comments on commit 8558543

Please sign in to comment.