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
Improve schema resolution
+ Fix record resolution when field names are JavaScript keywords.
+ Allow resolution from logical type to logical type inside unions.
Add field multi-resolution
For example, this will allow resolving...
record { int foo; }
...directly into...
record {
int foo;
long @Aliases(["foo"]) fooAsLong;
double @Aliases(["foo"]) fooAsDouble;
}