Commit 5ecd1d3 Jon Yurek
committed
1 parent f6f5ea1 commit 5ecd1d3 Copy full SHA for 5ecd1d3
File tree 6 files changed +31
-9
lines changed
6 files changed +31
-9
lines changed Original file line number Diff line number Diff line change
1
+ New in 3.5.3:
2
+
3
+ Improvement: After three long, hard years... we know how to upgrade
4
+ Bug Fix: #expiring_url returns 'missing' urls if nothing is attached
5
+ Improvement: Lots of documentation fixes
6
+ Improvement: Lots of fixes for Ruby warnings
7
+ Improvement: Test the most appropriate Ruby/Rails comobinations on Travis
8
+ Improvement: Delegate more IO methods through IOAdapters
9
+ Improvement: Remove Rails 4 deprecations
10
+ Improvement: Both S3's and Fog's #expiring_url can take a Time or Int
11
+ Bug Fix: Both S3's and Fog's expiring_url respect style when missing the file
12
+ Bug Fix: Timefiles will have a reasonable-length name. They're all MD5 hashes now
13
+ Bug Fix: Don't delete files off S3 when reprocessing due to AWS inconsistencies
14
+ Bug Fix: "swallow_stream" isn't thread dafe. Use :swallow_stderr
15
+ Improvement: Regexps use \A and \Z instead of ^ and $
16
+ Improvement: :s3_credentials can take a lambda as an argument
17
+ Improvement: Search up the class heirarchy for attachments
18
+ Improvement: deep_merge options instead of regular merge
19
+ Bug Fix: Prevent file deletion on transaction rollback
20
+ Test Improvement: Ensure more files are properly closed during tests
21
+ Test Bug Fix: Return the gemfile's syntax to normal
22
+
1
23
New in 3.5.2:
2
24
3
25
* Security: Force cocaine to at least 0.5.3 to include a security fix
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ source "https://rubygems.org"
4
4
5
5
gem "jruby-openssl", :platform=>:jruby
6
6
gem "activerecord-jdbcsqlite3-adapter", :platform=>:jruby
7
- gem "sqlite3 ", :platform=>:ruby
8
- gem "rails", "~> 3.0.15 "
7
+ gem "pry ", :platform=>:ruby
8
+ gem "rails", "~> 3.0.20 "
9
9
gem "paperclip", :path=>"../"
10
10
11
11
gemspec :path=>"../"
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ source "https://rubygems.org"
4
4
5
5
gem "jruby-openssl", :platform=>:jruby
6
6
gem "activerecord-jdbcsqlite3-adapter", :platform=>:jruby
7
- gem "sqlite3 ", :platform=>:ruby
8
- gem "rails", "~> 3.1.6 "
7
+ gem "pry ", :platform=>:ruby
8
+ gem "rails", "~> 3.1.12 "
9
9
gem "paperclip", :path=>"../"
10
10
11
11
gemspec :path=>"../"
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ source "https://rubygems.org"
4
4
5
5
gem "jruby-openssl", :platform=>:jruby
6
6
gem "activerecord-jdbcsqlite3-adapter", :platform=>:jruby
7
- gem "sqlite3 ", :platform=>:ruby
8
- gem "rails", "~> 3.2.6 "
7
+ gem "pry ", :platform=>:ruby
8
+ gem "rails", "~> 3.2.15 "
9
9
gem "paperclip", :path=>"../"
10
10
11
11
gemspec :path=>"../"
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ source "https://rubygems.org"
4
4
5
5
gem "jruby-openssl", :platform=>:jruby
6
6
gem "activerecord-jdbcsqlite3-adapter", :platform=>:jruby
7
- gem "sqlite3 ", :platform=>:ruby
7
+ gem "pry ", :platform=>:ruby
8
8
gem "rails", "~> 4.0.0"
9
9
gem "paperclip", :path=>"../"
10
10
11
- gemspec :path=>"../"
11
+ gemspec :path=>"../"
Original file line number Diff line number Diff line change 1
1
module Paperclip
2
- VERSION = "3.5.2 " unless defined? Paperclip ::VERSION
2
+ VERSION = "3.5.3 " unless defined? Paperclip ::VERSION
3
3
end
You can’t perform that action at this time.
0 commit comments