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

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

## v1.0.0

### [1.0.0](https://github.com/openfga/dotnet-sdk/compare/v0.9.0...v1.0.0) (2026-01-26)
Comment thread
SoulPancake marked this conversation as resolved.
Outdated

- feat: add support for [StreamedListObjects](https://openfga.dev/api/service#/Relationship%20Queries/StreamedListObjects). See [documentation](#streamed-list-objects)
- feat: add support for an interface on the client (#168)

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Fix invalid documentation link fragment.

The documentation link points to #streamed-list-objects, which isn’t defined in the changelog, so markdownlint flags it. Point it to the README section (or add a valid anchor).

✏️ Suggested fix
-- feat: add support for [StreamedListObjects](https://openfga.dev/api/service#/Relationship%20Queries/StreamedListObjects). See [documentation](`#streamed-list-objects`)
+- feat: add support for [StreamedListObjects](https://openfga.dev/api/service#/Relationship%20Queries/StreamedListObjects). See [documentation](README.md#streamed-list-objects)
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
## [Unreleased](https://github.com/openfga/dotnet-sdk/compare/v1.0.0...HEAD)
## v1.0.0
### [1.0.0](https://github.com/openfga/dotnet-sdk/compare/v0.9.0...v1.0.0) (2026-01-26)
- feat: add support for [StreamedListObjects](https://openfga.dev/api/service#/Relationship%20Queries/StreamedListObjects). See [documentation](#streamed-list-objects)
- feat: add support for an interface on the client (#168)
## [Unreleased](https://github.com/openfga/dotnet-sdk/compare/v1.0.0...HEAD)
## v1.0.0
### [1.0.0](https://github.com/openfga/dotnet-sdk/compare/v0.9.0...v1.0.0) (2026-01-26)
- feat: add support for [StreamedListObjects](https://openfga.dev/api/service#/Relationship%20Queries/StreamedListObjects). See [documentation](README.md#streamed-list-objects)
- feat: add support for an interface on the client (`#168`)
🧰 Tools
🪛 markdownlint-cli2 (0.18.1)

9-9: Link fragments should be valid

(MD051, link-fragments)

🤖 Prompt for AI Agents
In `@CHANGELOG.md` around lines 3 - 10, Update the broken documentation link in
CHANGELOG.md: replace the anchor target "#streamed-list-objects" used by the
[documentation] link (in the v1.0.0 entry) with a valid target—either point it
to the README section that documents StreamedListObjects (e.g., use the README
anchor or absolute README.md#streamed-list-objects) or add a corresponding
"Streamed List Objects" section anchor to the changelog; ensure the link text
[documentation] remains and the fragment/URL matches an actual header id.


## v0.9.0

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.9.0"><PrivateAssets>all</PrivateAssets></PackageReference>
<PackageReference Include="OpenFga.Sdk" Version="1.0.0"><PrivateAssets>all</PrivateAssets></PackageReference>
</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.9.0";
public const string SdkVersion = "1.0.0";

/// <summary>
/// User agent used in HTTP requests.
/// </summary>
public const string UserAgent = "openfga-sdk dotnet/0.9.0";
public const string UserAgent = "openfga-sdk dotnet/1.0.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.9.0</Version>
<Version>1.0.0</Version>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\OpenFga.Sdk.xml</DocumentationFile>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
Expand Down
Loading