-
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
Patch Tuesday for November 2023 #35116
Closed
BillyONeal
wants to merge
18
commits into
microsoft:master
from
BillyONeal:patch-tuesday-november-2023
Closed
Changes from all 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 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,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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/cmake/jkqtplotter_common_qtsettings.cmake b/cmake/jkqtplotter_common_qtsettings.cmake | ||
index 150b1d0..f391b89 100644 | ||
--- a/cmake/jkqtplotter_common_qtsettings.cmake | ||
+++ b/cmake/jkqtplotter_common_qtsettings.cmake | ||
@@ -4,7 +4,7 @@ set(CMAKE_AUTOMOC ON) | ||
set(CMAKE_AUTORCC ON) | ||
set(CMAKE_AUTOUIC ON) | ||
|
||
-find_package(QT NAMES Qt6 Qt5 COMPONENTS Core REQUIRED) | ||
+find_package(QT NAMES Qt6 COMPONENTS Core REQUIRED) | ||
find_package(Qt${QT_VERSION_MAJOR} COMPONENTS Core Gui Widgets Svg Xml OpenGL REQUIRED) | ||
if(${QT_VERSION_MAJOR} VERSION_GREATER_EQUAL "6") | ||
find_package(Qt${QT_VERSION_MAJOR} REQUIRED COMPONENTS OpenGLWidgets) |
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,13 @@ | ||
diff --git a/CMakeLists.txt b/CMakeLists.txt | ||
index 8b6f2cd..a485cb0 100644 | ||
--- a/CMakeLists.txt | ||
+++ b/CMakeLists.txt | ||
@@ -366,7 +366,7 @@ tiny_resource_and_manifest(${TinyOrm_target} | ||
# Must be before the TinyCommon, to exclude WINVER for the MSYS2 Qt6 builds to avoid: | ||
# 'WINVER' macro redefined [-Wmacro-redefined] | ||
# Look also to the TinyCommon for conditional WINVER definition | ||
-find_package(QT NAMES Qt5 Qt6 REQUIRED COMPONENTS Core Sql) | ||
+find_package(QT NAMES Qt6 REQUIRED COMPONENTS Core Sql) | ||
tiny_find_package(Qt${QT_VERSION_MAJOR} ${minQtVersion} CONFIG | ||
REQUIRED COMPONENTS Core Sql | ||
) |
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json", | ||
"name": "tinyorm", | ||
"version-semver": "0.36.5", | ||
"port-version": 1, | ||
"port-version": 2, | ||
"maintainers": "Silver Zachara <[email protected]>", | ||
"description": "Modern C++ ORM library for Qt framework", | ||
"homepage": "https://github.com/silverqx/TinyORM", | ||
|
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
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
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.
This comment looks stale now?
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.
Maybe, but I don't think it's changed by this change if that makes sense