Skip to content

Commit 10c8d47

Browse files
authored
(#10203) wt: bump dependencies
* bump dependencies * fix sha256 of 4.6.2 * Revert "fix sha256 of 4.6.2" This reverts commit e1f2f8d.
1 parent 9301eda commit 10c8d47

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

recipes/wt/all/conanfile.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -104,19 +104,19 @@ def requirements(self):
104104
else:
105105
self.requires("boost/1.76.0")
106106
if self.options.connector_http:
107-
self.requires("zlib/1.2.11")
107+
self.requires("zlib/1.2.12")
108108
if self.options.with_ssl:
109-
self.requires("openssl/1.1.1m")
109+
self.requires("openssl/1.1.1n")
110110
if self.options.get_safe("with_sqlite"):
111-
self.requires("sqlite3/3.37.2")
111+
self.requires("sqlite3/3.38.1")
112112
if self.options.get_safe("with_mysql"):
113-
self.requires("libmysqlclient/8.0.17")
113+
self.requires("libmysqlclient/8.0.25")
114114
if self.options.get_safe("with_postgres"):
115-
self.requires("libpq/13.4")
115+
self.requires("libpq/14.2")
116116
if self.options.get_safe("with_mssql") and self.settings.os != "Windows":
117117
self.requires("odbc/2.3.9")
118118
if self.options.get_safe("with_unwind"):
119-
self.requires("libunwind/1.5.0")
119+
self.requires("libunwind/1.6.2")
120120

121121
def validate(self):
122122
miss_boost_required_comp = any(getattr(self.options["boost"], "without_{}".format(boost_comp), True) for boost_comp in self._required_boost_components)

0 commit comments

Comments
 (0)