rubocop-gusto 11.1.0 → 11.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5814e91aac6e402768ff64bd32f0c196838e20d90cbd927286238f68bb9d25b9
4
- data.tar.gz: d4e988b9973101b7ea9a683900ae7489cbfe128b681d4137c7317f06a45cc247
3
+ metadata.gz: 5ebf0dc040fba594af70d4d7f12ff478108f0194ff39648ba3d6179ecc9e090f
4
+ data.tar.gz: bfdd53b8165f3078c682fb08e57c124acf05996ec6bc4b8543f54b6a94931132
5
5
  SHA512:
6
- metadata.gz: 82385ed24fdf344897513f4f034e1f8ae662a5d41b62ccc8dc2c14e735d479deb31acf4c28047fbad1f59d828485798a4677148ca203989f15489d768cb88995
7
- data.tar.gz: 403192785be424b372d709d2c7d9bac18491603c2a9449a2edeb5b35c981652e7ee87c307265a381b51d5285134fda5a0178adb04087bb6d2db7c10b51d41ae9
6
+ metadata.gz: 68e9932597eab0c974d14c733680f1cba391c1d9203c3eb583737f21902855434a9d7f4a51bad9e15a7fee960098bf3714722063545c4dac70355c3fe212c213
7
+ data.tar.gz: d6439f071b56a1f9fb53e22c0964524072c88134b28439c228115217a7b91c3ad4bf82a407ebab4675c966819fa4038fa9cab5b9ada4620c74185c6217373978
data/CHANGELOG.md CHANGED
@@ -3,6 +3,13 @@
3
3
  - Remove redundant `Rails: Enabled: true` from `config/rails.yml` (already set by rubocop-rails' own defaults)
4
4
  - Enable `Rails/DefaultScope` cop (disabled by default in rubocop-rails)
5
5
 
6
+ ## [11.1.1](https://github.com/Gusto/rubocop-gusto/compare/v11.1.0...v11.1.1) (2026-06-18)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * update ExecuteMigration cop to recommend backfill sidekiq job ([#121](https://github.com/Gusto/rubocop-gusto/issues/121)) ([a29cfcc](https://github.com/Gusto/rubocop-gusto/commit/a29cfcc121fb78b290314500f79ca3150479fa0a))
12
+
6
13
  ## [11.1.0](https://github.com/Gusto/rubocop-gusto/compare/v11.0.0...v11.1.0) (2026-06-17)
7
14
 
8
15
 
@@ -18,7 +18,7 @@ module RuboCop
18
18
  # add_column :users, :active, :boolean, default: true
19
19
  # end
20
20
  class ExecuteMigration < Base
21
- MSG = "Do not use `execute` to run raw SQL in a migration. Run the query from a backfill rake task or pass the SQL options to the `add_column`/`change_column` method."
21
+ MSG = "Do not use `execute` to run raw SQL in a migration. Run the query from a backfill sidekiq job or pass the SQL options to the `add_column`/`change_column` method."
22
22
  RESTRICT_ON_SEND = [:execute].freeze
23
23
 
24
24
  def on_send(node)
@@ -2,6 +2,6 @@
2
2
 
3
3
  module RuboCop
4
4
  module Gusto
5
- VERSION = "11.1.0"
5
+ VERSION = "11.1.1"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-gusto
3
3
  version: !ruby/object:Gem::Version
4
- version: 11.1.0
4
+ version: 11.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gusto Engineering