Revision history for Perl module HTTP::Promise
v0.5.2 2024-09-05T21:07:34+0900
- Updated dependencies
v0.5.1 2024-03-27T16:53:48+0900
- Minor correction of undefined variable in HTTP::Promise
- Correcting minor bug in _read_body() in HTTP::Promise
v0.5.0 2024-02-12T21:30:05+0900
- Added method prepare() in HTTP::Promise
- Added method host() in HTTP::Promise::Request
- Added a warning when parameters are passed as an hash reference and not an hash to methods post, put, patch, etc that rely on _make_request_data()
v0.4.1 2024-02-06T06:30:56+0900
- Correcting small bug in HTTP::Promise::Body::Form
v0.4.0 2024-02-01T23:17:20+0900
- Added the method decode_json() in HTTP::Promise::Message
v0.3.3 2023-10-10T08:15:14+0900
- Corrected malformed signature for distribution release
v0.3.2 2023-10-07T12:04:00+0900
- Corrected malformed signature for distribution release
v0.3.1 2023-09-22T09:41:30+0900
- Correcting a bug in method is_binary() in HTTP::Promise::Entity affecting the content of the data being tested.
- Checking in method _read_body_chunked() in HTTP::Promise that the length of data written to body file matches the expected amount or returns an error.
v0.3.0 2023-09-08T18:57:43+0900
- Code cleanup
- Minor improvement in method value() of HTTP::Promise::Field::QualityValue
- Corrected a bug where the default headers set with default_headers() were not used.
v0.2.5 2023-08-29T10:18:48+0900
- Added option accept_encoding to enable/disable receiving compressed data
- Added the possibility of setting a query string for POST/PUT queries
- Updated _make_request_data() to only set default Content-Type and Content-Length only when there is some data provided
- Updated _make_request_query() to accept special header name 'Content' or 'Query' to set the query string.
v0.2.4 2023-08-15T15:35:14+0900
- Added method as_form_data in module HTTP::Promise::Message
- Added method url_encode to HTTP::Promise::Request
- Correcting a typo in HTTP::Promise::Stream::Base64
- Improved documentation in HTTP::Promise::Pool
v0.2.3 2022-12-21T11:17:09+0900
- Corrected a typo in method request in HTTP::Promise
v0.2.2 2022-11-12T14:21:39+0900
- Updated init() in HTTP::Promise to instantiate a default HTTP::Promise::Headers object to make default_header() method work.
v0.2.1 2022-10-29T21:15:10+0900
- Added object argument 'medium' and 'shared_mem_size' that are passed to Promise::Me
- Added method httpize_datetime to ensure a given DateTime object stringifies to a valid HTTP date
- Added the instantiation option 'use_promise' (default to true). If false, it returns the HTTP response instead of the promise.
v0.2.0 2022-08-24T10:28:44+0900
- Added exportable class function fetch
- Corrected an ineffective local_address option and method
- Added the local_host and local_port options and methods in HTTP::Promise
- Changed HTTP::Promise::IO to support local host and port when making connections
v0.1.6 2022-08-06T19:48:15+0900
- Attempting to correct an issue with THAWing HTTP::Promise::Message
v0.1.5 2022-08-06T13:57:59+0900
- Removing an overlooked debugging module from test unit
v0.1.4 2022-07-17T05:56:32+0900
- Minor correction on the temporary file extension to store response data in _read_body_chunked() in HTTP::Promise
- Corrected passing the error object with the reject callback in delete, get, options, patch, post, put methods in HTTP::Promise
- Added suport for serialisation by CBOR, Sereal and Storable for all modules
- Correcting a bug in HTTP::Promise::Headers::ContentSecurityPolicyReportOnly, in report_uri()
- Corrected missing parameters in delete() and options() methods in HTTP::Promise
v0.1.3 2022-07-01T10:44:30+0900
- Correcting error in pod documentation affecting CPAN indexing
v0.1.2 2022-06-30T13:56:42+0900
- Added missing requirement for URL::Encode::XS
v0.1.1 2022-06-28T06:38:36+0900
- Remove dependency on curry
v0.1.0 2022-06-27T23:01:44+0900
- Initial release