-
Notifications
You must be signed in to change notification settings - Fork 6.4k
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
Update Windows Fleet for December 2023 Patch Tuesday #35640
Merged
BillyONeal
merged 31 commits into
microsoft:master
from
BillyONeal:patch-tuesday-december-2023
Dec 18, 2023
Merged
Changes from 24 commits
Commits
Show all changes
31 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 37d9d66
Merge remote-tracking branch 'origin/master' into patch-tuesday-decem…
BillyONeal bae6729
Update pwsh to 7.4.0.
BillyONeal 7918110
Update pool.
BillyONeal fc27310
Merge remote-tracking branch 'origin/master' into patch-tuesday-decem…
BillyONeal 7b800ea
Revert UWP changes no longer necessary now that https://developercomm…
BillyONeal bb01cf8
Merge remote-tracking branch 'origin/master' into patch-tuesday-decem…
BillyONeal d2f4a11
[libtorch] Skip ICE
BillyONeal 7ba011f
Merge remote-tracking branch 'origin/master' into patch-tuesday-decem…
BillyONeal 1db2afc
[qtwebengine] fix debug builds
Neumann-A c43d0fa
v db
Neumann-A 94f382b
remove comment
Neumann-A 6425987
v db
Neumann-A cc9cf95
Merge remote-tracking branch 'Neumann-A/qtwebengine-fix-debug-builds'…
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 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 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 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 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 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 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 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 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 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 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 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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fun fact I already had a case where I had to do this ;)