From 742cee472f55565b0094709eedf3d7265db339cd Mon Sep 17 00:00:00 2001 From: Thilo Rusche Date: Sun, 19 Jan 2020 17:00:32 +0100 Subject: [PATCH] version bump 1.4.0 --- CHANGELOG.md | 4 ++++ Gemfile.lock | 2 +- README.md | 1 + lib/httplog/version.rb | 2 +- 4 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d1cbb65..0026372 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.4.0 - 2020-01-19 + +* [#85](https://github.com/trusche/httplog/pull/85) Parse JSON response and apply deep masking + ## 1.3.3 - 2019-11-14 * [#83](https://github.com/trusche/httplog/pull/83) Support for graylog diff --git a/Gemfile.lock b/Gemfile.lock index ac0aa4d..855d3c2 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - httplog (1.3.3) + httplog (1.4.0) rack (>= 1.0) rainbow (>= 2.0.0) diff --git a/README.md b/README.md index 33a0f22..b8774b6 100644 --- a/README.md +++ b/README.md @@ -91,6 +91,7 @@ HttpLog.configure do |config| config.url_masked_body_pattern = nil # You can specify any custom JSON serializer that implements `load` and `dump` class methods + # to parse JSON responses config.json_parser = JSON # Mask the values of sensitive request parameters diff --git a/lib/httplog/version.rb b/lib/httplog/version.rb index f740b02..10eafdf 100644 --- a/lib/httplog/version.rb +++ b/lib/httplog/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module HttpLog - VERSION = '1.3.3'.freeze + VERSION = '1.4.0'.freeze end