Are people aware of the NWS changing to the v1.2 CAP feed, away from v1.1?
My little weather script package has traditionally received alert information by querying a National Weather Service CAP/ATOM server at alerts.weather.gov - I assume like most scripts do.
However, recently, I've learned about the "at some point in the undetermined future" dropping of this v1.1 CAP service, which provides information in XML format. the NWS wants us to use a v1.2 CAP service, which provides information by default in JSON format. (but since learned: retrieving the information in XML is possible!)
I've modified my script to support both for the time being - the one used based on a configuration parameter, to allow me to compare the results of the two systems. It's fun hunting down severe weather in the US to find a zone/county with active alerts to allow for testing.

My point in this note is to simply say that it's not hard to convert to using v1.2 JSON. There are a few minor differences in what the two formats contain, but those are not insurmountable.
I encourage scriptwriters to consider starting to build support for v1.2/JSON alerts in their scripts, if they haven't already. It wasn't all that painful to do, and it's best to begin sooner rather than later so the work doesn't have to be done in a hurry in case the NWS shuts down the v1.1 feed.