Skip to content

Releases: drogonframework/drogon

v1.0.0-beta12

30 Nov 04:21

Choose a tag to compare

v1.0.0-beta12 Pre-release
Pre-release

Changed

  • Make dg_ctl a symlink

  • Modify some code styles

  • Explicitly set path to '/' for JSESSIONID cookie

  • Handle gzip errors safely

  • Add the SecureSSLRedirector plugin

Fixed

  • Fix a bug in dg_ctl for creating models of sqlite3

  • Reset the flag used to parse json to false before recycling HttpRequest objects

v1.0.0-beta11

06 Nov 05:40

Choose a tag to compare

v1.0.0-beta11 Pre-release
Pre-release

Changed

  • Delete useless log output

v1.0.0-beta10

04 Nov 02:26

Choose a tag to compare

v1.0.0-beta10 Pre-release
Pre-release

API change list

  • None

Changed

  • Add the headers configuration option for static files

Fixed

  • Fix(compilation on alpine): Replace u_short alias.

v1.0.0-beta9

29 Oct 06:04

Choose a tag to compare

v1.0.0-beta9 Pre-release
Pre-release

API change list

  • Add interfaces for accessing content of attachments.

  • Add option to disable setting the 404 status code of the custom 404 page.

  • Make user can use any string as a placeholder's name in routing patterns.

  • Add type conversion methods to the HttpRequest and HttpResponse classes.

Changed

  • Modify cmake configuration.

  • Modify the quit() method.

  • Implement relationships in ORM.

Fixed

  • Fix size_t underflow of drogon_ctl.

  • Fix some race conditions.

  • Fix a busy loop bug when connections to mysql server are timeout.

v1.0.0-beta8

04 Oct 07:22

Choose a tag to compare

v1.0.0-beta8 Pre-release
Pre-release

API change list

  • Add length() method to the Field class.

  • Add as<bool>() function template specialization to the Field class.

  • Add add attribute store methods to the HttpRequest class.

  • Add the setCustomContentTypeString() method to the HttpRequest class.

  • Add thread storage.

Changed

  • Use .find('x') instead of .find("x") in a string search.

  • Add the ability to create restful API controllers.

Fixed

  • Fix a bug of creating models for mysql.

  • Fix a bug when HTTP method is PUT.

  • Fix a bug when using 'is null' substatement in ORM.

  • Fix a sqlite3 bug when some SQL errors occur.

  • Fix bug with parsing json.

  • Fix url decode.

  • Fix a error in HttpClient.

  • Fix a error in setThreadNum method.

  • Fix some race conditions.

v1.0.0-beta7

31 Aug 10:37

Choose a tag to compare

v1.0.0-beta7 Pre-release
Pre-release

API change list

  • Remove the default value parameter of some methods (#220)

Changed

  • Optimize DNS in HttpClient and WebSocketClient (support c-ares library).

  • Reduce dependencies between declarations.

  • Add database tests in the travis CI and add test cases to database tests.

  • Reduce size of docker image.

  • Make the framework API support chained calls.

  • Add a synchronous join point for AOP.

  • Modify the CMakeLists to modern cmake style.

Fixed

  • Fix bugs in default return values of functions(#220),

  • Fix a bug in the cmake configuration file when there's '+' in the building path.

  • Fix a bug in drogon_ctl (when creating orm models)

v1.0.0-beta6

08 Aug 14:21

Choose a tag to compare

v1.0.0-beta6 Pre-release
Pre-release

API change list

  • None

Changed

  • Modify the 'create view' sub-command of drogon_ctl

  • Optimize the transmission of pipelining responses.

  • Add the DrogonConfig.cmake file so that users can use drogon with the find_package(Drogon) command.

v1.0.0-beta5

02 Aug 07:00
d97cfa8

Choose a tag to compare

v1.0.0-beta5 Pre-release
Pre-release

[1.0.0-beta5] - 2019-08-01

API change list

  • None

Added

  • Add two methods to control if the Server header or the Date header is sent to clients with HTTP responses.
    • void HttpAppFramework::enableServerHeader(bool);
    • void HttpAppFramework::enableDateHeader(bool);

Changed

  • Support high performance batch mode of libpq.

v1.0.0-beta4

30 Jul 13:15
4f94260

Choose a tag to compare

v1.0.0-beta4 Pre-release
Pre-release

API change list

  • HttpRequest::query() returns a const reference of std::string instead of a string_view
  • WebSocketConnection::setContext(), WebSocketConnection::getContext(), etc.
  • Remove the config.h from public API.

Added

  • None

Changed

  • Modify the CMakeLists.txt
  • Modify the get_version.sh

Fixed

  • None

v1.0.0-beta3

28 Jul 02:14
4599abf

Choose a tag to compare

v1.0.0-beta3 Pre-release
Pre-release

API change list

  • None

Added

  • Add a README file for examples.
  • Add some managers to reduce the size of the HttpAppFrameworkImpl code.
  • Add missing wasm ContentType.

Changed

  • Update the submodule - trantor.
  • Optimize processing of HTTP pipelining.

Fixed

  • Fix an error in the HttpClient class when sending a request using the HEAD method.