rails-quality-assurance 1.4.0 → 1.4.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: 1fcf911cee6d30d85ec3b99396996aeb1a1d3192ae1a1d85e07c0d5232a9b280
4
- data.tar.gz: 1c8436b501b9cd4f7861befcd96900050a02295f481041507ba436049c749cb8
3
+ metadata.gz: 48fcc6048ef349279ab6d8c0d64810ffa91be6b5de9ebf2e9415ef41c3038e81
4
+ data.tar.gz: 6c21e634100e723fbe70e20770da34e3e40e474cfb5b994c0245e69d3fb998e7
5
5
  SHA512:
6
- metadata.gz: dd463e5d322299dc1991d91bda054973a8ca22dc04e507d7dc9e8bf4678dd109efdc38b43e412f978bf21af51f85dfcd831e78a4476f5525131a461dcde79272
7
- data.tar.gz: 578bffb5e87ef384c881d485746da5c1ae48e1c25e642cec0ef2956d68b7572a1091ed41e1ca23c94bc015e5efca3e8dadc5ff0b448140963e5689fe4c433779
6
+ metadata.gz: 42015429e70aec7a2d9208c6f937591790ffbea36983d16e36ac0c13b9e3ee5ac3fbe2cd4c986fd99fa61c5053bb971160ab90c199976ef510b9cd6f7a84e7a4
7
+ data.tar.gz: eebb18864075aafe9bbf4ddb9a287cc6f993301df0278f9f583fe0d6a428a70143f1cd3ed070bb7167bcac580d3cf4d007691b51c3ac3974fa2c4f235f264bbc
data/CHANGELOG.md CHANGED
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.4.1] - 2026-09-15
9
+
10
+ ### Fixed
11
+
12
+ - Replaced the deprecated `SimpleCov.add_filter` calls with `SimpleCov.skip`,
13
+ silencing the deprecation warning every consuming app saw during test runs.
14
+ `add_filter` was a thin alias for `skip`, so behavior is unchanged.
15
+
8
16
  ## [1.4.0] - 2026-09-15
9
17
 
10
18
  ### Added
@@ -48,9 +48,9 @@ module RailsQualityAssurance
48
48
 
49
49
  command_name "rspec#{ENV.fetch('TEST_ENV_NUMBER', nil)}"
50
50
 
51
- add_filter '/spec/'
52
- add_filter '/config/'
53
- add_filter '/vendor/'
51
+ skip '/spec/'
52
+ skip '/config/'
53
+ skip '/vendor/'
54
54
 
55
55
  finalize_merge true
56
56
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RailsQualityAssurance
4
- VERSION = '1.4.0'
4
+ VERSION = '1.4.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails-quality-assurance
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0
4
+ version: 1.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mauricio Zaffari