Skip to content

Commit 5ecd1d3

Browse files
author
Jon Yurek
committed
Updated appraisal files and News for 3.5.3
1 parent f6f5ea1 commit 5ecd1d3

File tree

6 files changed

+31
-9
lines changed

6 files changed

+31
-9
lines changed

NEWS

+22
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
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+
123
New in 3.5.2:
224

325
* Security: Force cocaine to at least 0.5.3 to include a security fix

gemfiles/3.0.gemfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ source "https://rubygems.org"
44

55
gem "jruby-openssl", :platform=>:jruby
66
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"
99
gem "paperclip", :path=>"../"
1010

1111
gemspec :path=>"../"

gemfiles/3.1.gemfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ source "https://rubygems.org"
44

55
gem "jruby-openssl", :platform=>:jruby
66
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"
99
gem "paperclip", :path=>"../"
1010

1111
gemspec :path=>"../"

gemfiles/3.2.gemfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ source "https://rubygems.org"
44

55
gem "jruby-openssl", :platform=>:jruby
66
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"
99
gem "paperclip", :path=>"../"
1010

1111
gemspec :path=>"../"

gemfiles/4.0.gemfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ source "https://rubygems.org"
44

55
gem "jruby-openssl", :platform=>:jruby
66
gem "activerecord-jdbcsqlite3-adapter", :platform=>:jruby
7-
gem "sqlite3", :platform=>:ruby
7+
gem "pry", :platform=>:ruby
88
gem "rails", "~> 4.0.0"
99
gem "paperclip", :path=>"../"
1010

11-
gemspec :path=>"../"
11+
gemspec :path=>"../"

lib/paperclip/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Paperclip
2-
VERSION = "3.5.2" unless defined? Paperclip::VERSION
2+
VERSION = "3.5.3" unless defined? Paperclip::VERSION
33
end

0 commit comments

Comments
 (0)