Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Make.config
Original file line number Diff line number Diff line change
Expand Up @@ -208,9 +208,9 @@ MACCATALYST_NUGET_VERSION_FULL=$(MACCATALYST_NUGET_VERSION_NO_METADATA)$(NUGET_B

# Xcode version should have both a major and a minor version (even if the minor version is 0)
XCODE_VERSION=26.5
XCODE_URL=https://bosstoragemirror.blob.core.windows.net/internal-files/xcodes/Xcode_26.5_beta.xip
XCODE_URL=https://bosstoragemirror.blob.core.windows.net/internal-files/xcodes/Xcode_26.5_beta_2.xip
ifndef IS_LINUX
XCODE_DEVELOPER_ROOT=/Applications/Xcode_26.5.0-beta.app/Contents/Developer
XCODE_DEVELOPER_ROOT=/Applications/Xcode_26.5.0-beta2.app/Contents/Developer
XCODE_PRODUCT_BUILD_VERSION:=$(shell /usr/libexec/PlistBuddy -c 'Print :ProductBuildVersion' $(XCODE_DEVELOPER_ROOT)/../version.plist 2>/dev/null || echo " $(shell tput setaf 1 2>/dev/null)The required Xcode ($(XCODE_VERSION)) is not installed in $(basename $(basename $(XCODE_DEVELOPER_ROOT)))$(shell tput sgr0 2>/dev/null)" >&2)

# We define stable Xcode as the Xcode app being named like "Xcode_#.#[.#].app"
Expand Down
6 changes: 6 additions & 0 deletions src/Security/SecureTransport.cs
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,9 @@ public enum TlsCipherSuiteGroup : ushort {
Legacy,
Ats,
AtsCompatibility,
/// <summary>The ciphersuite group that conforms to the App Transport Security Forward Compatibility Profile version 2.1.</summary>
[iOS (26, 5), TV (26, 5), Mac (26, 5), MacCatalyst (26, 5)]
AtsFcpV21,
}

// subset of OSStatus (int)
Expand Down Expand Up @@ -416,5 +419,8 @@ public enum SslCipherSuiteGroup {
Ats,
/// <summary>To be added.</summary>
AtsCompatibility,
/// <summary>The ciphersuite group that conforms to the App Transport Security Forward Compatibility Profile version 2.1.</summary>
[iOS (26, 5), TV (26, 5), Mac (26, 5), MacCatalyst (26, 5)]
AtsFcpV21,
}
}
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#Icebox for now
!missing-enum! CMIOExtensionStreamClockType not bound
!missing-enum! CMIOExtensionStreamDirection not bound
!missing-enum! CMIOExtensionStreamDiscontinuityFlags not bound
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## Looks like this API leaked from VisionOS
!missing-field! ar_error_domain not bound
!missing-pinvoke! ar_anchor_get_identifier is not bound
!missing-pinvoke! ar_anchor_get_origin_from_anchor_transform is not bound
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#Icebox for now
!missing-enum! CMIOExtensionStreamClockType not bound
!missing-enum! CMIOExtensionStreamDirection not bound
!missing-enum! CMIOExtensionStreamDiscontinuityFlags not bound
Expand Down
Loading