gitlab-labkit 0.30.0 → 0.31.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b4b144027d3b759c387a532a28c949d4551e6af5bc058d886d8a0f15f7156ddd
4
- data.tar.gz: 40650117c553316ffb3260ddde7c50005287856ded9dec86339dc33b8c4b73d6
3
+ metadata.gz: 3269b7b18f723ade60333e9e3d40216fde75dc5e1ab338d5970be043ee0b4146
4
+ data.tar.gz: 344f0595a78eaf3ae471fbc569d9abb43bb190de9423e351681ea5a0243f5bd8
5
5
  SHA512:
6
- metadata.gz: 19bf82ef843b8bc1ec633d50065c674d95f9ade7c0b3bcc2e9a9764972b650c4497f5741dffb95c9e30df0b5a7b7d68af601007f27396aa875bfe85573df6e26
7
- data.tar.gz: 957be0fe6bcc5a00f8565c9c2e55de978032586fc6749ab4b0b2fc1a8ca5a1e92ff547b2a3ea2d489d28c54f77b39eef97ae54eb2e0419afe2b3be04e4e091a5
6
+ metadata.gz: 3921f2408e5c7c33f20b82ca43825f5818c4b843aba4ab5b0ac99cb3a361dafa9884c39c03c1706a2890a58ac8d39ddcff84e5bf9b417c8a5f70d03d2177762d
7
+ data.tar.gz: 016b1990785aab0f54e16cbf97335931467d308c9169057796da64272941f8dd0c082ff01022f655cb590a52888b4473f18a41c50451d0b8a9abf56dc6ce822e
@@ -6,8 +6,10 @@ require "json"
6
6
  module Labkit
7
7
  module Logging
8
8
  class JsonLogger < ::Logger
9
- INTERNAL_LOG_KEYS = Labkit::Context::RAW_KEYS + [Labkit::Context::LOG_KEY]
10
- RESERVED_LOG_KEYS = INTERNAL_LOG_KEYS.map(&:to_sym) + [
9
+ # We should also reject log keys coming from Labkit::Context, but we cannot
10
+ # do this without breaking clients currently. This is tracked in
11
+ # https://gitlab.com/gitlab-org/ruby/gems/labkit-ruby/-/issues/35
12
+ RESERVED_LOG_KEYS = [
11
13
  :environment,
12
14
  :host,
13
15
  :shard,
@@ -29,7 +31,7 @@ module Labkit
29
31
  data = default_attributes
30
32
  data[:severity] = severity
31
33
  data[:time] = timestamp.utc.iso8601(3)
32
- data[Labkit::Correlation::CorrelationId::LOG_KEY] = Labkit::Correlation::CorrelationId.current_id
34
+ data.merge!(Labkit::Context.current.to_h)
33
35
 
34
36
  case message
35
37
  when String
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gitlab-labkit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.30.0
4
+ version: 0.31.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Newdigate
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-02-09 00:00:00.000000000 Z
11
+ date: 2023-02-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: actionpack