Skip to content

chore: release v2.3.0#170

Open
Koosha-Owji wants to merge 2 commits intomainfrom
chore/release-2.3.0
Open

chore: release v2.3.0#170
Koosha-Owji wants to merge 2 commits intomainfrom
chore/release-2.3.0

Conversation

@Koosha-Owji
Copy link
Copy Markdown
Contributor

Explain your changes

Release v2.3.0 - bumps version and updates CHANGELOG.md.

Checklist

🛟 If you need help, consider asking for advice over in the Kinde community.

@Koosha-Owji Koosha-Owji requested review from a team as code owners April 16, 2026 06:09
@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai bot commented Apr 16, 2026

Warning

Rate limit exceeded

@Koosha-Owji has exceeded the limit for the number of commits that can be reviewed per hour. Please wait 52 minutes and 47 seconds before requesting another review.

Your organization is not enrolled in usage-based pricing. Contact your admin to enable usage-based pricing to continue reviews beyond the rate limit, or try again in 52 minutes and 47 seconds.

⌛ How to resolve this issue?

After the wait time has elapsed, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

🚦 How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.

Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout.

Please see our FAQ for further information.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: 15dfd158-8fec-4493-a44a-06bc5117fa82

📥 Commits

Reviewing files that changed from the base of the PR and between e778fcb and 9fa1130.

⛔ Files ignored due to path filters (1)
  • kinde_sdk/frontend/__init__.py is excluded by !kinde_sdk/frontend/**
📒 Files selected for processing (1)
  • kinde_sdk/management/__init__.py

Walkthrough

The pull request increments the package version from 2.2.0 to 2.3.0 and documents corresponding release notes, including invitation code integration in the OAuth flow, management client regeneration, bug fixes for OAuth and build systems, and various tooling and dependency improvements.

Changes

Cohort / File(s) Summary
Version Release
CHANGELOG.md, kinde_sdk/__init__.py
Updated package version to 2.3.0 with release notes documenting OAuth invitation codes, management client regeneration, bug fixes (OAuth, management client, build/test), and improvements (delegation, dependencies, CI, tooling).

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

🚥 Pre-merge checks | ✅ 3
✅ Passed checks (3 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly and concisely summarizes the main change: releasing version 2.3.0, which matches the version bump and changelog update in the changeset.
Description check ✅ Passed The description directly relates to the changeset by stating it releases v2.3.0 and updates CHANGELOG.md, matching the actual file changes made.
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
  • Commit unit tests in branch chore/release-2.3.0

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.

@codecov
Copy link
Copy Markdown

codecov bot commented Apr 16, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.

📢 Thoughts on this report? Let us know!

Copy link
Copy Markdown
Contributor

@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: 1

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

Inline comments:
In `@kinde_sdk/__init__.py`:
- Line 28: Update the __version__ variable in the frontend and management
submodules to match the main package version: change the __version__ variable in
the frontend module from "2.0.0" to "2.3.0" and do the same in the management
module so both __version__ values align with the top-level package version
"2.3.0".
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: 590bd9ea-c663-46a0-98c1-793045b86c51

📥 Commits

Reviewing files that changed from the base of the PR and between 7bf9bc6 and e778fcb.

⛔ Files ignored due to path filters (1)
  • pyproject.toml is excluded by !**/*.toml
📒 Files selected for processing (2)
  • CHANGELOG.md
  • kinde_sdk/__init__.py

Comment thread kinde_sdk/__init__.py
from kinde_sdk.core.session_management import KindeSessionManagement

__version__ = "2.2.0"
__version__ = "2.3.0"
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟠 Major

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Description: Check for version references across the codebase to ensure consistency.

# Search for version patterns in common configuration files
echo "=== Checking version in configuration files ==="
fd -e toml -e py -e cfg -e json -e yaml -e yml -x grep -l "version" {} \; | while read -r file; do
  echo "--- $file ---"
  rg -n "version.*['\"]?2\.[0-9]+\.[0-9]+" "$file" || true
done

echo ""
echo "=== Checking for potential hardcoded version strings ==="
# Look for version patterns that might be hardcoded
rg -n "2\.2\.0" --type py --type toml --type json --type yaml

echo ""
echo "=== Checking __version__ definitions ==="
rg -n "__version__\s*=\s*['\"]2\.[0-9]+\.[0-9]+['\"]" --type py

Repository: kinde-oss/kinde-python-sdk

Length of output: 26618


Update version references in submodule __init__.py files to 2.3.0.

The frontend and management submodules still reference version "2.0.0" and must be updated to match the main package version:

  • kinde_sdk/frontend/__init__.py, line 18: Change __version__ = "2.0.0" to "2.3.0"
  • kinde_sdk/management/__init__.py, line 18: Change __version__ = "2.0.0" to "2.3.0"
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@kinde_sdk/__init__.py` at line 28, Update the __version__ variable in the
frontend and management submodules to match the main package version: change the
__version__ variable in the frontend module from "2.0.0" to "2.3.0" and do the
same in the management module so both __version__ values align with the
top-level package version "2.3.0".

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.

2 participants