forked from treasure-data/td-client-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChangeLog
More file actions
253 lines (116 loc) · 4.54 KB
/
ChangeLog
File metadata and controls
253 lines (116 loc) · 4.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
== 2012-03-29 version 0.8.46
* Add IP limitation API
== 2012-01-25 version 0.8.45
* Re-implement Client#job_status using /v3/job/status/job_id
instead of /v3/job/show/job_id to poll the progress of a job
== 2012-01-23 version 0.8.44
* Re-add json gem dependency
== 2012-01-23 version 0.8.43
* Add organization parameter support to create_database, query,
partial_delete, create_bulk_import, create_result
== 2012-01-16 version 0.8.42
* Added retry_limit to job and schedule APIs
* Increased table/database name limit from 32 to 256
== 2012-01-10 version 0.8.41
* Fix API#job_result_format to handle Content-Encoding properly
== 2012-12-27 version 0.8.40
* Add Table#last_import to use counter_updated_at column
== 2012-12-05 version 0.8.39
* Add conditions argument to Client#list_jobs for slow query listing
== 2012-11-21 version 0.8.38
* Add Account#created_at
== 2012-11-16 version 0.8.37
* Remove json gem dependency again (previous version has bug)
== 2012-11-16 version 0.8.36
* Remove json gem dependency
== 2012-10-23 version 0.8.35
* Added Account#account_id
== 2012-10-16 version 0.8.34
* Set Net::HTTP#open_timeout = 60
== 2012-10-10 version 0.8.33
* Supports import_with_id API
* Supports deflate and gzip Content-Encodings and sends Accept-Encoding header
== 2012-10-09 version 0.8.32
* Added Client#swap_table
== 2012-09-21 version 0.8.31
* Added Job#db_name
== 2012-09-21 version 0.8.30
* Fixed Account#storage_size_string and Table#estimated_storage_size_string
== 2012-09-17 version 0.8.29
* Added Client#core_utilization method
* Added Account#guaranteed_cores and #maximum_cores methods
== 2012-09-17 version 0.8.27
* Added Table#estimated_storage_size_string
== 2012-09-13 version 0.8.26
* Added Account model and Table#esetimated_storage_size method
* Name length limit is changed from 32 characters to 256 characters
== 2012-09-04 version 0.8.25
* Added Client#change_my_password(old_password, password)
== 2012-08-30 version 0.8.24
* TreasureData::Client.new supports :http_proxy option
== 2012-08-30 version 0.8.23
* Supports HTTP_PROXY environment variable
== 2012-08-20 version 0.8.22
* Top-level resource models support org_name parameter
== 2012-08-06 version 0.8.21
* Added multiuser features: organizations, users, roles
* Added access control
== 2012-07-23 version 0.8.20
* Implemented Zlib::GzipReader#readpartial for compatibility with ruby 1.8
== 2012-07-03 version 0.8.19
* Added Client#partial_delete
* Client#query and Client#create_schedule support 'priority' option
== 2012-06-26 version 0.8.18
* Client#result_each(&block) uses streaming raed not to read all data into memory
* Client#result_format(format, io=nil) supports second argument not to read
all data into memory
== 2012-06-11 version 0.8.17
* Client#jobs supports status option
== 2012-05-10 version 0.8.16
* Added bulk import feature
== 2012-04-26 version 0.8.15
* Result model replaces ResultSet model
* Removed methods related to ResultSet from Job and Schedule models
* Added methods related to Result to Job and Schedule models
== 2012-04-03 version 0.8.14
* Added Database#count, #created_at and #updated_at
* Added Table#created_at and #updated_at
== 2012-04-03 version 0.8.13
* Added Job#hive_result_schema
== 2012-03-12 version 0.8.12
* Client#run_schedule returns an array of ScheduledJob
== 2012-03-01 version 0.8.11
* Use data/ca-bundle.crt for SSL connections
== 2012-02-22 version 0.8.10
* Added Client#run_schedule and update_schedule
* Added timezone, delay and next_time fields to the Schedule model
* create_aggregation_schema accepts params argument
== 2012-02-12 version 0.8.9
* Added API#normalize_table_name and API#normalize_database_name
== 2012-02-02 version 0.8.8
* Fixed SSL support
== 2012-02-02 version 0.8.7
* Added SSL support
== 2012-01-19 version 0.8.6
* Check JSON format of HTTP responses
== 2011-12-04 version 0.8.5
* added new feature: ResultSet
* added new feature: AggregationSchema
* added Job#rset and Schedule#rset to get associated ResultSet
== 2011-11-11 version 0.8.4
* Added Model#client
* Added Database#query
* Added Table#import
* Increased http.read_timeout on Client#import
== 2011-10-03 version 0.8.3
* Added Client#tail method
== 2011-09-13 version 0.8.2
* Added APIs for scheduled queries
* Set 'Content-Length: 0' header to POST request if no parameters are
provided
== 2011-09-09 version 0.8.1
* Added Client#kill method
* Client.authenticate throws AuthError instead of APIError when
status code is 400
== 2011-08-21 version 0.8.0
* First release