so yesterday we had the 15.3 beta 1 and today there was supposed to be a full installer - but there wasn't one.
one can check for the full installers for the sequoia betas with the following code in terminal:
Code:
for file in $(curl -# https://swscan.apple.com/content/catalogs/others/index-15seed-1.sucatalog | grep com_apple_MobileAsset_MacSoftwareUpdate.plist | grep -Evw '(com_apple_MobileAsset_MacSoftwareUpdate.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/com_apple_MobileAsset_MacSoftwareUpdate.plist/InstallAssistant.pkg/g"
done
and for public releases with this:
Code:
for file in $(curl -# https://swscan.apple.com/content/catalogs/others/index-15-1.sucatalog | grep com_apple_MobileAsset_MacSoftwareUpdate.plist | grep -Evw '(com_apple_MobileAsset_MacSoftwareUpdate.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/com_apple_MobileAsset_MacSoftwareUpdate.plist/InstallAssistant.pkg/g"
done
so far the full installers are just for the 15.2
but something strange happened - or perhaps better put, didn't happen. the sonoma 14.7.3 rc 1 was supposed to come out yesterday, but came out today.
the sequoia, sonoma and ventura full installers usually come out the same time
so i reckon the full installer for the 15.3 beta 1 will come out tomorrow
so maybe check with the terminal code tomorrow