increase 1.164.0 → 1.164.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 -0
- data/README.md +1 -1
- data/lib/increase/internal/transport/pooled_net_requester.rb +12 -10
- data/lib/increase/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0646f710278d6ed146443a024929dbf668e66a077d685dbfb2e63b451291813f
|
|
4
|
+
data.tar.gz: dc2784c1e214bf32a680642937f6201a49a3d473e3c8c46ebfd86f2c4821551e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1edcb27a1fcc9d537ca201ad27e05902bcf20d0382a40f5af4960d0b79ee1690dbb8e59311bc19d98c536976139dc8be8081a3a468a3854ebe7cbd4764b99fd8
|
|
7
|
+
data.tar.gz: bc425b1fa800bee084f08b125b7c08f36d3c632dab235d63267570561ad3640023f27c0d941f970640c6b83b4b63a9cef7188405d41dc57cfbe29ca73bf0428f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.164.1 (2025-12-16)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.164.0...v1.164.1](https://github.com/Increase/increase-ruby/compare/v1.164.0...v1.164.1)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
* calling `break` out of streams should be instantaneous ([23336c2](https://github.com/Increase/increase-ruby/commit/23336c2005c8dbb3784632e2295d6c4d13c737e7))
|
|
10
|
+
|
|
3
11
|
## 1.164.0 (2025-12-16)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v1.163.0...v1.164.0](https://github.com/Increase/increase-ruby/compare/v1.163.0...v1.164.0)
|
data/README.md
CHANGED
|
@@ -153,17 +153,19 @@ module Increase
|
|
|
153
153
|
end
|
|
154
154
|
|
|
155
155
|
self.class.calibrate_socket_timeout(conn, deadline)
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
156
|
+
::Kernel.catch(:jump) do
|
|
157
|
+
conn.request(req) do |rsp|
|
|
158
|
+
y << [req, rsp]
|
|
159
|
+
::Kernel.throw(:jump) if finished
|
|
160
|
+
|
|
161
|
+
rsp.read_body do |bytes|
|
|
162
|
+
y << bytes.force_encoding(Encoding::BINARY)
|
|
163
|
+
::Kernel.throw(:jump) if finished
|
|
164
|
+
|
|
165
|
+
self.class.calibrate_socket_timeout(conn, deadline)
|
|
166
|
+
end
|
|
167
|
+
eof = true
|
|
165
168
|
end
|
|
166
|
-
eof = true
|
|
167
169
|
end
|
|
168
170
|
end
|
|
169
171
|
ensure
|
data/lib/increase/version.rb
CHANGED