Releases: j-ulrich/http-status-codes-cpp
Releases · j-ulrich/http-status-codes-cpp
1.6.2
Fixed
- Error in release configuration.
1.6.1
Fixed
- Mistake during release of version 1.6.0.
1.6.0
Added
- [#28] Added code
Invalid
(-1).
- [#28]{Qt C++11} Qt C++11 variant which uses
enum class
for the codes.
Changed
- {Qt}
networkErrorToStatusCode()
now returns a Code
instead of int
.
Removed
- Testing with Visual Studio 2013 because of outdated CMake.
1.5.0
Changed
- [#21] Code
NotExtended
(510) is marked as obsoleted.
1.4.0
Updates and adds missing status codes from the IANA registry.
Added
- [#17] Added codes
MisdirectedRequest
(421), TooEarly
(425), ContentTooLarge
(413) and UnprocessableContent
(422).
The existing codes PayloadTooLarge
(413) and UnprocessableEntity
(422) are kept for backward compatibility.
Changed
- [#12] Updated GTest to 1.8.1 to fix deprecation warnings with recent compilers.
- [#17] Updated the reason phrases for
PayloadTooLarge
(413), UnprocessableEntity
(422) and GatewayTimeout
(504).
Fixed
- {C++11} Added missing
Code::xxx_max
enumerator.
1.3.0
Added
- Support for custom (error) codes by ensuring the enums can hold values up to 1023.
1.2.0
Added
- [#5/#6]{C++11}
toInt()
conversion function.
1.1.1
Fixed
- Some QNetworkReply::NetworkError codes were not available in Qt before 5.3.
1.1.0
Adds missing status codes from the IANA registry.
Added
- Status codes 103 Early Hints, 208 Already Reported, 508 Loop Detected and 510 Not Extended
Fixed
- Removed redundant "HttpStatus_XXX" documentation comments in C variant.