Apple Seeds Release Candidate Version macOS Monterey 12.3 Beta to Developers and Public Beta Testers

Apple today seeded the release candidate version of an upcoming macOS Monterey 12.3 update to developers for testing purposes, with the new software coming a week after the release of the fifth macOS Monterey 12.3 beta. The RC represents the final version of macOS Monterey 12.3 that will be released publicly next week.

macOS Monterey on MBP Feature
Registered developers can download the beta through the Apple Developer Center and after the appropriate profile is installed, betas will be available through the Software Update mechanism in System Preferences.

macOS Monterey 12.3 is a major update that introduces Universal Control, a feature that Apple first teased at WWDC and then delayed for several months. ‌Universal Control‌ is designed to allow you to use a single mouse/trackpad and keyboard across multiple Macs and iPads (with iPads running iPadOS 15.4).

After updating your devices to macOS 12.3 and iPadOS 15.4, ‌Universal Control‌ works automatically, allowing your Mac's cursor and keyboard to work on the iPad and vice versa. It's simple and intuitive to use.

macOS Monterey 12.3 adds support for updating the AirPods firmware when the earbuds are connected to a Mac, plus it deprecates kernel extensions used by Dropbox and Microsoft OneDrive, and it eliminates Python 2, with Apple instructing developers to use an alternative scripting language like Python 3 going forward.

There are also new emoji characters, including melting face, biting lip, heart hands, bubbles, beans, face with diagonal mouth, palm up hand, eggs, troll, low battery, coral, lotus, and more.

Update: The update is now also available to public beta testers.

Related Forum: macOS Monterey

Top Rated Comments

Realityck Avatar
28 months ago
For macOS 12.3 RC (21E230) - March 8, 2022
[SPOILER="macOS Monterey 12.3 Release Notes"]
[HEADING=2]Apple Pay[/HEADING]
[HEADING=3]New Features[/HEADING]

* Developers can express payment network preference in PKPaymentRequest ('https://developer.apple.com/documentation/passkit/pkpaymentrequest'). Network preference is determined by the order of supportedNetworks ('https://developer.apple.com/documentation/passkit/pkpaymentrequest/1619329-supportednetworks'). This won’t override the user’s default card selection, but if the card is multi-SSD, then the network preference order determines which SSD is selected. (80827905)

[HEADING=2]Authentication[/HEADING]
[HEADING=3]New Features[/HEADING]

* Support is added to the passkey technology preview, enabling signing in to passkey-compatible websites and apps on Mac and iPad using an iPhone with a saved passkey. (87998252)

[HEADING=2]Game Controller[/HEADING]
[HEADING=3]New Features[/HEADING]

* Support is now available for new DualSense adaptive trigger firmware features available via GCDualSenseAdaptiveTrigger ('https://developer.apple.com/documentation/gamecontroller/gcdualsenseadaptivetrigger'). (87433163)

[HEADING=2]iWork[/HEADING]
[HEADING=3]Known Issues[/HEADING]

* Collaboration scenarios might not work when the user configures the system to a right-to-left language. (89078453)
Workaround: Use iWork.com ('https://developer.apple.com/documentation/iWork.com') to collaborate in Safari using a right-to-left language.

[HEADING=2]Kernel[/HEADING]
[HEADING=3]Deprecations[/HEADING]

* The kernel extensions used by Dropbox Desktop Application and Microsoft OneDrive are no longer available. Both service providers have replacements for this functionality; Dropbox is currently in beta. (85890896)

[HEADING=2]libc++[/HEADING]
[HEADING=3]New Features[/HEADING]

* The following new C++20 and C++23 features are now implemented:

* C++20 library concepts defined in <concepts>.
* constexpr for std::swap() and swap-related functions.
* Miscellaneous constexpr-ification in the library.
* std::atomic now default initializes as expected.
* A .contains() method for associative containers.
* Added std::bind_front(). (88131816)


[HEADING=3]Deprecations[/HEADING]

* Some extensions in std::tuple were removed to fix bugs caused by those extensions:

* Tuples can no longer be constructed from fewer than the number of elements in the tuple. Previously, elements that weren’t specified were default-constructed; now this is a compiler error.
* A tuple can no longer be constructed from an array.
* The std::result_of and std::is_literal_type type traits are no longer available in C++20 mode, as specified in the Standard.


[HEADING=2]Python[/HEADING]
[HEADING=3]Deprecations[/HEADING]

* Python 2.7 was removed from macOS in this update. Developers should use Python 3 or an alternative language instead. (39795874)

[HEADING=2]StoreKit[/HEADING]
[HEADING=3]New Features[/HEADING]

* SKTestSession ('https://developer.apple.com/documentation/storekittest/sktestsession') has three new methods to simulate a subscription requiring price increase consent, simulate consenting to a pending price increase, and simulate declining a price increase in automated tests. (84556183)
* SKTestSession has two new Boolean properties to simulate billing retry and grace period in automated tests. You can identify and simulate the resolution of billing retry issues using the same APIs as interrupted purchases. (83956205)
* Users can now test the billing retry and grace period states using StoreKit Testing in Xcode. Use Xcode 13.3 or later to enable billing retry testing and toggle whether the app offers a grace period. Use isInBillingRetry ('https://developer.apple.com/documentation/storekit/product/subscriptioninfo/renewalinfo/3749502-isinbillingretry') and gracePeriodExpirationDate ('https://developer.apple.com/documentation/storekit/product/subscriptioninfo/renewalinfo/3749500-graceperiodexpirationdate') to handle these states in the app. (83938270)
* StoreKit error types now conform to LocalizedError ('https://developer.apple.com/documentation/foundation/localizederror'). (78735204)
* Users can test subscription price increase behavior using StoreKit Testing in Xcode. Use Xcode 13.3 or later to set a price increase, then use paymentQueueShouldShowPriceConsent(_:) ('https://developer.apple.com/documentation/storekit/skpaymentqueuedelegate/3521328-paymentqueueshouldshowpriceconse'), showPriceConsentIfNeeded() ('https://developer.apple.com/documentation/storekit/skpaymentqueue/3521327-showpriceconsentifneeded'), and priceIncreaseStatus ('https://developer.apple.com/documentation/storekit/product/subscriptioninfo/renewalinfo/3822292-priceincreasestatus') in the app. (58770817)
* Some types in StoreKit now have a localizedDescription read-only Stringinstance property. This property can be used to get a human-readable description of the value, localized for the device’s current locale. These types include: Product.ProductType ('https://developer.apple.com/documentation/storekit/product/producttype'), Product.SubscriptionInfo.RenewalState ('https://developer.apple.com/documentation/storekit/product/subscriptioninfo/renewalstate'), expirationReason ('https://developer.apple.com/documentation/storekit/product/subscriptioninfo/renewalinfo/3749499-expirationreason'), priceIncreaseStatus ('https://developer.apple.com/documentation/storekit/product/subscriptioninfo/renewalinfo/3822292-priceincreasestatus'), Transaction.OfferType ('https://developer.apple.com/documentation/storekit/transaction/offertype'), Product.SubscriptionOffer.OfferType ('https://developer.apple.com/documentation/storekit/product/subscriptionoffer/offertype'), Product.SubscriptionOffer.PaymentMode ('https://developer.apple.com/documentation/storekit/product/subscriptionoffer/paymentmode'), Product.SubscriptionPeriod.Unit ('https://developer.apple.com/documentation/storekit/product/subscriptionperiod/unit'), Transaction.RevocationReason ('https://developer.apple.com/documentation/storekit/transaction/revocationreason'), and Transaction.OwnershipType ('https://developer.apple.com/documentation/storekit/transaction/ownershiptype'). (78735060)

[HEADING=2]Universal Control[/HEADING]
[HEADING=3]Known Issues[/HEADING]

* Drag-and-drop scenarios might not work for some file types and apps. (88106322)
* Some third-party keyboards and mice might encounter issues when using additional functionality, like scroll wheels. (88106362)

[HEADING=2]WebKit[/HEADING]
[HEADING=3]Deprecations[/HEADING]

* Support for inline viewing of PostScript files is no longer available. (88172449)

[/SPOILER]
Score: 5 Votes (Like | Disagree)
Heindijs Avatar
28 months ago
I'm not even exited for Universal Control, I'm just glad that 12.3 fixes the artifacts on the sides of transparent windows such as control centre when running it on a Mac with certain Intel HD graphics chips...
Score: 3 Votes (Like | Disagree)
fhall1 Avatar
28 months ago
Wow - only 8 comments after almost 24 hours?!? I figured there would be lots of reporting on bugs finally fixed/still not fixed, etc.
Score: 3 Votes (Like | Disagree)
tmaxxtigger Avatar
28 months ago
6800/6900XT GPU performance issues persist. :(
Score: 2 Votes (Like | Disagree)
srbNYC Avatar
28 months ago

Wow - only 8 comments after almost 24 hours?!? I figured there would be lots of reporting on bugs finally fixed/still not fixed, etc.
Same here; always surprised about the relative quiet of MacOS threads while the iOS thread are exploding.
Score: 1 Votes (Like | Disagree)
Realityck Avatar
28 months ago
RC
Safari Version 15.4 (17613.1.17.1.6) No change

System Firmware Version: 7459.101.2 (M1 based Macs) No change

Darwin Kernel Version 21.4.0: Mon Feb 21 20:36:53 PST 2022; root:xnu-8020.101.4~2/RELEASE_ARM64_T8101 arm64

beta 5
Safari Version 15.4 (17613.1.17.1.6)

System Firmware Version: 7459.101.2 (M1 based Macs)

Darwin Kernel Version 21.4.0: Mon Feb 21 21:57:28 PST 2022; root:xnu-8020.101.4~4/RELEASE_ARM64_T8101 arm64
Score: 1 Votes (Like | Disagree)

Popular Stories

Delta Feature

Delta Game Emulator Now Available From App Store on iPhone

Wednesday April 17, 2024 9:58 am PDT by
Game emulator apps have come and gone since Apple announced App Store support for them on April 5, but now popular game emulator Delta from developer Riley Testut is available for download. Testut is known as the developer behind GBA4iOS, an open-source emulator that was available for a brief time more than a decade ago. GBA4iOS led to Delta, an emulator that has been available outside of...
iPhone 15 Pro Action Button Translate

All iPhone 16 Models to Feature Action Button, But Usefulness Debated

Tuesday April 16, 2024 6:54 am PDT by
Last September, Apple's iPhone 15 Pro models debuted with a new customizable Action button, offering faster access to a handful of functions, as well as the ability to assign Shortcuts. Apple is poised to include the feature on all upcoming iPhone 16 models, so we asked iPhone 15 Pro users what their experience has been with the additional button so far. The Action button replaces the switch ...
maxresdefault

Hands-On With the New App Store Delta Game Emulator

Wednesday April 17, 2024 12:19 pm PDT by
A decade ago, developer Riley Testut released the GBA4iOS emulator for iOS, and since it was against the rules at the time, Apple put a stop to downloads. Emulators have been a violation of the App Store rules for years, but that changed on April 5 when Apple suddenly reversed course and said that it was allowing retro game emulators on the App Store. Subscribe to the MacRumors YouTube channel ...
Provenance Emulator

PlayStation, GameCube, Wii, and SEGA Emulator for iPhone and Apple TV Coming to App Store

Friday April 19, 2024 8:29 am PDT by
The lead developer of the multi-emulator app Provenance has told iMore that his team is working towards releasing the app on the App Store, but he did not provide a timeframe. Provenance is a frontend for many existing emulators, and it would allow iPhone and Apple TV users to emulate games released for a wide variety of classic game consoles, including the original PlayStation, GameCube, Wii,...
iOS NES Emulator Bimmy Feature

NES Emulator for iPhone and iPad Now Available on App Store [Removed]

Tuesday April 16, 2024 11:33 am PDT by
The first approved Nintendo Entertainment System (NES) emulator for the iPhone and iPad was made available on the App Store today following Apple's rule change. The emulator is called Bimmy, and it was developed by Tom Salvo. On the App Store, Bimmy is described as a tool for testing and playing public domain/"homebrew" games created for the NES, but the app allows you to load ROMs for any...