funnel_http 0.5.0 → 0.5.1
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 +8 -1
- data/README.md +1 -1
- data/ext/funnel_http/go.mod +8 -10
- data/ext/funnel_http/go.sum +14 -14
- data/lib/funnel_http/version.rb +1 -1
- data/rbs_collection.lock.yaml +6 -10
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cb53dd1eaf46d4aade7108e3ec950f4d46ff6469411bc1a71c3788808f2dbeb9
|
4
|
+
data.tar.gz: 830dc0609efe52536c9fc99275a059d071132d752745e2d3064456f4a5b92403
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 32e26d0be7dee925382ba6d2706cbe4b43dd89709fd1cb0937df5133fca819ddbcd17c7320c63e9ae337333543464ae650eaa8ca8cbf8462ac6d3b94923e33b2
|
7
|
+
data.tar.gz: 5df6f9fac3ab6bf7ab9b48d93169ddc3bd6ac5e30dec50469f94a51562336bc50db99199a3c95702f0cb3724585ee013c47a7d3b4137c57e4d2c80754c5d76c4
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,12 @@
|
|
1
1
|
## [Unreleased]
|
2
|
-
[full changelog](http://github.com/sue445/funnel_http/compare/v0.5.
|
2
|
+
[full changelog](http://github.com/sue445/funnel_http/compare/v0.5.1...main)
|
3
|
+
|
4
|
+
## [0.5.1](https://github.com/sue445/funnel_http/releases/tag/v0.5.1) - 2025-09-08
|
5
|
+
[full changelog](http://github.com/sue445/funnel_http/compare/v0.5.0...v0.5.1)
|
6
|
+
|
7
|
+
* Requires Go 1.24+
|
8
|
+
* https://github.com/sue445/funnel_http/pull/107
|
9
|
+
* Update Go dependencies
|
3
10
|
|
4
11
|
## [0.5.0](https://github.com/sue445/funnel_http/releases/tag/v0.5.0) - 2025-04-14
|
5
12
|
[full changelog](http://github.com/sue445/funnel_http/compare/v0.4.0...v0.5.0)
|
data/README.md
CHANGED
@@ -89,7 +89,7 @@ client.add_default_request_header("Authorization", "Bearer xxxxxx")
|
|
89
89
|
https://sue445.github.io/funnel_http/
|
90
90
|
|
91
91
|
## Performance
|
92
|
-
Depending on the case, `funnel_http` runs about 1.
|
92
|
+
Depending on the case, `funnel_http` runs about 1.8x faster than pure-Ruby `Ractor` :dash:
|
93
93
|
|
94
94
|
See [benchmark/](benchmark/)
|
95
95
|
|
data/ext/funnel_http/go.mod
CHANGED
@@ -1,15 +1,13 @@
|
|
1
1
|
module github.com/sue445/funnel_http
|
2
2
|
|
3
|
-
go 1.
|
4
|
-
|
5
|
-
toolchain go1.24.0
|
3
|
+
go 1.24.0
|
6
4
|
|
7
5
|
require (
|
8
|
-
github.com/cockroachdb/errors v1.
|
9
|
-
github.com/jarcoal/httpmock v1.4.
|
10
|
-
github.com/ruby-go-gem/go-gem-wrapper v0.
|
11
|
-
github.com/stretchr/testify v1.
|
12
|
-
golang.org/x/sync v0.
|
6
|
+
github.com/cockroachdb/errors v1.12.0
|
7
|
+
github.com/jarcoal/httpmock v1.4.1
|
8
|
+
github.com/ruby-go-gem/go-gem-wrapper v0.8.0
|
9
|
+
github.com/stretchr/testify v1.11.1
|
10
|
+
golang.org/x/sync v0.17.0
|
13
11
|
)
|
14
12
|
|
15
13
|
require (
|
@@ -23,7 +21,7 @@ require (
|
|
23
21
|
github.com/pkg/errors v0.9.1 // indirect
|
24
22
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
25
23
|
github.com/rogpeppe/go-internal v1.9.0 // indirect
|
26
|
-
golang.org/x/sys v0.
|
27
|
-
golang.org/x/text v0.
|
24
|
+
golang.org/x/sys v0.31.0 // indirect
|
25
|
+
golang.org/x/text v0.23.0 // indirect
|
28
26
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
29
27
|
)
|
data/ext/funnel_http/go.sum
CHANGED
@@ -1,5 +1,5 @@
|
|
1
|
-
github.com/cockroachdb/errors v1.
|
2
|
-
github.com/cockroachdb/errors v1.
|
1
|
+
github.com/cockroachdb/errors v1.12.0 h1:d7oCs6vuIMUQRVbi6jWWWEJZahLCfJpnJSVobd1/sUo=
|
2
|
+
github.com/cockroachdb/errors v1.12.0/go.mod h1:SvzfYNNBshAVbZ8wzNc/UPK3w1vf0dKDUP41ucAIf7g=
|
3
3
|
github.com/cockroachdb/logtags v0.0.0-20230118201751-21c54148d20b h1:r6VH0faHjZeQy818SGhaone5OnYfxFR/+AzdY3sf5aE=
|
4
4
|
github.com/cockroachdb/logtags v0.0.0-20230118201751-21c54148d20b/go.mod h1:Vz9DsVWQQhf3vs21MhPMZpMGSht7O/2vFW2xusFUVOs=
|
5
5
|
github.com/cockroachdb/redact v1.1.5 h1:u1PMllDkdFfPWaNGMyLD1+so+aq3uUItthCFqzwPJ30=
|
@@ -15,8 +15,8 @@ github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q=
|
|
15
15
|
github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q=
|
16
16
|
github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38=
|
17
17
|
github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
|
18
|
-
github.com/jarcoal/httpmock v1.4.
|
19
|
-
github.com/jarcoal/httpmock v1.4.
|
18
|
+
github.com/jarcoal/httpmock v1.4.1 h1:0Ju+VCFuARfFlhVXFc2HxlcQkfB+Xq12/EotHko+x2A=
|
19
|
+
github.com/jarcoal/httpmock v1.4.1/go.mod h1:ftW1xULwo+j0R0JJkJIIi7UKigZUXCLLanykgjwBXL0=
|
20
20
|
github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8=
|
21
21
|
github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck=
|
22
22
|
github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE=
|
@@ -34,10 +34,10 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb
|
|
34
34
|
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
|
35
35
|
github.com/rogpeppe/go-internal v1.9.0 h1:73kH8U+JUqXU8lRuOHeVHaa/SZPifC7BkcraZVejAe8=
|
36
36
|
github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs=
|
37
|
-
github.com/ruby-go-gem/go-gem-wrapper v0.
|
38
|
-
github.com/ruby-go-gem/go-gem-wrapper v0.
|
39
|
-
github.com/stretchr/testify v1.
|
40
|
-
github.com/stretchr/testify v1.
|
37
|
+
github.com/ruby-go-gem/go-gem-wrapper v0.8.0 h1:PnBekbMwIJq4rDowtActcXKEHx8fvqr89GRHuzGoKMk=
|
38
|
+
github.com/ruby-go-gem/go-gem-wrapper v0.8.0/go.mod h1:k2k+LziSCMxNYP4J9/9v90xdU6zlU1DJpJDTU6oJhHE=
|
39
|
+
github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U=
|
40
|
+
github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U=
|
41
41
|
github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
|
42
42
|
github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
|
43
43
|
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
|
@@ -52,17 +52,17 @@ golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwY
|
|
52
52
|
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
53
53
|
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
54
54
|
golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
55
|
-
golang.org/x/sync v0.
|
56
|
-
golang.org/x/sync v0.
|
55
|
+
golang.org/x/sync v0.17.0 h1:l60nONMj9l5drqw6jlhIELNv9I0A4OFgRsG9k2oT9Ug=
|
56
|
+
golang.org/x/sync v0.17.0/go.mod h1:9KTHXmSnoGruLpwFjVSX0lNNA75CykiMECbovNTZqGI=
|
57
57
|
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
|
58
58
|
golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
59
59
|
golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
60
|
-
golang.org/x/sys v0.
|
61
|
-
golang.org/x/sys v0.
|
60
|
+
golang.org/x/sys v0.31.0 h1:ioabZlmFYtWhL+TRYpcnNlLwhyxaM9kWTDEmfnprqik=
|
61
|
+
golang.org/x/sys v0.31.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k=
|
62
62
|
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
|
63
63
|
golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
|
64
|
-
golang.org/x/text v0.
|
65
|
-
golang.org/x/text v0.
|
64
|
+
golang.org/x/text v0.23.0 h1:D71I7dUrlY+VX0gQShAThNGHFxZ13dGLBHQLVl1mJlY=
|
65
|
+
golang.org/x/text v0.23.0/go.mod h1:/BLNzu4aZCJ1+kcD0DNRotWKage4q2rGVAg4o22unh4=
|
66
66
|
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
|
67
67
|
golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
|
68
68
|
golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE=
|
data/lib/funnel_http/version.rb
CHANGED
data/rbs_collection.lock.yaml
CHANGED
@@ -2,13 +2,9 @@
|
|
2
2
|
path: ".gem_rbs_collection"
|
3
3
|
gems:
|
4
4
|
- name: base64
|
5
|
-
version:
|
5
|
+
version: 0.3.0
|
6
6
|
source:
|
7
|
-
type:
|
8
|
-
name: ruby/gem_rbs_collection
|
9
|
-
revision: cefa5dea1094880e2386c6d296c743d10eb0cf9d
|
10
|
-
remote: https://github.com/ruby/gem_rbs_collection.git
|
11
|
-
repo_dir: gems
|
7
|
+
type: rubygems
|
12
8
|
- name: cgi
|
13
9
|
version: '0'
|
14
10
|
source:
|
@@ -18,7 +14,7 @@ gems:
|
|
18
14
|
source:
|
19
15
|
type: git
|
20
16
|
name: ruby/gem_rbs_collection
|
21
|
-
revision:
|
17
|
+
revision: 14112a82013860a7d2e5246b4c4f36fbb8c349dc
|
22
18
|
remote: https://github.com/ruby/gem_rbs_collection.git
|
23
19
|
repo_dir: gems
|
24
20
|
- name: fileutils
|
@@ -38,7 +34,7 @@ gems:
|
|
38
34
|
source:
|
39
35
|
type: git
|
40
36
|
name: ruby/gem_rbs_collection
|
41
|
-
revision:
|
37
|
+
revision: 14112a82013860a7d2e5246b4c4f36fbb8c349dc
|
42
38
|
remote: https://github.com/ruby/gem_rbs_collection.git
|
43
39
|
repo_dir: gems
|
44
40
|
- name: rake
|
@@ -46,7 +42,7 @@ gems:
|
|
46
42
|
source:
|
47
43
|
type: git
|
48
44
|
name: ruby/gem_rbs_collection
|
49
|
-
revision:
|
45
|
+
revision: 14112a82013860a7d2e5246b4c4f36fbb8c349dc
|
50
46
|
remote: https://github.com/ruby/gem_rbs_collection.git
|
51
47
|
repo_dir: gems
|
52
48
|
- name: sinatra
|
@@ -54,7 +50,7 @@ gems:
|
|
54
50
|
source:
|
55
51
|
type: git
|
56
52
|
name: ruby/gem_rbs_collection
|
57
|
-
revision:
|
53
|
+
revision: 14112a82013860a7d2e5246b4c4f36fbb8c349dc
|
58
54
|
remote: https://github.com/ruby/gem_rbs_collection.git
|
59
55
|
repo_dir: gems
|
60
56
|
- name: stringio
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: funnel_http
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- sue445
|
8
8
|
bindir: exe
|
9
9
|
cert_chain: []
|
10
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: go_gem
|
@@ -234,7 +234,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
234
234
|
- !ruby/object:Gem::Version
|
235
235
|
version: '0'
|
236
236
|
requirements: []
|
237
|
-
rubygems_version: 3.6.
|
237
|
+
rubygems_version: 3.6.7
|
238
238
|
specification_version: 4
|
239
239
|
summary: Perform HTTP requests in parallel with goroutine
|
240
240
|
test_files: []
|