Skip to content

Commit

Permalink
Release 7.11.0 (#529)
Browse files Browse the repository at this point in the history
* Prepare 7.11.0

* Update docs
  • Loading branch information
frederikprijck authored Oct 12, 2021
1 parent 4982478 commit 2c3468c
Show file tree
Hide file tree
Showing 26 changed files with 2,837 additions and 38 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Change Log

## [release-7.11.0](https://github.com/auth0/auth0.net/tree/release-7.11.0) (2021-10-01)
[Full Changelog](https://github.com/auth0/auth0.net/compare/release-7.10.0...release-7.11.0)

**Added**
- Add Keys Endpoints [\#527](https://github.com/auth0/auth0.net/pull/527) ([colinbobolin](https://github.com/colinbobolin))
- Added Prompt Client to Management API SDK [\#522](https://github.com/auth0/auth0.net/pull/522) ([hakuna-matata-in](https://github.com/hakuna-matata-in))

**Changed**
- [SDK-2548] Support unpaginated requests for some endpoints [\#525](https://github.com/auth0/auth0.net/pull/525) ([frederikprijck](https://github.com/frederikprijck))

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

Expand Down
2 changes: 1 addition & 1 deletion build/common.props
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<PropertyGroup>
<LangVersion>7.1</LangVersion>
<Major>7</Major>
<Minor>10</Minor>
<Minor>11</Minor>
<Revision>0</Revision>
<Suffix/>
</PropertyGroup>
Expand Down
2 changes: 2 additions & 0 deletions docs/api/Auth0.ManagementApi.Clients.BaseClient.html
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,11 @@ <h5>Inheritance</h5>
<div class="level2"><a class="xref" href="Auth0.ManagementApi.Clients.GuardianClient.html">GuardianClient</a></div>
<div class="level2"><a class="xref" href="Auth0.ManagementApi.Clients.HooksClient.html">HooksClient</a></div>
<div class="level2"><a class="xref" href="Auth0.ManagementApi.Clients.JobsClient.html">JobsClient</a></div>
<div class="level2"><a class="xref" href="Auth0.ManagementApi.Clients.KeysClient.html">KeysClient</a></div>
<div class="level2"><a class="xref" href="Auth0.ManagementApi.Clients.LogsClient.html">LogsClient</a></div>
<div class="level2"><a class="xref" href="Auth0.ManagementApi.Clients.LogStreamsClient.html">LogStreamsClient</a></div>
<div class="level2"><a class="xref" href="Auth0.ManagementApi.Clients.OrganizationsClient.html">OrganizationsClient</a></div>
<div class="level2"><a class="xref" href="Auth0.ManagementApi.Clients.PromptsClient.html">PromptsClient</a></div>
<div class="level2"><a class="xref" href="Auth0.ManagementApi.Clients.ResourceServersClient.html">ResourceServersClient</a></div>
<div class="level2"><a class="xref" href="Auth0.ManagementApi.Clients.RolesClient.html">RolesClient</a></div>
<div class="level2"><a class="xref" href="Auth0.ManagementApi.Clients.RulesClient.html">RulesClient</a></div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ <h4 id="Auth0_ManagementApi_Clients_ClientGrantsClient_GetAllAsync_Auth0_Managem
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public Task&lt;IPagedList&lt;ClientGrant&gt;&gt; GetAllAsync(GetClientGrantsRequest request, PaginationInfo pagination, CancellationToken cancellationToken = default(CancellationToken))</code></pre>
<pre><code class="lang-csharp hljs">public Task&lt;IPagedList&lt;ClientGrant&gt;&gt; GetAllAsync(GetClientGrantsRequest request, PaginationInfo pagination = null, CancellationToken cancellationToken = default(CancellationToken))</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
Expand Down
2 changes: 1 addition & 1 deletion docs/api/Auth0.ManagementApi.Clients.ClientsClient.html
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ <h4 id="Auth0_ManagementApi_Clients_ClientsClient_GetAllAsync_Auth0_ManagementAp
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public Task&lt;IPagedList&lt;Client&gt;&gt; GetAllAsync(GetClientsRequest request, PaginationInfo pagination, CancellationToken cancellationToken = default(CancellationToken))</code></pre>
<pre><code class="lang-csharp hljs">public Task&lt;IPagedList&lt;Client&gt;&gt; GetAllAsync(GetClientsRequest request, PaginationInfo pagination = null, CancellationToken cancellationToken = default(CancellationToken))</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ <h4 id="Auth0_ManagementApi_Clients_ConnectionsClient_GetAllAsync_Auth0_Manageme
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public Task&lt;IPagedList&lt;Connection&gt;&gt; GetAllAsync(GetConnectionsRequest request, PaginationInfo pagination, CancellationToken cancellationToken = default(CancellationToken))</code></pre>
<pre><code class="lang-csharp hljs">public Task&lt;IPagedList&lt;Connection&gt;&gt; GetAllAsync(GetConnectionsRequest request, PaginationInfo pagination = null, CancellationToken cancellationToken = default(CancellationToken))</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ <h4 id="Auth0_ManagementApi_Clients_DeviceCredentialsClient_GetAllAsync_Auth0_Ma
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public Task&lt;IPagedList&lt;DeviceCredential&gt;&gt; GetAllAsync(GetDeviceCredentialsRequest request, PaginationInfo pagination, CancellationToken cancellationToken = default(CancellationToken))</code></pre>
<pre><code class="lang-csharp hljs">public Task&lt;IPagedList&lt;DeviceCredential&gt;&gt; GetAllAsync(GetDeviceCredentialsRequest request, PaginationInfo pagination = null, CancellationToken cancellationToken = default(CancellationToken))</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
Expand Down
2 changes: 1 addition & 1 deletion docs/api/Auth0.ManagementApi.Clients.HooksClient.html
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ <h4 id="Auth0_ManagementApi_Clients_HooksClient_GetAllAsync_Auth0_ManagementApi_
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public Task&lt;IPagedList&lt;Hook&gt;&gt; GetAllAsync(GetHooksRequest request, PaginationInfo pagination, CancellationToken cancellationToken = default(CancellationToken))</code></pre>
<pre><code class="lang-csharp hljs">public Task&lt;IPagedList&lt;Hook&gt;&gt; GetAllAsync(GetHooksRequest request, PaginationInfo pagination = null, CancellationToken cancellationToken = default(CancellationToken))</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
Expand Down
Loading

0 comments on commit 2c3468c

Please sign in to comment.