I found defaultIsolation(_:_:) | Apple Developer Documentation, but it doesn't specify what the default mode is for packages built under Swift 6.2 that don't specify it. I thought I remember hearing somewhere that this is an "opt-in" scenario — is the default 'nil' if a package doesn't specify it?
There's a smidge of discordance there in what PackageDescription has today - it current asserts the only values allowed are either MainActor.self or nil - probably best to assert that nil is both the default, and results in classes being inferred as nonisolated by default.
I'll wrangle a PR to make an update for that. Is there a section of the migration guide (or TSPL) that would be worthwhile to link to "for more information"?