embulk-output-mailchimp 0.3.21 → 0.3.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4fc26e821ca35cc96b7cb4b5525f53dd73643e2c
|
|
4
|
+
data.tar.gz: b895e9c6c3936faa4f07689cb270b3d312326d08
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f0e97a31cd7b726fc993c9b96c79ff244e5b885ac9de3d68e2503c6beb2def9d5e2ad045c6c472fd58cfe8c7b61172ef56a4c4acde6fa62bdb841e017648780f
|
|
7
|
+
data.tar.gz: eb162f943bebab1a3f83c584659d5ac092dc4c057b787c8e44e15fb370e40c9bdfee179770cf59f9d5da29a32833ab07145af7672cf38f67349450cf8008215a
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
## 0.3.22 - 2018-03-07
|
|
2
|
+
- Fixed bug NPE when checking interest categories [#41](https://github.com/treasure-data/embulk-output-mailchimp/pull/41)
|
|
3
|
+
|
|
1
4
|
## 0.3.21 - 2018-03-02
|
|
2
5
|
- Refactor code to improve performance and fix NPE with merge fields that contain case sensitive [#40](https://github.com/treasure-data/embulk-output-mailchimp/pull/40)
|
|
3
6
|
|
data/build.gradle
CHANGED
|
Binary file
|
|
@@ -75,7 +75,6 @@ public class MailChimpRecordBuffer
|
|
|
75
75
|
.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false)
|
|
76
76
|
.configure(JsonParser.Feature.ALLOW_UNQUOTED_CONTROL_CHARS, false);
|
|
77
77
|
this.records = new ArrayList<>();
|
|
78
|
-
this.categories = new HashMap<>();
|
|
79
78
|
this.uniqueRecords = new ArrayList<>();
|
|
80
79
|
this.duplicatedRecords = new ArrayList<>();
|
|
81
80
|
this.mailChimpClient = new MailChimpClient(task);
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: embulk-output-mailchimp
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.22
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Thang Nguyen
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-03-
|
|
11
|
+
date: 2018-03-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -89,8 +89,8 @@ files:
|
|
|
89
89
|
- test/override_assert_raise.rb
|
|
90
90
|
- test/run-test.rb
|
|
91
91
|
- classpath/jetty-io-9.2.14.v20151106.jar
|
|
92
|
-
- classpath/embulk-output-mailchimp-0.3.21.jar
|
|
93
92
|
- classpath/jetty-util-9.2.14.v20151106.jar
|
|
93
|
+
- classpath/embulk-output-mailchimp-0.3.22.jar
|
|
94
94
|
- classpath/jetty-http-9.2.14.v20151106.jar
|
|
95
95
|
- classpath/jetty-client-9.2.14.v20151106.jar
|
|
96
96
|
- classpath/embulk-base-restclient-0.5.3.jar
|