Commit Graph

2735 Commits

Author SHA1 Message Date
Takatoshi Kondo a5250ecbca Merge pull request #1176 from redboltz/update_to_cpp_8.0.0
Update the version to 8.0.0
cpp-8.0.0
2026-05-30 15:43:06 +09:00
Takatoshi Kondo 39cc08109c Fix CI 32bit issue. 2026-05-30 10:50:19 +09:00
Takatoshi Kondo e04a693ad1 Update zlib on CI. 2026-05-30 10:02:54 +09:00
Takatoshi Kondo aeda0daeba Update the version to 8.0.0 2026-05-30 09:46:59 +09:00
Takatoshi Kondo 092bc69b6e Merge pull request #1172 from redboltz/support_old_find_boost
Add old style find boost applying option to cmake.
2026-01-12 15:41:02 +09:00
Takatoshi Kondo 12dd72645a Add old style find boost applying option to cmake.
When cmake has -D MSGPACK_BOOST_USE_OLD_CMAKE=ON option, cmake use old style find boost.
2026-01-12 15:05:17 +09:00
Takatoshi Kondo a0b2ec09da Merge pull request #1165 from MusicScience37/fix-error-for-empty-data-in-fbuffer
Fixed processing of empty data in fbuffer class.
2025-07-21 23:16:51 +09:00
Kenta Kabashima 6bd9a571f2 Fixed processing of empty data in fbuffer class. 2025-07-21 22:48:28 +09:00
Takatoshi Kondo 9b801f087a Merge pull request #1162 from jwbee/patch-1
Include type_traits before use of std:: members
2025-07-04 12:07:45 +09:00
Takatoshi Kondo 6d478cff4d Merge pull request #1163 from redboltz/update_windows_image_2022
Updated CI windows image to 2022
2025-07-04 12:06:36 +09:00
Takatoshi Kondo 3b0fc097f0 Updated CI windows image to 2022 2025-07-04 11:43:41 +09:00
Takatoshi Kondo 39aec8fe75 Merge pull request #1159 from redboltz/update_cmake_minimum_35
Updated cmake minimum required to 3.5-4.0
2025-07-04 11:19:32 +09:00
jwbee cbeb5805cc Include type_traits before use of std:: members
msgpack-cpp relies on its users to include, directly or indirectly, the <type_traits> header before including msgpack headers. If they don't, it can't compile, because std::remove_volatile will not be declared. This fixes the issue by including it from msgpack, which should be fine now that msgpack-cpp requires C++11.
2025-07-03 11:26:35 -07:00
Takatoshi Kondo 2644706289 Updated cmake minimum required to 3.5-4.0 2025-05-18 21:09:47 +09:00
Takatoshi Kondo 1cde61e205 Merge pull request #1157 from redboltz/miyanyan-timespec
Miyanyan timespec
2025-05-17 11:08:02 +09:00
Takatoshi Kondo 8023a857e1 Updated CI ubuntu version. 2025-05-17 10:42:04 +09:00
miyanyan 0225acf247 timespec.hpp: remove duplicated include 2025-05-16 21:48:31 +08:00
Takatoshi Kondo 1876badbae Merge pull request #1154 from scrossuk/cpp_master
Work around MSVC C++20 modules error for nested msgpack::object::with_zone
2025-04-13 17:13:59 +09:00
Stephen Cross 712ec2e383 Work around MSVC C++20 modules error for nested msgpack::object::with_zone
When packaging msgpack into a C++20 module (by #include of msgpack in the
global module fragment and then `export using ...;` for relevant names),
MSVC (VS 17.13.5) reports the following:

```
error C2504: 'msgpack::v2::object': base class undefined
```

This is apparently due to with_zone being a nested type of msgpack::object;
in order to work around this problem, with_zone is replaced with an alias
to a struct defined outside of msgpack::object.
2025-04-10 12:56:17 +01:00
Takatoshi Kondo 800c483b99 Merge pull request #1151 from redboltz/fix_codecov_ignore_dir
Fixed codecov ignore directory typo.
2025-02-21 21:55:57 +09:00
Takatoshi Kondo e18398a119 Fixed codecov ignore directory typo. 2025-02-21 21:29:43 +09:00
Takatoshi Kondo f45dce33c2 Merge pull request #1150 from redboltz/update_codecov_action
Updated codecov-action to v5.
2025-02-21 21:27:38 +09:00
Takatoshi Kondo 3ccc51f44a Updated codecov badge link. 2025-02-21 20:55:42 +09:00
Takatoshi Kondo 86ce9185e2 Updated codecov-action to v5. 2025-02-21 20:36:42 +09:00
Takatoshi Kondo aa719e81ea Merge pull request #1149 from redboltz/fix_ci2
Fixed boost download URL.
2025-02-21 19:28:33 +09:00
Takatoshi Kondo 765de1fd6d Fixed coverage upload. 2025-02-21 19:06:05 +09:00
Takatoshi Kondo 876a09b8ce Added ignore mismatch. 2025-02-21 18:25:55 +09:00
Takatoshi Kondo 1e294d7a12 Fixed boost download URL. 2025-02-21 17:58:30 +09:00
Takatoshi Kondo 766c8127df Merge pull request #1142 from uyha/cpp_master
Fixed `find_package` command in README
2025-02-21 17:04:36 +09:00
Takatoshi Kondo f9f2917cc0 Merge pull request #1146 from redboltz/fix_brace
Fixed brace
2024-11-02 11:42:20 +09:00
Takatoshi Kondo 919908742b Fixed brace cpp-7.0.0 2024-11-02 11:41:41 +09:00
Takatoshi Kondo 3c8ca3b29b Merge pull request #1145 from redboltz/update_to_700
Updated the version to 7.0.0.
2024-11-02 11:31:49 +09:00
Takatoshi Kondo b41688c588 Updated the version to 7.0.0. 2024-11-02 11:10:53 +09:00
Takatoshi Kondo 405977dfa6 Merge pull request #1144 from stephanlachnit/p-cpp-revert-broken-float
Revert "Merge pull request #1018 from GeorgFritze/cpp_master"
2024-10-31 21:18:23 +09:00
Stephan Lachnit 3788b5ba63 Revert "Merge pull request #1018 from GeorgFritze/cpp_master"
This reverts commit d13d933eea, reversing
changes made to 05f654fd64.
2024-10-24 16:35:11 +02:00
Uy Ha f2be864e04 Fixed find_package command in README 2024-10-08 15:11:59 +00:00
Takatoshi Kondo 5c606bd638 Merge pull request #1133 from redboltz/fix_1132
Fixed cmake warnings.
2024-08-06 12:44:10 +09:00
Takatoshi Kondo 0605190fd3 Removed C++03 builds from appveyor. 2024-08-06 12:22:17 +09:00
Takatoshi Kondo 28cfb1ff81 Boost.Test has dropped C++03 support.
msgpack-c adjusted it.
2024-08-06 11:38:49 +09:00
Takatoshi Kondo 636a0130ba Conditional include msgpack::variant.
It uses boost::variant. boost::variant requires boost::tyoe_index.
boost::type index has dropped C++03 support.
2024-08-06 11:21:55 +09:00
Takatoshi Kondo 22f6fa1cd2 Fixed brew update on CI. 2024-08-06 10:50:12 +09:00
Takatoshi Kondo 232fff18d4 Fixed cmake warnings. 2024-08-06 10:26:03 +09:00
Takatoshi Kondo 820ccf1f1d Merge pull request #1122 from redboltz/fix_ci
Updated the boost version to 1.85.0
2024-05-28 07:22:01 +09:00
Takatoshi Kondo a687df0e22 Update osx enviconment. 2024-05-27 23:58:29 +09:00
Takatoshi Kondo 8d57954246 Updated the boost version to 1.85.0 2024-05-27 23:36:29 +09:00
Takatoshi Kondo 5c521bc346 Merge pull request #1117 from redboltz/fix_1116
Fixed invalid documentation.
2024-04-17 20:47:25 +09:00
Takatoshi Kondo 7bb73f3b98 Fixed invalid documentation. 2024-04-17 20:19:00 +09:00
Takatoshi Kondo 44c0f705c9 Merge pull request #1113 from redboltz/update_to_611
Update the version to 6.1.1.
cpp-6.1.1
2024-04-02 12:13:33 +09:00
Takatoshi Kondo ddb884e9cd Update the version to 6.1.1. 2024-04-02 11:14:58 +09:00
Takatoshi Kondo c593c32b87 Merge pull request #1112 from uyha/same-type-variant
Fix compilation error when `std::variant` has the same types
2024-04-02 11:07:50 +09:00