Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions .github/workflows/specs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,6 @@ jobs:
bundle exec rake
- name: Simplecov Report
uses: k1LoW/octocov-action@v1
if: matrix.ruby == '3.4' && matrix.rails == '8.0'
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

## [Unreleased][main]

## [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

## [0.4.3] - 2023-07-11
- Fix an issue where we would send a `login.failed` event on any attempt of accessing a protected resource, not only when the user failed to log in specifically
Expand Down Expand Up @@ -31,7 +33,8 @@

- Initial release

[main]: https://github.com/castle/castle_devise/compare/v0.4.3...HEAD
[main]: https://github.com/castle/castle_devise/compare/v0.5.0...HEAD
[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
[0.4.1]: https://github.com/castle/castle_devise/compare/v0.4.0...v0.4.1
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
castle_devise (0.4.4)
castle_devise (0.5.0)
activesupport (>= 6.0)
castle-rb (>= 7.2, < 9.0)
devise (>= 4.3.0, < 5.0)
Expand Down
2 changes: 1 addition & 1 deletion lib/castle_devise/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module CastleDevise
VERSION = "0.4.4"
VERSION = "0.5.0"
end