Skip to content

Conversation

@rolfbjarne
Copy link
Member

No description provided.

rolfbjarne and others added 23 commits October 20, 2025 08:21
…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
#23950. (#24058)

* Add xml docs for NSUrlSessionHandler.UseCookies.
* Allow cookies for ephemeral sessions (but it can't be re-enabled once disabled).
* Add more tests for ephemeral sessions.

Fixes #23950.
…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.
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.
@vs-mobiletools-engineering-service2

This comment has been minimized.

@vs-mobiletools-engineering-service2

This comment has been minimized.

@vs-mobiletools-engineering-service2

This comment has been minimized.

@vs-mobiletools-engineering-service2

This comment has been minimized.

@vs-mobiletools-engineering-service2

This comment has been minimized.

@vs-mobiletools-engineering-service2

This comment has been minimized.

@vs-mobiletools-engineering-service2

This comment has been minimized.

@vs-mobiletools-engineering-service2

This comment has been minimized.

@vs-mobiletools-engineering-service2

This comment has been minimized.

@vs-mobiletools-engineering-service2

This comment has been minimized.

@vs-mobiletools-engineering-service2
Copy link
Collaborator

✅ [CI Build #598c3ff] Build passed (Build packages) ✅

Pipeline on Agent
Hash: 598c3ff0cd75483b7c50e6e0a6288c790faa4398 [PR build]

@vs-mobiletools-engineering-service2
Copy link
Collaborator

✅ [PR Build #598c3ff] Build passed (Detect API changes) ✅

Pipeline on Agent
Hash: 598c3ff0cd75483b7c50e6e0a6288c790faa4398 [PR build]

@vs-mobiletools-engineering-service2
Copy link
Collaborator

✅ API diff for current PR / commit

NET (empty diffs)

✅ API diff vs stable

NET (empty diffs)

ℹ️ Generator diff

Generator Diff: vsdrops (html) vsdrops (raw diff) gist (raw diff) - Please review changes)

Pipeline on Agent
Hash: 598c3ff0cd75483b7c50e6e0a6288c790faa4398 [PR build]

@vs-mobiletools-engineering-service2
Copy link
Collaborator

✅ [CI Build #598c3ff] Build passed (Build macOS tests) ✅

Pipeline on Agent
Hash: 598c3ff0cd75483b7c50e6e0a6288c790faa4398 [PR build]

@vs-mobiletools-engineering-service2
Copy link
Collaborator

💻 [CI Build #598c3ff] Tests on macOS X64 - Mac Sonoma (14) passed 💻

All tests on macOS X64 - Mac Sonoma (14) passed.

Pipeline on Agent
Hash: 598c3ff0cd75483b7c50e6e0a6288c790faa4398 [PR build]

@vs-mobiletools-engineering-service2
Copy link
Collaborator

💻 [CI Build #598c3ff] Tests on macOS M1 - Mac Monterey (12) passed 💻

All tests on macOS M1 - Mac Monterey (12) passed.

Pipeline on Agent
Hash: 598c3ff0cd75483b7c50e6e0a6288c790faa4398 [PR build]

@vs-mobiletools-engineering-service2
Copy link
Collaborator

💻 [CI Build #598c3ff] Tests on macOS arm64 - Mac Sequoia (15) passed 💻

All tests on macOS arm64 - Mac Sequoia (15) passed.

Pipeline on Agent
Hash: 598c3ff0cd75483b7c50e6e0a6288c790faa4398 [PR build]

@vs-mobiletools-engineering-service2
Copy link
Collaborator

💻 [CI Build #598c3ff] Tests on macOS M1 - Mac Ventura (13) passed 💻

All tests on macOS M1 - Mac Ventura (13) passed.

Pipeline on Agent
Hash: 598c3ff0cd75483b7c50e6e0a6288c790faa4398 [PR build]

@vs-mobiletools-engineering-service2
Copy link
Collaborator

💻 [CI Build #598c3ff] Tests on macOS arm64 - Mac Tahoe (26) passed 💻

All tests on macOS arm64 - Mac Tahoe (26) passed.

Pipeline on Agent
Hash: 598c3ff0cd75483b7c50e6e0a6288c790faa4398 [PR build]

@vs-mobiletools-engineering-service2
Copy link
Collaborator

🚀 [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
✅ dotnettests (iOS): All 1 tests passed. Html Report (VSDrops) Download
✅ dotnettests (MacCatalyst): All 1 tests passed. Html Report (VSDrops) Download
✅ dotnettests (macOS): All 1 tests passed. Html Report (VSDrops) Download
✅ dotnettests (Multiple platforms): All 1 tests passed. Html Report (VSDrops) Download
✅ dotnettests (tvOS): All 1 tests passed. Html Report (VSDrops) Download
✅ framework: All 2 tests passed. Html Report (VSDrops) Download
✅ fsharp: All 4 tests passed. Html Report (VSDrops) Download
✅ generator: All 5 tests passed. Html Report (VSDrops) Download
✅ interdependent-binding-projects: All 4 tests passed. Html Report (VSDrops) Download
✅ introspection: All 4 tests passed. Html Report (VSDrops) Download
✅ linker: All 44 tests passed. Html Report (VSDrops) Download
✅ monotouch (iOS): All 8 tests passed. Html Report (VSDrops) Download
✅ monotouch (MacCatalyst): All 11 tests passed. Html Report (VSDrops) Download
✅ monotouch (macOS): All 9 tests passed. Html Report (VSDrops) Download
✅ monotouch (tvOS): All 8 tests passed. Html Report (VSDrops) Download
✅ msbuild: All 2 tests passed. Html Report (VSDrops) Download
✅ windows: All 3 tests passed. Html Report (VSDrops) Download
✅ xcframework: All 4 tests passed. Html Report (VSDrops) Download
✅ xtro: All 1 tests passed. Html Report (VSDrops) Download

Pipeline on Agent
Hash: 598c3ff0cd75483b7c50e6e0a6288c790faa4398 [PR build]

@rolfbjarne rolfbjarne merged commit fd16c58 into net11.0 Oct 28, 2025
45 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants