httplog 1.6.3 → 1.7.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7f946d051687bf5b9619cef09c7f08924602dc299f30f252efabb9d8c32e9d9e
4
- data.tar.gz: a3d37f01e85db1c2f4088f401834223bddebe491b3999b0944f3b3632f1d0591
3
+ metadata.gz: 659ade62ea910dac6d24038c97112f6899c640b4f1da1a1521e86037957ee157
4
+ data.tar.gz: 2c88ab4dd8293017d5ef5aa9101f77b8a0dcfca8c324c5724e1e3499c9ea908d
5
5
  SHA512:
6
- metadata.gz: 78568c78635c3f43067b3e43c1bc4bafd2867a908da22aae395b5d7ef0679d2f70fbf9b0d03b7efaaf1cd77886247a60286cc05c0d7a5118aef963a5afabfaa6
7
- data.tar.gz: 6c145267890a60f8024070dc9e32f10fb54d354ba3f1dd040c0ac9190681af886c31bf636b6a246742e84225ae5ede6153198cd46d87add0ca39710f0a08a951
6
+ metadata.gz: a8d277e613b0cfca71196bf7cc4288c3c7f26bd919410bdc5e6c94e5de5d14a45944cff130da1d2d29aa66f09ca74fd2e112b2a7b243c27e0a3dca4387b74052
7
+ data.tar.gz: 4927a60e3eba5195539e890dbb69861eee96fcf9e7d2bb736638085bc15e3e6280ea726b78e95f5702f36cdb05290464eb6ae9b36b3dbfe9586c6afe5dd11462
data/CHANGELOG.md CHANGED
@@ -1,4 +1,8 @@
1
- ## 1.6.3 - 2023-02-25
1
+ ## 1.7.0 - 2024-06-08
2
+
3
+ * [#138](https://github.com/trusche/httplog/pull/138) Support for Faraday v2
4
+
5
+ ## 1.6.3 - 2024-02-25
2
6
 
3
7
  * Dependecy updates
4
8
  * [#137](https://github.com/trusche/httplog/pull/137) Fix case sensitivity on response headers
data/README.md CHANGED
@@ -1,11 +1,13 @@
1
1
  ## httplog
2
2
 
3
- [![Gem Version](https://badge.fury.io/rb/httplog.svg)](http://badge.fury.io/rb/httplog) [![Build Status](https://travis-ci.com/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)
3
+ [![Gem Version](https://badge.fury.io/rb/httplog.svg)](http://badge.fury.io/rb/httplog)
4
+ [![Build Status](https://app.travis-ci.com/trusche/httplog.svg?token=puaZacCmspVoUFGP2EYr&branch=master)](https://app.travis-ci.com/trusche/httplog)
5
+ [![Code Climate](https://codeclimate.com/github/trusche/httplog.svg)](https://codeclimate.com/github/trusche/httplog)
4
6
  [![Release Version](https://img.shields.io/github/release/trusche/httplog.svg)](https://img.shields.io/github/release/trusche/httplog.svg)
5
7
 
6
8
  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.
7
9
 
8
- Requires ruby >= 2.6
10
+ Requires ruby >= 2.6.
9
11
 
10
12
  This gem works with the following ruby modules and libraries:
11
13
 
data/httplog.gemspec CHANGED
@@ -32,7 +32,8 @@ Gem::Specification.new do |gem|
32
32
 
33
33
  gem.add_development_dependency 'ethon', ['~> 0.11']
34
34
  gem.add_development_dependency 'excon', ['~> 0.60']
35
- gem.add_development_dependency 'faraday', ['~> 1.3']
35
+ gem.add_development_dependency 'faraday', ['>= 1.3']
36
+ gem.add_development_dependency 'faraday-multipart', ['>= 1.0']
36
37
  gem.add_development_dependency 'guard-rspec', ['~> 4.7']
37
38
  gem.add_development_dependency 'http', ['>= 4.0']
38
39
  gem.add_development_dependency 'httparty', ['~> 0.16']
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module HttpLog
4
- VERSION = '1.6.3'.freeze
4
+ VERSION = '1.7.0'.freeze
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: httplog
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.3
4
+ version: 1.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thilo Rusche
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-02-25 00:00:00.000000000 Z
11
+ date: 2024-06-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ethon
@@ -42,16 +42,30 @@ dependencies:
42
42
  name: faraday
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - "~>"
45
+ - - ">="
46
46
  - !ruby/object:Gem::Version
47
47
  version: '1.3'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - "~>"
52
+ - - ">="
53
53
  - !ruby/object:Gem::Version
54
54
  version: '1.3'
55
+ - !ruby/object:Gem::Dependency
56
+ name: faraday-multipart
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '1.0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '1.0'
55
69
  - !ruby/object:Gem::Dependency
56
70
  name: guard-rspec
57
71
  requirement: !ruby/object:Gem::Requirement
@@ -305,7 +319,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
305
319
  - !ruby/object:Gem::Version
306
320
  version: '0'
307
321
  requirements: []
308
- rubygems_version: 3.5.3
322
+ rubygems_version: 3.5.9
309
323
  signing_key:
310
324
  specification_version: 4
311
325
  summary: Log outgoing HTTP requests.