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 +4 -4
- data/CHANGELOG.md +2 -13
- data/README.md +1 -6
- data/Rakefile +1 -1
- data/lib/newshound/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 58c2540992cef9f0214865a6d365d0e2b2e98e6f7a9d186df9c50affbc254498
|
|
4
|
+
data.tar.gz: e1db27edd5f1f665bb30154ce0fe2aea85781397e6caaf71f171d2c5e5a4fc8c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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/
|
|
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.
|
|
11
|
+
task.push_finalize = :branch
|
|
12
12
|
end
|
|
13
13
|
|
|
14
14
|
RSpec::Core::RakeTask.new(:spec)
|
data/lib/newshound/version.rb
CHANGED
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.
|
|
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:
|
|
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: []
|