activesupport-tagged_logging 2.0.2 → 3.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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data/CHANGELOG.md +144 -3
- data/LICENSE.md +11 -0
- data/README.md +498 -182
- data/lib/active_support/tagged_logging.rb +0 -0
- data/lib/activesupport/fix_pr_53105.rb +0 -0
- data/lib/activesupport/tagged_logging/broadcasting.rb +0 -0
- data/lib/activesupport/tagged_logging/version.rb +4 -5
- data/lib/activesupport/tagged_logging.rb +1 -1
- data/lib/activesupport-tagged_logging.rb +2 -2
- data/sig/activesupport/tagged_logging.rbs +15 -0
- data.tar.gz.sig +0 -0
- metadata +242 -114
- metadata.gz.sig +0 -0
- data/CODE_OF_CONDUCT.md +0 -84
- data/CONTRIBUTING.md +0 -106
- data/LICENSE.txt +0 -22
- data/SECURITY.md +0 -14
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ce90532eeb925ea6f0590a1bbfcbf78ca399e11f037c6857518fd003a167fedc
|
|
4
|
+
data.tar.gz: 99af9afd1fe68967b0a1603049954e24f4ee150c63b87b26c35f63e73da47ded
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3e556e0343b128caac4aeb495838734ddf15177c954b48c2a9376ecee69b7d3c6c612f1a6801dba134f04588a8b42e00bb2c16f60840f95d768fc5fe672fc6e8
|
|
7
|
+
data.tar.gz: 42e0ec37d82dec628081cc326e405bf9a29a96efaa2486e50ae9e84a2b434358ce5ae3b016df8073f8939789ebf4c25a277fd3e103ca2dc3188dc69cdc3c6d58
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/CHANGELOG.md
CHANGED
|
@@ -1,54 +1,195 @@
|
|
|
1
1
|
# Changelog
|
|
2
|
+
|
|
3
|
+
[![SemVer 2.0.0][📌semver-img]][📌semver] [![Keep-A-Changelog 1.0.0][📗keep-changelog-img]][📗keep-changelog]
|
|
4
|
+
|
|
2
5
|
All notable changes to this project will be documented in this file.
|
|
3
6
|
|
|
4
|
-
The format is based on [Keep a Changelog]
|
|
5
|
-
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html)
|
|
7
|
+
The format is based on [Keep a Changelog][📗keep-changelog],
|
|
8
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
|
|
9
|
+
and [yes][📌major-versions-not-sacred], platform and engine support are part of the [public API][📌semver-breaking].
|
|
10
|
+
Please file a bug if you notice a violation of semantic versioning.
|
|
11
|
+
|
|
12
|
+
[📌semver]: https://semver.org/spec/v2.0.0.html
|
|
13
|
+
[📌semver-img]: https://img.shields.io/badge/semver-2.0.0-FFDD67.svg?style=flat
|
|
14
|
+
[📌semver-breaking]: https://github.com/semver/semver/issues/716#issuecomment-869336139
|
|
15
|
+
[📌major-versions-not-sacred]: https://tom.preston-werner.com/2022/05/23/major-version-numbers-are-not-sacred.html
|
|
16
|
+
[📗keep-changelog]: https://keepachangelog.com/en/1.0.0/
|
|
17
|
+
[📗keep-changelog-img]: https://img.shields.io/badge/keep--a--changelog-1.0.0-FFDD67.svg?style=flat
|
|
6
18
|
|
|
7
19
|
## [Unreleased]
|
|
20
|
+
|
|
8
21
|
### Added
|
|
22
|
+
|
|
9
23
|
### Changed
|
|
10
|
-
|
|
24
|
+
|
|
25
|
+
### Deprecated
|
|
26
|
+
|
|
11
27
|
### Removed
|
|
12
28
|
|
|
29
|
+
### Fixed
|
|
30
|
+
|
|
31
|
+
### Security
|
|
32
|
+
|
|
33
|
+
## [3.0.0] - 2026-08-09
|
|
34
|
+
|
|
35
|
+
- TAG: [v3.0.0][3.0.0t]
|
|
36
|
+
- COVERAGE: 98.11% -- 104/106 lines in 5 files
|
|
37
|
+
- BRANCH COVERAGE: 81.82% -- 18/22 branches in 5 files
|
|
38
|
+
- 40.62% documented
|
|
39
|
+
|
|
40
|
+
### Added
|
|
41
|
+
|
|
42
|
+
- kettle-jem-template-20260720-005 - README Support & Community links now
|
|
43
|
+
include RubyForum.
|
|
44
|
+
- kettle-jem-template-20260726-001 - Projects now include YARD lint
|
|
45
|
+
configuration and documentation dependencies so documentation issues fail
|
|
46
|
+
before generated docs are refreshed.
|
|
47
|
+
- kettle-jem-template-20260727-001 - Spec harness documentation now lists the
|
|
48
|
+
RSpec helpers provided by `kettle-test`.
|
|
49
|
+
|
|
50
|
+
### Changed
|
|
51
|
+
|
|
52
|
+
- kettle-jem-template-20260716-002 - Gemspecs now ship fewer repository-only
|
|
53
|
+
files, reducing package noise for downstream packagers.
|
|
54
|
+
- kettle-jem-template-20260720-002 - Development Gemfiles now use the released
|
|
55
|
+
`tree_sitter_language_pack` gem 1.13.3 or newer by default.
|
|
56
|
+
- kettle-jem-template-20260725-002 - Version specs now use `anonymous_loader` to
|
|
57
|
+
cover `version.rb` without redefining constants, or are removed when version
|
|
58
|
+
specs are not managed for the project.
|
|
59
|
+
- kettle-jem-template-20260728-001 - Generated Ruby workflows now use clearer
|
|
60
|
+
setup-ruby-flash planning and can prepare appraisal-only jobs without
|
|
61
|
+
installing the main Gemfile bundle.
|
|
62
|
+
- kettle-jem-template-20260801-001 - Generated README gem dashboard links now
|
|
63
|
+
use ClickGems instead of BestGems.
|
|
64
|
+
|
|
65
|
+
- Raise the supported Ruby version to 3.1 and align the Active Support logger dependencies with the 3.0 release.
|
|
66
|
+
|
|
67
|
+
### Fixed
|
|
68
|
+
|
|
69
|
+
- kettle-jem-template-20260720-003 - StructuredMerge Git diff driver config now
|
|
70
|
+
uses the installed `smorg-rb` driver command.
|
|
71
|
+
- kettle-jem-template-20260725-001 - Release pull request branches beginning
|
|
72
|
+
with `feature/release` now run JRuby and TruffleRuby workflows.
|
|
73
|
+
- kettle-jem-template-20260726-002 - Generated version files now document their
|
|
74
|
+
version namespace and constants, reducing warning-only YARD lint output.
|
|
75
|
+
- kettle-jem-template-20260726-003 - Coverage upload steps now treat Coveralls,
|
|
76
|
+
QLTY, and Codecov as optional, so provider outages do not fail CI when local
|
|
77
|
+
coverage thresholds still pass.
|
|
78
|
+
- kettle-jem-template-20260728-002 - Generated RuboCop configs now ignore the
|
|
79
|
+
same `gemfiles/vendor/bundle` tree as `.gitignore`, so vendored dependency
|
|
80
|
+
installs are not reported as project lint debt.
|
|
81
|
+
- kettle-jem-template-20260728-005 - VersionGem bootstrap now creates the
|
|
82
|
+
missing canonical version spec when a project only has shim namespace version
|
|
83
|
+
specs.
|
|
84
|
+
- kettle-jem-template-20260730-001 - Gemspec package file enumeration now runs
|
|
85
|
+
relative to the gemspec directory, so release package contents stay correct
|
|
86
|
+
even when the gemspec is loaded from another working directory.
|
|
87
|
+
- kettle-jem-template-20260801-002 - Generated RSpec helpers now normalize
|
|
88
|
+
managed configuration block bindings structurally, preventing mixed block
|
|
89
|
+
parameter names from producing invalid configuration after a merge.
|
|
90
|
+
- kettle-jem-template-20260801-003 - Generated project metadata and
|
|
91
|
+
documentation now normalize configured underscore hostnames to valid
|
|
92
|
+
hyphenated hostnames.
|
|
93
|
+
- kettle-jem-template-20260801-004 - Generated organization README logos now
|
|
94
|
+
use GitHub's stable organization avatar endpoint instead of assuming a
|
|
95
|
+
matching Galtzo-hosted asset exists.
|
|
96
|
+
- kettle-jem-template-20260802-001 - Devcontainer JSON files now merge as JSONC,
|
|
97
|
+
preserving comments and trailing commas during template updates.
|
|
98
|
+
|
|
99
|
+
- kettle-jem-template-20260728-003 - Generated dep-heads workflows now run
|
|
100
|
+
TruffleRuby jobs with current RubyGems and Bundler, avoiding setup failures
|
|
101
|
+
before the test suite starts.
|
|
102
|
+
- kettle-jem-template-20260728-004 - Generated dep-heads workflows now use the
|
|
103
|
+
setup-ruby Bundler install path for direct appraisal Gemfiles, avoiding rv
|
|
104
|
+
lockfile parser failures on Git and path dependencies.
|
|
105
|
+
- kettle-jem-template-20260729-001 - Generated JRuby 9.4 workflows now use the
|
|
106
|
+
legacy manual bundle install path, avoiding setup-time Bundler full-index
|
|
107
|
+
failures against `gem.coop`.
|
|
108
|
+
|
|
109
|
+
- Fix cross-gem README Markdown references before release.
|
|
110
|
+
|
|
111
|
+
- Synchronize LICENSE copyright years with README.md for release validation.
|
|
112
|
+
|
|
113
|
+
- Refresh generated appraisal and coverage/style harness files for CI.
|
|
114
|
+
|
|
115
|
+
- Restore cross-gem README links for the Active Support logging family.
|
|
116
|
+
|
|
117
|
+
- Move gemspec version loading out of the Active Support tagged logging module hierarchy.
|
|
118
|
+
|
|
119
|
+
## [2.0.3] - 2024-11-22
|
|
120
|
+
|
|
121
|
+
- COVERAGE: 98.11% -- 104/106 lines in 5 files
|
|
122
|
+
- BRANCH COVERAGE: 81.82% -- 18/22 branches in 5 files
|
|
123
|
+
- 36.36% documented
|
|
124
|
+
|
|
125
|
+
### Changed
|
|
126
|
+
|
|
127
|
+
- upgrade activesupport-logger v2.0.3
|
|
128
|
+
- upgrade activesupport-broadcast_logger v2.0.3
|
|
129
|
+
|
|
13
130
|
## [2.0.2] - 2024-11-22
|
|
131
|
+
|
|
14
132
|
- COVERAGE: 98.11% -- 104/106 lines in 5 files
|
|
15
133
|
- BRANCH COVERAGE: 81.82% -- 18/22 branches in 5 files
|
|
16
134
|
- 36.36% documented
|
|
135
|
+
|
|
17
136
|
### Changed
|
|
137
|
+
|
|
18
138
|
- upgrade activesupport-logger v2.0.2
|
|
19
139
|
- upgrade activesupport-broadcast_logger v2.0.2
|
|
140
|
+
|
|
20
141
|
### Fixed
|
|
142
|
+
|
|
21
143
|
- rdoc as development dependency (was runtime, which interfered with Rails' psych dependency)
|
|
22
144
|
|
|
23
145
|
## [2.0.1] - 2024-11-21
|
|
146
|
+
|
|
24
147
|
- COVERAGE: 98.11% -- 104/106 lines in 5 files
|
|
25
148
|
- BRANCH COVERAGE: 81.82% -- 18/22 branches in 5 files
|
|
26
149
|
- 36.36% documented
|
|
150
|
+
|
|
27
151
|
### Changed
|
|
152
|
+
|
|
28
153
|
- Upgraded to activesupport-broadcast_logger v2.0.1
|
|
29
154
|
- Upgraded to activesupport-logger v2.0.1
|
|
155
|
+
|
|
30
156
|
### Fixed
|
|
157
|
+
|
|
31
158
|
- Compatibility with ActiveSupport
|
|
32
159
|
- Many libraries do `require "active_support"`
|
|
33
160
|
|
|
34
161
|
## [2.0.0] - 2024-11-21
|
|
162
|
+
|
|
35
163
|
- COVERAGE: 98.11% -- 104/106 lines in 5 files
|
|
36
164
|
- BRANCH COVERAGE: 81.82% -- 18/22 branches in 5 files
|
|
37
165
|
- 36.36% documented
|
|
166
|
+
|
|
38
167
|
### Changed
|
|
168
|
+
|
|
39
169
|
- `ActiveSupport::FixPr53105` => `Activesupport::FixPr53105`
|
|
40
170
|
- **BREAKING CHANGE**: change `ActiveSupport::FixPr53105.init` to `Activesupport::FixPr53105.init`
|
|
41
171
|
- This is to keep the code of this gem in a consistent namespace separate from the standard Rails `ActiveSupport`.
|
|
42
172
|
- Upgrade to `activesupport-logger` v2.0.0
|
|
173
|
+
|
|
43
174
|
### Fixed
|
|
175
|
+
|
|
44
176
|
- Compatibility with Rails v5.2, v6.0, v6.1, v7.0, v7.1, and v8
|
|
177
|
+
|
|
45
178
|
### Added
|
|
179
|
+
|
|
46
180
|
- Dependency on `activesupport-broadcast_logger` v2.0.0
|
|
47
181
|
- Real test suite
|
|
48
182
|
|
|
49
183
|
## [1.0.0] - 2024-10-10
|
|
184
|
+
|
|
50
185
|
- COVERAGE: 46.84% -- 74/158 lines in 6 files
|
|
51
186
|
- BRANCH COVERAGE: 21.74% -- 5/23 branches in 6 files
|
|
52
187
|
- 37.78% documented
|
|
188
|
+
|
|
53
189
|
### Added
|
|
190
|
+
|
|
54
191
|
- Initial release
|
|
192
|
+
|
|
193
|
+
[Unreleased]: https://github.com/galtzo-floss/activesupport-tagged_logging/compare/v3.0.0...HEAD
|
|
194
|
+
[3.0.0]: https://github.com/galtzo-floss/activesupport-tagged_logging/compare/v2.0.3...v3.0.0
|
|
195
|
+
[3.0.0t]: https://github.com/galtzo-floss/activesupport-tagged_logging/releases/tag/v3.0.0
|
data/LICENSE.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# License
|
|
2
|
+
|
|
3
|
+
This project is made available under the following license.
|
|
4
|
+
Choose the option that best fits your use case:
|
|
5
|
+
|
|
6
|
+
- [MIT](https://github.com/galtzo-floss/activesupport-tagged_logging/blob/main/MIT.md)
|
|
7
|
+
|
|
8
|
+
## Copyright Notice
|
|
9
|
+
|
|
10
|
+
- Copyright (c) 2024, 2026 Peter H. Boling
|
|
11
|
+
- Copyright (c) 2025 Aboling0
|