File tree 9 files changed +33
-22
lines changed
Misc/NEWS.d/next/Security
9 files changed +33
-22
lines changed Original file line number Diff line number Diff line change 61
61
variables :
62
62
testRunTitle : ' $(build.sourceBranchName)-linux'
63
63
testRunPlatform : linux
64
- openssl_version : 1.1.1n
64
+ openssl_version : 1.1.1t
65
65
66
66
steps :
67
67
- template : ./posix-steps.yml
@@ -118,7 +118,7 @@ jobs:
118
118
variables :
119
119
testRunTitle : ' $(Build.SourceBranchName)-linux-coverage'
120
120
testRunPlatform : linux-coverage
121
- openssl_version : 1.1.1n
121
+ openssl_version : 1.1.1t
122
122
123
123
steps :
124
124
- template : ./posix-steps.yml
Original file line number Diff line number Diff line change 61
61
variables :
62
62
testRunTitle : ' $(system.pullRequest.TargetBranch)-linux'
63
63
testRunPlatform : linux
64
- openssl_version : 1.1.1n
64
+ openssl_version : 1.1.1t
65
65
66
66
steps :
67
67
- template : ./posix-steps.yml
@@ -118,7 +118,7 @@ jobs:
118
118
variables :
119
119
testRunTitle : ' $(Build.SourceBranchName)-linux-coverage'
120
120
testRunPlatform : linux-coverage
121
- openssl_version : 1.1.1n
121
+ openssl_version : 1.1.1t
122
122
123
123
steps :
124
124
- template : ./posix-steps.yml
Original file line number Diff line number Diff line change @@ -142,7 +142,7 @@ jobs:
142
142
needs : check_source
143
143
if : needs.check_source.outputs.run_tests == 'true'
144
144
env :
145
- OPENSSL_VER : 1.1.1n
145
+ OPENSSL_VER : 1.1.1t
146
146
steps :
147
147
- uses : actions/checkout@v2
148
148
- name : Install Dependencies
Original file line number Diff line number Diff line change @@ -209,9 +209,9 @@ def library_recipes():
209
209
210
210
result .extend ([
211
211
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 ' ,
215
215
buildrecipe = build_universal_openssl ,
216
216
configure = None ,
217
217
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...
49
49
50
50
set libraries =
51
51
set 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
53
53
set libraries = %libraries% sqlite-3.31.1.0
54
54
if NOT " %IncludeTkinterSrc% " == " false" set libraries = %libraries% tcl-core-8.6.9.0
55
55
if NOT " %IncludeTkinterSrc% " == " false" set libraries = %libraries% tk-8.6.9.0
@@ -72,7 +72,7 @@ for %%e in (%libraries%) do (
72
72
echo .Fetching external binaries...
73
73
74
74
set 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
76
76
if NOT " %IncludeTkinter% " == " false" set binaries = %binaries% tcltk-8.6.9.0
77
77
if NOT " %IncludeSSLSrc% " == " false" set binaries = %binaries% nasm-2.11.06
78
78
Original file line number Diff line number Diff line change 46
46
<ExternalsDir >$(EXTERNALS_DIR)</ExternalsDir >
47
47
<ExternalsDir Condition =" $(ExternalsDir) == ''" >$([System.IO.Path]::GetFullPath(`$(PySourcePath)externals`))</ExternalsDir >
48
48
<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 >
58
65
<!-- Suffix for all binaries when building for debug -->
59
66
<PyDebugExt Condition =" '$(PyDebugExt)' == '' and $(Configuration) == 'Debug'" >_d</PyDebugExt >
60
67
Original file line number Diff line number Diff line change @@ -165,7 +165,7 @@ _lzma
165
165
Homepage:
166
166
http://tukaani.org/xz/
167
167
_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
169
169
library, which is downloaded from our binaries repository at
170
170
https://github.com/python/cpython-bin-deps.
171
171
Original file line number Diff line number Diff line change 48
48
]
49
49
50
50
OPENSSL_RECENT_VERSIONS = [
51
- "1.1.1n " ,
52
- # "3.0.0-alpha2 "
51
+ "1.1.1t " ,
52
+ "3.0.8 "
53
53
]
54
54
55
55
LIBRESSL_OLD_VERSIONS = [
You can’t perform that action at this time.
0 commit comments