Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 7.22.0 #634

Merged
merged 1 commit into from
Jul 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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