faraday-gzip 1.0.0 → 2.0.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: 37792a5792e1200b8dd6a1932ef1bb25db1281704fa151c86df89cb200db9207
4
- data.tar.gz: fb067ddad2efdebef70598517f33461a712d39a73bdc35b202c9b1aaf7445c6f
3
+ metadata.gz: 60cdb34cbe925160d98dd8256e447ae308a8ef6ffdd6972f4d30d4fc29fd6a56
4
+ data.tar.gz: ca28bce1ae001e78ab6907f97a99f7816123a6d0332afe297d0cafbcc1725079
5
5
  SHA512:
6
- metadata.gz: 5c95de6697b17f968d73b679b11c1f41d155a5504eb9f7412692d1fe749e1a816fb321766be3f4988ad42408796fc33ee6378a224d54dc0f1fdacc0799a3972c
7
- data.tar.gz: b79ccdbdc1cc0e0177f6b1abb9e175f0ba5f30a4ff53dcd76861ae7dfdc3235b19d4a1ddc2a0fd55b339aabd382a41096d7f538f4a2093202a96e3e068a7342c
6
+ metadata.gz: d65649549d5012254fe544bf230a089b474e49ba3dc3ffa2271ad78d920a2c95bf7576d5ff41c82e451a61c5a57f6d6484eca0debb3d848801090ff7046ced0c
7
+ data.tar.gz: 9fe5503f94111791b2c08598d400c72d402a61c13a9c612bd775ccf8a5a8b50656dd249bc3bdb20330439637b575202d7bf1c3700c7d021ee92b7b304005cae4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 2.0.0 (21-Jul-2023)
4
+
5
+ * Use zlib version 3
6
+
3
7
  ## 1.0.0 (27-Dec-2022)
4
8
 
5
9
  * Added support for JRuby (thanks, @ashkulz)
data/README.md CHANGED
@@ -3,7 +3,11 @@
3
3
  ![CI](https://github.com/bodrovis/faraday-gzip/actions/workflows/ci.yaml/badge.svg)
4
4
  [![Gem](https://img.shields.io/gem/v/faraday-gzip.svg?style=flat-square)](https://rubygems.org/gems/faraday-gzip)
5
5
 
6
- The `Gzip` middleware adds the necessary `Accept-Encoding` headers and automatically decompresses the response. If the "Accept-Encoding" header wasn't set in the request, this sets it to "gzip,deflate" and appropriately handles the compressed response from the server. This resembles what Ruby does internally in Net::HTTP#get. If [Brotli](https://github.com/miyucy/brotli) is added to the Gemfile, it will also add "br" to the header.
6
+ The `Gzip` middleware for Faraday 1 and 2 adds the necessary `Accept-Encoding` headers and automatically decompresses the response. If the "Accept-Encoding" header wasn't set in the request, this sets it to "gzip,deflate" and appropriately handles the compressed response from the server. This resembles what Ruby does internally in Net::HTTP#get. If [Brotli](https://github.com/miyucy/brotli) is added to the Gemfile, it will also add "br" to the header.
7
+
8
+ ## Prerequisites
9
+
10
+ This gem is tested with Ruby 2.6+ and JRuby 9.3+. Faraday 1 and 2 is supported.
7
11
 
8
12
  ## Installation
9
13
 
@@ -28,10 +32,10 @@ gem install faraday-gzip
28
32
  ## Usage
29
33
 
30
34
  ```ruby
31
- require 'faraday/gzip'
35
+ require 'faraday/gzip' # <=== add this line
32
36
 
33
37
  conn = Faraday.new(...) do |f|
34
- f.request :gzip
38
+ f.request :gzip # <=== add this line
35
39
  #...
36
40
  end
37
41
  ```
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Faraday
4
4
  module Gzip
5
- VERSION = '1.0.0'
5
+ VERSION = '2.0.0'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: faraday-gzip
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 2.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ilya Krukowski
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-12-27 00:00:00.000000000 Z
11
+ date: 2023-07-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '2.1'
33
+ version: '3.0'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '2.1'
40
+ version: '3.0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: bundler
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -172,7 +172,7 @@ licenses:
172
172
  metadata:
173
173
  bug_tracker_uri: https://github.com/bodrovis/faraday-gzip/issues
174
174
  changelog_uri: https://github.com/bodrovis/faraday-gzip/blob/master/CHANGELOG.md
175
- documentation_uri: http://www.rubydoc.info/gems/faraday-gzip/1.0.0
175
+ documentation_uri: http://www.rubydoc.info/gems/faraday-gzip/2.0.0
176
176
  homepage_uri: https://github.com/bodrovis/faraday-gzip
177
177
  source_code_uri: https://github.com/bodrovis/faraday-gzip
178
178
  rubygems_mfa_required: 'true'
@@ -194,7 +194,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
194
194
  - !ruby/object:Gem::Version
195
195
  version: '0'
196
196
  requirements: []
197
- rubygems_version: 3.4.1
197
+ rubygems_version: 3.4.17
198
198
  signing_key:
199
199
  specification_version: 4
200
200
  summary: Automatically sets compression headers and decompresses the response