summaryrefslogtreecommitdiff
path: root/lib/net
AgeCommit message (Collapse)Author
2024-01-06[ruby/net-http] Tweak to Net::HTTP What's HereBurdetteLamar
https://github.com/ruby/net-http/commit/3bf641ca63
2024-01-05[ruby/net-http] Don't invoke response block more than once due to retryJeremy Evans
If a socket error occurs while performing a streaming download via the response block provided to transport_request, avoid calling the response block again as this would result in duplicate data received by the client. Fixes https://github.com/ruby/net-http/pull/86 Fixes https://github.com/ruby/net-http/pull/87 Fixes [Bug #11526] https://github.com/ruby/net-http/commit/114d01b092 Co-authored-by: Jeremy Stanley <jeremy@instructure.com>
2024-01-05[ruby/net-http] Bump version to 0.4.1Hiroshi SHIBATA
https://github.com/ruby/net-http/commit/21e226c0bc
2023-12-25[ruby/net-protocol] Provide a 'Changelog' link on rubygems.org/gems/net-protocolMark Young
By providing a 'changelog_uri' in the metadata of the gemspec a 'Changelog' link will be shown on https://rubygems.org/gems/net-protocol which makes it quick and easy for someone to check on the changes introduced with a new version. Details of this functionality can be found on https://guides.rubygems.org/specification-reference/ https://github.com/ruby/net-protocol/commit/46e78a2a0a
2023-11-07[ruby/net-protocol] Bump up 0.2.2Hiroshi SHIBATA
https://github.com/ruby/net-protocol/commit/2d3c4b43a8
2023-11-06[ruby/net-http] Bump up 0.4.0Hiroshi SHIBATA
https://github.com/ruby/net-http/commit/4be99c204c
2023-11-06[ruby/net-http] Removed obsolated Revision constantHiroshi SHIBATA
https://github.com/ruby/net-http/commit/c1c5638014
2023-10-30[ruby/net-http] fix no_proxy behaviourChristian van Rensen
https://github.com/ruby/net-http/commit/f4951dc42a
2023-10-05[ruby/net-http] Net::HTTPResponse nil checkingBrian Hawley
Fix nil handling in read_body and stream_check. Fixes: #70 https://github.com/ruby/net-http/commit/36f916ac18
2023-09-19[ruby/net-http] No longer neccessary to call `String#freeze` on string literals.0x1eef
See #144 https://github.com/ruby/net-http/commit/5a986c13d3
2023-08-16[ruby/net-http] Update lib/net/http.rbJosh Nichols
@natematykiewicz's suggestion to avoid another string allocation https://github.com/ruby/net-http/commit/4a22c42338 Co-authored-by: Nate Matykiewicz <natematykiewicz@gmail.com>
2023-08-16[ruby/net-http] Update lib/net/http/response.rbJosh Nichols
@natematykiewicz's suggestion to avoid a string allocation https://github.com/ruby/net-http/commit/925630f227 Co-authored-by: Nate Matykiewicz <natematykiewicz@gmail.com>
2023-08-16[ruby/net-http] use +'' everywhereJosh Nichols
https://github.com/ruby/net-http/commit/1077427152
2023-08-16[ruby/net-http] Fix on 2.7Josh Nichols
https://github.com/ruby/net-http/commit/5194fd541e
2023-08-16[ruby/net-http] freeze rest of libJosh Nichols
https://github.com/ruby/net-http/commit/455a74734a
2023-08-16[ruby/net-http] update net/http/response to be frozen string literalJosh Nichols
https://github.com/ruby/net-http/commit/dc3b4a75ca
2023-08-16[ruby/net-http] turn on frozen strings for net/http/generic_requestJosh Nichols
https://github.com/ruby/net-http/commit/b92ade088d
2023-08-16[ruby/net-http] turn on frozen strings for net/http/headerJosh Nichols
https://github.com/ruby/net-http/commit/a5203c9f92
2023-08-16[ruby/net-http] Improve performance of HTTPHeader#content_typeJosh Nichols
In the existing implementation, `main_type` and `sub_type` would end up being called multiple times potentially. Instead of doing that, save the result so it can be re-used. https://github.com/ruby/net-http/commit/179976f7ea
2023-05-05Redirect to `IO::NULL` for the portabilityNobuyoshi Nakada
2023-03-31[ruby/net-http] typofixHiroshi SHIBATA
https://github.com/ruby/net-http/commit/4d31bde125
2023-03-31[ruby/net-http] Fix previous commitNAKAMURA Usaku
https://github.com/ruby/net-http/commit/1b276e2654
2023-03-31[ruby/net-http] Limit header lengthNAKAMURA Usaku
https://github.com/ruby/net-http/commit/c245f7f9c8
2023-03-08[ruby/net-http] Enhanced RDoc for Net::HTTPBurdette Lamar
(https://github.com/ruby/net-http/pull/130) https://github.com/ruby/net-http/commit/698e18cfc1
2023-03-07[ruby/net-http] Re-applyHiroshi SHIBATA
https://github.com/ruby/net-http/commit/d22ca54904de after testing https://github.com/ruby/net-http/commit/7ac7401a9c
2023-03-06[ruby/net-http] Exclude git related filesNobuyoshi Nakada
https://github.com/ruby/net-http/commit/2767df580d
2023-03-06[ruby/net-http] Read in binary mode to get rid of invalid byte sequenceNobuyoshi Nakada
https://github.com/ruby/net-http/commit/38de3d17a7
2023-03-06[ruby/net-http] Test building packagesNobuyoshi Nakada
Also revert commit https://github.com/ruby/net-http/commit/d22ca54904de "Replaced non-ascii charactor. It fails version detection at `net-http.gemspec`." https://github.com/ruby/net-http/commit/fbeb247d93
2023-03-06Replaced non-ascii charactor. It fails version detection at `net-http.gemspec`.Hiroshi SHIBATA
># Returns the X509 certificate chain for the session<E2><80><99>s socket peer.
2023-03-05[ruby/net-http] [DOC] What's Here for Net:HTTPBurdette Lamar
(https://github.com/ruby/net-http/pull/128) https://github.com/ruby/net-http/commit/39e70f0f9b
2023-02-28Update lib/net/http/status.rbHiroshi SHIBATA
2023-02-27Prefer to use File.foreach instead of IO.foreachHiroshi SHIBATA
Notes: Merged: https://github.com/ruby/ruby/pull/7387
2023-02-26[ruby/net-http] [DOC] Enhanced RDoc for Net::HTTPBurdette Lamar
(https://github.com/ruby/net-http/pull/127) https://github.com/ruby/net-http/commit/07b2b88ef5
2023-02-24[ruby/net-http] [DOC] Enhanced RDoc for Net::HTTPBurdette Lamar
(https://github.com/ruby/net-http/pull/126) https://github.com/ruby/net-http/commit/4700d0660b
2023-02-23[ruby/net-http] [DOC] Enhanced RDoc for Net::HTTPBurdette Lamar
(https://github.com/ruby/net-http/pull/125) https://github.com/ruby/net-http/commit/2ea20380fc
2023-02-22[ruby/net-http] [DOC] Enhanced RDoc for Net:HTTPBurdette Lamar
(https://github.com/ruby/net-http/pull/124) https://github.com/ruby/net-http/commit/aaf26b21d6
2023-02-20[ruby/net-http] [DOC] Enhanced RDoc for Net::HTTPBurdette Lamar
(https://github.com/ruby/net-http/pull/123) https://github.com/ruby/net-http/commit/220ff3f741
2023-02-16[ruby/net-http] [DOC] Enhanced RDoc for Net::HTTPBurdette Lamar
(https://github.com/ruby/net-http/pull/122) https://github.com/ruby/net-http/commit/06f79cda87
2023-02-15[ruby/net-http] [DOC] Enhanced RDoc for Net::HTTP#getBurdette Lamar
(https://github.com/ruby/net-http/pull/121) https://github.com/ruby/net-http/commit/51b9af1eed
2023-02-14[ruby/net-http] [DOC] Enhanced RDoc for request headersBurdette Lamar
(https://github.com/ruby/net-http/pull/120) https://github.com/ruby/net-http/commit/b4eb8a7932
2023-02-13[ruby/net-http] Enhanced RDoc for CompressionBurdetteLamar
https://github.com/ruby/net-http/commit/cff88acd70
2023-02-07[ruby/net-http] Enhanced RDoc for Net::HTTPBurdetteLamar
https://github.com/ruby/net-http/commit/e65a3d9f11
2023-02-07[ruby/net-http] [DOC] Reorganize doc for proxy serverBurdette Lamar
(https://github.com/ruby/net-http/pull/117) https://github.com/ruby/net-http/commit/f8b6b76cba
2023-02-04* remove trailing spaces. [ci skip]git
2023-02-04[ruby/net-http] [DOC] Enhanced RDoc for Net::HTTPBurdette Lamar
(https://github.com/ruby/net-http/pull/116) https://github.com/ruby/net-http/commit/22c0d34002
2023-02-03[ruby/net-http] [DOC] Enhanced RDoc for write_timeoutBurdette Lamar
(https://github.com/ruby/net-http/pull/115) https://github.com/ruby/net-http/commit/6da39b0461
2023-02-02[ruby/net-http] Remarks on inclusionsBurdetteLamar
https://github.com/ruby/net-http/commit/dfd060c583
2023-02-02[ruby/net-http] [DOC] Enhanced RDoc for HTTPGenericRequestBurdette Lamar
(https://github.com/ruby/net-http/pull/113) https://github.com/ruby/net-http/commit/14c8405702
2023-01-31[ruby/net-http] Redirection revisionBurdetteLamar
https://github.com/ruby/net-http/commit/9a4e2d3a2a
2023-01-31[ruby/net-http] [DOC] Enhanced RDoc for Net::HTTPBurdette Lamar
(https://github.com/ruby/net-http/pull/110) https://github.com/ruby/net-http/commit/b098caa5e4