forked from carrierwaveuploader/carrierwave
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHistory.txt
125 lines (85 loc) · 4.86 KB
/
History.txt
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
=== Version 0.4.5 2010-02-20
* [added] Support for Rackspace Cloudfiles
* [added] GridFS now accepts a port
* [fixed] s3_headers is now properly initialized
* [fixed] work around DataMapper's patching of core method
=== Version 0.4.4 2010-01-31
* [added] Support for downloading remote files
* [added] CarrierWave.clean_cached_files! to remove old cached files
* [added] Option to set headers for S3
* [added] GridStore now has authentication
* [fixed] Rmagick convert method now does what it says
* [fixed] Content type is stored on GridStore and Amazon S3
* [fixed] Metadata is no longer broken for S3
=== Version 0.4.3 2009-12-19
* [fixed] cnamed URLs on S3 no longer have a third slash after http
* [fixed] fixed deprecation warnings on Rails 2.3.5
=== Version 0.4.2 2009-11-26
* [added] RightAWS as an alternative S3 implementation
* [added] An option to enable/disable processing for tests
* [added] Mongoid ORM support
* [fixed] DataMapper now works both with and without dm-validations
=== Version 0.4.1 2009-10-26
* [changed] Major changes to the ImageScience module, it actually works now!
* [fixed] Bug in configuration where it complais that it can't dup Symbol
* [removed] Support for Sequel < 2.12
* [removed] `crop_resized` and `resize` aliases in RMagick, use `resize_to_fill` and `resize_to_fit` respectively
=== Version 0.4.0 2009-10-12
* [changed] the `public` option has been renamed `root` and the old `root` option was removed. No more ambiguity.
* [changed] Major *breaking* changes to the configuration syntax.
* [removed] support for `default_path`
* [removed] the `cache_to_cache_dir` option
* [removed] storage no longer calls `setup!` on storage engines
* [added] Support for MongoDB's GridFS store
=== Version 0.3.4 2009-09-01
* [added] `default_url` as a replacement for `default_path`
* [deprecated] `default_path` is deprecated
=== Version 0.3.4 2009-08-31
* [fixed] Deleting no longer causes TypeError in MongoMapper
=== Version 0.3.3 2009-08-29
* [added] Support for MongoMapper
* [added] Support for CNamed Bucket URLs for Amazon S3
=== Version 0.3.2 2009-07-18
Incremental upgrade
* [added] Ruby 1.9 compatibility
* [changed] Added Object#blank? implementation into CarrierWave, which removes any dpendencies on external libraries (extlib/activesupport)
* [fixed] Performance issues with S3 support
* [fixed] Sequel support for newer verions of Sequel (thanks Pavel!)
=== Version 0.3.1 2009-07-01
A bugfix release. Drop in compatible with 0.3.0.
* [fixed] Saving a record with a mounted Uploader no longer removes uploaded file
* [fixed] The file returned by S3 storage now has the path set to the full store path
* [added] File returned by S3 storage now responds to S3 specific methods
=== 0.3 2009-06-20
This is a stabilization release. Most features are now working as expected and
most bugs should be fixed.
* [changed] Reworked how storage engines work, some internal API changes
* [added] Macro-like methods for RMagick, no need to call #process any more!
* [added] Ability to super to any Mount method
* [fixed] Sequel support should now work as expected
* [fixed] ActiveRecord no longer saves the record twice
* [added] Added convenient macro style class methods to rmagick processing
=== 0.2.4 2009-06-11
* [added] `resize_to_limit` method for rmagick
* [added] Now deletes files from Amazon S3 when record is destroyed
=== 0.2.3 2009-05-13
* [changed] Mount now no longer returns nil if there is no stored file, it returns a blank uploader instead
* [added] Possibility to specify a default path
* [added] Paperclip compatibility module
=== 0.2.1 2009-05-01
* [changed] Url method now optionally takes versions as parameters (like Paperclip)
* [added] A field which allows files to be removed with a checkbox in mount
* [added] Mount_on option for Mount, to be able to override the serialization column
* [added] Added demeter friendly column_url method to Mount
* [added] Option to not copy files to cache dir, to prevent writes on read only fs systems (this is a workaround and needs a better solution)
=== 0.2 2009-04-15
* [changed] The version is no longer stored in the store dir. This will break the paths for files uploaded with 0.1
* [changed] CarrierWave::Uploader is now a module, not a class, so you need to include it, not inherit from it.
* [added] Integiry checking in uploaders via a white list of extensions
* [added] Validations for integrity and processing in ActiveRecord, activated by default
* [added] Support for nested versions
* [added] Permissions option to set the permissions of the uploaded files
* [added] Support for Sequel
* [added] CarrierWave::Uploader#read to read the contents of the uploaded files
=== 0.1 2009-03-12
This is a very experimental release that has not been well tested. All of the major features are in place though. Please note that there currently is a bug with load paths in Merb, which means you need to manually require uploaders.