embulk-output-elasticsearch 0.4.1 → 0.4.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 75dffd640bad902148ef5c1a3ad38ab1f3621979
4
- data.tar.gz: b2f3b8a9e8573c821494d953f481ec2cd3d03c77
3
+ metadata.gz: 820af0df51a3e46cfd59a26c60e1fd219134b685
4
+ data.tar.gz: c6fdea4eaa6fe4a26e85c2ee1b5c623224daa317
5
5
  SHA512:
6
- metadata.gz: df79299ab2a3158c6986a6c61ad7cef7b43775d7297a5898021cf471090258887096ae66c070b5f63c8eab6d5f16b2275e65a1f7b95bd11b231cf3f982521a62
7
- data.tar.gz: 1d285ccb4fd669a827c08d66c8ae5ea4bbc7097ab021c81002c14d52a46216bc20a54fa369e18f69b27f290ddc772faeba907e7c6a48166e92fc5ad9aad740a4
6
+ metadata.gz: 81a1fe781d1e176fd8da2c3af19d3ddb1dd5a5dec519f887d072be420224d0168a0ea54f2621a7e50417740320b28f056b0504228bdc826c68e8173bc3bb13b7
7
+ data.tar.gz: d18bc4da9ea81201e72e21d02ec859b5f2a1e2078fd8c1c3a90bd4a01d361746b2b75aedc3baf50098f0b93d2f1ae4993b31eba2cbdd2d8f99d61194220c6a41
@@ -1,3 +1,7 @@
1
+ ## 0.4.2 - 2017-05-31
2
+
3
+ * [maintenance] Update embulk-base-restclient to fix ArrayIndexOutOfBoundsException [#37](https://github.com/muga/embulk-output-elasticsearch/pull/37)
4
+
1
5
  ## 0.4.1 - 2017-04-21
2
6
 
3
7
  * [maintenance] Check snapshot progress status before delete index [#36](https://github.com/muga/embulk-output-elasticsearch/pull/36)
@@ -18,7 +18,7 @@ configurations {
18
18
  provided
19
19
  }
20
20
 
21
- version = "0.4.1"
21
+ version = "0.4.2"
22
22
 
23
23
  compileJava.options.encoding = 'UTF-8' // source encoding
24
24
  sourceCompatibility = 1.7
@@ -27,8 +27,8 @@ targetCompatibility = 1.7
27
27
  dependencies {
28
28
  compile "org.embulk:embulk-core:0.8.16"
29
29
  provided "org.embulk:embulk-core:0.8.16"
30
- compile "org.embulk.base.restclient:embulk-base-restclient:0.4.2"
31
- compile "org.embulk.base.restclient:embulk-util-retryhelper-jetty92:0.4.2"
30
+ compile "org.embulk.base.restclient:embulk-base-restclient:0.5.2"
31
+ compile "org.embulk.base.restclient:embulk-util-retryhelper-jetty92:0.5.2"
32
32
 
33
33
  testCompile "junit:junit:4.+"
34
34
  testCompile "org.embulk:embulk-core:0.8.16:tests"
@@ -235,7 +235,7 @@ public class ElasticsearchOutputPluginDelegate
235
235
  }
236
236
 
237
237
  @Override // Overridden from |RecordBufferBuildable|
238
- public RecordBuffer buildRecordBuffer(PluginTask task)
238
+ public RecordBuffer buildRecordBuffer(PluginTask task, Schema schema, int taskIndex)
239
239
  {
240
240
  Jetty92RetryHelper retryHelper = createRetryHelper(task);
241
241
  return new ElasticsearchRecordBuffer("records", task, retryHelper);
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: embulk-output-elasticsearch
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ version: 0.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Muga Nishizawa
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-04-21 00:00:00.000000000 Z
11
+ date: 2017-05-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -82,9 +82,9 @@ files:
82
82
  - src/test/java/org/embulk/output/elasticsearch/TestElasticsearchHttpClient.java
83
83
  - src/test/java/org/embulk/output/elasticsearch/TestElasticsearchOutputPlugin.java
84
84
  - src/test/resources/sample_01.csv
85
- - classpath/embulk-base-restclient-0.4.2.jar
86
- - classpath/embulk-output-elasticsearch-0.4.1.jar
87
- - classpath/embulk-util-retryhelper-jetty92-0.4.2.jar
85
+ - classpath/embulk-base-restclient-0.5.2.jar
86
+ - classpath/embulk-output-elasticsearch-0.4.2.jar
87
+ - classpath/embulk-util-retryhelper-jetty92-0.5.2.jar
88
88
  - classpath/jetty-client-9.2.14.v20151106.jar
89
89
  - classpath/jetty-http-9.2.14.v20151106.jar
90
90
  - classpath/jetty-io-9.2.14.v20151106.jar