embulk-input-marketo 0.6.10.alpha → 0.6.10

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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +4 -6
  3. data/README.md +16 -3
  4. data/build.gradle +1 -1
  5. metadata +4 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 22645790a18bbe5578b7146e488167fe0139a1a1
4
- data.tar.gz: b26ea8361cbe4f5d32796eb7295250becc11497d
3
+ metadata.gz: 368e0b80c346570f82c7c16c2e07135f0b73b543
4
+ data.tar.gz: e1edfbc1bf62ed3624cb7fc25cf317cc8664dd0a
5
5
  SHA512:
6
- metadata.gz: 3c64fa145b1717cbf966b1e92052372fec3cd7848e97c128b769aba1721c4d5a852f1a1c7d656017c529009492a3f530c863e328275aab57e2c81f6942f3bd31
7
- data.tar.gz: d0f35afc155263d59d5c491784481f189d491b5c5866fc7a983dc3621dc7b7efbf1173524ac9490310c725a926fc44cff89c4299aac8a02be1947bfe156feeb1
6
+ metadata.gz: dd5b2dea8460522bf57c8a92a38a47f7030d3675a28a4bffb4cb48153af6d8679be4c28783ca7757265a3923cdb9197876dad87bac228c9a652e476531d539d2
7
+ data.tar.gz: 17475bdc7f4f3f89e9bb9e568ab85f74d0d38f4ec4a00afa5dbba58fb4999113061de2ebcbb9c485ebea7cedfe77d649851cd418a7da6fbee92f6af9dc9009c5
@@ -1,3 +1,6 @@
1
+ ## 0.6.10 - 2018-05-28
2
+ * [fixed] Add included column option [#87](https://github.com/treasure-data/embulk-input-marketo/pull/87)
3
+
1
4
  ## 0.6.9 - 2018-04-16
2
5
  * [fixed] Fix wrapped TimeoutException not retry [#85](https://github.com/treasure-data/embulk-input-marketo/pull/85)
3
6
  * [enhance] Make read_timeout configurable [#85](https://github.com/treasure-data/embulk-input-marketo/pull/85)
@@ -10,12 +13,7 @@
10
13
 
11
14
  ## 0.6.6 - 2018-01-30
12
15
  * [fixed] Fix JettyRetryHelper not closed [#82](https://github.com/treasure-data/embulk-input-marketo/pull/82)
13
-
14
- ## 0.6.5 - 2017-12-19
15
- * [fixed] Fix infinite loop when import non bulk extract targets [#80](https://github.com/treasure-data/embulk-input-marketo/pull/80)
16
-
17
- ## 0.6.4 - 2017-12-13
18
- * [fixed] Fix incorrect job timeout calculation [#78](https://github.com/treasure-data/embulk-input-marketo/pull/78)
16
+ ## 0.6.5 - 2017-12-19 [fixed] Fix infinite loop when import non bulk extract targets [#80](https://github.com/treasure-data/embulk-input-marketo/pull/80) ## 0.6.4 - 2017-12-13 [fixed] Fix incorrect job timeout calculation [#78](https://github.com/treasure-data/embulk-input-marketo/pull/78)
19
17
  * [enhance] Disable incremental import by updatedAt [#77](https://github.com/treasure-data/embulk-input-marketo/pull/77)
20
18
  * [enhance] Add log for exported file size [#76](https://github.com/treasure-data/embulk-input-marketo/pull/76)
21
19
 
data/README.md CHANGED
@@ -71,9 +71,10 @@ Lead target extract all Marketo leads, it use Marketo bulk extract feature. Conf
71
71
 
72
72
  Configuration:
73
73
 
74
- | name | required | default value | description |
75
- |--------------------|----------|---------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------|
76
- | **use_updated_at** | false | false | Support filter with `updateAt` column, but not all Marketo Account have the feature to filter by updatedAt, updatedAt don't support incremental ingestion |
74
+ | name | required | default value | description |
75
+ |---------------------|----------|---------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------|
76
+ | **use_updated_at** | false | false | Support filter with `updateAt` column, but not all Marketo Account have the feature to filter by updatedAt, updatedAt don't support incremental ingestion |
77
+ | **included_fields** | false | empty | List of lead fields to included in export request sent to Marketo, can be used to reduce the size of BulkExtract file |
77
78
 
78
79
  Schema type: Dynamic via describe lead endpoint.
79
80
 
@@ -111,6 +112,12 @@ Extract all Lead data including lead's list id
111
112
 
112
113
  `target: all_lead_with_list_id`
113
114
 
115
+ Configuration:
116
+
117
+ | name | required | default value | description |
118
+ |---------------------|----------|---------------|-----------------------------------------------------------------------------------------------------------------|
119
+ | **included_fields** | false | empty | List of lead fields to included in export request sent to Marketo, can be used to reduce request, response size |
120
+
114
121
  Schema type: Dynamic via describe leads. Schema will have 1 addition column name listId that contain the id of the list the lead belong to
115
122
 
116
123
  Incremental support: no
@@ -123,6 +130,12 @@ Extract all Lead data including lead's program id
123
130
 
124
131
  `target: all_lead_with_program_id`
125
132
 
133
+ Configuration:
134
+
135
+ | name | required | default value | description |
136
+ |---------------------|----------|---------------|-----------------------------------------------------------------------------------------------------------------|
137
+ | **included_fields** | false | empty | List of lead fields to included in export request sent to Marketo, can be used to reduce request, response size |
138
+
126
139
  Schema type: Dynamic via describe leads. Schema will have 1 addition column name listId that contain the id of the list the lead belong to
127
140
 
128
141
  Incremental support: no
@@ -16,7 +16,7 @@ repositories {
16
16
  configurations {
17
17
  provided
18
18
  }
19
- version = "0.6.10.alpha"
19
+ version = "0.6.10"
20
20
  sourceCompatibility = 1.7
21
21
  targetCompatibility = 1.7
22
22
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: embulk-input-marketo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.10.alpha
4
+ version: 0.6.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - uu59
@@ -126,9 +126,9 @@ files:
126
126
  - src/test/resources/fixtures/program_response.json
127
127
  - classpath/jetty-http-9.2.14.v20151106.jar
128
128
  - classpath/embulk-base-restclient-0.5.3.jar
129
- - classpath/embulk-input-marketo-0.6.10.alpha.jar
130
129
  - classpath/jetty-client-9.2.14.v20151106.jar
131
130
  - classpath/jetty-util-9.2.14.v20151106.jar
131
+ - classpath/embulk-input-marketo-0.6.10.jar
132
132
  - classpath/embulk-util-retryhelper-jetty92-0.5.3.jar
133
133
  - classpath/jetty-io-9.2.14.v20151106.jar
134
134
  homepage: https://github.com/treasure-data/embulk-input-marketo
@@ -146,9 +146,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
146
146
  version: '0'
147
147
  required_rubygems_version: !ruby/object:Gem::Requirement
148
148
  requirements:
149
- - - '>'
149
+ - - '>='
150
150
  - !ruby/object:Gem::Version
151
- version: 1.3.1
151
+ version: '0'
152
152
  requirements: []
153
153
  rubyforge_project:
154
154
  rubygems_version: 2.1.9