Skip to content

Releases: Stiffstream/restinio

v0.7.7

04 Jun 12:44
Compare
Choose a tag to compare

This is bug-fix release.

Thanks to @Chrys4lisfag for PR.

v0.7.6

15 Apr 12:36
Compare
Choose a tag to compare

This version fixes compilation error detected on Ubuntu-24.04 and GCC-13.2.

There are also updates for dependencies:

  • Asio -> 1-34-2
  • fmtlib -> 11.1.4

v0.7.5

06 Apr 04:57
Compare
Choose a tag to compare

This release fixes compilation error detected by VC++ in C++23 mode.

v.0.7.4

03 Mar 07:04
Compare
Choose a tag to compare

This is a maintenance release.

Fix for #229.

Update for dependencies:

Asio -> 1-32-0
llhttp -> 9.2.1
fmtlib -> 11.1.3
Catch2 -> 3.7.1

v.0.7.3

29 Nov 12:30
Compare
Choose a tag to compare

This is a maintenance release, no new functionality added.

Fixes: #225, #226.
Merges: #213.

Updates for some dependencies: Catch2 -> v3.7.0, fmtlib -> 11.0.2, expected-lite -> v0.8.0.

v.0.7.2

02 Feb 12:39
Compare
Choose a tag to compare

It's a maintenance release. If fixes several issues related to RESTinio's dependencies:

NOTE! If you have no problem with RESTinio-0.7.1 there is no need to update to v.0.7.2. An update may be necessary if you manage RESTinio's dependencies by yorself.

v.0.7.1

19 Dec 13:18
Compare
Choose a tag to compare

It's a maintenance release.

It fixes #198, #199, #200, #201, #203, #204.

v.0.7.0

13 Nov 12:31
Compare
Choose a tag to compare

This is the first significant release since v.0.6.13 and there are several breaking changes.

  • Switch to C++17. Since v.0.7.0 RESTinio requires C++17 as the minimal C++ standard.
  • Switch to nodejs/llhttp library for parsing HTTP requests. Previous versions of RESTinio used nodejs/http-parser, but it is now deprecated and no longer maintained. Since v.0.7.0 RESTinio uses nodejs/llhttp.
  • No more external projects for optional, variant and string_view. After switching to C++17 RESTinio uses std::optional, std::variant and std::string_view. Note that for the expected class RESTinio still needs the expected-lite project as a dependency.
  • Switch to Catch2 v3. The Catch2 library is used in RESTinio for testing. The first versions of Catch2 were header-only, but since v3 the Catch2 needs to be compiled as a library. Since v.0.7.0 RESTinio uses Catch2 v3 and can’t be used with previous versions of Catch2 library.
  • The Clara library is no longer used in RESTinio samples/tests/benchmarks. Parsing of command line arguments in some samples/tests/benchmarks becomes more simple and arguments with long names can’t be shortened now. It means that if --address is required then it can’t be specified as --addr.
  • The RapidJSON/json_dto libraries are no longer used in RESTinio samples/tests/benchmarks.
  • CMake is now the only build system supported. The previous versions of RESTinio used CMake and our own Mxx_ru build systems. Since v.0.7.0 only CMake is used. But Mxx_ru is still in use for managing dependencies.
  • RESTinio's CMake scripts have been refactored significantly. Most of the old CMake variables/options used for the configuration (like RESTINIO_FIND_DEPS) have been removed. There are several new variables/options that have to be used since v0.7.0: RESTINIO_ASIO_SOURCE, RESTINIO_DEP_STANDALONE_ASIO, RESTINIO_DEP_BOOST_ASIO, RESTINIO_DEP_LLHTTP, RESTINIO_DEP_FMT, RESTINIO_DEP_EXPECTED_LITE and so on. Please see the corresponding section in the documentation for more details.
  • Several classes/methods/functions marked as deprecated in previous versions are now removed.
  • The core restinio/all.hpp header file has been deprecated. It will be removed in v.0.8.0. The new core restinio/core.hpp header file must be used instead.
  • The format and behavior of restinio::on_pool_runner_t::stop changed. Now it may accept on_error-callback. The default on_error-callback calls std::abort if an exception is thrown in http_server_t::close_async.
  • Added support of chains of asynchronous handlers. Please see the corresponding section in the documentation for more details.
  • Added a basic support for chunk extensions in incoming requests.

v.0.6.19

17 Aug 09:28
Compare
Choose a tag to compare

This is a maintenance release.

Asio updated to 1-28-1.
fmtlib updated to 10.1.0.

Adaptation for SObjectizer-5.8.0.

Fix for compilation error with GCC-13. Thanks to @bandali0 for PR #183

Fix for #184

v.0.6.18

31 Mar 11:13
Compare
Choose a tag to compare

This is a bug-fix release.

Thanks to @horu for PR (#179) with the fix.