Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
1.12.0 source code.tar.gz | 2025-06-14 | 148.3 kB | |
1.12.0 source code.zip | 2025-06-14 | 214.0 kB | |
README.md | 2025-06-14 | 6.8 kB | |
Totals: 3 Items | 369.2 kB | 1 |
The main reason for an earlier 1.12.0 release of cpr is supporting curl >= 8.13.
What's Changed
- Updated supported versions for 1.11.0 by @COM8 in https://github.com/libcpr/cpr/pull/1123
- Add FreeBSD package/port mention into README by @part1zano in https://github.com/libcpr/cpr/pull/1124
Fixed
grammatical issues and corrected spelling errors in README.md by @laxerhd in https://github.com/libcpr/cpr/pull/1132Refactored
timeout.h: added template ctr and removed redundant ctrs (#1129) by @laxerhd in https://github.com/libcpr/cpr/pull/1131- fix no-revoke. by @Nuxar1 in https://github.com/libcpr/cpr/pull/1134
- Resolve CURLOPT_SSL_OPTIONS issues by @gentooise in https://github.com/libcpr/cpr/pull/1128
- fix: remove duplicate call in
Session::prepareCommonDownload()
by @L-Super in https://github.com/libcpr/cpr/pull/1139 - Update To The Latest Clang-Tidy Version by @COM8 in https://github.com/libcpr/cpr/pull/1144
Enhance
: Use unordered_map for CURL error mapping by @laxerhd in https://github.com/libcpr/cpr/pull/1142- Public cpr::Session::GetSharedPtrFromThis by @COM8 in https://github.com/libcpr/cpr/pull/1148
- Replace ubuntu:22.04 and ubuntu:23.04 with ubuntu:latest by @COM8 in https://github.com/libcpr/cpr/pull/1154
- [BUG] Fix cpr::ssl:KeyBlob: Copy blob to curl by @b3rgschu3tz in https://github.com/libcpr/cpr/pull/1151
- Added handling no_proxy override through Proxies by @gregory-shklover in https://github.com/libcpr/cpr/pull/1125
- fix: let bad-host-tests pass when there is DNS error redirection by @Jerry-Terrasse in https://github.com/libcpr/cpr/pull/1166
- Removed 1.9.x from the supported versions by @COM8 in https://github.com/libcpr/cpr/pull/1161
- Replaced the secureStringClear mechanism with a SecureString class by @mikael-s-persson in https://github.com/libcpr/cpr/pull/1170
- Clang-Tidy And cppcheck Fixes by @COM8 in https://github.com/libcpr/cpr/pull/1175
- Getter function for Session::header_ to enable the user to read back all headers set and delete select ones by @simue in https://github.com/libcpr/cpr/pull/1173
- Status code int32_t -> long by @liyishuai in https://github.com/libcpr/cpr/pull/1178
- Fix windows static library build parameter in CMakeLists.txt by @MiyamuraMiyako in https://github.com/libcpr/cpr/pull/1182
- Fix Seg-fault when setting proxy username + password by @simue in https://github.com/libcpr/cpr/pull/1181
- Add Session::RemoveContent() by @simue in https://github.com/libcpr/cpr/pull/1179
- Cookie expires date is now only 100 days in the future by @COM8 in https://github.com/libcpr/cpr/pull/1185
- add curl's ANY and ANSAFE authorization options by @hyOzd in https://github.com/libcpr/cpr/pull/1187
- Fixed memory leak in threadpool by @zManu3k in https://github.com/libcpr/cpr/pull/1188
- Add enforced HTTP/3 by @h3xOo in https://github.com/libcpr/cpr/pull/1177
- Update README.md to add Bazel extension instructions by @psomers3 in https://github.com/libcpr/cpr/pull/1196
- feat: Use CMAKE_MSVC_RUNTIME_LIBRARY for runtime selection in MSVC(#1… by @BestArthur in https://github.com/libcpr/cpr/pull/1199
- Update CMakeLists.txt project version for 1.11.2 release by @jaystevens in https://github.com/libcpr/cpr/pull/1200
- Add std::to_string functionality for ErrorCode to ease human meaningful logging by @psomers3 in https://github.com/libcpr/cpr/pull/1197
- Make cpr::async and HTTP (Get, Post, Put, etc.) callbacks cancelable by @Anohkka in https://github.com/libcpr/cpr/pull/1205
- Refactor AsyncWrapper to make it safer by @Anohkka in https://github.com/libcpr/cpr/pull/1206
- Do Not Check For Sanitizers If They Are Not Enabled by @COM8 in https://github.com/libcpr/cpr/pull/1204
- Fix usage for TLS v1.3 cipher by @roemil in https://github.com/libcpr/cpr/pull/1211
- Changed LowSpeed to use std::chrono by @pntzio in https://github.com/libcpr/cpr/pull/1215
- Better OpenSSL headers include based on headers version. by @T-Maxxx in https://github.com/libcpr/cpr/pull/1213
- Ensure
cpr::LowSpeed
properties are cased to long for curl by @COM8 in https://github.com/libcpr/cpr/pull/1218 - Implemented cpr::BodyView. by @T-Maxxx in https://github.com/libcpr/cpr/pull/1214
- Add
primary_ip
primary_port
toResponse
by @gitpaladin in https://github.com/libcpr/cpr/pull/1223 - Bump stefanzweifel/git-auto-commit-action from 5 to 6 by @dependabot in https://github.com/libcpr/cpr/pull/1226
- Load all certs in a CaBuffer by @afjoseph in https://github.com/libcpr/cpr/pull/1224
- WIP CURL 8.13 Support by @COM8 in https://github.com/libcpr/cpr/pull/1217
- 1.12.0 Release Update by @COM8 in https://github.com/libcpr/cpr/pull/1228
New Contributors
- @part1zano made their first contribution in https://github.com/libcpr/cpr/pull/1124
- @laxerhd made their first contribution in https://github.com/libcpr/cpr/pull/1132
- @Nuxar1 made their first contribution in https://github.com/libcpr/cpr/pull/1134
- @gentooise made their first contribution in https://github.com/libcpr/cpr/pull/1128
- @b3rgschu3tz made their first contribution in https://github.com/libcpr/cpr/pull/1151
- @gregory-shklover made their first contribution in https://github.com/libcpr/cpr/pull/1125
- @Jerry-Terrasse made their first contribution in https://github.com/libcpr/cpr/pull/1166
- @mikael-s-persson made their first contribution in https://github.com/libcpr/cpr/pull/1170
- @simue made their first contribution in https://github.com/libcpr/cpr/pull/1173
- @liyishuai made their first contribution in https://github.com/libcpr/cpr/pull/1178
- @MiyamuraMiyako made their first contribution in https://github.com/libcpr/cpr/pull/1182
- @hyOzd made their first contribution in https://github.com/libcpr/cpr/pull/1187
- @zManu3k made their first contribution in https://github.com/libcpr/cpr/pull/1188
- @h3xOo made their first contribution in https://github.com/libcpr/cpr/pull/1177
- @psomers3 made their first contribution in https://github.com/libcpr/cpr/pull/1196
- @BestArthur made their first contribution in https://github.com/libcpr/cpr/pull/1199
- @jaystevens made their first contribution in https://github.com/libcpr/cpr/pull/1200
- @Anohkka made their first contribution in https://github.com/libcpr/cpr/pull/1205
- @roemil made their first contribution in https://github.com/libcpr/cpr/pull/1211
- @pntzio made their first contribution in https://github.com/libcpr/cpr/pull/1215
- @T-Maxxx made their first contribution in https://github.com/libcpr/cpr/pull/1213
- @gitpaladin made their first contribution in https://github.com/libcpr/cpr/pull/1223
- @afjoseph made their first contribution in https://github.com/libcpr/cpr/pull/1224
Full Changelog: https://github.com/libcpr/cpr/compare/1.11.0...1.12.0