Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog

## [Unreleased](https://github.com/openfga/dotnet-sdk/compare/v0.8.0...HEAD)
## [Unreleased](https://github.com/openfga/dotnet-sdk/compare/v0.9.0...HEAD)

## v0.9.0

### [0.9.0](https://github.com/openfga/dotnet-sdk/compare/v0.7.0...v0.8.0) (2025-12-01)
Comment thread
SoulPancake marked this conversation as resolved.
Outdated

### Added
- feat: add server-side `BatchCheck()` method using `/batch-check` API endpoint
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.8.0";
public const string SdkVersion = "0.9.0";

/// <summary>
/// User agent used in HTTP requests.
/// </summary>
public const string UserAgent = "openfga-sdk dotnet/0.8.0";
public const string UserAgent = "openfga-sdk dotnet/0.9.0";

/// <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.8.0</Version>
<Version>0.9.0</Version>
Comment thread
SoulPancake marked this conversation as resolved.
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\OpenFga.Sdk.xml</DocumentationFile>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
Expand Down
Loading