minitest-heat 1.3.0 → 2.0.0

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: 7bc2ab074f84981718138cefc1c8afda89da1f281e4cd66f3b9d72ee48c47a00
4
- data.tar.gz: db62f9c4371ad2d27eb4bce77af0cd421f91f0436f22c56d88ad3f7eb2dd8502
3
+ metadata.gz: 8b840b58e068cbca8670479e03202c33c1ca6084ac72c1b84b862f57098a375d
4
+ data.tar.gz: ec29ff00bc92f9d1983d988a742f47272354f7137e50e1b67ff10da2b237a486
5
5
  SHA512:
6
- metadata.gz: eeaa5543c5f86c5cd6c9549a647614c985873fcb25a6f4184edf8e49fc800051542bd4075ce612d9b347fa5624d7db00cd3ae5c3a46656d674c0512f25fbfd4f
7
- data.tar.gz: 31bc2da03e6fa9325614172ed2f5c2c5882f440c04631e5023244304d5de7fee6d015caf29d5a61c8bc66bd13d947335d50416e52b7678780283a025f1845c62
6
+ metadata.gz: b6b68ad844a22dd0b583e0def4bd57dac55bf4e7752e0f96df9db64c7d40edaf794c7cdd5e49261af1212e47e74e8fbfdd7c783ad1c8a2aaadc073b3b7435f74
7
+ data.tar.gz: 56de30c8534a10ac407aed531e1db3affbf419a760b39bb2d22aae8f2431c80ea08cced84b64691d377386d852acd3b758d9d8c8069490354165f97b557b115f
@@ -31,7 +31,7 @@ jobs:
31
31
  strategy:
32
32
  fail-fast: false
33
33
  matrix:
34
- ruby: ['3.1', '3.2', '3.3', '3.4', '4.0']
34
+ ruby: ['3.2', '3.3', '3.4', '4.0']
35
35
  runs-on: ubuntu-latest
36
36
  steps:
37
37
  - uses: actions/checkout@v4
@@ -39,7 +39,7 @@ jobs:
39
39
  uses: ruby/setup-ruby@v1
40
40
  with:
41
41
  ruby-version: ${{ matrix.ruby }}
42
- bundler: '2.6.9'
42
+ bundler: '2.7.2'
43
43
  bundler-cache: true
44
44
  - name: Run tests
45
45
  run: bundle exec rake test
data/.rubocop.yml CHANGED
@@ -1,5 +1,5 @@
1
1
  AllCops:
2
- TargetRubyVersion: 3.1
2
+ TargetRubyVersion: 3.2
3
3
  NewCops: enable
4
4
  SuggestExtensions: false
5
5
  UseCache: true
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ### Breaking
4
+ - Require Ruby >= 3.2 (dropped 3.1 support)
5
+
6
+ ### Fixed
7
+ - Contrived slow tests called nonexistent class methods, misclassifying as broken instead of slow/painful
8
+ - ConfigurationTest reset global thresholds without restoring, causing test-order-dependent JSON output inconsistencies
9
+ - Raised test slow thresholds to eliminate false positive slow warnings on normal tests
10
+ - Updated bundler from 2.6.9 to 2.7.2 to fix constant redefinition warnings with Ruby 3.4
11
+
3
12
  ## [1.3.0] - 2026-01-29
4
13
 
5
14
  ### Added
data/Gemfile CHANGED
@@ -8,6 +8,3 @@ gemspec
8
8
  gem 'bundler-audit', '>= 0.9'
9
9
  gem 'minitest', '~> 5.0'
10
10
  gem 'rake', '>= 13.0'
11
-
12
- # Constrain erb for Ruby 3.1 compatibility (erb 5.0+ requires Ruby 3.2+)
13
- gem 'erb', '< 5.0'
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- minitest-heat (1.3.0)
4
+ minitest-heat (2.0.0)
5
5
  minitest
6
6
 
7
7
  GEM
@@ -12,14 +12,12 @@ GEM
12
12
  bundler-audit (0.9.3)
13
13
  bundler (>= 1.2.0)
14
14
  thor (~> 1.0)
15
- cgi (0.5.1)
16
15
  date (3.5.1)
17
16
  debug (1.11.1)
18
17
  irb (~> 1.10)
19
18
  reline (>= 0.3.8)
20
19
  docile (1.4.1)
21
- erb (4.0.4)
22
- cgi (>= 0.3.3)
20
+ erb (6.0.1)
23
21
  io-console (0.8.2)
24
22
  irb (1.16.0)
25
23
  pp (>= 0.6.0)
@@ -36,7 +34,7 @@ GEM
36
34
  pp (0.6.3)
37
35
  prettyprint
38
36
  prettyprint (0.2.0)
39
- prism (1.8.0)
37
+ prism (1.9.0)
40
38
  psych (5.3.1)
41
39
  date
42
40
  stringio
@@ -93,7 +91,6 @@ DEPENDENCIES
93
91
  awesome_print
94
92
  bundler-audit (>= 0.9)
95
93
  debug
96
- erb (< 5.0)
97
94
  minitest (~> 5.0)
98
95
  minitest-heat!
99
96
  rake (>= 13.0)
@@ -104,4 +101,4 @@ DEPENDENCIES
104
101
  simplecov_json_formatter
105
102
 
106
103
  BUNDLED WITH
107
- 2.6.9
104
+ 2.7.2
data/RELEASING.md CHANGED
@@ -138,7 +138,6 @@ This builds the gem, displays its contents and size, then cleans up.
138
138
  2. Edit the `main` ruleset (or create one targeting the default branch)
139
139
  3. Enable "Require status checks to pass" with these checks:
140
140
  - `Security`
141
- - `Test (Ruby 3.1)`
142
141
  - `Test (Ruby 3.2)`
143
142
  - `Test (Ruby 3.3)`
144
143
  - `Test (Ruby 3.4)`
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Minitest
4
4
  module Heat
5
- VERSION = '1.3.0'
5
+ VERSION = '2.0.0'
6
6
  end
7
7
  end
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
12
12
  spec.description = 'Presents test results in a visual manner to guide you to where to look first.'
13
13
  spec.homepage = 'https://github.com/garrettdimon/minitest-heat'
14
14
  spec.license = 'MIT'
15
- spec.required_ruby_version = Gem::Requirement.new('>= 3.1')
15
+ spec.required_ruby_version = Gem::Requirement.new('>= 3.2')
16
16
 
17
17
  spec.metadata['homepage_uri'] = spec.homepage
18
18
  spec.metadata['bug_tracker_uri'] = 'https://github.com/garrettdimon/minitest-heat/issues'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: minitest-heat
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 2.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Garrett Dimon
@@ -187,7 +187,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
187
187
  requirements:
188
188
  - - ">="
189
189
  - !ruby/object:Gem::Version
190
- version: '3.1'
190
+ version: '3.2'
191
191
  required_rubygems_version: !ruby/object:Gem::Requirement
192
192
  requirements:
193
193
  - - ">="