File tree Expand file tree Collapse file tree 9 files changed +33
-22
lines changed
Misc/NEWS.d/next/Security Expand file tree Collapse file tree 9 files changed +33
-22
lines changed Original file line number Diff line number Diff line change 6161 variables :
6262 testRunTitle : ' $(build.sourceBranchName)-linux'
6363 testRunPlatform : linux
64- openssl_version : 1.1.1n
64+ openssl_version : 1.1.1t
6565
6666 steps :
6767 - template : ./posix-steps.yml
@@ -118,7 +118,7 @@ jobs:
118118 variables :
119119 testRunTitle : ' $(Build.SourceBranchName)-linux-coverage'
120120 testRunPlatform : linux-coverage
121- openssl_version : 1.1.1n
121+ openssl_version : 1.1.1t
122122
123123 steps :
124124 - template : ./posix-steps.yml
Original file line number Diff line number Diff line change 6161 variables :
6262 testRunTitle : ' $(system.pullRequest.TargetBranch)-linux'
6363 testRunPlatform : linux
64- openssl_version : 1.1.1n
64+ openssl_version : 1.1.1t
6565
6666 steps :
6767 - template : ./posix-steps.yml
@@ -118,7 +118,7 @@ jobs:
118118 variables :
119119 testRunTitle : ' $(Build.SourceBranchName)-linux-coverage'
120120 testRunPlatform : linux-coverage
121- openssl_version : 1.1.1n
121+ openssl_version : 1.1.1t
122122
123123 steps :
124124 - template : ./posix-steps.yml
Original file line number Diff line number Diff line change @@ -142,7 +142,7 @@ jobs:
142142 needs : check_source
143143 if : needs.check_source.outputs.run_tests == 'true'
144144 env :
145- OPENSSL_VER : 1.1.1n
145+ OPENSSL_VER : 1.1.1t
146146 steps :
147147 - uses : actions/checkout@v2
148148 - name : Install Dependencies
Original file line number Diff line number Diff line change @@ -209,9 +209,9 @@ def library_recipes():
209209
210210 result .extend ([
211211 dict (
212- name = "OpenSSL 1.1.1n " ,
213- url = "https://www.openssl.org/source/openssl-1.1.1n .tar.gz" ,
214- checksum = '2aad5635f9bb338bc2c6b7d19cbc9676 ' ,
212+ name = "OpenSSL 1.1.1t " ,
213+ url = "https://www.openssl.org/source/openssl-1.1.1t .tar.gz" ,
214+ checksum = '1cfee919e0eac6be62c88c5ae8bcd91e ' ,
215215 buildrecipe = build_universal_openssl ,
216216 configure = None ,
217217 install = None ,
Original file line number Diff line number Diff line change 1+ Updated the OpenSSL version used in Windows and macOS binary release builds
2+ to 1.1.1t to address CVE-2023-0286, CVE-2022-4303, and CVE-2022-4303 per
3+ `the OpenSSL 2023-02-07 security advisory
4+ <https://www.openssl.org/news/secadv/20230207.txt> `_.
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ echo.Fetching external libraries...
4949
5050set libraries =
5151set libraries = %libraries% bzip2-1.0.8
52- if NOT " %IncludeSSLSrc% " == " false" set libraries = %libraries% openssl-1.1.1s
52+ if NOT " %IncludeSSLSrc% " == " false" set libraries = %libraries% openssl-1.1.1t
5353set libraries = %libraries% sqlite-3.31.1.0
5454if NOT " %IncludeTkinterSrc% " == " false" set libraries = %libraries% tcl-core-8.6.9.0
5555if NOT " %IncludeTkinterSrc% " == " false" set libraries = %libraries% tk-8.6.9.0
@@ -72,7 +72,7 @@ for %%e in (%libraries%) do (
7272echo .Fetching external binaries...
7373
7474set binaries =
75- if NOT " %IncludeSSL% " == " false" set binaries = %binaries% openssl-bin-1.1.1s
75+ if NOT " %IncludeSSL% " == " false" set binaries = %binaries% openssl-bin-1.1.1t
7676if NOT " %IncludeTkinter% " == " false" set binaries = %binaries% tcltk-8.6.9.0
7777if NOT " %IncludeSSLSrc% " == " false" set binaries = %binaries% nasm-2.11.06
7878
Original file line number Diff line number Diff line change 4646 <ExternalsDir >$(EXTERNALS_DIR)</ExternalsDir >
4747 <ExternalsDir Condition =" $(ExternalsDir) == ''" >$([System.IO.Path]::GetFullPath(`$(PySourcePath)externals`))</ExternalsDir >
4848 <ExternalsDir Condition =" !HasTrailingSlash($(ExternalsDir))" >$(ExternalsDir)\</ExternalsDir >
49- <sqlite3Dir >$(ExternalsDir)sqlite-3.31.1.0\</sqlite3Dir >
50- <bz2Dir >$(ExternalsDir)bzip2-1.0.8\</bz2Dir >
51- <lzmaDir >$(ExternalsDir)xz-5.2.2\</lzmaDir >
52- <opensslDir >$(ExternalsDir)openssl-1.1.1s\</opensslDir >
53- <opensslOutDir >$(ExternalsDir)openssl-bin-1.1.1s\$(ArchName)\</opensslOutDir >
54- <opensslIncludeDir >$(opensslOutDir)include</opensslIncludeDir >
55- <nasmDir >$(ExternalsDir)\nasm-2.11.06\</nasmDir >
56- <zlibDir >$(ExternalsDir)\zlib-1.2.12\</zlibDir >
57-
49+ </PropertyGroup >
50+
51+ <Import Project =" $(ExternalProps)" Condition =" $(ExternalProps) != '' and Exists('$(ExternalProps)')" />
52+
53+ <PropertyGroup >
54+ <sqlite3Dir Condition =" $(sqlite3Dir) == ''" >$(ExternalsDir)sqlite-3.31.1.0\</sqlite3Dir >
55+ <bz2Dir Condition =" $(bz2Dir) == ''" >$(ExternalsDir)bzip2-1.0.8\</bz2Dir >
56+ <lzmaDir Condition =" $(lzmaDir) == ''" >$(ExternalsDir)xz-5.2.2\</lzmaDir >
57+ <opensslDir Condition =" $(opensslDir) == ''" >$(ExternalsDir)openssl-1.1.1t\</opensslDir >
58+ <opensslOutDir Condition =" $(opensslOutDir) == ''" >$(ExternalsDir)openssl-bin-1.1.1t\$(ArchName)\</opensslOutDir >
59+ <opensslIncludeDir Condition =" $(opensslIncludeDir) == ''" >$(opensslOutDir)include</opensslIncludeDir >
60+ <nasmDir Condition =" $(nasmDir) == ''" >$(ExternalsDir)\nasm-2.11.06\</nasmDir >
61+ <zlibDir Condition =" $(zlibDir) == ''" >$(ExternalsDir)\zlib-1.2.12\</zlibDir >
62+ </PropertyGroup >
63+
64+ <PropertyGroup >
5865 <!-- Suffix for all binaries when building for debug -->
5966 <PyDebugExt Condition =" '$(PyDebugExt)' == '' and $(Configuration) == 'Debug'" >_d</PyDebugExt >
6067
Original file line number Diff line number Diff line change @@ -165,7 +165,7 @@ _lzma
165165 Homepage:
166166 http://tukaani.org/xz/
167167_ssl
168- Python wrapper for version 1.1.1c of the OpenSSL secure sockets
168+ Python wrapper for version 1.1.1t of the OpenSSL secure sockets
169169 library, which is downloaded from our binaries repository at
170170 https://github.com/python/cpython-bin-deps.
171171
Original file line number Diff line number Diff line change 4848]
4949
5050OPENSSL_RECENT_VERSIONS = [
51- "1.1.1n " ,
52- # "3.0.0-alpha2 "
51+ "1.1.1t " ,
52+ "3.0.8 "
5353]
5454
5555LIBRESSL_OLD_VERSIONS = [
You can’t perform that action at this time.
0 commit comments