Releases: babelouest/ulfius
Releases · babelouest/ulfius
Release 2.7.15
- Add functions
ulfius_send_http_request_with_limit
andulfius_send_http_streaming_request_max_header
- cmake: restore option
WITH_YDER
which was forgotten in last release refactor - cmake: split package build options in 3 (tar.gz, deb and rpm), and set all packages build to off by default
Release 2.7.14
This release is dedicated to my dear friend @oliv3 , may you rest in peace.
- Set protocols to http and https only in send requests
- Fix static analyzer warnings
- Minor improvements
- cmake: remove
DownloadProject
feature, now dependencies must be previously installed
Release 2.7.13
- Websockets client: fix case where server sends a 0-length packet (#245)
- Minor improvements
Release 2.7.12
- Improve cmake script and build for Visual Studio integration
- Minor bugfixes
- Build with flag
-Wconversion
- Add cmake build flag
WITH_WEBSOCKET_MESSAGE_LIST
to completely disable message lists storage in websockets
Release 2.7.11
- Add
ulfius_websocket_parse_json_message
for incoming websocket messages - Breaking: in
ulfius_websocket_send_json_message
, returnU_ERROR_PARAMS
ifj_message
is NULL - Update callback examples
- Fix minor bugs
Release 2.7.10
- Update
SameSite
cookie value, addU_COOKIE_SAME_SITE_EMPTY
and allow value None - Fix pkg-config file with absolute path for
CMAKE_INSTALL_{INCLUDE,LIB}DIR
- Fix
CMAKE_MODULE_PATH
who was used as single value
Release 2.7.9
- Fix multipart/form-data for large values, thanks itzoke! (#222, #223)
- Add option
allowed_post_processor
instruct _u_instance
to disable post parameter processing depending on the content-type - Add more example_callbacks
Release 2.7.8
- Fix Origin header setting in websocket client
- Remove header duplicates and Content-Length
- Redirect libmicrohttpd logs to yder
- Replace
uint
withunsigned int
- Add
ulfius_export_request_http
andulfius_export_response_http
- Use
o_strnullempty
instead ofo_strlen
to check if achar *
has data
Release 2.7.7
- Use
o_malloc
everywhere instead ofmalloc
(#206)
Release 2.7.6
- Fix
ulfius_websocket_wait_close
- Fix
ulfius_send_http_request
when url contains spaces