Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Scala 3.4 introduced a spec for match types that results in match types on
->>
either no longer compiling or working properly (for example, scala/scala3#17944).This removes all match types on
->>
and reworks type class instances accordingly. I've introduced a new package-privateformless.record.FindField
type class that's produced by a macro and is used by other type classes to find a matching field in a record and extract/modify/remove it. There's an equivalentformless.tuple.FindField
type class that's used for finding fields in plain tuples (not records).This also adds Scala 3.4.0-RC4 to the build so future changes are tested against it, but ensures that we still use Scala 3.3.1 for publishing artifacts.