typhoeus 1.5.0 → 1.6.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 +4 -4
- data/CHANGELOG.md +14 -1
- data/README.md +2 -2
- data/lib/typhoeus/version.rb +1 -1
- data/typhoeus.gemspec +1 -1
- metadata +7 -13
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: da76288cb44cae7a0b697d2758d41c736ce8cd35b83cc80dcc36b05a46b71601
|
|
4
|
+
data.tar.gz: 00675ad1b7cca1fa8a944c03450d1ff78419df4a734913f9297f00fb890bed41
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 931cc5e229d88380754841384cd11aa2e96f851d7ba765420f00e9817d2e05be0b77fbd96d68c21865fd894f34d5708f5c2d306fa0cc9bdbf3c06489103b0b0e
|
|
7
|
+
data.tar.gz: 8b26b43c59ef011e401f6938ba063fceea42288e755f4762a08b5cf44f6d82dbe8f30959ea65a446a73da35127378d2a2e24f6e920fbe067fcaa37f01320cbe5
|
data/CHANGELOG.md
CHANGED
|
@@ -2,7 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
## Master
|
|
4
4
|
|
|
5
|
-
[Full Changelog](http://github.com/typhoeus/typhoeus/compare/v1.
|
|
5
|
+
[Full Changelog](http://github.com/typhoeus/typhoeus/compare/v1.6.0...master)
|
|
6
|
+
|
|
7
|
+
## 1.6.0
|
|
8
|
+
|
|
9
|
+
[Full Changelog](http://github.com/typhoeus/typhoeus/compare/v1.5.0...v1.6.0)
|
|
10
|
+
|
|
11
|
+
* Add Ruby 4.0 to CI matrix and update checkout action to v6.
|
|
12
|
+
([Geremia Taglialatela](https://github.com/tagliala), [#744](https://github.com/typhoeus/typhoeus/pull/744))
|
|
13
|
+
* Require Ethon >= 0.18.0, removing the upper bound constraint.
|
|
14
|
+
([Geremia Taglialatela](https://github.com/tagliala), [#742](https://github.com/typhoeus/typhoeus/pull/742))
|
|
15
|
+
* Update RubyDoc link in gemspec metadata.
|
|
16
|
+
([Felipe Mesquita](https://github.com/felipedmesquita), [#737](https://github.com/typhoeus/typhoeus/pull/737))
|
|
17
|
+
* Update gem version badge and remove Code Climate badge.
|
|
18
|
+
([Felipe Mesquita](https://github.com/felipedmesquita), [#736](https://github.com/typhoeus/typhoeus/pull/736))
|
|
6
19
|
|
|
7
20
|
## 1.5.0
|
|
8
21
|
|
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Typhoeus [](https://badge.fury.io/rb/typhoeus) [](https://github.com/typhoeus/typhoeus/actions/workflows/ci.yml) [](https://github.com/typhoeus/typhoeus/actions/workflows/experimental.yml)
|
|
2
2
|
|
|
3
3
|
Like a modern code version of the mythical beast with 100 serpent heads, Typhoeus runs HTTP requests in parallel while cleanly encapsulating handling logic.
|
|
4
4
|
|
|
@@ -32,7 +32,7 @@ gem install typhoeus
|
|
|
32
32
|
|
|
33
33
|
## Project Tracking
|
|
34
34
|
|
|
35
|
-
* [API Documentation](https://rubydoc.info/github/typhoeus/typhoeus
|
|
35
|
+
* [API Documentation](https://rubydoc.info/github/typhoeus/typhoeus) (GitHub master)
|
|
36
36
|
|
|
37
37
|
## Usage
|
|
38
38
|
|
data/lib/typhoeus/version.rb
CHANGED
data/typhoeus.gemspec
CHANGED
|
@@ -24,7 +24,7 @@ Gem::Specification.new do |s|
|
|
|
24
24
|
'source_code_uri' => "https://github.com/typhoeus/typhoeus/tree/v#{s.version}"
|
|
25
25
|
}
|
|
26
26
|
|
|
27
|
-
s.add_dependency('ethon', [">= 0.
|
|
27
|
+
s.add_dependency('ethon', [">= 0.18.0"])
|
|
28
28
|
|
|
29
29
|
s.files = Dir.chdir(__dir__) do
|
|
30
30
|
`git ls-files -z`.split("\x0").reject do |file|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: typhoeus
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.6.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- David Balatero
|
|
@@ -17,20 +17,14 @@ dependencies:
|
|
|
17
17
|
requirements:
|
|
18
18
|
- - ">="
|
|
19
19
|
- !ruby/object:Gem::Version
|
|
20
|
-
version: 0.
|
|
21
|
-
- - "<"
|
|
22
|
-
- !ruby/object:Gem::Version
|
|
23
|
-
version: 0.16.0
|
|
20
|
+
version: 0.18.0
|
|
24
21
|
type: :runtime
|
|
25
22
|
prerelease: false
|
|
26
23
|
version_requirements: !ruby/object:Gem::Requirement
|
|
27
24
|
requirements:
|
|
28
25
|
- - ">="
|
|
29
26
|
- !ruby/object:Gem::Version
|
|
30
|
-
version: 0.
|
|
31
|
-
- - "<"
|
|
32
|
-
- !ruby/object:Gem::Version
|
|
33
|
-
version: 0.16.0
|
|
27
|
+
version: 0.18.0
|
|
34
28
|
description: Like a modern code version of the mythical beast with 100 serpent heads,
|
|
35
29
|
Typhoeus runs HTTP requests in parallel while cleanly encapsulating handling logic.
|
|
36
30
|
email:
|
|
@@ -93,10 +87,10 @@ licenses:
|
|
|
93
87
|
- MIT
|
|
94
88
|
metadata:
|
|
95
89
|
bug_tracker_uri: https://github.com/typhoeus/typhoeus/issues
|
|
96
|
-
changelog_uri: https://github.com/typhoeus/typhoeus/blob/v1.
|
|
97
|
-
documentation_uri: https://www.rubydoc.info/gems/typhoeus/1.
|
|
90
|
+
changelog_uri: https://github.com/typhoeus/typhoeus/blob/v1.6.0/CHANGELOG.md
|
|
91
|
+
documentation_uri: https://www.rubydoc.info/gems/typhoeus/1.6.0
|
|
98
92
|
rubygems_mfa_required: 'true'
|
|
99
|
-
source_code_uri: https://github.com/typhoeus/typhoeus/tree/v1.
|
|
93
|
+
source_code_uri: https://github.com/typhoeus/typhoeus/tree/v1.6.0
|
|
100
94
|
rdoc_options: []
|
|
101
95
|
require_paths:
|
|
102
96
|
- lib
|
|
@@ -111,7 +105,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
111
105
|
- !ruby/object:Gem::Version
|
|
112
106
|
version: '0'
|
|
113
107
|
requirements: []
|
|
114
|
-
rubygems_version:
|
|
108
|
+
rubygems_version: 4.0.3
|
|
115
109
|
specification_version: 4
|
|
116
110
|
summary: Parallel HTTP library on top of libcurl multi.
|
|
117
111
|
test_files: []
|