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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Master (Unreleased)

## 2.32.0 (2025-11-12)

- Add `RSpecRails/HttpStatusNameConsistency` cop. ([@taketo1113])
- Support correcting `assert_response` assertion in in `RSpec/Rails/MinitestAssertions`. ([@nzlaura])

Expand Down
2 changes: 1 addition & 1 deletion config/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ RSpecRails/HttpStatus:
RSpecRails/HttpStatusNameConsistency:
Description: Enforces consistency by using the current HTTP status names.
Enabled: pending
VersionAdded: "<<next>>"
VersionAdded: '2.32'
Reference: https://www.rubydoc.info/gems/rubocop-rspec_rails/RuboCop/Cop/RSpecRails/HttpStatusNameConsistency

RSpecRails/InferredSpecType:
Expand Down
2 changes: 1 addition & 1 deletion docs/antora.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: rubocop-rspec_rails
title: RuboCop RSpec Rails
version: ~
version: '2.32'
nav:
- modules/ROOT/nav.adoc
2 changes: 1 addition & 1 deletion docs/modules/ROOT/pages/cops_rspecrails.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ it { is_expected.to have_http_status :ok }
| Pending
| Yes
| Always
| <<next>>
| 2.32
| -
|===

Expand Down
2 changes: 1 addition & 1 deletion lib/rubocop/rspec_rails/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module RuboCop
module RSpecRails
# Version information for the RSpec Rails RuboCop plugin.
module Version
STRING = '2.31.0'
STRING = '2.32.0'
end
end
end