newshound 0.2.6 → 0.2.7

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: 3f0581293553e927cf028699263598959a326bf29cab1959cf0e5ee76cd503f7
4
- data.tar.gz: 806595e8afa6a5b86c3b72c8b23cb4d4416c55244b7cb64eb7f03fc5b4bb0ea6
3
+ metadata.gz: 58c2540992cef9f0214865a6d365d0e2b2e98e6f7a9d186df9c50affbc254498
4
+ data.tar.gz: e1db27edd5f1f665bb30154ce0fe2aea85781397e6caaf71f171d2c5e5a4fc8c
5
5
  SHA512:
6
- metadata.gz: 9097b991022152d1a97ee04ebf2667221444b36362b18ab5bfb787a975fbc25f76a7a6a1d1b7b5f56c7947eb6c9bd8ae7f29c50cdbc8fe60869f67fae5b5fc25
7
- data.tar.gz: 8057adf5d2fde41a7d4d770abd4dfe7a483b6a467f6f2e058630b6b538d662e52ca5e72d7a07b4dd82a032fc5435f3cb2e11777b0d17c13e29fa222f5ceaba61
6
+ metadata.gz: fb50eb837a41ceafd5e5b47a5a90762d7e04b5642c520e24a103202a87eead65d241dcb9674939d1cef34fdb9a1fb186d885cd19cdd154ac9d0049f9bb6ccefd
7
+ data.tar.gz: 5344958684e704bba2f18ef8bce4bccd04ad954119ed8f0b5e57f6d2e6b1af422ac70642e32eceb7af488946102b0e71474f540db38030b930222b88f8ca97da
data/CHANGELOG.md CHANGED
@@ -5,6 +5,8 @@ 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.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.2.7] - 2026-01-30
9
+
8
10
  ## [] -
9
11
 
10
12
  ###
@@ -14,16 +16,3 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
14
16
  ### Fixed
15
17
 
16
18
  - Solid Errors title is able to present in banner.
17
-
18
- ## [0.2.5] - 2025-12-12
19
-
20
- ### Added
21
-
22
- - Add `Newshound::Warnings` module with registry-based adapter pattern for custom warning sources
23
- - Add `Newshound::Warnings::Base` abstract class for warning adapters
24
- - Add `Newshound::WarningReporter` for fetching and formatting warnings
25
- - Display warnings in banner alongside exceptions and job stats
26
-
27
- ### Fixed
28
-
29
- - Fixed summary badge to show combined warnings and failed jobs count
data/README.md CHANGED
@@ -203,12 +203,7 @@ bin/console
203
203
 
204
204
  ## Release Management
205
205
 
206
- This gem uses [Reissue](https://github.com/rails/reissue) for release management. Releases are automated via GitHub Actions:
207
-
208
- 1. Navigate to Actions → "Release gem to RubyGems.org"
209
- 2. Click "Run workflow"
210
- 3. Select version segment to bump (patch, minor, major)
211
- 4. Review and merge the auto-generated PR
206
+ This gem uses [Reissue](https://github.com/SOFware/reissue) for release management. Releases are automated via the [shared release workflow](https://github.com/SOFware/reissue/blob/main/.github/workflows/SHARED_WORKFLOW_README.md). Trigger a release by running the "Release gem to RubyGems.org" workflow from the Actions tab.
212
207
 
213
208
  ## Dependencies
214
209
 
data/Rakefile CHANGED
@@ -8,7 +8,7 @@ require "standard/rake"
8
8
  Reissue::Task.create :reissue do |task|
9
9
  task.version_file = "lib/newshound/version.rb"
10
10
  task.fragment = :git
11
- task.commit_finalize = false # Let workflow handle commits
11
+ task.push_finalize = :branch
12
12
  end
13
13
 
14
14
  RSpec::Core::RakeTask.new(:spec)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Newshound
4
- VERSION = "0.2.6"
4
+ VERSION = "0.2.7"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: newshound
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.6
4
+ version: 0.2.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Savannah Moore
@@ -94,7 +94,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
94
94
  - !ruby/object:Gem::Version
95
95
  version: '0'
96
96
  requirements: []
97
- rubygems_version: 4.0.3
97
+ rubygems_version: 3.6.7
98
98
  specification_version: 4
99
99
  summary: Real-time web UI banner for monitoring Que jobs and exception tracking
100
100
  test_files: []