debug_logging 4.0.2 → 4.0.4
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 +246 -71
- data/CITATION.cff +20 -0
- data/CODE_OF_CONDUCT.md +79 -29
- data/CONTRIBUTING.md +258 -33
- data/FUNDING.md +74 -0
- data/LICENSE.md +12 -0
- data/README.md +484 -202
- data/RUBOCOP.md +71 -0
- data/SECURITY.md +15 -10
- data/certs/pboling.pem +27 -0
- data/lib/debug_logging/argument_printer.rb +36 -15
- data/lib/debug_logging/class_logger.rb +4 -4
- data/lib/debug_logging/class_notifier.rb +3 -3
- data/lib/debug_logging/colorized_string.rb +130 -0
- data/lib/debug_logging/configuration.rb +2 -1
- data/lib/debug_logging/constants.rb +2 -2
- data/lib/debug_logging/finalize.rb +10 -8
- data/lib/debug_logging/hooks.rb +1 -1
- data/lib/debug_logging/instance_logger.rb +2 -2
- data/lib/debug_logging/instance_logger_modulizer.rb +4 -4
- data/lib/debug_logging/instance_notifier.rb +2 -2
- data/lib/debug_logging/instance_notifier_modulizer.rb +3 -3
- data/lib/debug_logging/lamb_dart/base.rb +2 -2
- data/lib/debug_logging/lamb_dart/log.rb +2 -2
- data/lib/debug_logging/lamb_dart/note.rb +1 -1
- data/lib/debug_logging/lamb_darts/error_handle.rb +2 -2
- data/lib/debug_logging/lamb_darts/notify.rb +1 -1
- data/lib/debug_logging/log_subscriber.rb +33 -26
- data/lib/debug_logging/util.rb +3 -3
- data/lib/debug_logging/version.rb +4 -1
- data/lib/debug_logging.rb +12 -2
- data/sig/debug_logging/version.rbs +6 -0
- data.tar.gz.sig +0 -0
- metadata +120 -162
- metadata.gz.sig +0 -0
- data/LICENSE.txt +0 -21
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 920b074fcb5c684da25a5affb6d6a06241641692bb5d4d6fa2b41f0bd0a2d5a1
|
|
4
|
+
data.tar.gz: 86ad7dd19faf96c4e784f3b51cdd4e4ed1ba4c3bc7510eb2d986e7499b88dc31
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e0e5fcb7ccc408ade17ca9a44b461b106e0b54afb6e2a0fe1b6bb72c86b22bee12e1649afd4d0734b2b6a3c1d2691a00352d3d720ad2701f4916559997bae962
|
|
7
|
+
data.tar.gz: 2694f693e352f54565e1628bd9e4258a8bedec5f4e829fb07f019bfe33e8c07b1c484aeeb54d935843cecf5922f0953dae24d88127846abd4f2cd3a657b24215
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/CHANGELOG.md
CHANGED
|
@@ -1,189 +1,364 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
[![SemVer 2.0.0][📌semver-img]][📌semver] [![Keep-A-Changelog 1.0.0][📗keep-changelog-img]][📗keep-changelog]
|
|
4
|
+
|
|
3
5
|
All notable changes to this project will be documented in this file.
|
|
4
6
|
|
|
5
|
-
The format is based on [Keep a Changelog]
|
|
6
|
-
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
|
|
7
18
|
|
|
8
19
|
## [Unreleased]
|
|
20
|
+
|
|
21
|
+
### Added
|
|
22
|
+
|
|
23
|
+
### Changed
|
|
24
|
+
|
|
25
|
+
### Deprecated
|
|
26
|
+
|
|
27
|
+
### Removed
|
|
28
|
+
|
|
29
|
+
### Fixed
|
|
30
|
+
|
|
31
|
+
### Security
|
|
32
|
+
|
|
33
|
+
## [4.0.4] - 2026-06-14
|
|
34
|
+
|
|
35
|
+
- TAG: [v4.0.4][4.0.4t]
|
|
36
|
+
- COVERAGE: 97.41% -- 716/735 lines in 28 files
|
|
37
|
+
- BRANCH COVERAGE: 87.83% -- 166/189 branches in 28 files
|
|
38
|
+
- 20.94% documented
|
|
39
|
+
|
|
40
|
+
### Changed
|
|
41
|
+
|
|
42
|
+
- Raised generated `version_gem` and `appraisal2` dependency floors to
|
|
43
|
+
`version_gem` >= 1.1.10 and `appraisal2` >= 3.0.9.
|
|
44
|
+
- Refreshed generated project metadata, support documentation, workflow pins,
|
|
45
|
+
and dependency floors from the latest `kettle-jem` template, including the
|
|
46
|
+
`yard-fence` 0.9.4 documentation floor and resilient templating bootstrap.
|
|
47
|
+
- Updated generated OpenCollective funding metadata to use the
|
|
48
|
+
`galtzo-floss` collective.
|
|
49
|
+
|
|
50
|
+
### Fixed
|
|
51
|
+
|
|
52
|
+
- Restored `docs/CNAME` so the generated documentation site keeps its custom domain.
|
|
53
|
+
- Fixed the TruffleRuby 23.1 CI setup bundle by applying the same JSON
|
|
54
|
+
constraint before Appraisal runs.
|
|
55
|
+
|
|
56
|
+
## [4.0.3] - 2026-05-28
|
|
57
|
+
|
|
58
|
+
- TAG: [v4.0.3][4.0.3t]
|
|
59
|
+
- COVERAGE: 97.41% -- 716/735 lines in 28 files
|
|
60
|
+
- BRANCH COVERAGE: 87.83% -- 166/189 branches in 28 files
|
|
61
|
+
- 20.94% documented
|
|
62
|
+
|
|
9
63
|
### Added
|
|
64
|
+
|
|
65
|
+
- `DebugLogging::VERSION` as the traditional top-level version constant, in
|
|
66
|
+
addition to `DebugLogging::Version::VERSION`.
|
|
67
|
+
- Ruby 4 compatibility coverage for log output that includes Ruby's updated
|
|
68
|
+
symbol-key `Hash#inspect` formatting.
|
|
69
|
+
- RBS signature coverage for the version constants.
|
|
70
|
+
|
|
10
71
|
### Changed
|
|
72
|
+
|
|
73
|
+
- Refreshed published README, project metadata, funding links, support links,
|
|
74
|
+
and documentation links.
|
|
75
|
+
- Updated repository links for the move to `galtzo-floss/debug_logging`.
|
|
76
|
+
- Updated gem packaging metadata so generated docs, signatures, certificates,
|
|
77
|
+
and executable support files are consistently included where applicable.
|
|
78
|
+
- Gem signing now skips cleanly when `SKIP_GEM_SIGNING` is set or no matching
|
|
79
|
+
local certificate is present, improving builds for downstream packagers.
|
|
80
|
+
|
|
11
81
|
### Fixed
|
|
82
|
+
|
|
83
|
+
- Restored the `colorize` runtime dependency so fresh installs include the
|
|
84
|
+
colorization support used by debug logging output.
|
|
85
|
+
|
|
86
|
+
- Stabilized logged hash argument and payload rendering across supported Ruby
|
|
87
|
+
versions.
|
|
88
|
+
|
|
12
89
|
### Removed
|
|
13
90
|
|
|
91
|
+
- Removed the GPL-licensed `colorize` runtime dependency while preserving the
|
|
92
|
+
existing colorization callback behavior.
|
|
93
|
+
|
|
14
94
|
## [4.0.2] ([tag][4.0.2t]) - 2024-05-12
|
|
95
|
+
|
|
96
|
+
- TAG: [v4.0.2][4.0.2t]
|
|
97
|
+
|
|
15
98
|
### Added
|
|
99
|
+
|
|
16
100
|
- More documentation
|
|
101
|
+
|
|
17
102
|
### Changed
|
|
103
|
+
|
|
18
104
|
- DRY logic for `DebugLogging::ClassLogger` & `DebugLogging::InstanceLogger` via `LambDart`
|
|
19
105
|
- Refactored test suite; increased test coverage to 97%
|
|
20
106
|
- Refactored ActiveSupport::Notification integration (DRY)
|
|
107
|
+
|
|
21
108
|
### Fixed
|
|
109
|
+
|
|
22
110
|
- Add undeclared runtime dependency `version_gem`
|
|
23
111
|
- `DebugLogging::Hooks` integration via `extend`
|
|
24
112
|
- `DebugLogging::ClassNotifier` support for method signatures with kwargs
|
|
25
113
|
- `error_handler_proc` support for method signatures with kwargs
|
|
26
114
|
|
|
27
115
|
## [4.0.1] ([tag][4.0.1t]) - 2024-03-01
|
|
116
|
+
|
|
117
|
+
- TAG: [v4.0.1][4.0.1t]
|
|
118
|
+
|
|
28
119
|
### Added
|
|
120
|
+
|
|
29
121
|
- Support for all Numeric types to be used as monotonic timestamps for ActiveSupport::Notifications
|
|
30
122
|
- `time_formatter_proc` - used to format timestamp added to beginning of log lines
|
|
31
123
|
- `add_timestamp` - Add timestamp to front of each log line
|
|
124
|
+
|
|
32
125
|
### Changed
|
|
126
|
+
|
|
33
127
|
- `DebugLogging::ArgumentPrinter.debug_time_to_s` => `DebugLogging::ArgumentPrinter.debug_event_time_to_s`
|
|
128
|
+
|
|
34
129
|
### Fixed
|
|
130
|
+
|
|
35
131
|
### Removed
|
|
36
132
|
|
|
37
133
|
## [4.0.0] ([tag][4.0.0t]) - 2024-02-28
|
|
134
|
+
|
|
135
|
+
- TAG: [v4.0.0][4.0.0t]
|
|
136
|
+
|
|
38
137
|
### Added
|
|
138
|
+
|
|
39
139
|
- Class method DSL:
|
|
40
140
|
- `logged`
|
|
41
141
|
- Instance method DSL:
|
|
42
142
|
- `i_logged`
|
|
143
|
+
|
|
43
144
|
### Changed
|
|
145
|
+
|
|
44
146
|
- Class method DSL renamed:
|
|
45
147
|
- `notifies` => `notified`
|
|
46
148
|
- Instance method DSL renamed:
|
|
47
149
|
- `i_notifies` => `i_notified`
|
|
48
150
|
- Disambiguated class method log output send message separator:
|
|
49
151
|
- `.` => `::`, because `.` is ambiguous; same call syntax used for instance method calls
|
|
152
|
+
|
|
50
153
|
### Fixed
|
|
154
|
+
|
|
51
155
|
- Per method config for every decorated method
|
|
156
|
+
|
|
52
157
|
### Removed
|
|
158
|
+
|
|
53
159
|
- Support for `include DebugLogging::InstanceLogger.new(...)`
|
|
54
160
|
- Support for `include DebugLogging::InstanceNotifier.new(...)`
|
|
55
161
|
|
|
56
162
|
## [3.1.9] ([tag][3.1.9t]) - 2023-10-31
|
|
163
|
+
|
|
164
|
+
- TAG: [v3.1.9][3.1.9t]
|
|
165
|
+
|
|
57
166
|
### Fixed
|
|
167
|
+
|
|
58
168
|
- Maximum Ruby version is 2.7. Versions 3.x are not compatible with Ruby >= 3
|
|
59
169
|
|
|
60
170
|
## [3.1.8] ([tag][3.1.8t]) - 2020-12-19
|
|
61
171
|
|
|
172
|
+
- TAG: [v3.1.8][3.1.8t]
|
|
173
|
+
|
|
62
174
|
## [3.1.7] ([tag][3.1.7t]) - 2020-12-19
|
|
63
175
|
|
|
176
|
+
- TAG: [v3.1.7][3.1.7t]
|
|
177
|
+
|
|
64
178
|
## [3.1.6] ([tag][3.1.6t]) - tagged, but unreleased
|
|
65
179
|
|
|
180
|
+
- TAG: [v3.1.6][3.1.6t]
|
|
181
|
+
|
|
66
182
|
## [3.1.5] ([tag][3.1.5t]) - 2020-12-18
|
|
67
183
|
|
|
184
|
+
- TAG: [v3.1.5][3.1.5t]
|
|
185
|
+
|
|
68
186
|
## [3.1.4] ([tag][3.1.4t]) - 2020-12-18
|
|
69
187
|
|
|
188
|
+
- TAG: [v3.1.4][3.1.4t]
|
|
189
|
+
|
|
70
190
|
## [3.1.3] ([tag][3.1.3t]) - 2020-12-18
|
|
71
191
|
|
|
192
|
+
- TAG: [v3.1.3][3.1.3t]
|
|
193
|
+
|
|
72
194
|
## [3.1.2] ([tag][3.1.2t]) - 2020-12-10
|
|
73
195
|
|
|
196
|
+
- TAG: [v3.1.2][3.1.2t]
|
|
197
|
+
|
|
74
198
|
## [3.1.1] ([tag][3.1.1t]) - 2020-12-09
|
|
75
199
|
|
|
200
|
+
- TAG: [v3.1.1][3.1.1t]
|
|
201
|
+
|
|
76
202
|
## [3.1.0] ([tag][3.1.0t]) - 2020-10-24
|
|
77
203
|
|
|
204
|
+
- TAG: [v3.1.0][3.1.0t]
|
|
205
|
+
|
|
78
206
|
## [3.0.0] ([tag][3.0.0t]) - 2020-10-07
|
|
79
207
|
|
|
208
|
+
- TAG: [v3.0.0][3.0.0t]
|
|
209
|
+
|
|
80
210
|
## [2.0.0] ([tag][2.0.0t]) - 2020-10-06
|
|
81
211
|
|
|
212
|
+
- TAG: [v2.0.0][2.0.0t]
|
|
213
|
+
|
|
82
214
|
## [1.0.17] ([tag][1.0.17t]) - 2018-09-10
|
|
83
215
|
|
|
216
|
+
- TAG: [v1.0.17][1.0.17t]
|
|
217
|
+
|
|
84
218
|
## [1.0.16] ([tag][1.0.16t]) - 2018-01-16
|
|
85
219
|
|
|
220
|
+
- TAG: [v1.0.16][1.0.16t]
|
|
221
|
+
|
|
86
222
|
## [1.0.15] ([tag][1.0.15t]) - 2017-10-17
|
|
87
223
|
|
|
224
|
+
- TAG: [v1.0.15][1.0.15t]
|
|
225
|
+
|
|
88
226
|
## [1.0.14] ([tag][1.0.14t]) - 2017-10-09
|
|
89
227
|
|
|
228
|
+
- TAG: [v1.0.14][1.0.14t]
|
|
229
|
+
|
|
90
230
|
## [1.0.13] ([tag][1.0.13t]) - 2017-10-08
|
|
91
231
|
|
|
232
|
+
- TAG: [v1.0.13][1.0.13t]
|
|
233
|
+
|
|
92
234
|
## [1.0.12] ([tag][1.0.12t]) - 2017-10-08
|
|
93
235
|
|
|
236
|
+
- TAG: [v1.0.12][1.0.12t]
|
|
237
|
+
|
|
94
238
|
## [1.0.11] ([tag][1.0.11t]) - 2017-10-06
|
|
95
239
|
|
|
240
|
+
- TAG: [v1.0.11][1.0.11t]
|
|
241
|
+
|
|
96
242
|
## [1.0.10] ([tag][1.0.10t]) - 2017-09-26
|
|
97
243
|
|
|
244
|
+
- TAG: [v1.0.10][1.0.10t]
|
|
245
|
+
|
|
98
246
|
## [1.0.9] ([tag][1.0.9t]) - 2017-09-06
|
|
99
247
|
|
|
248
|
+
- TAG: [v1.0.9][1.0.9t]
|
|
249
|
+
|
|
100
250
|
## [1.0.8] ([tag][1.0.8t]) - 2017-09-06
|
|
101
251
|
|
|
252
|
+
- TAG: [v1.0.8][1.0.8t]
|
|
253
|
+
|
|
102
254
|
## [1.0.7] ([tag][1.0.7t]) - 2017-09-06
|
|
103
255
|
|
|
256
|
+
- TAG: [v1.0.7][1.0.7t]
|
|
257
|
+
|
|
104
258
|
## [1.0.6] ([tag][1.0.6t]) - 2017-09-05
|
|
105
259
|
|
|
260
|
+
- TAG: [v1.0.6][1.0.6t]
|
|
261
|
+
|
|
106
262
|
## [1.0.5] ([tag][1.0.5t]) - 2017-03-31
|
|
107
263
|
|
|
264
|
+
- TAG: [v1.0.5][1.0.5t]
|
|
265
|
+
|
|
108
266
|
## [1.0.4] ([tag][1.0.4t]) - 2017-03-31
|
|
109
267
|
|
|
268
|
+
- TAG: [v1.0.4][1.0.4t]
|
|
269
|
+
|
|
110
270
|
## [1.0.3] ([tag][1.0.3t]) - 2017-03-31
|
|
111
271
|
|
|
272
|
+
- TAG: [v1.0.3][1.0.3t]
|
|
273
|
+
|
|
112
274
|
## [1.0.2] ([tag][1.0.2t]) - 2017-03-30
|
|
113
275
|
|
|
276
|
+
- TAG: [v1.0.2][1.0.2t]
|
|
277
|
+
|
|
114
278
|
## [1.0.1] ([tag][1.0.1t]) - 2017-03-29
|
|
115
279
|
|
|
280
|
+
- TAG: [v1.0.1][1.0.1t]
|
|
281
|
+
|
|
116
282
|
## [1.0.0] ([tag][1.0.0t]) - 2017-03-26
|
|
117
283
|
|
|
284
|
+
- TAG: [v1.0.0][1.0.0t]
|
|
285
|
+
|
|
118
286
|
## [0.1.0] ([tag][0.1.0t]) - 2017-03-25
|
|
287
|
+
|
|
288
|
+
- TAG: [v0.1.0][0.1.0t]
|
|
289
|
+
|
|
119
290
|
- Initial release
|
|
120
291
|
|
|
121
|
-
[Unreleased]: https://
|
|
122
|
-
[4.0.
|
|
123
|
-
[4.0.
|
|
124
|
-
[4.0.
|
|
125
|
-
[4.0.
|
|
126
|
-
[4.0.
|
|
127
|
-
[4.0.
|
|
128
|
-
[
|
|
129
|
-
[
|
|
130
|
-
[
|
|
131
|
-
[
|
|
132
|
-
[3.1.
|
|
133
|
-
[3.1.
|
|
134
|
-
[3.1.
|
|
135
|
-
[3.1.
|
|
136
|
-
[3.1.
|
|
137
|
-
[3.1.
|
|
138
|
-
[3.1.
|
|
139
|
-
[3.1.
|
|
140
|
-
[3.1.
|
|
141
|
-
[3.1.
|
|
142
|
-
[3.1.
|
|
143
|
-
[3.1.
|
|
144
|
-
[3.1.
|
|
145
|
-
[3.1.
|
|
146
|
-
[3.1.
|
|
147
|
-
[3.1.
|
|
148
|
-
[3.
|
|
149
|
-
[3.
|
|
150
|
-
[
|
|
151
|
-
[
|
|
152
|
-
[
|
|
153
|
-
[
|
|
154
|
-
[
|
|
155
|
-
[
|
|
156
|
-
[1.0.
|
|
157
|
-
[1.0.
|
|
158
|
-
[1.0.
|
|
159
|
-
[1.0.
|
|
160
|
-
[1.0.
|
|
161
|
-
[1.0.
|
|
162
|
-
[1.0.
|
|
163
|
-
[1.0.
|
|
164
|
-
[1.0.
|
|
165
|
-
[1.0.
|
|
166
|
-
[1.0.
|
|
167
|
-
[1.0.
|
|
168
|
-
[1.0.
|
|
169
|
-
[1.0.
|
|
170
|
-
[1.0.
|
|
171
|
-
[1.0.
|
|
172
|
-
[1.0.
|
|
173
|
-
[1.0.
|
|
174
|
-
[1.0.
|
|
175
|
-
[1.0.
|
|
176
|
-
[1.0.
|
|
177
|
-
[1.0.
|
|
178
|
-
[1.0.
|
|
179
|
-
[1.0.
|
|
180
|
-
[1.0.
|
|
181
|
-
[1.0.
|
|
182
|
-
[1.0.
|
|
183
|
-
[1.0.
|
|
184
|
-
[1.0.
|
|
185
|
-
[1.0.
|
|
186
|
-
[1.0.
|
|
187
|
-
[1.0.
|
|
188
|
-
[0.1
|
|
189
|
-
[
|
|
292
|
+
[Unreleased]: https://github.com/galtzo-floss/debug_logging/compare/v4.0.4...HEAD
|
|
293
|
+
[4.0.4]: https://github.com/galtzo-floss/debug_logging/compare/v4.0.3...v4.0.4
|
|
294
|
+
[4.0.4t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v4.0.4
|
|
295
|
+
[4.0.3]: https://github.com/galtzo-floss/debug_logging/compare/v4.0.2...v4.0.3
|
|
296
|
+
[4.0.3t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v4.0.3
|
|
297
|
+
[4.0.2]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v4.0.1...v4.0.2
|
|
298
|
+
[4.0.2t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v4.0.2
|
|
299
|
+
[4.0.1]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v4.0.0...v4.0.1
|
|
300
|
+
[4.0.1t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v4.0.1
|
|
301
|
+
[4.0.0]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v3.1.9...v4.0.0
|
|
302
|
+
[4.0.0t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v4.0.0
|
|
303
|
+
[3.1.9]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v3.1.8...v3.1.9
|
|
304
|
+
[3.1.9t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v3.1.9
|
|
305
|
+
[3.1.8]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v3.1.7...v3.1.8
|
|
306
|
+
[3.1.8t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v3.1.8
|
|
307
|
+
[3.1.7]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v3.1.6...v3.1.7
|
|
308
|
+
[3.1.7t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v3.1.7
|
|
309
|
+
[3.1.6]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v3.1.5...v3.1.6
|
|
310
|
+
[3.1.6t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v3.1.6
|
|
311
|
+
[3.1.5]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v3.1.4...v3.1.5
|
|
312
|
+
[3.1.5t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v3.1.5
|
|
313
|
+
[3.1.4]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v3.1.3...v3.1.4
|
|
314
|
+
[3.1.4t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v3.1.4
|
|
315
|
+
[3.1.3]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v3.1.2...v3.1.3
|
|
316
|
+
[3.1.3t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v3.1.3
|
|
317
|
+
[3.1.2]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v3.1.1...v3.1.2
|
|
318
|
+
[3.1.2t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v3.1.2
|
|
319
|
+
[3.1.1]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v3.1.0...v3.1.1
|
|
320
|
+
[3.1.1t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v3.1.1
|
|
321
|
+
[3.1.0]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v3.0.0...v3.1.0
|
|
322
|
+
[3.1.0t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v3.1.0
|
|
323
|
+
[3.0.0]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v2.0.0...v3.0.0
|
|
324
|
+
[3.0.0t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v3.0.0
|
|
325
|
+
[2.0.0]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v1.0.17...v2.0.0
|
|
326
|
+
[2.0.0t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v2.0.0
|
|
327
|
+
[1.0.17]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v1.0.16...v1.0.17
|
|
328
|
+
[1.0.17t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v1.0.17
|
|
329
|
+
[1.0.16]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v1.0.15...v1.0.16
|
|
330
|
+
[1.0.16t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v1.0.16
|
|
331
|
+
[1.0.15]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v1.0.14...v1.0.15
|
|
332
|
+
[1.0.15t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v1.0.15
|
|
333
|
+
[1.0.14]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v1.0.13...v1.0.14
|
|
334
|
+
[1.0.14t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v1.0.14
|
|
335
|
+
[1.0.13]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v1.0.12...v1.0.13
|
|
336
|
+
[1.0.13t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v1.0.13
|
|
337
|
+
[1.0.12]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v1.0.11...v1.0.12
|
|
338
|
+
[1.0.12t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v1.0.12
|
|
339
|
+
[1.0.11]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v1.0.10...v1.0.11
|
|
340
|
+
[1.0.11t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v1.0.11
|
|
341
|
+
[1.0.10]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v1.0.9...v1.0.10
|
|
342
|
+
[1.0.10t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v1.0.10
|
|
343
|
+
[1.0.9]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v1.0.8...v1.0.9
|
|
344
|
+
[1.0.9t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v1.0.9
|
|
345
|
+
[1.0.8]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v1.0.7...v1.0.8
|
|
346
|
+
[1.0.8t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v1.0.8
|
|
347
|
+
[1.0.7]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v1.0.6...v1.0.7
|
|
348
|
+
[1.0.7t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v1.0.7
|
|
349
|
+
[1.0.6]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v1.0.5...v1.0.6
|
|
350
|
+
[1.0.6t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v1.0.6
|
|
351
|
+
[1.0.5]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v1.0.4...v1.0.5
|
|
352
|
+
[1.0.5t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v1.0.5
|
|
353
|
+
[1.0.4]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v1.0.3...v1.0.4
|
|
354
|
+
[1.0.4t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v1.0.4
|
|
355
|
+
[1.0.3]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v1.0.2...v1.0.3
|
|
356
|
+
[1.0.3t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v1.0.3
|
|
357
|
+
[1.0.2]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v1.0.1...v1.0.2
|
|
358
|
+
[1.0.2t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v1.0.2
|
|
359
|
+
[1.0.1]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v1.0.0...v1.0.1
|
|
360
|
+
[1.0.1t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v1.0.1
|
|
361
|
+
[1.0.0]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v0.1.0...v1.0.0
|
|
362
|
+
[1.0.0t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v1.0.0
|
|
363
|
+
[0.1.0]: https://github.com/galtzo-floss/debug_logging/compare/f648ea6832aa85232d320b4c4acc4a84e44a83d3...v0.1.0
|
|
364
|
+
[0.1.0t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v0.1.0
|
data/CITATION.cff
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
cff-version: 1.2.0
|
|
2
|
+
title: "debug_logging"
|
|
3
|
+
message: >-
|
|
4
|
+
If you use this work and you want to cite it,
|
|
5
|
+
then you can use the metadata from this file.
|
|
6
|
+
type: software
|
|
7
|
+
authors:
|
|
8
|
+
- given-names: "Peter H."
|
|
9
|
+
family-names: "Boling"
|
|
10
|
+
email: "floss@galtzo.com"
|
|
11
|
+
affiliation: "galtzo.com"
|
|
12
|
+
orcid: 'https://orcid.org/0009-0008-8519-441X'
|
|
13
|
+
identifiers:
|
|
14
|
+
- type: url
|
|
15
|
+
value: 'https://github.com/galtzo-floss/debug_logging'
|
|
16
|
+
description: "debug_logging"
|
|
17
|
+
repository-code: 'https://github.com/galtzo-floss/debug_logging'
|
|
18
|
+
abstract: >-
|
|
19
|
+
debug_logging
|
|
20
|
+
license: See license file
|