-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangelog.ini
291 lines (270 loc) · 9.51 KB
/
Changelog.ini
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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
[Module]
Name=CGI::Uploader
Configlog.Creator=Module::Metadata::Changes V 1.01
Configlog.Parser=Config::IniFiles V 2.39
[V 2.90_02]
Date=2008-12-12T13:04:00
Comments= <<EOT
- Redesign the handling of the transform option and the generate method.
Document and patch sample code to match
EOT
[V 2.90_01]
Date=2008-11-27T10:51:00
Comments= <<EOT
- Rewrite all code. New API.
- Change EDT in this file to EST because the date parser rejects EDT
EOT
[V 2.15]
Date=2007-07-15T07:21:24
Comments= <<EOT
- no functionality changes
[INTERNAL]
- improved importing code style.
- Clarify docs regarding file_scheme vs. file_name (Jaldhar)
EOT
[V 2.14]
Date=2007-05-24T13:19:27
Comments= <<EOT
[BUG FIXES]
- Avoid SQL error when two column names are the same by giving explicit table name.
EOT
[V 2.13]
Date=2007-04-09T22:39:54
Comments= <<EOT
[BUG FIXES]
- Better Mac OS X detection (Jeff MacDonald)
- gen_thumb() now works if Image::Magick or Graphics::Magick
is not already loaded. (Thanks to bug report by Jeff MacDonald
RT#20775).
EOT
[V 2.12]
Date=2007-02-15T17:43:20
Comments= <<EOT
[ENHANCEMENTS]
- Explicitly call File::Temp::cleanup(). This reduces the amount of
disk space and file handles used.
- A new 'temp_dir' option has been added to allow to you set your own
temporary directory. (Jeff MacDonald)
EOT
[V 2.11]
Date=2005-12-19T20:18:00
Comments= <<EOT
[BUG FIXES]
- There were was confusion in the 2.1 release as to whether the new API
for gen_thumb() took a hash or hashref as input. The code tests and docs
have all been updated to agree: It's a hashref. Thanks to bignose who
wrestled this one.
EOT
[V 2.1]
Date=2005-12-18T21:39:23
Comments= <<EOT
[ENHANCEMENTS]
- Further simplified necessary spec API while maintaining backwards
compatibility. Specifying a transformation method for a generated file
can now by this simple:
gen_files => {
photo_thumbnail => gen_thumb({ w => 100 h => 100})
}
EOT
[V 2.0]
Date=2005-12-17T23:12:35
Comments= <<EOT
[ENHANCEMENTS]
- Previously the extension and MIME type were inherited
by generated files. Now the metadata for generated files
is extracted directly from them. This should be useful
if you want to create thumbnails in a different image format
than the large images.
- A cleaner and simpler API for calling gen_thumb() and other potential
transform_methods has been introduced. The new syntax looks like this:
transform_method => gen_thumb({ w => 100 h => 100 })
The old syntax is still supported.
- "gen_thumb()" can now return the Image/Graphics::Magick object as a
second argument. This may not be useful outside of the test suite...
[BUG FIXES]
- Image::Magick is no longer required to install CGI::Uploader just
recommended.
- If an uploaded was updated and had its MIME type changed in the process
the old file was left on the file system. Fixed.
- If 'up_table_map' was used to modify the name of the extension field
then transform_meta() would return empty values for the extensions. Fixed.
[INTERNALS]
- Migrated Makefile.PL to use Module::Install. This allows me to keep the hairy
Makefile.PL stuff I have but easily add 'no_index' and 'recommends' metadata.
- test suite clean up.
- new required modules: Scalar::Util and HTTP::Request::Common
EOT
[V 1.2]
Date=2005-12-15T22:35:39
Comments= <<EOT
[BUG FIXES]
- Fixed bug in store_uploads() from improper hash usage.
[INTERNALS]
- Fixed some typos in Makefile.PL requirements
- Made test suite use SQLite by default for easier testing.
EOT
[V 1.1_1]
Date=2005-04-04T07:52:01
Comments= <<EOT
[THINGS THAT MIGHT BREAK YOUR CODE]
- 'file_name' is now required in the data model. You can simply add it before upgrading.
Something like this should work:
ALTER TABLE your_table_name ADD COLUMN file_name VARCHAR(255);
Of course you can name the column something else with the up_table_map.
[ENHANCEMENTS]
- extract_meta() now also returns the original filename with the
'file_name' key.
- PostgreSQL via ODBC is now supported (William McKee)
[BUG FIXES]
- Fixed RT#12051 an XSS issue in an example application. (William McKee).
[INTERNALS]
- Clean up some test warnings (Denis McKeon)
- Better diagnostics in ImageMagick.pm (William McKee)
1.00
- No code changes I'm just declaring it stable.
- Mention availability via darcs
0.80_02 08/19/04
- Added missing ImageMagick.pm (Barbie)
- Made t/up_table_map.t more portable (Barbie)
0.80_01
[RELEASE NOTES]
I changed the API again. The code has been refactored to remove all
image-specific code from the main package. In it's place a more general
"transform_method" option has been added. With this you can specify
any arbitrary transformation you want to make to a file. You might
choose to decrypt a file compress it append to it or otherwise alter
it.
The thumbnailing code still exists but has been moved to
CGI::Uploader::Transform::ImageMagick::gen_thumb().
However most of the examples and tests still do rely on "gen_thumb()" for
examples so test failures will occur if Image::Magick is not installed for
now. I'd like some help to streamline this.
Along the way I removed the regular expression support to simplify the
refactoring. It may well come back.
Beyond these changes things are pretty much the same. Let me know
if you have any feedback on the API before this turns into a stable
1.0 release.
Mark Stosberg
0.76.02
[ENHANCEMENTS]
- Added image gallery recipe to cookbook
- Added README to examples/friends_photos
EOT
[V 1.1]
Date=2005-12-14T21:23:56
Comments= <<EOT
[INTERNALS]
- Now require at least Params::Validate 0.77 (RT#13728)
- ..and require at least File::Temp 0.14 for a better chance
of using a real temporary directory.
EOT
[V 0.76_01]
Date=2004-04-25T00:00:00
Comments= <<EOT
[BUG FIXES]
- Fixed syntax errors in Cookbook SQL example
- Fixed bug where default query object wasn't loading correctly
- Fixed documtention of fk_meta() to match current interface.
- Fixed bug in t/up_table_map.t test
[ENHANCEMENTS]
- Added example application to distribution
0.75_02
- Refactored delete_upload() to be simpler and more intuitive.
0.75_01
Added support for specifying fields to process via regular expressions.
- Improved Cookbook documentation.
EOT
[V 0.70_02]
Date=2004-04-21T00:00:00
Comments= <<EOT
- Removed custom_meta(). This problem space is now addressed by
allowing meta data to be passed to store_uploads(). Also you could
override extract_meta() to add more functionality there.
- Added support for storing files based on a MD5 sum of the files
ID. This allows the file storage to scale well for millions of uploads.
See the docs for 'file_scheme' for detaills. (Thanks to Randal Schwartz
for the suggestion).
- Added option to specify only a max width or max height for thumbnails.
- Refactored several interfaces to use named parameters.
- Added 'downsize' option to spec allowing downsizing of primary images.
0.70_01
- Added to binmode() calls to file handles to possibly help Windows.
- Added support for uploading via CGI::Simple
- Added experimental support for uploading via Apache::Request
- Added Cookbook documentation
- Added 'thumbnail_of_id' column to meta data table.
- Added delete_thumbs() method
- Started to do real 'updates' rather than delete/re-inserts
- Cleaned up prequisites in Makefile.PL
- Fixed bug and added test for proper thumbnail resizing
- More API refactors
0.63_01
- Removed some un-needed mentions of Data::FormValidator from tests
- added test to verify thumbnail size
- refactored resize code into gen_thumb(). This will make it easier
to support other resize modules besides Image::Magick.
- Added Image::Size as a dependency. It's a fast tool for size checking
which does not depend on a graphics module being installed.
- Initial support for resizing with GD as a backup. It needs tested.
0.62_01
- Added File::Temp to Makefile.PL.
- Refactored to remove store_thumb(). This should help eventually support other
graphics modules besides Image::Magick
0.61_02
- Minor POD cleanups
0.61_01
- Added custom_meta() method for more flexible meta data handled
- clarified code and extended documentation
- exposed 'build_loc' function which may be useful as a utility function
or for a sub-class.
- custom fields are now returned with meta_hashref()
0.60_02
- Added up_table_map test and fixed some related code.
0.60_01
- Added 'up_table_map' configuration option allowing for custom column
names.
- Documentation for several functions added.
- Began refactoring to make support for Apache::Request easier.
EOT
[V 0.50_03]
Date=2004-03-22T00:00:00
Comments=- possible "binmode" test fix for Windows platforms.
[V 0.50_02]
Date=2004-03-21T00:00:00
Comments= <<EOT
- Removed dependence on Image::Size
- Documentation clarifications (David Manura)
EOT
[V 0.50_01]
Date=2004-02-11T00:00:00
Comments=- Removed dependence on Data::FormValidator
[V 0.40_01]
Date=2004-02-08T00:00:00
Comments=- Extensive documentation updates thanks to feedback from David Manura.
[V 0.30_01]
Date=2004-02-06T00:00:00
Comments= <<EOT
- The API was largely re-worked with several methods renamed and a few
added. No backwards compatibility can be expected.
0.10
[THINGS THAT MIGHT BREAK YOUR CODE]
- create_img_tmpl_vars() has been replaced
with a more generic create_tmpl_vars().
It should still work the same for images
and better for non-images
- install_uploads() Now returns a hash ref
based on the valid hash with appropriate additions
and deletions already made.
- The interface for delete_upload() has changed to accomodate
deleting based on directly providing a upload ID.
EOT
[V 0.02]
Date=2003-05-18T00:00:00
Comments=- initial public release
[V 0.01]
Date=2003-05-17T16:15:05
Comments= <<EOT
- original version; created by h2xs 1.22 with options
-b 5.5.0 -XAn CGI::Uploader
EOT