grape_logging 2.0.0 → 2.1.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: 1f20fda586594dbf4f4ad0d0894476b53750f56d37c34df2b3ceb0b804ca27b1
4
- data.tar.gz: 8550ca9bb7a492b7bd08eb9da98bd14f4d71af6052f2258b8861d6b9e6a068b0
3
+ metadata.gz: 3eae6798e8a0130a3825edab4719589e70fe49aa0f210003e9089db17a294f48
4
+ data.tar.gz: '0907410df65f7a7e782581aacd5ac1a0ab5e6a9a67111aa63eb627d73d5d174f'
5
5
  SHA512:
6
- metadata.gz: e58d85e6661ed164a4cf5f2e0675ace15fa6a224372fab1f8e07a27996a91fe078009a9d84b6cc6dbedcda2e357577b39cb9d298f5c20c1c3ec5a1e86da51e21
7
- data.tar.gz: 0c8cd020637b865f1165b36072dfa6d22312528afbbb84f18157f80d6c960321e214d3475879cca583a175b646dcfc3b806cd53adbbd26915abafa4f9acdf9c0
6
+ metadata.gz: 1a142c81ac1b47e22d960db29f7efe1b336f706f1e4c4dbbf5c019fca33c464ac6742d730046d45b933854ba53173ac884604bbfc7c8c18963bf2b74fbeabf52
7
+ data.tar.gz: c592ed9ea7d8d289b17297ec41f616a556bce9bd2d041ce738ed035155e789991789adc44610a1fec546fd00fdd2986fb93de5d04534f493ebc3b21e43001315
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  # Changelog
2
2
 
3
- ## [2.0.0] - 2025-06-28
3
+ ## [2.1.0] - 2025-07-09
4
+
5
+ ## Added
6
+ - [#91](https://github.com/aserafin/grape_logging/pull/91) Add ActionDispatch request ID to logger arguments hash as `:request_id` - [@samsonjs](https://github.com/samsonjs).
7
+
8
+ [2.1.0]: https://github.com/aserafin/grape_logging/compare/v2.0.0...v2.1.0
9
+
10
+ ## [2.0.0] - 2025-07-09
4
11
 
5
12
  ### Changed
6
13
  - **BREAKING**: Updated to support Grape 2.1 and Rack 3.1
data/RELEASING.md CHANGED
@@ -41,7 +41,7 @@ Commit your changes.
41
41
  ```shell
42
42
  git add CHANGELOG.md lib/grape_logging/version.rb
43
43
  git commit -m "Preparing for release, 1.8.5."
44
- git push github master
44
+ git push
45
45
  ```
46
46
 
47
47
  ### Release on RubyGems and GitHub
@@ -99,7 +99,7 @@ Add the next release to [CHANGELOG.md](https://github.com/aserafin/grape_logging
99
99
  ## [Next Release]
100
100
 
101
101
  ### Changed or Fixed or Added
102
- * Your contribution here.
102
+ - Your contribution here.
103
103
  ```
104
104
 
105
105
  Commit your changes.
@@ -107,5 +107,5 @@ Commit your changes.
107
107
  ```
108
108
  git add CHANGELOG.md lib/grape_logging/version.rb
109
109
  git commit -m "Bump version to 1.8.6."
110
- git push github master
110
+ git push
111
111
  ```
@@ -98,7 +98,8 @@ module GrapeLogging
98
98
  method: request.request_method,
99
99
  path: request.path,
100
100
  params: request.params,
101
- host: request.host
101
+ host: request.host,
102
+ request_id: env['action_dispatch.request_id'],
102
103
  }
103
104
  end
104
105
 
@@ -1,3 +1,3 @@
1
1
  module GrapeLogging
2
- VERSION = '2.0.0'
2
+ VERSION = '2.1.0'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: grape_logging
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - aserafin