diff --git a/.ruby-version b/.ruby-version index ec1cf33..338a5b5 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -2.6.3 +2.6.6 diff --git a/.travis.yml b/.travis.yml index cfd42e6..9c0bafb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,7 @@ language: ruby rvm: - - "2.4.9" - - "2.5.7" - - "2.6.5" + - "2.5.8" + - "2.6.6" gemfile: - gemfiles/http3.gemfile - gemfiles/http4.gemfile diff --git a/CHANGELOG.md b/CHANGELOG.md index 75e9616..4f84e61 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## 1.4.3 - 2020-06-10 + +* Masking `password` parameter by default... doh. + +## 1.4.2 - 2020-02-09 + +* Rollback of the previous two releases due to bugs introduced there. + ## 1.4.1 - 2020-02-08 - YANKED * [#91](https://github.com/trusche/httplog/pull/91) Fixed bug returning empty response with HTTP gem diff --git a/Gemfile.lock b/Gemfile.lock index 7feb742..716e80e 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - httplog (1.4.2) + httplog (1.4.3) rack (>= 1.0) rainbow (>= 2.0.0) @@ -10,7 +10,7 @@ GEM specs: addressable (2.7.0) public_suffix (>= 2.0.2, < 5.0) - coderay (1.1.2) + coderay (1.1.3) daemons (1.3.1) diff-lcs (1.3) docile (1.3.2) @@ -19,15 +19,15 @@ GEM ethon (0.12.0) ffi (>= 1.3.0) eventmachine (1.2.7) - excon (0.71.1) + excon (0.73.0) faraday (0.17.3) multipart-post (>= 1.2, < 3) - ffi (1.12.1) + ffi (1.13.1) ffi-compiler (1.0.1) ffi (>= 1.0.0) rake formatador (0.2.5) - guard (2.16.1) + guard (2.16.2) formatador (>= 0.2.4) listen (>= 2.7, < 4.0) lumberjack (>= 1.0.12, < 2.0) @@ -41,66 +41,64 @@ GEM guard (~> 2.1) guard-compat (~> 1.1) rspec (>= 2.99.0, < 4.0) - http (4.3.0) + http (4.4.1) addressable (~> 2.3) http-cookie (~> 1.0) http-form_data (~> 2.2) http-parser (~> 1.2.0) http-cookie (1.0.3) domain_name (~> 0.5) - http-form_data (2.2.0) + http-form_data (2.3.0) http-parser (1.2.1) ffi-compiler (>= 1.0, < 2.0) - httparty (0.17.3) + httparty (0.18.1) mime-types (~> 3.0) multi_xml (>= 0.5.2) httpclient (2.8.3) - json (2.3.0) listen (3.2.1) rb-fsevent (~> 0.10, >= 0.10.3) rb-inotify (~> 0.9, >= 0.9.10) - lumberjack (1.1.1) - method_source (0.9.2) + lumberjack (1.2.5) + method_source (1.0.0) mime-types (3.3.1) mime-types-data (~> 3.2015) - mime-types-data (3.2019.1009) + mime-types-data (3.2020.0512) multi_xml (0.6.0) multipart-post (2.1.1) nenv (0.3.0) notiffany (0.1.3) nenv (~> 0.1) shellany (~> 0.0) - oj (3.10.1) + oj (3.10.6) patron (0.13.3) - pry (0.12.2) - coderay (~> 1.1.0) - method_source (~> 0.9.0) - public_suffix (4.0.3) - rack (2.1.1) + pry (0.13.1) + coderay (~> 1.1) + method_source (~> 1.0) + public_suffix (4.0.5) + rack (2.2.2) rainbow (3.0.0) rake (12.3.3) - rb-fsevent (0.10.3) + rb-fsevent (0.10.4) rb-inotify (0.10.1) ffi (~> 1.0) rspec (3.9.0) rspec-core (~> 3.9.0) rspec-expectations (~> 3.9.0) rspec-mocks (~> 3.9.0) - rspec-core (3.9.1) - rspec-support (~> 3.9.1) - rspec-expectations (3.9.0) + rspec-core (3.9.2) + rspec-support (~> 3.9.3) + rspec-expectations (3.9.2) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.9.0) rspec-mocks (3.9.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.9.0) - rspec-support (3.9.2) + rspec-support (3.9.3) shellany (0.0.1) - simplecov (0.17.1) + simplecov (0.18.5) docile (~> 1.1) - json (>= 1.8, < 3) - simplecov-html (~> 0.10.0) - simplecov-html (0.10.2) + simplecov-html (~> 0.11) + simplecov-html (0.12.2) thin (1.7.2) daemons (~> 1.0, >= 1.0.9) eventmachine (~> 1.0, >= 1.0.4) @@ -108,7 +106,7 @@ GEM thor (1.0.1) unf (0.1.4) unf_ext - unf_ext (0.0.7.6) + unf_ext (0.0.7.7) PLATFORMS ruby @@ -131,4 +129,4 @@ DEPENDENCIES thin (~> 1.7) BUNDLED WITH - 2.0.2 + 2.1.2 diff --git a/README.md b/README.md index 94bd456..d9874b6 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ## httplog -**VERSION 1.4.0 and 1.4.1 HAVE BEEN YANKED** from rubygems.org due to [this issue](https://github.com/trusche/httplog/issues/89), please update to version 1.4.2. Sorry about that... +**VERSION 1.4.0 and 1.4.1 HAVE BEEN YANKED** from rubygems.org due to [this issue](https://github.com/trusche/httplog/issues/89), please update to version 1.4.2 or higher. Sorry about that... [![Gem Version](https://badge.fury.io/rb/httplog.svg)](http://badge.fury.io/rb/httplog) [![Build Status](https://travis-ci.org/trusche/httplog.svg?branch=master)](https://travis-ci.org/trusche/httplog) [![Code Climate](https://codeclimate.com/github/trusche/httplog.svg)](https://codeclimate.com/github/trusche/httplog) [![Release Version](https://img.shields.io/github/release/trusche/httplog.svg)](https://img.shields.io/github/release/trusche/httplog.svg) @@ -8,7 +8,7 @@ Log outgoing HTTP requests made from your application. Helps with debugging pesky API error responses, or just generally understanding what's going on under the hood. -Requires ruby >= 2.4. +Requires ruby >= 2.5 This gem works with the following ruby modules and libraries: diff --git a/lib/httplog/version.rb b/lib/httplog/version.rb index 1735d02..ccb919e 100644 --- a/lib/httplog/version.rb +++ b/lib/httplog/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module HttpLog - VERSION = '1.4.2'.freeze + VERSION = '1.4.3'.freeze end