-
Notifications
You must be signed in to change notification settings - Fork 7.6k
Patch Tuesday for November 2023 #35116
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
Closed
BillyONeal
wants to merge
18
commits into
microsoft:master
from
BillyONeal:patch-tuesday-november-2023
Closed
Changes from 12 commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
c821615
Update PowerShell to 7.3.9.
BillyONeal 06ddcb9
Add storage account key rolling.
BillyONeal 6851a19
Update android image.
BillyONeal 040240f
whitespace
BillyONeal d46ce31
words
BillyONeal e0903a8
Update pool.
BillyONeal 1d3e97f
Try to un-break UWP.
BillyONeal 89b2519
Merge remote-tracking branch 'origin/master' into HEAD
BillyONeal 27a52e4
Merge remote-tracking branch 'origin/master' into patch-tuesday-novem…
BillyONeal 33783b1
[baresip-libre] Update to 3.6.2 and workaround missing <threads.h>
BillyONeal 1785478
[folly] Workaround _Eos declaration changing.
BillyONeal 98caca6
[libtorch] ci.baseline.txt on x64-windows due to ICE
BillyONeal bf2ff3d
Merge remote-tracking branch 'origin/master' into patch-tuesday-novem…
BillyONeal 4897564
[tinyorm] Force use of qt6.
BillyONeal a057ff4
Make buildtrees shorter in order to try to debug qtwebengine.
BillyONeal e9dfa73
Fix folly patch line endings.
BillyONeal f95cde0
Skip cpptrace due to compiler bug.
BillyONeal e9d1951
[jkqtplotter] Force qt6.
BillyONeal File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| diff --git a/folly/memory/UninitializedMemoryHacks.h b/folly/memory/UninitializedMemoryHacks.h | ||
| index bd31c88..9f640a8 100644 | ||
| --- a/folly/memory/UninitializedMemoryHacks.h | ||
| +++ b/folly/memory/UninitializedMemoryHacks.h | ||
| @@ -101,6 +101,9 @@ template < | ||
| typename std::enable_if<std::is_trivially_destructible<T>::value>::type> | ||
| inline void resizeWithoutInitialization( | ||
| std::basic_string<T>& s, std::size_t n) { | ||
| +#if defined(_MSVC_STL_UPDATE) && _MSVC_STL_UPDATE >= 202206L | ||
| + s.resize(n); | ||
| +#else | ||
| if (n <= s.size()) { | ||
| s.resize(n); | ||
| } else { | ||
| @@ -111,6 +114,7 @@ inline void resizeWithoutInitialization( | ||
| } | ||
| detail::unsafeStringSetLargerSize(s, n); | ||
| } | ||
| +#endif // STL workaround | ||
| } | ||
|
|
||
| /** | ||
| @@ -244,6 +248,8 @@ struct MakeUnsafeStringSetLargerSize { | ||
| #elif defined(_MSC_VER) | ||
| // MSVC | ||
|
|
||
| +#if defined(_MSVC_STL_UPDATE) && _MSVC_STL_UPDATE >= 202206L | ||
| +#else | ||
| template <typename Tag, typename T, typename A, A Ptr_Eos> | ||
| struct MakeUnsafeStringSetLargerSize { | ||
| friend void unsafeStringSetLargerSizeImpl( | ||
| @@ -262,7 +268,7 @@ struct MakeUnsafeStringSetLargerSize { | ||
| void (std::basic_string<TYPE>::*)(std::size_t), \ | ||
| &std::basic_string<TYPE>::_Eos>; \ | ||
| FOLLY_DECLARE_STRING_RESIZE_WITHOUT_INIT_IMPL(TYPE) | ||
| - | ||
| +#endif // workaround | ||
| #else | ||
| #warning \ | ||
| "No implementation for resizeWithoutInitialization of std::basic_string" | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
|
|
||
| Param( | ||
| [Parameter(Mandatory=$true)] | ||
| [int]$KeyNumber | ||
| ) | ||
|
|
||
| $keyName = "key$KeyNumber" | ||
|
|
||
| # Asset Cache: | ||
| New-AzStorageAccountKey -ResourceGroupName vcpkg-asset-cache -StorageAccountName vcpkgassetcacheeastasia -KeyName $keyName | ||
|
|
||
| # Binary Cache: | ||
| New-AzStorageAccountKey -ResourceGroupName vcpkg-binary-cache -StorageAccountName vcpkgbinarycache -KeyName $keyName | ||
| New-AzStorageAccountKey -ResourceGroupName vcpkg-binary-cache -StorageAccountName vcpkgbinarycacheeastasia -KeyName $keyName | ||
| New-AzStorageAccountKey -ResourceGroupName vcpkg-binary-cache -StorageAccountName vcpkgbinarycachewus3 -KeyName $keyName |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -567,7 +567,6 @@ function(vcpkg_configure_make) | |
| string(REPLACE "${_replacement}" "" VCPKG_DETECTED_CMAKE_CXX_FLAGS_RELEASE "${VCPKG_DETECTED_CMAKE_CXX_FLAGS_RELEASE}") | ||
| string(REPLACE "${_replacement}" "" VCPKG_DETECTED_CMAKE_C_FLAGS_RELEASE "${VCPKG_DETECTED_CMAKE_C_FLAGS_RELEASE}") | ||
| # Can somebody please check if CMake's compiler flags for UWP are correct? | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This comment looks stale now?
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Maybe, but I don't think it's changed by this change if that makes sense |
||
| set(ENV{_CL_} "$ENV{_CL_} -FU\"${VCToolsInstallDir}/lib/x86/store/references/platform.winmd\"") | ||
| set(ENV{_LINK_} "$ENV{_LINK_} ${VCPKG_DETECTED_CMAKE_C_STANDARD_LIBRARIES} ${VCPKG_DETECTED_CMAKE_CXX_STANDARD_LIBRARIES}") | ||
| endif() | ||
| endif() | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.