From b33cfe23d9af2ed06dfbc14e0acbbbb6abe9bdee Mon Sep 17 00:00:00 2001 From: Amsakan Bavan Date: Mon, 5 Jan 2026 13:56:27 +0100 Subject: [PATCH 1/4] Switched from sprintf to snprintf --- include/boost/gil/extension/io/tiff/detail/log.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/gil/extension/io/tiff/detail/log.hpp b/include/boost/gil/extension/io/tiff/detail/log.hpp index 590886caad..bed9978f9b 100644 --- a/include/boost/gil/extension/io/tiff/detail/log.hpp +++ b/include/boost/gil/extension/io/tiff/detail/log.hpp @@ -45,7 +45,7 @@ class console_log ) { char buf[1000]; - sprintf(buf, fmt, ap); + snprintf(buf, 1000, fmt, ap); std::cout << "error: " << buf << std::endl; } @@ -55,7 +55,7 @@ class console_log ) { char buf[1000]; - sprintf(buf, fmt, ap); + snprintf(buf, 1000, fmt, ap); std::cout << "warning: " << fmt << std::endl; } }; From 8a615035a06247e11b777d40cd4974de44d7ef35 Mon Sep 17 00:00:00 2001 From: Andrey Semashev Date: Thu, 22 Jan 2026 23:11:03 +0300 Subject: [PATCH 2/4] Remove dependencies on Boost.StaticAssert. Boost.StaticAssert has been merged into Boost.Config, so remove the dependency. --- .ci/get-boost.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/.ci/get-boost.sh b/.ci/get-boost.sh index 77604b5c30..0bf2244e38 100755 --- a/.ci/get-boost.sh +++ b/.ci/get-boost.sh @@ -72,7 +72,6 @@ git submodule --quiet update --init $GIT_SUBMODULE_OPTS \ libs/ratio \ libs/rational \ libs/regex \ - libs/static_assert \ libs/smart_ptr \ libs/system \ libs/throw_exception \ From 304bea0d836b5fa2ccc4d982e06aff7107804a45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20=C5=81oskot?= Date: Fri, 6 Feb 2026 19:05:20 +0100 Subject: [PATCH 3/4] chore: Sort maintainers alphabetically by surname MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mateusz Łoskot --- meta/libraries.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/libraries.json b/meta/libraries.json index e87a2fa238..fdbcef21c1 100644 --- a/meta/libraries.json +++ b/meta/libraries.json @@ -15,9 +15,9 @@ "Iterators" ], "maintainers": [ - "Stefan Seefeld ", + "Pranam Lashkari ", "Mateusz Loskot ", - "Pranam Lashkari " + "Stefan Seefeld " ], "cxxstd": "14" } From f9d785a2d51187b1cfe1f04b2392ddb34f0415f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20=C5=81oskot?= Date: Fri, 6 Feb 2026 19:16:58 +0100 Subject: [PATCH 4/4] chore: Add Samuel Debionne to maintainers MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Samuel (https://github.com/sdebionne, @sdebionne) has been an active contributor and maintainer with commit access for several years now. This change corrects an obvious oversight. Signed-off-by: Mateusz Łoskot --- meta/libraries.json | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/libraries.json b/meta/libraries.json index fdbcef21c1..f371366184 100644 --- a/meta/libraries.json +++ b/meta/libraries.json @@ -15,6 +15,7 @@ "Iterators" ], "maintainers": [ + "Samuel Debionne", "Pranam Lashkari ", "Mateusz Loskot ", "Stefan Seefeld "