Releases: pramsey/pgsql-http
Releases · pramsey/pgsql-http
Version 1.6.1
What's Changed
- CURL option: CURLOPT_CONNECTTIMEOUT_MS by @krsvital in #174
- CURL options: CURLOPT_SSLKEY_BLOB and CURLOPT_SSLCERT_BLOB
- Avoid null termination issues when posting binary content
New Contributors
- @krsvital made their first contribution in #174
- @paulovieira made their first contribution in #176
Full Changelog: v1.6.0...v1.6.1
Version 1.6.0
What's Changed
- Add extschema by @cvas71 in #138
- Set errno to 0 before strtol by @irisjae in #151
- Don't define get_extension_schema for PG16 and higher. It is already … by @robe2 in #156
- SUPPORT unknown types by @robe2 in #163
- MINOR FIXES and add PG16 testing by @robe2 in #162
- Handle data element for HTTP_UNKNOWN by @robe2 in #165
New Contributors
- @cvas71 made their first contribution in #138
- @irisjae made their first contribution in #151
- @craigpastro made their first contribution in #153
Full Changelog: v1.5.0...v1.6.0
Version 1.5.0
- Allow DELETE requests to have content body
- Add http_delete(uri, content, content-type) function signature
Version 1.4.1
- Fix support for older versions of PostgreSQL, given the use of back-end functions that are more recent.
Version 1.4.0
- Support for setting user-agent
- Allow urlencoding against bytea data
- Allow urlencoding against jsonb data
- Add
http_get(uri, jsonb)
andhttp_post(uri, jsonb)
for easy data handling - Allow installation in alternate schemas
- Add
http_list_curlopt()
to list current state of curl options
Version 1.3.1
PostgreSQL 12 support.
Version 1.3.0
Support the HTTP PATCH command, and fix handling of timeouts.
Version 1.2.4
Allow user-specified options to persist for the whole live of a connection while at the same time ensuring all other options are reset at the start of each request cycle. Fixes some outstanding bugs.
Version 1.2.3
Remove memory leak in header parsing, add support for some SSL options, and clean up some version dependency issue with libcurl.
Version 1.2.2
Fix a memory bug in HTTP PUT, and support request interruption.