Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

aws-c-io: Bump s2n to 1.4.11 to match aws-sdk usage #25362

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion recipes/aws-c-io/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,13 @@ def layout(self):
cmake_layout(self, src_folder="src")

def requirements(self):
# These versions come from aws-sdl-cpp prefetch_crt_dependency.sh file,
# dont bump them independently, check the file and update all the dependencies at once
if self.version == "0.14.7":
self.requires("aws-c-common/0.9.15", transitive_headers=True, transitive_libs=True)
self.requires("aws-c-cal/0.6.14")
if self.settings.os in ["Linux", "FreeBSD", "Android"]:
self.requires("s2n/1.4.1")
self.requires("s2n/1.4.16") # 1.4.11 not available, using next available version
if self.version == "0.10.9":
self.requires("aws-c-common/0.6.11", transitive_headers=True, transitive_libs=True)
self.requires("aws-c-cal/0.5.12")
Expand Down
Loading