Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/specs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,15 @@ jobs:
rails: "8.0"
- ruby: "3.4"
rails: "8.0"
- ruby: "4.0"
rails: "8.0"
# Rails 8.1
- ruby: "3.3"
rails: "8.1"
- ruby: "3.4"
rails: "8.1"
- ruby: "4.0"
rails: "8.1"
steps:
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby }}
Expand Down
23 changes: 0 additions & 23 deletions Appraisals

This file was deleted.

12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

## [Unreleased][main]

## [0.6.0] - 2026-05-25
- Add support for Rails 8.1
- Add support for Devise 5
- Add Ruby 3.3, 3.4, and 4.0 to the CI matrix
- Bump minimum required Ruby version to 3.2
- Replace deprecated `ActiveSupport::Configurable` with plain Ruby attribute accessors (drops the Rails 8.2 deprecation warning)
- Drop `appraisal` development dependency in favor of hand-maintained `gemfiles/*.gemfile`
- Bump development Gemfile to Rails 8.1, Devise 5, sqlite3 ~> 2.1, Bundler 2.7.x

## [0.5.0] - 2025-06-17
- Throw a warning instead of an error for the `$login.failed` event when an exception is raised
- Security fixes and dependency updates
Expand Down Expand Up @@ -33,7 +42,8 @@

- Initial release

[main]: https://github.com/castle/castle_devise/compare/v0.5.0...HEAD
[main]: https://github.com/castle/castle_devise/compare/v0.6.0...HEAD
[0.6.0]: https://github.com/castle/castle_devise/compare/v0.5.0...v0.6.0
[0.5.0]: https://github.com/castle/castle_devise/compare/v0.4.3...v0.5.0
[0.4.3]: https://github.com/castle/castle_devise/compare/v0.4.2...v0.4.3
[0.4.2]: https://github.com/castle/castle_devise/compare/v0.4.1...v0.4.2
Expand Down
7 changes: 3 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,13 @@ gemspec
gem "actionmailer"
gem "activerecord"
gem "byebug"
gem "railties", "~> 7.2"
gem "devise", "~> 5.0"
gem "railties", "~> 8.1"
gem "rake"
gem "rspec"
gem "rspec-rails"
gem "simplecov"
gem "sqlite3", "~> 2.1"
gem "standard"
gem "sqlite3", "~> 1.7"
gem "vcr"
gem "webmock"
gem "mutex_m"
gem "logger"
Loading
Loading