From 8c7757ec518724f070b9b2fee009c8a180ea1fdf Mon Sep 17 00:00:00 2001 From: Shinichi Maeshima Date: Mon, 23 Jun 2025 18:41:24 +0900 Subject: [PATCH 1/2] Remove Testing Matrix from README followup #383 Remove the matrix as it is no longer needed. We could mention support for Ruby 3.2+ and Rails 7.1+ in the README, but for now, I just removed the matrix. --- README.md | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/README.md b/README.md index c7b2917f..7d687138 100644 --- a/README.md +++ b/README.md @@ -20,16 +20,6 @@ Magical Authentication for Rails. Supports ActiveRecord, DataMapper, Mongoid and Inspired by Restful Authentication, Authlogic and Devise. Crypto code taken almost unchanged from Authlogic. OAuth code inspired by OmniAuth and Ryan Bates's Railscast about it. -### Testing Matrix - -Rails | 6.1 | 7.0 | 7.1 | 7.2 | 8.0 ---- | --- | --- | --- |--- |--- -Ruby 3.0 | ✅ | ✅ | ✅ | 🛑 | 🛑 -Ruby 3.1 | ✅ | ✅ | ✅ | ✅ | 🛑 -Ruby 3.2 | 🛑 | ✅ | ✅ | ✅ | ✅ -Ruby 3.3 | 🛑 | 🛑 | ✅ | ✅ | ✅ -Ruby 3.4 | 🛑 | 🛑 | ✅ | ✅ | ✅ - ### Philosophy Sorcery is a stripped-down, bare-bones authentication library, with which you can write your own authentication flow. It was built with a few goals in mind: From 6f2e83d0badea8a6fc86441e70b669274ce3d2b4 Mon Sep 17 00:00:00 2001 From: Shinichi Maeshima Date: Mon, 23 Jun 2025 18:44:20 +0900 Subject: [PATCH 2/2] Add #384 to Changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 37c71ae7..f1d83f15 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ # Changelog ## HEAD +* Remove Testing Matrix from README [#384](https://github.com/Sorcery/sorcery/pull/384) * Drop support for versions below Ruby 3.2 and Rails 7.1 [#383](https://github.com/Sorcery/sorcery/pull/383) * Remove the dependency on OpenStruct in the test code [#382](https://github.com/Sorcery/sorcery/pull/382) * Add Ruby 3.4 to CI matrix [#381](https://github.com/Sorcery/sorcery/pull/381)