Apple Releases Fourth Public Beta of macOS Ventura 13.5

Apple today released the fourth beta of macOS Ventura 13.5 to its public beta testing group, allowing the general public to try out the software ahead of its official launch. The macOS Ventura 13.5 public beta comes a day after Apple provided the fourth beta to developers.

Ventura Macs Feature Red
Public beta testers can download the macOS 13.5 Ventura update from the Software Update section of the System Preferences app after installing the proper profile from Apple's beta software website.

There is no word as of yet on what's included in macOS Ventura 13.5, and no notable new features were found in the developer betas.

macOS 13.5 will be one of the last updates to the macOS Ventura operating system as Apple prepares for the fall launch of macOS Sonoma.

Related Roundup: macOS Sonoma
Related Forum: macOS Sonoma

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...

Top Rated Comments

tywebb13 Avatar
14 months ago
The full installers are available now for

Ventura 13.5 beta 4 build 22G5059d
Monterey 12.6.8 RC 2 build 21G716
Big Sur 11.7.9 RC 2 build 20G1416

Rather than put links here, here is a way to display them in Terminal. I include the one for Sonoma too for completeness sake, although there is no new Sonoma today.

So to display the links to InstallAssistant.pkg in Terminal use these commands:

Sonoma

for file in $(curl -# https://swscan.apple.com/content/catalogs/others/index-14seed-14-13-12-10.16-10.15-10.14-10.13-10.12-10.11-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-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-13seed-13-12-10.16-10.15-10.14-10.13-10.12-10.11-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-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-12seed-12-10.16-10.15-10.14-10.13-10.12-10.11-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-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

Big Sur

for file in $(curl -# https://swscan.apple.com/content/catalogs/others/index-10.16seed-10.16-10.15-10.14-10.13-10.12-10.11-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-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

These commands are more useful than actual links because they can be reused in the future for future betas too.

There will be many InstallAssistant.pkg's listed but usually the most recent applicable ones should be at or near the end of the lists.
Score: 5 Votes (Like | Disagree)
Realityck Avatar
14 months ago

More like 3 years, Big Sur is still getting updates.
Perhaps it's better to say you get system updates for previous two MacOS's during the current OS reign. :D
But when Sonoma launches then support for Big Sur would drop off with occasional security patches and Safari updates. So you are correct its more like 3 years.
Score: 4 Votes (Like | Disagree)
Ilde Avatar
14 months ago
Hi,
It looks like not many people is still interested in Monterey betas or updates. I'm running macOS Sonoma beta 2 and, in my humble opinion, is one of the initial betas running smooth and not too buggy so far, since my first contact with Mojave beta releases. This is what I think when counting the fewer posts on the latests articles in this site.

Regards,
Score: 4 Votes (Like | Disagree)
Realityck Avatar
14 months ago

There it is with the usual 1 day delay after the developer beta - I am done with Ventura, want the Sonoma public beta, hopefully within the next couple weeks or so
That is true, last year the PB arrived July 11th.
Score: 3 Votes (Like | Disagree)
johto Avatar
14 months ago
I'm still rocking Monterey. Not in a rush to upgrade.
Score: 3 Votes (Like | Disagree)
Realityck Avatar
14 months ago

So there will be no more security updates to Ventura after Sonoma launches?
You usually have 2 years of security/Safari updates after a newer OS launches.
Score: 3 Votes (Like | Disagree)