From 7fe8042daefb004c8fa57d5b0673ffd9f2d6b0a9 Mon Sep 17 00:00:00 2001 From: Thang Nguyen Date: Tue, 10 Oct 2017 10:34:29 +0700 Subject: [PATCH] Release v0.3.19 --- CHANGELOG.md | 3 +++ README.md | 1 + build.gradle | 2 +- 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 955da8f..b16e370 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 0.3.19 - 2017-10-10 +- Fixed bug can not parse invalid JSON response and added request timeout to avoid flush MailChimp API [#35](https://github.com/treasure-data/embulk-output-mailchimp/pull/35) + ## 0.3.18 - 2017-09-19 - Fixed error parsing MailChimp API response JSON when push the large data [#34](https://github.com/treasure-data/embulk-output-mailchimp/pull/34) diff --git a/README.md b/README.md index 4dfe4d9..4a96748 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,7 @@ add e-mail to List in MailChimp. - **grouping_columns**: Array for group names in MailChimp dashboard(array, default: nil) - **language_column**: column name for language (string, optional, default: nil) - **double_optin**: control whether to send an opt-in confirmation email (boolean, default: true) +- **max_records_per_request**: The max records per batch request. MailChimp API enables max records is 500 per batch request (int, default: 500) ## Example diff --git a/build.gradle b/build.gradle index e914a70..7130576 100644 --- a/build.gradle +++ b/build.gradle @@ -18,7 +18,7 @@ configurations { provided } -version = "0.3.18" +version = "0.3.19" sourceCompatibility = 1.7 targetCompatibility = 1.7