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

Popular Stories

iPhone SE 4 Vertical Camera Feature

iPhone SE 4 Production Will Reportedly Begin Ramping Up in October

Tuesday July 23, 2024 2:00 pm PDT by
Following nearly two years of rumors about a fourth-generation iPhone SE, The Information today reported that Apple suppliers are finally planning to begin ramping up mass production of the device in October of this year. If accurate, that timeframe would mean that the next iPhone SE would not be announced alongside the iPhone 16 series in September, as expected. Instead, the report...
iPhone 17 Plus Feature

iPhone 17 Lineup Specs Detail Display Upgrade and New High-End Model

Monday July 22, 2024 4:33 am PDT by
Key details about the overall specifications of the iPhone 17 lineup have been shared by the leaker known as "Ice Universe," clarifying several important aspects of next year's devices. Reports in recent months have converged in agreement that Apple will discontinue the "Plus" iPhone model in 2025 while introducing an all-new iPhone 17 "Slim" model as an even more high-end option sitting...
Generic iPhone 17 Feature With Full Width Dynamic Island

Kuo: Ultra-Thin iPhone 17 to Feature A19 Chip, Single Rear Camera, Semi-Titanium Frame, and More

Wednesday July 24, 2024 9:06 am PDT by
Apple supply chain analyst Ming-Chi Kuo today shared alleged specifications for a new ultra-thin iPhone 17 model rumored to launch next year. Kuo expects the device to be equipped with a 6.6-inch display with a current-size Dynamic Island, a standard A19 chip rather than an A19 Pro chip, a single rear camera, and an Apple-designed 5G chip. He also expects the device to have a...
iPhone 16 Pro Sizes Feature

iPhone 16 Series Is Less Than Two Months Away: Everything We Know

Thursday July 25, 2024 5:43 am PDT by
Apple typically releases its new iPhone series around mid-September, which means we are about two months out from the launch of the iPhone 16. Like the iPhone 15 series, this year's lineup is expected to stick with four models – iPhone 16, iPhone 16 Plus, iPhone 16 Pro, and iPhone 16 Pro Max – although there are plenty of design differences and new features to take into account. To bring ...
icloud private relay outage

iCloud Private Relay Experiencing Outage

Thursday July 25, 2024 3:18 pm PDT by
Apple’s iCloud Private Relay service is down for some users, according to Apple’s System Status page. Apple says that the iCloud Private Relay service may be slow or unavailable. The outage started at 2:34 p.m. Eastern Time, but it does not appear to be affecting all iCloud users. Some impacted users are unable to browse the web without turning iCloud Private Relay off, while others are...
iPhone 17 Plus Feature Purple

iPhone 17 Rumored to Feature Mechanical Aperture

Tuesday July 23, 2024 9:32 am PDT by
Apple is planning to release at least one iPhone 17 model next year with mechanical aperture, according to a report published today by The Information. The mechanical system would allow users to adjust the size of the iPhone 17's aperture, which refers to the opening of the camera lens through which light enters. All existing iPhone camera lenses have fixed apertures, but some Android...

Top Rated Comments

Realityck Avatar
31 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
31 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
31 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
31 months ago
6800/6900XT GPU performance issues persist. :(
Score: 2 Votes (Like | Disagree)
srbNYC Avatar
31 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
31 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)