Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | CHANGELOGs are now per branch | Xavier Noria | 2012-08-28 | 1 | -1591/+1 |
| | | | | Check 810a50d for the rationale. | ||||
* | Add html_escape note to CHANGELOG | Mark Turner | 2012-08-09 | 1 | -0/+2 |
| | |||||
* | Add release date to CHANGELOGs | Santiago Pastorino | 2012-08-09 | 1 | -1/+1 |
| | |||||
* | Add CHANGELOG entry | Santiago Pastorino | 2012-08-03 | 1 | -0/+2 |
| | |||||
* | Revert "Deprecate ActiveSupport::JSON::Variable" | Rafael Mendonça França | 2012-08-01 | 1 | -6/+10 |
| | | | | This reverts commit bcfa013399fd2c5b5d25c38912cba3560de1cc57. | ||||
* | Add missing CHANGELOG entries | Santiago Pastorino | 2012-08-01 | 1 | -2/+6 |
| | | | | [ci skip] | ||||
* | updating release date | Aaron Patterson | 2012-07-26 | 1 | -1/+1 |
| | |||||
* | updating changelogs | Aaron Patterson | 2012-07-23 | 1 | -0/+8 |
| | |||||
* | updating changelogs | Aaron Patterson | 2012-06-12 | 1 | -1/+1 |
| | |||||
* | updating changelogs | Aaron Patterson | 2012-06-11 | 1 | -0/+4 |
| | |||||
* | Add release date of 3.2.5 on the CHANGELOG | Rafael Mendonça França | 2012-06-01 | 1 | -3/+6 |
| | |||||
* | Merge branch '3-2-rel' into 3-2-stable | Aaron Patterson | 2012-05-31 | 1 | -1/+1 |
|\ | | | | | | | | | | | | | | | * 3-2-rel: bumping to 3.2.4 adding security notifications to CHANGELOGs updating changelogs Merge pull request #6558 from parndt/fix_regression | ||||
| * | updating changelogs | Aaron Patterson | 2012-05-31 | 1 | -1/+1 |
| | | |||||
* | | Deprecate ActiveSupport::JSON::Variable | Erich Menge | 2012-05-30 | 1 | -0/+3 |
|/ | |||||
* | Add CHANGELOG section for unreleased Rails 3.2.4; document addition of ↵ | Mark J. Titorenko | 2012-05-09 | 1 | -0/+6 |
| | | | | #beginning_of_hour and #end_of_hour to Time and DateTime core extensions. | ||||
* | Bring activesupport CHANGELOG up-to-date/consistent with master. | Mark J. Titorenko | 2012-05-09 | 1 | -1/+59 |
| | |||||
* | Add release data to Rails 3.2.3 | Rafael Mendonça França | 2012-04-30 | 1 | -1/+1 |
| | |||||
* | Fix my name in the CHANGELOG to follow the convention | Rafael Mendonça França | 2012-03-09 | 1 | -0/+1 |
| | | | | Also add missing entries and use the formating convention | ||||
* | update changelogs for gems without changes too [ci skip] | Vijay Dev | 2012-03-09 | 1 | -0/+8 |
| | |||||
* | CHANGELOG revision for v3.2.1 | Xavier Noria | 2012-01-26 | 1 | -0/+12 |
| | |||||
* | Preparing for 3.2.0 release | David Heinemeier Hansson | 2012-01-20 | 1 | -1/+1 |
| | |||||
* | add CHANGELOG entry for AS::Base64 deprecation | Sergey Nartimov | 2012-01-03 | 1 | -2/+4 |
| | |||||
* | Revert "Added Enumerable#pluck to wrap the common pattern of ↵ | Aaron Patterson | 2011-12-22 | 1 | -4/+2 |
| | | | | | | collect(&:method) *DHH*" This reverts commit 4d20de8a50d889a09e6f5642984775fe796ca943. | ||||
* | * ActiveSupport::BufferedLogger#silence is deprecated. If you want to squelch | Aaron Patterson | 2011-12-09 | 1 | -0/+22 |
| | | | | | | | | | | | | | | | | | | | | | | | logs for a certain block, change the log level for that block. * ActiveSupport::BufferedLogger#open_log is deprecated. This method should not have been public in the first place. * ActiveSupport::BufferedLogger's behavior of automatically creating the directory for your log file is deprecated. Please make sure to create the directory for your log file before instantiating. * ActiveSupport::BufferedLogger#auto_flushing is deprecated. Either set the sync level on the underlying file handle like this: f = File.open('foo.log', 'w') f.sync = true ActiveSupport::BufferedLogger.new f Or tune your filesystem. The FS cache is now what controls flushing. * ActiveSupport::BufferedLogger#flush is deprecated. Set sync on your filehandle, or tune your filesystem. | ||||
* | Added Enumerable#pluck to wrap the common pattern of collect(&:method) *DHH* | David Heinemeier Hansson | 2011-12-02 | 1 | -2/+4 |
| | |||||
* | Module#synchronize is deprecated with no replacement. Please use `monitor` ↵ | Aaron Patterson | 2011-11-29 | 1 | -0/+3 |
| | | | | from ruby's standard library. | ||||
* | some tweaks to PR#3547. [Closes #3547] | Xavier Noria | 2011-11-25 | 1 | -0/+3 |
| | |||||
* | Deprecated ActiveSupport::MessageEncryptor#encrypt and decrypt. | José Valim | 2011-11-09 | 1 | -0/+2 |
| | |||||
* | implements AS::Notifications.subscribed, which provides subscriptions to ↵ | Xavier Noria | 2011-11-05 | 1 | -0/+2 |
| | | | | events while a block runs | ||||
* | Convert CHANGELOGs to Markdown format. | Jon Leighton | 2011-11-04 | 1 | -0/+1571 |
Reasons: * Markdown reads well as plain text, but can also be formatted. * It will make it easier for people to read on the web as Github formats the Markdown nicely. * It will encourage a level of consistency when people are writing CHANGELOG entries. The script used to perform the conversion is at https://gist.github.com/1339263 |