You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The reconcilers package is large. We would like to extract everything related to stashing into a stash package.
We don't want to break anyone's code. That means we'd like to alias the types in the reconcilers package for backwards-compatibility.
⚡ Some of the types, most prominently Stasher are generic. However, generic types cannot be aliased unless GOEXPERIMENT=aliastypeparams is set or until runtime depends on Go 1.24 (see alias names). That means this is blocked until Go 1.24 is out and we require it.
validation.WithRecursive can start using a Stasher then.
The text was updated successfully, but these errors were encountered:
The
reconcilers
package is large. We would like to extract everything related to stashing into astash
package.We don't want to break anyone's code. That means we'd like to alias the types in the
reconcilers
package for backwards-compatibility.⚡ Some of the types, most prominently
Stasher
are generic. However, generic types cannot be aliased unlessGOEXPERIMENT=aliastypeparams
is set or until runtime depends on Go 1.24 (see alias names). That means this is blocked until Go 1.24 is out and we require it.validation.WithRecursive
can start using aStasher
then.The text was updated successfully, but these errors were encountered: