v0.5.0
Changed
- BREAKING CHANGE: Removed public constructors for
Query
that were previously deprecated. - BREAKING CHANGE: Renamed
MutationEndpoint<T>
toResultlessEndpoint<T>
for better consistency. The oldMutationEndpoint<T>
has been marked as obsolete, and left in temporarily to make migration easier. Also removedMutation<T>
and<UseMutationEndpoint/>
, which can safely be replaced withQuery<T, Unit>
and<UseEndpoint/>
. - Moved some of the methods on
Query<T>
to extension methods, so that they would also work on the equivalentQuery<Unit, T>
class. - Lots of improvements to documentation and samples.
- More tests.
Fixed
- Fixed some issues that arise when
Skip
andArg
parameters ofUseEndpoint
are changed simultaneously.
Full Changelog: v0.4.0...v0.5.0