-
Notifications
You must be signed in to change notification settings - Fork 549
[net11.0] Merge main into net11.0. #24110
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
[net11.0] Merge main into net11.0. #24110
Conversation
…23987) Each CIFilter can desribe their input and output properties (the filter's InputKeys and OutputKeys properties), and also a dictionary with information about these input and output properties (the filter's Attributes property). We've bound the input and output properties in C#, with the help of the information in the dictionary on how to bind them. However, it turns out not every entry in the InputKeys and OutputKeys properties have a corresponding entry in the Attributes dictionary, which makes them hard to bind, because there's no type information we can use to determine how to bind them. Additionally, none of these entries show up in the filter's corresponding protocol either. This leads me to believe we shouldn't bind these input and output properties, so don't do that: * Update introspection to ignore these properties. This means we can remove a few hard-coded skips in the tests. * Remove these properties from the bindings if they're already there (for XAMCORE_5_0). Some were actually there, just commented out, and those got just removed.
…1: Build ID 12595052 (#24022) This is the pull request automatically created by the OneLocBuild task in the build process to check-in localized files generated based upon translation source files (.lcl files) handed-back from the downstream localization pipeline. If there are issues in translations, visit https://aka.ms/icxLocBug and log bugs for fixes. The OneLocBuild wiki is https://aka.ms/onelocbuild and the localization process in general is documented at https://aka.ms/AllAboutLoc. ---------
…20251016175122386 to main (#24031) LEGO: Pull request from lego/hb_5df43909-4a19-4f55-bc3f-9ea8fccf3c82_20251016175122386 to main with localized lcls ---------
This pull request updates the following dependencies ## From https://github.com/dotnet/xharness - **Subscription**: [02e03784-16b3-4ced-b02a-3715797fc7da](https://maestro.dot.net/subscriptions?search=02e03784-16b3-4ced-b02a-3715797fc7da) - **Build**: [20251016.4](https://dev.azure.com/dnceng/internal/_build/results?buildId=2817731) ([287470](https://maestro.dot.net/channel/2/github:dotnet:xharness/build/287470)) - **Date Produced**: October 16, 2025 4:27:04 PM UTC - **Commit**: [88399512021dfa8b5f45d91f84c8ce6f0959b127](dotnet/xharness@8839951) - **Branch**: [main](https://github.com/dotnet/xharness/tree/main) - **Updates**: - From [10.0.0-prerelease.25513.3 to 10.0.0-prerelease.25516.4][1] - Microsoft.DotNet.XHarness.iOS.Shared [1]: dotnet/xharness@47d2875...8839951
…f so delete any existing non-universal simulators. (#24030) 1. We run x64 test apps on all machines. 2. Arm64 machines need a universal simulator to run x64 apps. 3. So if we're on an arm64 bot, and we only have the arm64 simulator, delete it and re-install the universal simulator. There are also a few other misc cleanups here as well.
…g API binding PRs. (#24067)
This way we don't force English upon users.
Fixes #24032. (#24076) * Always sign with the placeholder certificate '-' in the simulator. * We still need to find a provisioning profile (if required), and pass it on to the CompileEntitlements task, so that the CompileEntitlements task can adjust the entitlements (appending the team identifier for instance) before embedding them into the executable. Fixes #24032. Backport of #24059.
) Example warning: ``` macios/runtime/xamarin/runtime.h:232:14: error: 'const' type qualifier on return type has no effect [-Werror,-Wignored-qualifiers] 232 | const char * const xamarin_get_original_working_directory_path (); ``` References: * https://developer.apple.com/documentation/xcode/enabling-enhanced-security-for-your-app * https://releases.llvm.org/8.0.0/tools/clang/docs/ReleaseNotes.html#major-new-features (for -ftrivial-auto-var-init=zero) Contributes towards #23023.
…ers (#24071) Example warning: ``` In file included from macios/appex-deduplicate-frameworks/macios/runtime/runtime.m:98: macios/runtime/delegates.inc:189:41: error: missing field 'register_assembly' initializer [-Werror,-Wmissing-field-initializers] 189 | static struct Delegates delegates = { 0 }; | ^ ``` References: * https://developer.apple.com/documentation/xcode/enabling-enhanced-security-for-your-app * https://releases.llvm.org/8.0.0/tools/clang/docs/ReleaseNotes.html#major-new-features (for -ftrivial-auto-var-init=zero) Contributes towards #23023.
I sometimes get a ssl handshake failure, which is usually fixed by trying again.
…or device. (#24092) Also simplify and unify some related code.
…atch (#24083) Example warning: ``` macios/runtime/trampolines.m:1784:9: error: cast from 'void *(*)(MonoObject *, void *, GCHandle *)' (aka 'void *(*)(_MonoObject *, void *, void **)') to 'xamarin_managed_to_id_func' (aka 'id (*)(_MonoObject *, void *, void **)') converts to incompatible function type [-Werror,-Wcast-function-type-mismatch] 1784 | return (xamarin_managed_to_id_func) xamarin_smart_enum_to_nsstring; | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ``` References: * https://developer.apple.com/documentation/xcode/enabling-enhanced-security-for-your-app * https://releases.llvm.org/8.0.0/tools/clang/docs/ReleaseNotes.html#major-new-features (for -ftrivial-auto-var-init=zero) Contributes towards #23023.
…-body (#24078) Example warning: ``` macios/runtime/shared.m:50:106: error: semicolon before method body is ignored [-Werror,-Wsemicolon-before-method-body] 50 | -(id) initWithData: (void *) targ selector:(SEL) sel argument:(id) arg is_direct_binding:(bool) is_direct; | ^ ``` References: * https://developer.apple.com/documentation/xcode/enabling-enhanced-security-for-your-app * https://releases.llvm.org/8.0.0/tools/clang/docs/ReleaseNotes.html#major-new-features (for -ftrivial-auto-var-init=zero) Contributes towards #23023.
Example warning:
```
macios/runtime/trampolines-arm64.m:214:21: error: comparison of integers of different signs: 'int' and 'size_t' (aka 'unsigned long') [-Werror,-Wsign-compare]
214 | for (int i = 1; i < struct_length; i++)
| ~ ^ ~~~~~~~~~~~~~
```
References:
* https://developer.apple.com/documentation/xcode/enabling-enhanced-security-for-your-app
* https://releases.llvm.org/8.0.0/tools/clang/docs/ReleaseNotes.html#major-new-features (for -ftrivial-auto-var-init=zero)
Contributes towards #23023.
…ero (#24085) This will zero-initialize all automatic (stack and register based) variables. References: * https://developer.apple.com/documentation/xcode/enabling-enhanced-security-for-your-app * https://releases.llvm.org/8.0.0/tools/clang/docs/ReleaseNotes.html#major-new-features (for -ftrivial-auto-var-init=zero) Contributes towards #23023.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
✅ [CI Build #598c3ff] Build passed (Build packages) ✅Pipeline on Agent |
✅ [PR Build #598c3ff] Build passed (Detect API changes) ✅Pipeline on Agent |
✅ API diff for current PR / commitNET (empty diffs)✅ API diff vs stableNET (empty diffs)ℹ️ Generator diffGenerator Diff: vsdrops (html) vsdrops (raw diff) gist (raw diff) - Please review changes) Pipeline on Agent |
✅ [CI Build #598c3ff] Build passed (Build macOS tests) ✅Pipeline on Agent |
💻 [CI Build #598c3ff] Tests on macOS X64 - Mac Sonoma (14) passed 💻✅ All tests on macOS X64 - Mac Sonoma (14) passed. Pipeline on Agent |
💻 [CI Build #598c3ff] Tests on macOS M1 - Mac Monterey (12) passed 💻✅ All tests on macOS M1 - Mac Monterey (12) passed. Pipeline on Agent |
💻 [CI Build #598c3ff] Tests on macOS arm64 - Mac Sequoia (15) passed 💻✅ All tests on macOS arm64 - Mac Sequoia (15) passed. Pipeline on Agent |
💻 [CI Build #598c3ff] Tests on macOS M1 - Mac Ventura (13) passed 💻✅ All tests on macOS M1 - Mac Ventura (13) passed. Pipeline on Agent |
💻 [CI Build #598c3ff] Tests on macOS arm64 - Mac Tahoe (26) passed 💻✅ All tests on macOS arm64 - Mac Tahoe (26) passed. Pipeline on Agent |
🚀 [CI Build #598c3ff] Test results 🚀Test results✅ All tests passed on VSTS: test results. 🎉 All 115 tests passed 🎉 Tests counts✅ cecil: All 1 tests passed. Html Report (VSDrops) Download Pipeline on Agent |
No description provided.