Skip to content

Commit

Permalink
Update changelogs with release dates and minor improvements [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosantoniodasilva committed Jan 10, 2013
1 parent 583e5fd commit e5f4a39
Show file tree
Hide file tree
Showing 7 changed files with 67 additions and 36 deletions.
10 changes: 9 additions & 1 deletion actionmailer/CHANGELOG
@@ -1,4 +1,12 @@
## Rails 3.0.18
## Rails 3.0.20 (unreleased)

## Rails 3.0.19 (Jan 8, 2013)

* No changes.

## Rails 3.0.18 (Jan 2, 2013)

* No changes.

## Rails 3.0.17 (Aug 9, 2012)

Expand Down
8 changes: 6 additions & 2 deletions actionpack/CHANGELOG
@@ -1,8 +1,12 @@
## Rails 3.0.19
## Rails 3.0.20 (unreleased)

## Rails 3.0.19 (Jan 8, 2013)

* Strip nils from collections on JSON and XML posts. [CVE-2013-0155]

## Rails 3.0.18
## Rails 3.0.18 (Jan 2, 2013)

* No changes.

## Rails 3.0.17 (Aug 9, 2012)

Expand Down
23 changes: 14 additions & 9 deletions activemodel/CHANGELOG
Expand Up @@ -2,21 +2,27 @@

* Fix XML serialization of methods that return nil to not be considered as YAML (GH #8853 and GH #492)

## Rails 3.0.18
## Rails 3.0.19 (Jan 8, 2013)

* No changes.

## Rails 3.0.18 (Jan 2, 2013)

* No changes.

## Rails 3.0.17 (Aug 9, 2012)

* No changes.

## Rails 3.0.16 (Jul 26, 2012)

* No changes.
* No changes.

## Rails 3.0.14 (Jun 12, 2012)

* No changes.
* No changes.

* Rails 3.0.13 (May 31, 2012)
*Rails 3.0.13 (May 31, 2012)*

* No changes.

Expand Down Expand Up @@ -97,11 +103,10 @@
It has a custom hook to define after_find that should really be in a
ActiveRecord::Observer subclass:

def add_observer!(klass)
klass.add_observer(self)
klass.class_eval 'def after_find() end' unless
klass.respond_to?(:after_find)
end
def add_observer!(klass)
klass.add_observer(self)
klass.class_eval 'def after_find() end' unless klass.respond_to?(:after_find)
end

* Change the ActiveModel::Base.include_root_in_json default to true for Rails 3 [DHH]

Expand Down
18 changes: 10 additions & 8 deletions activerecord/CHANGELOG
@@ -1,8 +1,10 @@
## Rails 3.0.19
## Rails 3.0.20 (unreleased)

* Fix querying with an empty hash *Damien Mathieu* [CVE-2013-0155]
## Rails 3.0.19 (Jan 8, 2013)

## Rails 3.0.18
* Fix querying with an empty hash *Damien Mathieu* [CVE-2013-0155]

## Rails 3.0.18 (Jan 2, 2013)

* CVE-2012-5664 ensure that options are never taken from the first parameter

Expand All @@ -12,15 +14,15 @@

## Rails 3.0.16 (Jul 26, 2012)

* No changes.
* No changes.

## Rails 3.0.14 (Jun 12, 2012)

* protect against the nesting of hashes changing the
table context in the next call to build_from_hash. This fix
covers this case as well.
* protect against the nesting of hashes changing the
table context in the next call to build_from_hash. This fix
covers this case as well.

CVE-2012-2695
CVE-2012-2695

* Rails 3.0.13 (May 31, 2012)

Expand Down
10 changes: 5 additions & 5 deletions activeresource/CHANGELOG
@@ -1,16 +1,16 @@
## Rails 3.0.18
## Rails 3.0.20 (unreleased)

## Rails 3.0.17 (Aug 9, 2012)
## Rails 3.0.19 (Jan 8, 2013)

* No changes.

## Rails 3.0.16 (Jul 26, 2012)
## Rails 3.0.18 (Jan 2, 2013)

* No changes.
* No changes.

## Rails 3.0.14 (Jun 12, 2012)

* No changes.
* No changes.

* Rails 3.0.13 (May 31, 2012)

Expand Down
20 changes: 12 additions & 8 deletions activesupport/CHANGELOG
@@ -1,25 +1,29 @@
## Rails 3.0.19 (Jan 8, 2012) ##
## Rails 3.0.20 (unreleased)

* Hash.from_xml raises when it encounters type="symbol" or type="yaml".
Use Hash.from_trusted_xml to parse this XML.
## Rails 3.0.19 (Jan 8, 2013)

CVE-2013-0156
* Hash.from_xml raises when it encounters type="symbol" or type="yaml".
Use Hash.from_trusted_xml to parse this XML.

*Jeremy Kemper*
CVE-2013-0156

## Rails 3.0.18
*Jeremy Kemper*

## Rails 3.0.18 (Jan 2, 2013)

* No changes.

## Rails 3.0.17 (Aug 9, 2012)

* ERB::Util.html_escape now escapes single quotes. [Santiago Pastorino]

## Rails 3.0.16 (Jul 26, 2012)

* No changes.
* No changes.

## Rails 3.0.14 (Jun 12, 2012)

* No changes.
* No changes.

* Rails 3.0.13 (May 31, 2012)

Expand Down
14 changes: 11 additions & 3 deletions railties/CHANGELOG
@@ -1,16 +1,24 @@
## Rails 3.0.18
## Rails 3.0.20 (unreleased)

## Rails 3.0.19 (Jan 8, 2013)

* No changes.

## Rails 3.0.18 (Jan 2, 2013)

* No changes.

## Rails 3.0.17 (Aug 9, 2012)

* No changes.

## Rails 3.0.16 (Jul 26, 2012)

* No changes.
* No changes.

## Rails 3.0.14 (Jun 12, 2012)

* No changes.
* No changes.

* Rails 3.0.13 (May 31, 2012)

Expand Down

0 comments on commit e5f4a39

Please sign in to comment.