embulk / embulk-base-restclient

Base class library for Embulk plugins to access RESTful services
https://www.embulk.org/
Apache License 2.0
6 stars 7 forks source link

Update to Embulk v0.10.18, and not to depend on "embulk-core" #134

Closed dmikurube closed 4 years ago

dmikurube commented 4 years ago

Update depending Embulk to v0.10.18, which is ready for embulk-core-less building Embulk plugins.

At the same time, new PageBuilder and new PageReader are deprecated, but older Embulk v0.9.23 does not have their replacement (Exec.getPageBuilder and Exec.getPageReader) yet. So, it intentionally keeps using the deprecated constructors.

Similar for PageBuilder#setTimestamp and PageReader#getTimestamp.

This pull-req has mechanisms to switch automatically between old methods and new methods.

dmikurube commented 4 years ago

Thanks!