Skip to content
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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.10.0"
".": "0.10.1"
}
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## [0.10.1](https://github.com/openfga/dotnet-sdk/compare/v0.10.0...v0.10.1) (2026-05-14)

Comment thread
SoulPancake marked this conversation as resolved.

### Added

* batch check fallback to client level authmodel ID ([#199](https://github.com/openfga/dotnet-sdk/issues/199)) ([733c4c3](https://github.com/openfga/dotnet-sdk/commit/733c4c3438bc899643c8755fb4ed3e5085b86a5a))

### Fixed

* lock token exchange flow so at most one can be active at the same time ([#213](https://github.com/openfga/dotnet-sdk/issues/213)) ([35d10f4](https://github.com/openfga/dotnet-sdk/commit/35d10f40c5774bd641c0f049d49daf7c30aa642f))
Comment thread
SoulPancake marked this conversation as resolved.


## v0.10.0

### [0.10.0](https://github.com/openfga/dotnet-sdk/compare/v0.9.1...v0.10.0) (2026-03-24)
Expand Down
2 changes: 1 addition & 1 deletion example/Example1/Example1.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<!-- To target the released version, uncomment this section -->

<ItemGroup>
<PackageReference Include="OpenFga.Sdk" Version="0.10.0"><PrivateAssets>all</PrivateAssets></PackageReference><!-- x-release-please-version -->
<PackageReference Include="OpenFga.Sdk" Version="0.10.1"><PrivateAssets>all</PrivateAssets></PackageReference><!-- x-release-please-version -->
</ItemGroup>

<!-- To target the local build, use project reference -->
Expand Down
4 changes: 2 additions & 2 deletions src/OpenFga.Sdk/Constants/FgaConstants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ public static class FgaConstants {
/// <summary>
/// Version of the OpenFGA .NET SDK.
/// </summary>
public const string SdkVersion = "0.10.0"; // x-release-please-version
public const string SdkVersion = "0.10.1"; // x-release-please-version

/// <summary>
/// User agent used in HTTP requests.
/// </summary>
public const string UserAgent = "openfga-sdk dotnet/0.10.0"; // x-release-please-version
public const string UserAgent = "openfga-sdk dotnet/0.10.1"; // x-release-please-version

/// <summary>
/// Example API domain for documentation/tests.
Expand Down
2 changes: 1 addition & 1 deletion src/OpenFga.Sdk/OpenFga.Sdk.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<Description>.NET SDK for OpenFGA</Description>
<Copyright>OpenFGA</Copyright>
<RootNamespace>OpenFga.Sdk</RootNamespace>
<Version>0.10.0</Version><!-- x-release-please-version -->
<Version>0.10.1</Version><!-- x-release-please-version -->
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\OpenFga.Sdk.xml</DocumentationFile>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
Expand Down
Loading