Skip to content

Commit

Permalink
Release 7.22.0 (#634)
Browse files Browse the repository at this point in the history
  • Loading branch information
frederikprijck authored Jul 19, 2023
1 parent 7634a96 commit 63fa81d
Show file tree
Hide file tree
Showing 17 changed files with 1,624 additions and 11 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## [7.22.0](https://github.com/auth0/auth0.net/tree/7.22.0) (2023-07-19)
[Full Changelog](https://github.com/auth0/auth0.net/compare/7.21.1...7.22.0)

**Added**
- Add Grants endpoint [\#633](https://github.com/auth0/auth0.net/pull/633) ([frederikprijck](https://github.com/frederikprijck))
- Support Organization Name [\#631](https://github.com/auth0/auth0.net/pull/631) ([frederikprijck](https://github.com/frederikprijck))

## [7.21.1](https://github.com/auth0/auth0.net/tree/7.21.1) (2023-07-03)
[Full Changelog](https://github.com/auth0/auth0.net/compare/7.21.0...7.21.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.21.1</Version>
<Version>7.22.0</Version>
<Suffix/>
</PropertyGroup>
<PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,12 @@ <h5 class="propertyValue">Property Value</h5>
</tr>
</tbody>
</table>
<h5 id="Auth0_AuthenticationApi_Models_AuthorizationCodeRequestBase_Organization_remarks">Remarks</h5>
<div class="markdown level1 remarks"><ul>
<li>If you provide an Organization ID (a string with the prefix <code>org_</code>), it will be validated against the <code>org_id</code> claim of your user&apos;s ID Token. The validation is case-sensitive.</li>
<li>If you provide an Organization Name (a string <em>without</em> the prefix <code>org_</code>), it will be validated against the <code>org_name</code> claim of your user&apos;s ID Token.The validation is case-insensitive.</li>
</ul>
</div>
<a id="Auth0_AuthenticationApi_Models_AuthorizationCodeRequestBase_RedirectUri_" data-uid="Auth0.AuthenticationApi.Models.AuthorizationCodeRequestBase.RedirectUri*"></a>
<h4 id="Auth0_AuthenticationApi_Models_AuthorizationCodeRequestBase_RedirectUri" data-uid="Auth0.AuthenticationApi.Models.AuthorizationCodeRequestBase.RedirectUri">RedirectUri</h4>
<div class="markdown level1 summary"><p>Redirect URI passed during the login process.</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,12 @@ <h5 class="propertyValue">Property Value</h5>
</tr>
</tbody>
</table>
<h5 id="Auth0_AuthenticationApi_Models_RefreshTokenRequest_Organization_remarks">Remarks</h5>
<div class="markdown level1 remarks"><ul>
<li>If you provide an Organization ID (a string with the prefix <code>org_</code>), it will be validated against the <code>org_id</code> claim of your user&apos;s ID Token. The validation is case-sensitive.</li>
<li>If you provide an Organization Name (a string <em>without</em> the prefix <code>org_</code>), it will be validated against the <code>org_name</code> claim of your user&apos;s ID Token.The validation is case-insensitive.</li>
</ul>
</div>
<a id="Auth0_AuthenticationApi_Models_RefreshTokenRequest_RefreshToken_" data-uid="Auth0.AuthenticationApi.Models.RefreshTokenRequest.RefreshToken*"></a>
<h4 id="Auth0_AuthenticationApi_Models_RefreshTokenRequest_RefreshToken" data-uid="Auth0.AuthenticationApi.Models.RefreshTokenRequest.RefreshToken">RefreshToken</h4>
<div class="markdown level1 summary"><p>A valid refresh token previously issued to the client.</p>
Expand Down
1 change: 1 addition & 0 deletions docs/api/Auth0.ManagementApi.Clients.BaseClient.html
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ <h5>Inheritance</h5>
<div class="level2"><a class="xref" href="Auth0.ManagementApi.Clients.DeviceCredentialsClient.html">DeviceCredentialsClient</a></div>
<div class="level2"><a class="xref" href="Auth0.ManagementApi.Clients.EmailProviderClient.html">EmailProviderClient</a></div>
<div class="level2"><a class="xref" href="Auth0.ManagementApi.Clients.EmailTemplatesClient.html">EmailTemplatesClient</a></div>
<div class="level2"><a class="xref" href="Auth0.ManagementApi.Clients.GrantsClient.html">GrantsClient</a></div>
<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>
Expand Down
Loading

0 comments on commit 63fa81d

Please sign in to comment.