Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CA-401 Lock rubocop_rspec below v2.28.x #128

Merged
merged 2 commits into from
Apr 3, 2024
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ This gem is moving onto its own [Semantic Versioning](https://semver.org/) schem

Prior to v1.0.0 this gem was versioned based on the `MAJOR`.`MINOR` version of RuboCop. The first release of the ezcater_rubocop gem was `v0.49.0`.

## 6.1.1

- Lock `rubocop-rspec` below `v2.28.0` to avoid an upstream namespacing issue.

## 6.1.0

- Add `Ezcater/GraphQL/NotAuthorizedScalarField` Cop which enforces the use
Expand Down
2 changes: 1 addition & 1 deletion ezcater_rubocop.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,5 @@ Gem::Specification.new do |spec|
spec.add_runtime_dependency "rubocop", ">= 1.16.0", "< 2.0"
spec.add_runtime_dependency "rubocop-graphql", ">= 0.14.0", "< 1.0"
spec.add_runtime_dependency "rubocop-rails", ">= 2.10.1", "< 3.0"
spec.add_runtime_dependency "rubocop-rspec", ">= 2.22.0", "< 3.0"
spec.add_runtime_dependency "rubocop-rspec", ">= 2.22.0", "< 2.28.0"
end
2 changes: 1 addition & 1 deletion lib/ezcater_rubocop/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module EzcaterRubocop
VERSION = "6.1.0"
VERSION = "6.1.1"
end
Loading