activesupport-broadcast_logger 2.0.0 → 2.0.1

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: cb0e1ac5be1a5fb65479039c4cac1767b564bd5102795fc4ca68433f205955b9
4
- data.tar.gz: 07e5c799cadad9c26caec95421133a8630b6d74d8b115d446aee58d079bbf958
3
+ metadata.gz: ed55741fe82ad8b6e1b710249fee66b4153e1028460183df2c40d3f3c4107836
4
+ data.tar.gz: c409371523b635e9ff7f1d18149082e4e5a20ff11159ea012046e2e0cfc2721c
5
5
  SHA512:
6
- metadata.gz: ba35666c2c64378d748e21d8786f0a4e7ad3ebf6024011469bec1536fb69f146720cf7e249840e51d50c7c2369c71a8a0186d8a61afdd678a23e705d8c6fd33c
7
- data.tar.gz: a13f0f3ba747dadd6a0be64390a7c279b5fc43e79cd50128922ca6257f07b956401663ea3d97ad2c4d25faa5c09e2b397e0a1ca367789635c380aeb16b7fd0a1
6
+ metadata.gz: 1d41c029c3db79a6c8c302413ade98b04d57056e120352530ecd8e78637306f26fb2efff3ec18f8c44ceaf1c35eee6fe31f3ff86b913d0483460558300995e59
7
+ data.tar.gz: 0ea95f383df4e063963a4b314a28170619572105289c29e0ffbead8c3098878e39bed587d7408a60f3990168a3c55301d0405301eb4c6dce5a73af06d05ff695
checksums.yaml.gz.sig CHANGED
Binary file
data/CHANGELOG.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Changelog
2
2
  All notable changes to this project will be documented in this file.
3
3
 
4
- Since version 2.0.0, the format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
4
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
5
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
7
  ## [Unreleased]
@@ -10,6 +10,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
10
10
  ### Fixed
11
11
  ### Removed
12
12
 
13
+ ## [2.0.1] - 2024-11-21
14
+ - COVERAGE: 97.06% -- 66/68 lines in 3 files
15
+ - BRANCH COVERAGE: 90.00% -- 9/10 branches in 3 files
16
+ - 73.68% documented
17
+ ### Fixed
18
+ - Compatibility with ActiveSupport
19
+ - Many libraries do `require "active_support"`
20
+
13
21
  ## [2.0.0] - 2024-11-21
14
22
  - COVERAGE: 97.06% -- 66/68 lines in 3 files
15
23
  - BRANCH COVERAGE: 90.00% -- 9/10 branches in 3 files
@@ -0,0 +1,4 @@
1
+ # This is a stub
2
+ # It will prevent vanilla ActiveSupport from loading its own broken logger tooling.
3
+ # Instead, we'll load the fixed replacement logging tooling from this library!
4
+ require_relative "../activesupport-broadcast_logger"
@@ -3,7 +3,7 @@
3
3
  module Activesupport
4
4
  module BroadcastLogger
5
5
  module Version
6
- VERSION = "2.0.0"
6
+ VERSION = "2.0.1"
7
7
  end
8
8
  end
9
9
  end
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activesupport-broadcast_logger
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Boling
@@ -129,7 +129,7 @@ dependencies:
129
129
  version: '2.0'
130
130
  - - ">="
131
131
  - !ruby/object:Gem::Version
132
- version: 2.0.0
132
+ version: 2.0.1
133
133
  type: :runtime
134
134
  prerelease: false
135
135
  version_requirements: !ruby/object:Gem::Requirement
@@ -139,7 +139,7 @@ dependencies:
139
139
  version: '2.0'
140
140
  - - ">="
141
141
  - !ruby/object:Gem::Version
142
- version: 2.0.0
142
+ version: 2.0.1
143
143
  - !ruby/object:Gem::Dependency
144
144
  name: version_gem
145
145
  requirement: !ruby/object:Gem::Requirement
@@ -384,6 +384,7 @@ files:
384
384
  - LICENSE.txt
385
385
  - README.md
386
386
  - SECURITY.md
387
+ - lib/active_support/broadcast_logger.rb
387
388
  - lib/activesupport-broadcast_logger.rb
388
389
  - lib/activesupport/broadcast_logger.rb
389
390
  - lib/activesupport/broadcast_logger/version.rb
@@ -392,10 +393,10 @@ licenses:
392
393
  - MIT
393
394
  metadata:
394
395
  homepage_uri: https://github.com/pboling/activesupport-broadcast_logger
395
- source_code_uri: https://github.com/pboling/activesupport-broadcast_logger/tree/v2.0.0
396
- changelog_uri: https://github.com/pboling/activesupport-broadcast_logger/blob/v2.0.0/CHANGELOG.md
396
+ source_code_uri: https://github.com/pboling/activesupport-broadcast_logger/tree/v2.0.1
397
+ changelog_uri: https://github.com/pboling/activesupport-broadcast_logger/blob/v2.0.1/CHANGELOG.md
397
398
  bug_tracker_uri: https://github.com/pboling/activesupport-broadcast_logger/issues
398
- documentation_uri: https://www.rubydoc.info/gems/activesupport-broadcast_logger/2.0.0
399
+ documentation_uri: https://www.rubydoc.info/gems/activesupport-broadcast_logger/2.0.1
399
400
  wiki_uri: https://github.com/pboling/activesupport-broadcast_logger/wiki
400
401
  funding_uri: https://liberapay.com/pboling
401
402
  rubygems_mfa_required: 'true'
metadata.gz.sig CHANGED
Binary file