Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix CI: add ChangeLog entry and missing include <utility>
Add ChangeLog entry for the binary buffer example to satisfy the
ChangeLog Check workflow. Add missing #include <utility> for
std::move to fix cpplint warning.

https://claude.ai/code/session_01S3BvBrSoNvUhpYTyhPYCjJ
  • Loading branch information
claude authored and etr committed Mar 29, 2026
commit 2662f05478dc1b69487664346b9ebab1d750d817
2 changes: 2 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ Version 0.20.0
websocket_handler, websocket_session, register_ws_resource().
Added utility functions: reason_phrase(), is_feature_supported(),
get_mhd_version().
Added example and documentation for serving binary data from memory
using string_response (addresses PR #368).
Added conditional compilation for basic auth (HAVE_BAUTH), mirroring
existing HAVE_DAUTH pattern for digest auth. Basic auth support
is auto-detected via AC_CHECK_LIB and can be disabled at build time.
Expand Down
1 change: 1 addition & 0 deletions examples/binary_buffer_response.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@

#include <memory>
#include <string>
#include <utility>

#include <httpserver.hpp>

Expand Down