Apple Releases macOS Sonoma 14.3 With Collaborative Apple Music Playlists - MacRumors
Skip to Content

Apple Releases macOS Sonoma 14.3 With Collaborative Apple Music Playlists

Apple today released macOS Sonoma 14.3, the third major update to the macOS Sonoma operating system that came out last September. macOS Sonoma 14.3 comes over a month after the release of macOS Sonoma 14.2.

macos sonoma 4
The ‌‌‌macOS Sonoma‌ 14.3‌ update can be downloaded for free on all eligible Macs using the Software Update section of System Settings. There's also a macOS 13.6.4 release for those who are still running macOS Ventura and a macOS 12.7.3 release for those who have macOS Monterey installed.

macOS Sonoma 14.3 brings collaborative playlists in Apple Music, so that ‌Apple Music‌ subscribers can create playlists with friends and family members. The software also has an updated AppleCare & Warranty section in Settings that shows coverage for all devices signed in with an Apple ID.

Apple's full release notes for macOS Sonoma 14.3 are below:

macOS Sonoma 14.3 introduces enhancements to Apple Music, as well as other features, bug fixes, and security updates for your Mac.

  • Collaborate on playlists in Apple Music allows you to invite friends to join your playlist and everyone can add, reorder, and remove songs
  • Emoji reactions can be added to any track in a collaborative playlist in Apple Music
  • AppleCare & Warranty in Settings shows your coverage for all devices signed in with your Apple ID

More information on the features that have been introduced in macOS Sonoma to date can be found in our macOS Sonoma roundup.

Related Forum: macOS Sonoma

Popular Stories

Apple Lists 250 Changes Across iOS 27 and More Feature

Apple Shares List of 250 Changes Across iOS 27, macOS Golden Gate, and More

Wednesday June 10, 2026 1:34 pm PDT by
During its WWDC 2026 keynote on Monday, Apple briefly showed a slide with hundreds of new features and enhancements coming across iOS 27, macOS 27 Golden Gate, watchOS 27, tvOS 27, and visionOS 27. All of the software updates are currently available as developer betas, and they are expected to be released to all users in September. We already highlighted some of the key new features from the ...
iCloud iPhone 17 Pro

iPhone Users Who Pay for iCloud Storage Get Two New Perks on iOS 27

Tuesday June 9, 2026 11:29 am PDT by
If you pay for extra iCloud storage on your iPhone, beyond the 5GB included for free, you might receive two more perks on iOS 27 at no additional cost. First, Apple said there will be daily usage limits for some of the new and enhanced Apple Intelligence features on iOS 27, including image generation. However, the company noted that "increased access" is available with "most" iCloud+ storage ...
Apple Event Logo

Apple to Release These 15 New Products Later This Year

Friday June 12, 2026 7:45 am PDT by
Apple's annual WWDC developers conference is drawing to a close, but there is still a lot to look forward to in the second half of the year. Apple is expected to release at least 15 more products later this year. Now that the more intelligent and personal version of Siri has finally arrived in beta, a full two years after Apple first previewed it at WWDC 2024, we should begin to see some new ...

Top Rated Comments

swrobel Avatar
31 months ago
So silly that an entire OS update is still required to roll out an enhancement to one app
Score: 16 Votes (Like | Disagree)
sjsharksfan12 Avatar
31 months ago

So silly that an entire OS update is still required to roll out an enhancement to one app
I've been saying this for years. Separate the Apps from the OS apple. Hire a development team solely for Apple Music (You can even allow someone like Lowe to be head of that team) and give us Apple Music updates a little more frequently. If you want to be a service company, then the services should be like priority number 5 in the rankings of how said company is run.
Score: 12 Votes (Like | Disagree)
31 months ago

First - build number?
23D56 - same as RC

ipsw: https://updates.cdn-apple.com/2024WinterFCS/fullrestores/042-78241/B45074EB-2891-4C05-BCA4-7463F3AC0982/UniversalMac_14.3_23D56_Restore.ipsw

full installer: https://swcdn.apple.com/content/downloads/62/31/042-78233-A_YIMC5ZQM8T/yj7iay56cmvc2cux0qm55lfweb2u90euyo/InstallAssistant.pkg

The Ventura and Monterey builds are also the same as their RC 4s:

13.6.4 is build 22G513

full installer: https://swcdn.apple.com/content/downloads/32/13/052-33049-A_UX3Z28TPLL/702vi772ckrytq1r67eli9zrgsu8jxxoqw/InstallAssistant.pkg

12.7.3 is build 21H1015

full installer: https://swcdn.apple.com/content/downloads/53/08/052-33037-A_AKHX79ZA4S/z7yb5wdcrk453a3hi7c3hc9n6zzju9di7f/InstallAssistant.pkg
Score: 8 Votes (Like | Disagree)
31 months ago

The ‌‌‌macOS Sonoma‌ 14.3‌ update can be downloaded for free on all eligible Macs using the Software Update section of System Settings. There's also a macOS 13.6.4 release for those who are still running macOS Ventura and a macOS 12.7.3 release for those who have macOS Monterey installed.
I was running macOS Ventura until six days ago when Apple force upgraded my system to Sonoma ('https://forums.macrumors.com/threads/ventura-magically-updated-to-sonoma.2416284/') with no user input from me. I'd like to see a MacRumors article explaining what is going on here and how to prevent it in the future.
Score: 7 Votes (Like | Disagree)
31 months ago
For public release full installers you can run these in terminal:

Sonoma:

for file in $(curl -# https://swscan.apple.com/content/catalogs/others/index-14-1.sucatalog | grep Info.plist | grep -Evw '(Info.plist.integrityDataV1|InstallInfo.plist)' | sed -e s/"<string>"//g -e s/"<\/string>"//g -e s/\ //g); do
curl -# $file | egrep -EA 1 '(>Build<|OSVersion)' | sed -e s/"<string>"//g -e s/"<\/string>"//g -e s/\ //g | sed -e s/"<key>"//g -e s/"<\/key>"//g -e s/\ //g
echo $file | sed -e "s/Info.plist/InstallAssistant.pkg/g"
done

Ventura:

for file in $(curl -# https://swscan.apple.com/content/catalogs/others/index-13-1.sucatalog | grep Info.plist | grep -Evw '(Info.plist.integrityDataV1|InstallInfo.plist)' | sed -e s/"<string>"//g -e s/"<\/string>"//g -e s/\ //g); do
curl -# $file | egrep -EA 1 '(>Build<|OSVersion)' | sed -e s/"<string>"//g -e s/"<\/string>"//g -e s/\ //g | sed -e s/"<key>"//g -e s/"<\/key>"//g -e s/\ //g
echo $file | sed -e "s/Info.plist/InstallAssistant.pkg/g"
done


Monterey:

for file in $(curl -# https://swscan.apple.com/content/catalogs/others/index-12-1.sucatalog | grep Info.plist | grep -Evw '(Info.plist.integrityDataV1|InstallInfo.plist)' | sed -e s/"<string>"//g -e s/"<\/string>"//g -e s/\ //g); do
curl -# $file | egrep -EA 1 '(>Build<|OSVersion)' | sed -e s/"<string>"//g -e s/"<\/string>"//g -e s/\ //g | sed -e s/"<key>"//g -e s/"<\/key>"//g -e s/\ //g
echo $file | sed -e "s/Info.plist/InstallAssistant.pkg/g"
done


The links and builds will be revealed.

So you don't have to wait till some dude posts them up on the net somewhere. You can get them as fast as apple puts them up.
Score: 6 Votes (Like | Disagree)
31 months ago
A personal ongoing battle, does it fix Missing artwork in Library ('https://forums.macrumors.com/threads/unable-to-add-album-artwork-for-some-albums-in-library-on-macos.2416337/') ?
Score: 5 Votes (Like | Disagree)