-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathCHANGELOG
201 lines (123 loc) · 6.01 KB
/
CHANGELOG
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
3.3.3 / 2016-02-01
* Enhancements
* New option :stop_after_untitled_headers
* Bug fixes
* Fix Excel support via roo-xls
* Treat headers: true as :first_row in roo
3.3.2 / 2015-10-01
* Bug fixes
* Correctly require ActiveSupport
3.3.1 / 2014-08-01
* Enhancements
* Support for JSON endpoints support added to the library
3.3.0 / 2014-01-14
* Breaking changes
* switch to safer HashDigest.digest3 for #row_hash - BREAKING CHANGE if you use row_hash as a unique id!
3.2.1 / 2014-01-07
* Bug fixes
* Don't blow up when requiring activesupport (something about "uninitialized constant ActiveSupport::Deprecation::MethodWrapper")
3.2.0 / 2014-01-06
* Breaking changes
* switch to faster HashDigest.digest2 for #row_hash - BREAKING CHANGE if you use row_hash as a unique id!
3.1.0 / 2014-01-06
* Breaking changes
* Stop requiring rubyzip2 on behalf of Roo per @rossmeissl https://github.com/seamusabshere/remote_table/issues/15 ... you may have to require it yourself
* Enhancements
* by default, treat single and double quotes as "not special" in pipe- or tab-delimited files - thanks @dwillis https://github.com/seamusabshere/remote_table/pull/14
3.0.0 / 2013-11-26
* Breaking changes
* Include columns with blank headers as "untitled_N"
* skip blank lines at the top of CSV files when looking for headers [rc2]
* require rubyzip2 for Roo compatibility with Ruby 1.9 [rc2]
* :parser object must respond to #call(row), not #parse(row) [rc1]
* Whitespace now automatically "normalized" (/\s+/ -> ' ', stripped) for CSV [rc1]
* Strip whitespace from headers unless you provide them as an array [beta]
* Not passing anything options on to CSV... use :delimiter instead of :col_sep [beta]
* Just use :encoding to specify a file's internal/initial/original encoding. No more :internal_encoding, this was jargony. [alpha]
* No more shapefile support - hard to imagine a shapefile as a table [alpha]
* No more :transform, legacy or not [alpha]
* For :errata, now you pass an object that responds to #rejects?(row) and #correct!(row) [alpha]
* No more :errata_settings [alpha]
* Enhancements
* eagerly load format-specific methods (instead of waiting for #each to be called) [rc2]
* use new Roo class names (Roo::OpenOffice instead of Roo::Openoffice) [rc2]
* Support relative paths with spaces [beta]
* :parser option takes an object that responds to #parse(row) and returns an array of one or more rows. [alpha]
* RemoteTable.transpose(url, key_key, value_key) helper [alpha]
* Bug fixes
* pass CSV options to header parser - before, options like delimiter weren't passed so it couldn't read TSVs [rc2]
3.0.0.rc2 / 2013-08-30
* Breaking changes
* skip blank lines at the top of CSV files when looking for headers
* require rubyzip2 for Roo compatibility with Ruby 1.9
* Enhancements
* eagerly load format-specific methods (instead of waiting for #each to be called)
* use new Roo class names (Roo::OpenOffice instead of Roo::Openoffice)
* Bug fixes
* pass CSV options to header parser - before, options like delimiter weren't passed so it couldn't read TSVs
3.0.0.rc1 / 2013-08-08
* Breaking changes
* :parser object must respond to #call(row), not #parse(row)
* Whitespace now automatically "normalized" (/\s+/ -> ' ', stripped) for CSV
3.0.0.beta / 2013-07-30
* Breaking changes
* Strip whitespace from headers unless you provide them as an array
* Not passing anything options on to CSV... use :delimiter instead of :col_sep
* Include columns with blank headers as "empty_N"
* Enhancements
* Support relative paths with spaces
3.0.0.alpha / 2013-07-25
* Breaking changes
* Just use :encoding to specify a file's internal/initial/original encoding. No more :internal_encoding, this was jargony.
* No more shapefile support - hard to imagine a shapefile as a table
* No more :transform, legacy or not
* For :errata, now you pass an object that responds to #rejects?(row) and #correct!(row)
* No more :errata_settings
* Enhancements
* :parser option takes an object that responds to #parse(row) and returns an array of one or more rows.
* RemoteTable.transpose(url, key_key, value_key) helper
2.1.2 / 2013-10-08
* Bug fixes
* Correctly detect format from filename - don't get confused if a filename has "xls" in it (thanks @activefx #10)
2.1.1 / 2013-03-25
* Enhancements
* Work with new roo - thanks @towerhe !
2.1.0 / 2012-10-01
* Enhancements
* Allow import of ESRI shapefiles
2.0.2 / 2012-06-20
* Secrets revealed
* Indeed it is OK to omit the file:// as long as you are using an absolute path to a local file... e.g., RemoteTable.new('/path/to/foo')
* Bug fixes
* Don't bork UTF-8 by incorrectly treating \xAD as a soft hyphen
2.0.1 / 2012-05-16
* Enhancements
* For single-string transliteration to UTF-8, use ActiveSupport::Inflector.transliterate instead of Iconv - possibly a future-proof solution.
* For whole-file transliteration to UTF-8, warn users if iconv binary is not available in their $PATH.
2.0.0 / 2012-05-08
* Breaking changes
* New names for options... (not really breaking, these deprecated options are still accepted)
:errata -> :errata_settings
:transform -> :transform_settings
:select -> :pre_select (to avoid conflict with Enumerable#select)
:reject -> :pre_reject
:encoding -> :internal_encoding
* Enhancements
* Every option is documented
* Refactored to simplify and DRY
* Thread safe
1.4.0 / 2012-04-12
* Enhancements
* DRY up spawning code with UnixUtils
* Switch to minitest
* Stop defining MyCSV globally
* Test on MRI 1.8.7, MRI 1.9.3, and JRuby 1.6.7
* Warn users about ODS not working on JRuby
* Move all warnings to Kernel.warn
* Start keeping a CHANGELOG!
* Ensure we clean up temporary files
* Bug fixes
* Make sure headers (keys) on rows created with Roo are ordered in Ruby 1.8.7
* Make tests green (for now) by fixing URLs and sometimes :row_xpaths (hello FAA aircraft lookup guide)
* Use Hash#fetch for default options
* Don't try to set default_sheet if user doesn't specify a sheet name