Skip to content

Commit

Permalink
Bump openssl and sqlite versions
Browse files Browse the repository at this point in the history
Addresses CVE-2023-5363
  • Loading branch information
dwoz committed Nov 7, 2023
1 parent 3da9381 commit f0983c3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions relenv/build/darwin.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ def build_python(env, dirs, logfp):
build_func=build_openssl,
download={
"url": "https://www.openssl.org/source/openssl-{version}.tar.gz",
"version": "3.1.3",
"md5sum": "ece430df6d3158913df0950cc70ea2b2",
"version": "3.1.4",
"md5sum": "653ad58812c751b887e8ec37e02bba70",
},
)

Expand All @@ -100,8 +100,8 @@ def build_python(env, dirs, logfp):
download={
"url": "https://sqlite.org/2023/sqlite-autoconf-{version}.tar.gz",
"fallback_url": "https://woz.io/relenv/dependencies/sqlite-autoconf-{version}.tar.gz",
"version": "3430100",
"md5sum": "77e61befe9c3298da0504f87772a24b0",
"version": "3430200",
"md5sum": "94fb06bfebc437762e489c355ae63716",
},
)

Expand Down
8 changes: 4 additions & 4 deletions relenv/build/linux.py
Original file line number Diff line number Diff line change
Expand Up @@ -397,8 +397,8 @@ def build_python(env, dirs, logfp):
download={
"url": "https://www.openssl.org/source/openssl-{version}.tar.gz",
"fallback_url": "https://woz.io/relenv/dependencies/openssl-{version}.tar.gz",
"version": "3.1.3",
"md5sum": "ece430df6d3158913df0950cc70ea2b2",
"version": "3.1.4",
"md5sum": "653ad58812c751b887e8ec37e02bba70",
"checkfunc": tarball_version,
"checkurl": "https://www.openssl.org/source/",
},
Expand Down Expand Up @@ -448,8 +448,8 @@ def build_python(env, dirs, logfp):
download={
"url": "https://sqlite.org/2023/sqlite-autoconf-{version}.tar.gz",
"fallback_url": "https://woz.io/relenv/dependencies/sqlite-autoconf-{version}.tar.gz",
"version": "3430100",
"md5sum": "77e61befe9c3298da0504f87772a24b0",
"version": "3430200",
"md5sum": "94fb06bfebc437762e489c355ae63716",
"checkfunc": sqlite_version,
"checkurl": "https://sqlite.org/",
},
Expand Down

0 comments on commit f0983c3

Please sign in to comment.