fluent_logger_rails 0.3.0 → 0.3.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: ae2e44bf73a5fb1cceea53a99eb7fb9982c26104d9476a5f00df1fb5b5b7aa1f
4
- data.tar.gz: 11cffa68bddc3f8c3ea860b6b5242a2904c14343d307541901ffc585aae6e9ce
3
+ metadata.gz: 988edab0646cecd9d3d98cd32a11bfbd88d1e94dfa0970ba62c7e9c9f19c3e99
4
+ data.tar.gz: 15fa534445c88ceb897c6cb407776f9908a852c975bad51e3a04b081441049a7
5
5
  SHA512:
6
- metadata.gz: 6dd41b593f92c39c1cedf9585b5d575be612c0c983a2aae43c2f2561d7ca88d74c12c0ab7c4532454d03cc06566f2da7c14327a04fc53f75d89bf045c1357573
7
- data.tar.gz: 42442497dd9097f38263fef4f35d400db2288ab8730de13e75c45549424fb7b4b22cc9174105cb993baa99283ee1abf38315a3e4bde3d53a33d09000c6d3fd00
6
+ metadata.gz: 33d796df36d795648cec20e46d3e5fb2136e456b2138c08dce7968a2885e299e4b51bd423ddb75b1417a5cae4eccaea6f3b4e46c8c4aa51e237358b262383b7f
7
+ data.tar.gz: 6beee5edf24167dfbe1af1e269481c930fca189f80f987abd75185ec87ae0c505b12bb2bde1bf13602c3d222da20f5ff700939288c9c288a5a34d3e769ae2628
@@ -15,16 +15,11 @@ on:
15
15
 
16
16
  jobs:
17
17
  test:
18
-
19
18
  runs-on: ubuntu-latest
20
-
21
19
  steps:
22
20
  - uses: actions/checkout@v2
23
21
  - name: Set up Ruby
24
- # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
25
- # change this to (see https://github.com/ruby/setup-ruby#versioning):
26
- # uses: ruby/setup-ruby@v1
27
- uses: ruby/setup-ruby@ec106b438a1ff6ff109590de34ddc62c540232e0
22
+ uses: ruby/setup-ruby@v1
28
23
  with:
29
24
  ruby-version: 2.6
30
25
  - name: Install dependencies
@@ -13,6 +13,19 @@ Enhancements:
13
13
  Deprecations:
14
14
  * None
15
15
 
16
+ ## v0.3.1
17
+
18
+ Bug Fixes:
19
+
20
+ * None
21
+
22
+ Enhancements:
23
+
24
+ * Fix deprecation warning for Rails 6 (#4)
25
+
26
+ Deprecations:
27
+ * None
28
+
16
29
  ## v0.3.0
17
30
 
18
31
  Bug Fixes:
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- fluent_logger_rails (0.3.0)
4
+ fluent_logger_rails (0.3.1)
5
5
  activesupport (>= 5.0, < 6.1)
6
6
 
7
7
  GEM
@@ -38,9 +38,9 @@ GEM
38
38
  rspec-support (3.9.3)
39
39
  thread_safe (0.3.6)
40
40
  timecop (0.9.1)
41
- tzinfo (1.2.7)
41
+ tzinfo (1.2.8)
42
42
  thread_safe (~> 0.1)
43
- zeitwerk (2.4.0)
43
+ zeitwerk (2.4.1)
44
44
 
45
45
  PLATFORMS
46
46
  ruby
@@ -7,7 +7,7 @@ module FluentLoggerRails
7
7
  @level = SEV_LABEL.index(level.to_s.upcase)
8
8
  @path = path
9
9
  @logger = logger
10
- after_initialize if respond_to? :after_initialize
10
+ after_initialize if respond_to?(:after_initialize) && ActiveSupport::VERSION::MAJOR < 6
11
11
  end
12
12
 
13
13
  def add(severity, message = nil, progname = nil)
@@ -1,3 +1,3 @@
1
1
  module FluentLoggerRails
2
- VERSION = '0.3.0'
2
+ VERSION = '0.3.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent_logger_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - HackerOne Open Source