I think this nicely summarizes the high level goals of this feature!
Agreed. This seems like the most sensible default to me.
I also want to separate out that part into a different proposal but I don't agree that it should be a different option. I feel like it should be part of the main platforms API.
Maybe something like:
platforms: .platforms([.macOS(.v10_13), .iOS(.v12)], restricted: true)
restricted=true
would mean: allow all listed platforms + any platform not known to the current tools version. This will solve #1, #3, #4 and enable restricting to a particular set of platforms while allowing bringing up new platforms.
With this approach, we don't require .unsupported
and it will lead to a much cleaner API. Having to explicitly mark platforms as unsupported seems counter-intuitive and can lead to a massive list of platforms as support for Swift grows over time.