From eacb686ee418d0d86d5f725849bdece3f1643e80 Mon Sep 17 00:00:00 2001 From: Koosha Owji Date: Mon, 6 Jul 2026 13:31:53 -0500 Subject: [PATCH] chore: release v2.3.1 --- CHANGELOG.md | 11 +++++++++++ kinde_sdk/_version.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a1fef7a8..7d9f9960 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,17 @@ All notable changes to the Kinde Python SDK will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.3.1] - 2026-07-06 + +### Fixed +- **Dependencies (security)**: Updated `cryptography` (v48, then v49), `requests` (2.33.1, 2.34.0, then 2.34.2 with Python-version-specific pins), and `pytest` (^9.0.3, addressing CVE-2025-71176) +- **CI**: Fixed the test suite for Django 6 on Python 3.9–3.11 and corrected the `requests` marker for Python 3.9 + +### Improved +- **Dependencies**: Upgraded `django` to v6 and `pylint` to v4 for the development toolchain; bumped `actions/checkout` and `codecov/codecov-action` to v7 +- **Versioning**: Consolidated the SDK version into a single source of truth in `kinde_sdk/_version.py`, extracted shared helpers into `_sdk_generator_utils.py`, and made the OpenAPI generator configs derived artifacts via an `SDK_VERSION` placeholder +- **Housekeeping**: Removed an incidental `poetry.lock` (the project uses setuptools) + ## [2.3.0] - 2026-04-16 ### Added diff --git a/kinde_sdk/_version.py b/kinde_sdk/_version.py index 77694e4f..2b36c9f0 100644 --- a/kinde_sdk/_version.py +++ b/kinde_sdk/_version.py @@ -33,4 +33,4 @@ permanently hold the ``"SDK_VERSION"`` placeholder. """ -__version__ = "2.3.0" +__version__ = "2.3.1"