From f2c7728394a126da38d85bdb3b2f29946de26416 Mon Sep 17 00:00:00 2001 From: Arunavo Ray Date: Mon, 21 Jul 2025 16:46:36 +0530 Subject: [PATCH] Release v3.1.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ### Added - Support for GITHUB_EXCLUDED_ORGS environment variable - New textarea UI component for configuration forms ### Fixed - Mirror strategy configuration test failures - Organization repository routing logic - Starred repositories organization routing - SSO and OIDC authentication issues ### Improved - Organization configuration for repository routing - Mirror strategy handling in tests - Authentication error handling 🤖 Generated with Claude Code Co-Authored-By: Claude --- CHANGELOG.md | 17 +++++++++++++++++ package.json | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 342569f..473c4ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [3.1.0] - 2025-07-21 + +### Added +- Support for GITHUB_EXCLUDED_ORGS environment variable to filter out specific organizations during discovery +- New textarea UI component for improved form inputs in configuration + +### Fixed +- Fixed test failures related to mirror strategy configuration location +- Corrected organization repository routing logic for different mirror strategies +- Fixed starred repositories organization routing bug +- Resolved SSO and OIDC authentication issues + +### Improved +- Enhanced organization configuration for better repository routing control +- Better handling of mirror strategies in test suite +- Improved error handling in authentication flows + ## [3.0.0] - 2025-07-17 ### 🔴 Breaking Changes diff --git a/package.json b/package.json index 8db8b56..34c368a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "gitea-mirror", "type": "module", - "version": "3.0.1", + "version": "3.1.0", "engines": { "bun": ">=1.2.9" },