From 1f168ddf50f3fb49a75e1e603ef75822923b839c Mon Sep 17 00:00:00 2001 From: Bart Date: Thu, 6 Feb 2025 13:11:49 -0800 Subject: [PATCH] Updates Conan dependencies (#5256) This PR updates several Conan dependencies: * boost * date * libarchive * libmysqlclient * libpq * lz4 * onetbb * openssl * sqlite3 * zlib * zstd --- conanfile.py | 12 ++++++------ external/rocksdb/conanfile.py | 6 +++--- external/soci/conanfile.py | 8 ++++---- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/conanfile.py b/conanfile.py index 88b9c6c02..16469af8d 100644 --- a/conanfile.py +++ b/conanfile.py @@ -24,15 +24,15 @@ class Xrpl(ConanFile): } requires = [ - 'date/3.0.1', + 'date/3.0.3', 'grpc/1.50.1', - 'libarchive/3.6.2', + 'libarchive/3.7.6', 'nudb/2.0.8', - 'openssl/1.1.1u', + 'openssl/1.1.1v', 'soci/4.0.3', 'xxhash/0.8.2', 'wasmedge/0.11.2', - 'zlib/1.2.13', + 'zlib/1.3.1', ] tool_requires = [ @@ -101,9 +101,9 @@ class Xrpl(ConanFile): def requirements(self): self.requires('boost/1.86.0', force=True) - self.requires('lz4/1.9.3', force=True) + self.requires('lz4/1.10.0', force=True) self.requires('protobuf/3.21.9', force=True) - self.requires('sqlite3/3.42.0', force=True) + self.requires('sqlite3/3.47.0', force=True) if self.options.jemalloc: self.requires('jemalloc/5.3.0') if self.options.rocksdb: diff --git a/external/rocksdb/conanfile.py b/external/rocksdb/conanfile.py index 09425b9f8..1c7853d81 100644 --- a/external/rocksdb/conanfile.py +++ b/external/rocksdb/conanfile.py @@ -89,13 +89,13 @@ class RocksDBConan(ConanFile): if self.options.with_snappy: self.requires("snappy/1.1.10") if self.options.with_lz4: - self.requires("lz4/1.9.4") + self.requires("lz4/1.10.0") if self.options.with_zlib: self.requires("zlib/[>=1.2.11 <2]") if self.options.with_zstd: - self.requires("zstd/1.5.5") + self.requires("zstd/1.5.6") if self.options.get_safe("with_tbb"): - self.requires("onetbb/2021.10.0") + self.requires("onetbb/2021.12.0") if self.options.with_jemalloc: self.requires("jemalloc/5.3.0") diff --git a/external/soci/conanfile.py b/external/soci/conanfile.py index 67c572d5a..7e611493d 100644 --- a/external/soci/conanfile.py +++ b/external/soci/conanfile.py @@ -62,15 +62,15 @@ class SociConan(ConanFile): def requirements(self): if self.options.with_sqlite3: - self.requires("sqlite3/3.41.1") + self.requires("sqlite3/3.47.0") if self.options.with_odbc and self.settings.os != "Windows": self.requires("odbc/2.3.11") if self.options.with_mysql: - self.requires("libmysqlclient/8.0.31") + self.requires("libmysqlclient/8.1.0") if self.options.with_postgresql: - self.requires("libpq/14.7") + self.requires("libpq/15.5") if self.options.with_boost: - self.requires("boost/1.81.0") + self.requires("boost/1.83.0") @property def _minimum_compilers_version(self):