Skip to content

release: v0.7.5#278

Merged
SoulPancake merged 4 commits intomainfrom
release/075
Feb 24, 2026
Merged

release: v0.7.5#278
SoulPancake merged 4 commits intomainfrom
release/075

Conversation

@SoulPancake
Copy link
Member

@SoulPancake SoulPancake commented Feb 23, 2026

Description

What problem is being solved?

How is it being solved?

What changes are made to solve it?

References

Review Checklist

  • I have clicked on "allow edits by maintainers".
  • I have added documentation for new/changed functionality in this PR or in a PR to openfga.dev [Provide a link to any relevant PRs in the references section above]
  • The correct base branch is being used, if not main
  • I have added tests to validate that the change in functionality is working as expected

Summary by CodeRabbit

  • New Features

    • Enhanced write execution performance with optimized concurrency handling
  • Chores

    • Bumped Go SDK version to v0.7.5
    • Updated OpenTelemetry instrumentation libraries to v1.40.0
    • Removed unused synchronization dependencies
    • Updated module manifests across all example projects

Copilot AI review requested due to automatic review settings February 23, 2026 16:46
@SoulPancake SoulPancake requested a review from a team as a code owner February 23, 2026 16:46
@SoulPancake SoulPancake changed the title Release/075 release: v0.7.5 Feb 23, 2026
@coderabbitai
Copy link

coderabbitai bot commented Feb 23, 2026

Important

Review skipped

Auto incremental reviews are disabled on this repository.

Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Use the checkbox below for a quick retry:

  • 🔍 Trigger review

Walkthrough

This pull request bumps the SDK version from v0.7.4 to v0.7.5 across the codebase. Changes include updating version constants, CHANGELOG.md with release notes, go.mod files with updated SDK and OpenTelemetry dependency versions (v1.39.0 to v1.40.0), and removal of the golang.org/x/sync dependency.

Changes

Cohort / File(s) Summary
Release Metadata
CHANGELOG.md, internal/constants/constants.go
Updated version references from v0.7.4 to v0.7.5; added changelog entry for feature (#249). Updated SdkVersion and UserAgent constants.
Root Module
go.mod
Removed direct dependency on golang.org/x/sync v0.19.0 from require block.
Example Modules
example/example1/go.mod, example/opentelemetry/go.mod, example/streamed_list_objects/go.mod
Updated openfga/go-sdk from v0.7.4 to v0.7.5 and OpenTelemetry packages (otel, otel/metric, otel/trace) from v1.39.0 to v1.40.0. Example streamed_list_objects module adds new local replace directive for go-sdk.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~12 minutes

Possibly related PRs

Suggested reviewers

  • rhamzeh
  • ewanharris
🚥 Pre-merge checks | ✅ 3
✅ Passed checks (3 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title 'release: v0.7.5' clearly and specifically describes the primary change—a version release bump from v0.7.4 to v0.7.5, which is confirmed by updates across CHANGELOG.md, constants, and multiple go.mod files.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch release/075

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

This PR is a release that bumps the OpenFGA Go SDK version from 0.7.4 to 0.7.5. The main change in this release is replacing errgroup with conc pool in the WriteExecute method, along with updating OpenTelemetry dependencies in example modules.

Changes:

  • Updated SDK version from 0.7.4 to 0.7.5 in constants
  • Removed golang.org/x/sync dependency (replaced by conc pool)
  • Updated OpenTelemetry dependencies from 1.39.0 to 1.40.0 in example modules
  • Added v0.7.5 release entry to CHANGELOG.md

Reviewed changes

Copilot reviewed 6 out of 7 changed files in this pull request and generated 1 comment.

Show a summary per file
File Description
internal/constants/constants.go Updated SDK version and user agent from 0.7.4 to 0.7.5
go.mod Removed golang.org/x/sync dependency (no longer needed after replacing errgroup with conc)
go.sum Removed golang.org/x/sync checksums
example/streamed_list_objects/go.mod Updated SDK version reference and OpenTelemetry dependencies
example/opentelemetry/go.mod Updated replace directive and OpenTelemetry dependencies (missing SDK version update)
example/example1/go.mod Updated SDK version reference and OpenTelemetry dependencies
CHANGELOG.md Added v0.7.5 release notes with reference to PR #249

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 3

🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In `@CHANGELOG.md`:
- Around line 7-8: The changelog section for "###
[0.7.5](https://github.com/openfga/go-sdk/compare/v0.7.4...v0.7.5) (2026-02-23)"
is missing a blank line before its bullet entry; edit the CHANGELOG.md and add a
single blank line between that "### [0.7.5]..." header and the following "-
feat: replace errgroup..." bullet so the formatting matches other version
sections (e.g., the v0.7.4 pattern).

In `@example/opentelemetry/go.mod`:
- Around line 8-12: The replace directive and the require directive mismatch:
update the module override so the local path actually applies to the required
version by either changing the replace target to match the required version
(replace github.com/openfga/go-sdk v0.7.4 => ../../) or remove the version pin
and use an unversioned replace (replace github.com/openfga/go-sdk => ../../);
edit the replace line associated with github.com/openfga/go-sdk so it
corresponds to the require entry (v0.7.4) or becomes versionless to ensure the
local override is used.
- Around line 13-16: The OpenTelemetry modules are partially upgraded: update
the three OTel module lines
(go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc,
go.opentelemetry.io/otel/sdk, and go.opentelemetry.io/otel/sdk/metric) from
v1.39.0 to v1.40.0 to match go.opentelemetry.io/otel v1.40.0, then run `go mod
tidy` to reconcile transitive deps.

ℹ️ Review info

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 8d5a9cd and 260ff2c.

⛔ Files ignored due to path filters (1)
  • go.sum is excluded by !**/*.sum
📒 Files selected for processing (6)
  • CHANGELOG.md
  • example/example1/go.mod
  • example/opentelemetry/go.mod
  • example/streamed_list_objects/go.mod
  • go.mod
  • internal/constants/constants.go
💤 Files with no reviewable changes (1)
  • go.mod

@codecov-commenter
Copy link

codecov-commenter commented Feb 23, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 33.63%. Comparing base (8d5a9cd) to head (a784346).

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #278   +/-   ##
=======================================
  Coverage   33.63%   33.63%           
=======================================
  Files         115      115           
  Lines        9831     9831           
=======================================
  Hits         3307     3307           
  Misses       6260     6260           
  Partials      264      264           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@SoulPancake SoulPancake added this pull request to the merge queue Feb 24, 2026
Merged via the queue into main with commit ebf62c0 Feb 24, 2026
17 checks passed
@SoulPancake SoulPancake deleted the release/075 branch February 24, 2026 02:36
@dosubot
Copy link

dosubot bot commented Feb 24, 2026

Related Documentation

Checked 8 published document(s) in 1 knowledge base(s). No updates required.

How did I do? Any feedback?  Join Discord

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants