v0.8.0
⚠︎ Breaking Changes
This release has breaking query API updates:
- The
query.ResultsWithChan
function has been removed. Users ofResultsWithChan
can replace it withResultsWithContext
, see theQuery
implementation in the examples. - The
query.ResultsWithProcess
has been replaced withquery.ResultsWithContext
. There is no longer a need for thegoprocess
package sincequery.Results
can be closed when a context ins canceled by usingcontext.AfterFunc
. ResultBuilder
and functions associated with it have been removed. UseResultsWithContext
instead.query.Results.Close
no longer returns an error. This did not provide any functional value outside of a query implementation.
What's Changed
No goprocess by @gammazero in #223
- remove goprocess from api
- replace goprocess with
Context
-based functionality. Close
functions do not need to return error- replace
ResultsWithProcess
withResultsWithContext
- remove deprieated
ResultsWithChan
function. - remove
ResultBuilder
to simplify query API
Full Changelog: v0.7.0...v0.8.0