funnel_http 0.5.4 → 0.5.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c79a5219174c01b759695d82e825f8d35ba40cce858dd7f83502777849e0767a
4
- data.tar.gz: e69fded842d1e25740e7cc0369a6d44f019b4f6f8b9cacc7e3523decad0ce933
3
+ metadata.gz: e932ba8bc8edd4157b93cb4d4755602a3e736579b9855286814cabec9b46d2e9
4
+ data.tar.gz: b988162bfb31d433664a76704550eafcd3c05574d841bb57783f022e27c2860f
5
5
  SHA512:
6
- metadata.gz: 2a4072fc271e39aa6920d00487229dea807293ff8fdec073775ecd48134cc5eddde5a1af1deab6e15c1f6a988d7069779243a1fe09f3984833ec6ca38a911ce9
7
- data.tar.gz: e9e10f0a0f337f96e7063df0f74ed0ede1efe577a71595dcb9335da54073ac150824e684fc9cae63a4e31e8ca8fa323c9bd13e77fbb579992fc9929ae36125ae
6
+ metadata.gz: a50c4a89dd41537228b7fa40cdda780bd7a22994ae9a4d30ec9367334646af598844e5e99392cdd423390795a28ceec46ebea072c3eb5ccc40ae3d75599f0aaf
7
+ data.tar.gz: 77536931ab3666c9d02493b76a135b0ae0cbea021c1aaa0623d63d9ab81deaa0a385282f1691d9fded9e18392659d7fe052c39b0e93ffeeaa9f90fffe496e9e5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  ## [Unreleased]
2
- [full changelog](http://github.com/sue445/funnel_http/compare/v0.5.4...main)
2
+ [full changelog](http://github.com/sue445/funnel_http/compare/v0.5.5...main)
3
+
4
+ ## [0.5.5](https://github.com/sue445/funnel_http/releases/tag/v0.5.5) - 2025-11-29
5
+ [full changelog](http://github.com/sue445/funnel_http/compare/v0.5.4...v0.5.5)
6
+
7
+ * [CVE-2025-61727][CVE-2025-61729] Requires Go 1.24.11
8
+ * https://github.com/sue445/funnel_http/pull/127
9
+ * Update Go dependencies
3
10
 
4
11
  ## [0.5.4](https://github.com/sue445/funnel_http/releases/tag/v0.5.4) - 2025-11-29
5
12
  [full changelog](http://github.com/sue445/funnel_http/compare/v0.5.3...v0.5.4)
@@ -1,11 +1,11 @@
1
1
  module github.com/sue445/funnel_http
2
2
 
3
- go 1.24.9
3
+ go 1.24.11
4
4
 
5
5
  require (
6
6
  github.com/cockroachdb/errors v1.12.0
7
7
  github.com/jarcoal/httpmock v1.4.1
8
- github.com/ruby-go-gem/go-gem-wrapper v0.9.0
8
+ github.com/ruby-go-gem/go-gem-wrapper v0.10.0
9
9
  github.com/stretchr/testify v1.11.1
10
10
  golang.org/x/sync v0.18.0
11
11
  )
@@ -34,8 +34,8 @@ 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.9.0 h1:52xqhxdwt3Jz8Zwt2i3zaDyAnyPNEvhDOgg5s81WCvg=
38
- github.com/ruby-go-gem/go-gem-wrapper v0.9.0/go.mod h1:kD/v4YP0nCzAKo5RpMvZki8f8xTi1VKqGiuA+DTXHBM=
37
+ github.com/ruby-go-gem/go-gem-wrapper v0.10.0 h1:hvcKMx3cIA7b+isnwR30VPG898rwJIbj+tyBbHPC8eM=
38
+ github.com/ruby-go-gem/go-gem-wrapper v0.10.0/go.mod h1:kD/v4YP0nCzAKo5RpMvZki8f8xTi1VKqGiuA+DTXHBM=
39
39
  github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U=
40
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=
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module FunnelHttp
4
- VERSION = "0.5.4"
4
+ VERSION = "0.5.5"
5
5
  end
@@ -14,7 +14,7 @@ gems:
14
14
  source:
15
15
  type: git
16
16
  name: ruby/gem_rbs_collection
17
- revision: 04ed82d7df5d5ee825d7864abfa29d624b52e549
17
+ revision: f1d2dae32fe8d46683fbc79bbd0f1ca391d5e11a
18
18
  remote: https://github.com/ruby/gem_rbs_collection.git
19
19
  repo_dir: gems
20
20
  - name: fileutils
@@ -34,7 +34,7 @@ gems:
34
34
  source:
35
35
  type: git
36
36
  name: ruby/gem_rbs_collection
37
- revision: 04ed82d7df5d5ee825d7864abfa29d624b52e549
37
+ revision: f1d2dae32fe8d46683fbc79bbd0f1ca391d5e11a
38
38
  remote: https://github.com/ruby/gem_rbs_collection.git
39
39
  repo_dir: gems
40
40
  - name: rake
@@ -42,7 +42,7 @@ gems:
42
42
  source:
43
43
  type: git
44
44
  name: ruby/gem_rbs_collection
45
- revision: 04ed82d7df5d5ee825d7864abfa29d624b52e549
45
+ revision: f1d2dae32fe8d46683fbc79bbd0f1ca391d5e11a
46
46
  remote: https://github.com/ruby/gem_rbs_collection.git
47
47
  repo_dir: gems
48
48
  - name: sinatra
@@ -50,7 +50,7 @@ gems:
50
50
  source:
51
51
  type: git
52
52
  name: ruby/gem_rbs_collection
53
- revision: 04ed82d7df5d5ee825d7864abfa29d624b52e549
53
+ revision: f1d2dae32fe8d46683fbc79bbd0f1ca391d5e11a
54
54
  remote: https://github.com/ruby/gem_rbs_collection.git
55
55
  repo_dir: gems
56
56
  - name: stringio
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: funnel_http
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.4
4
+ version: 0.5.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - sue445
@@ -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.7
237
+ rubygems_version: 3.6.9
238
238
  specification_version: 4
239
239
  summary: Perform HTTP requests in parallel with goroutine
240
240
  test_files: []