So, this is a thing if you want to defend against the cellular network getting crappy on you.
https://developer.apple.com/documentation/wirelessinsights
WirelessInsights | Apple Developer Documentation

Receive notifications for anticipated changes in cellular data service conditions.

Apple Developer Documentation
This is also a thing, but only in the EU. https://developer.apple.com/documentation/telephonymessagingkit
TelephonyMessagingKit | Apple Developer Documentation

Send and receive standards-based messages over cellular networks.

Apple Developer Documentation
Another thing. If your app talks directly to Wi-Fi hotspots, you can (please do) move that into an app extension for better privacy and performance. https://developer.apple.com/documentation/networkextension/hotspot-helper#Hotspot-helper-extension
Hotspot helper | Apple Developer Documentation

Integrate your app with the iOS hotspot network subsystem.

Apple Developer Documentation
Yet more things. If you're filtering web content, now you can filter against an entire URL, using an on-device Bloom filter to make filtering fast. There's a sample code project for this one. https://developer.apple.com/documentation/networkextension/url-filters
URL filters | Apple Developer Documentation

Create a filter that analyzes full URLs, while preserving privacy.

Apple Developer Documentation
A thing that soft-launched a few months ago, but is officially making its debut now: exporting and importing credentials like passkeys: https://developer.apple.com/documentation/authenticationservices/ascredentialexportmanager
ASCredentialExportManager | Apple Developer Documentation

A class to manage exporting credentials.

Apple Developer Documentation
Things while we're speaking about passkeys: if your app knows that someone added/updated/deleted a credential, now you can tell all the credential managers on the system. https://developer.apple.com/documentation/authenticationservices/ascredentialupdater
ASCredentialUpdater | Apple Developer Documentation

A class to pass credential update events to credential managers enabled on the system.

Apple Developer Documentation
Foundation things for which docs are still in the works: NotificationCenter is now concurrency-friendly with a new "Messages" type. Lots of notifications in Foundation, UIKit, and AppKit are now available with this approach. Also in Foundation, there's a "#bundle" macro that's way nicer than doing Bundle(MyClass.self)… or god forbid, a hard-coded bundle identifier. https://developer.apple.com/documentation/updates/foundation
Foundation updates | Apple Developer Documentation

Learn about important changes to Foundation.

Apple Developer Documentation
Trying to remember other things… oh, this one is nice. If you're a FileProvider, you can now expose your cloud files to search. https://developer.apple.com/documentation/fileprovider/nsfileprovidersearching
NSFileProviderSearching | Apple Developer Documentation

A protocol you implement to support searching in your file provider.

Apple Developer Documentation