aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--actionmailer/CHANGELOG2
-rw-r--r--actionpack/CHANGELOG16
-rw-r--r--activerecord/CHANGELOG26
-rw-r--r--activesupport/CHANGELOG8
-rw-r--r--railties/CHANGELOG4
5 files changed, 28 insertions, 28 deletions
diff --git a/actionmailer/CHANGELOG b/actionmailer/CHANGELOG
index b1fcb0ff0e..2d1019e213 100644
--- a/actionmailer/CHANGELOG
+++ b/actionmailer/CHANGELOG
@@ -19,7 +19,7 @@
* Fix attachment decoding when using the TMail C extension. #7861 [orangechicken]
-* Increase mail delivery test coverage. #8692 [kamal]
+* Increase mail delivery test coverage. #8692 [Kamal Fariz Mahyuddin]
* Register alternative template engines using ActionMailer::Base.register_template_extension('haml'). #7534 [cwd, Josh Peek]
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index f1288602e3..95d57a02ab 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -24,7 +24,7 @@
* Fixed that verification violations with no specified action didn't halt the chain (now they do with a 400 Bad Request) [DHH]
-* Raise UnknownHttpMethod exception for unknown HTTP methods. Closes #10303 [tarmo]
+* Raise UnknownHttpMethod exception for unknown HTTP methods. Closes #10303 [Tarmo Tänav]
* Update to Prototype -r8232. [sam]
@@ -136,7 +136,7 @@
* Add :status to redirect_to allowing users to choose their own response code without manually setting headers. #8297 [codahale, chasgrundy]
-* Add link_to :back which uses your referrer with a fallback to a javascript link. #7366 [eventualbuddha, tarmo]
+* Add link_to :back which uses your referrer with a fallback to a javascript link. #7366 [eventualbuddha, Tarmo Tänav]
* error_messages_for and friends also work with local variables. #9699 [Frederick Cheung]
@@ -227,7 +227,7 @@
* Added that render :json will automatically call .to_json unless it's being passed a string [DHH].
-* Autolink behaves well with emails embedded in URLs. #7313 [Jeremy McAnally, tarmo]
+* Autolink behaves well with emails embedded in URLs. #7313 [Jeremy McAnally, Tarmo Tänav]
* Fixed that default layouts did not take the format into account #9564 [Pratik Naik]
@@ -305,7 +305,7 @@
this behaviour are advised to put the code in question after a yield statement in an around filter.
-* Allow you to delete cookies with options. Closes #3685 [josh, Chris Wanstrath]
+* Allow you to delete cookies with options. Closes #3685 [Josh Peek, Chris Wanstrath]
* Allow you to render views with periods in the name. Closes #8076 [norbert]
@@ -321,9 +321,9 @@
* Give the legacy X-POST_DATA_FORMAT header greater precedence during params parsing for backward compatibility. [Jeremy Kemper]
-* Fixed that link_to with an href of # when using :method will not allow for click-through without JavaScript #7037 [stevenbristol/josh]
+* Fixed that link_to with an href of # when using :method will not allow for click-through without JavaScript #7037 [Steven Bristol, Josh Peek]
-* Fixed that radio_button_tag should generate unique ids #3353 [BobSilva/rebecca/josh]
+* Fixed that radio_button_tag should generate unique ids #3353 [Bob Silva, Rebecca, Josh Peek]
* Fixed that HTTP authentication should work if the header is called REDIRECT_X_HTTP_AUTHORIZATION as well #6754 [mislaw]
@@ -355,7 +355,7 @@
* Routing: map.resource :logo routes to LogosController so the controller may be reused for multiple nestings or namespaces. [Jeremy Kemper]
-* render :partial recognizes Active Record associations as Arrays. #8538 [kamal]
+* render :partial recognizes Active Record associations as Arrays. #8538 [Kamal Fariz Mahyuddin]
* Routing: drop semicolon and comma as route separators. [Jeremy Kemper]
@@ -3816,7 +3816,7 @@ Default YAML web services were retired, ActionController::Base.param_parsers car
* Fixed that cached template loading would still check the file system to see if the file existed #258 [Andreas Schwarz]
-* Added options to tailor header tag, div id, and div class on ActiveRecordHelper#error_messages_for [josh]
+* Added options to tailor header tag, div id, and div class on ActiveRecordHelper#error_messages_for [Josh Peek]
* Added graceful handling of non-alphanumeric names and misplaced brackets in input parameters [Jeremy Kemper]
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG
index 9e267c37dd..43142b9626 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -65,7 +65,7 @@
* Update Schema documentation to use updated sexy migration notation. Closes #10086 [sjgman9]
-* Make fixtures work with the new test subclasses. [tarmo, Koz]
+* Make fixtures work with the new test subclasses. [Tarmo Tänav, Koz]
* Introduce finder :joins with associations. Same :include syntax but with inner rather than outer joins. #10012 [RubyRedRick]
# Find users with an avatar
@@ -93,13 +93,13 @@
* Add docs explaining how to protect all attributes using attr_accessible with no arguments. Closes #9631 [boone, rmm5t]
-* Update add_index documentation to use new options api. Closes #9787 [kamal]
+* Update add_index documentation to use new options api. Closes #9787 [Kamal Fariz Mahyuddin]
* Allow find on a has_many association defined with :finder_sql to accept id arguments as strings like regular find does. Closes #9916 [krishna]
* Use VALID_FIND_OPTIONS when resolving :find scoping rather than hard coding the list of valid find options. Closes #9443 [sur]
-* Limited eager loading no longer ignores scoped :order. Closes #9561 [danger, josh]
+* Limited eager loading no longer ignores scoped :order. Closes #9561 [danger, Josh Peek]
* Assigning an instance of a foreign class to a composed_of aggregate calls an optional conversion block. Refactor and simplify composed_of implementation. #6322 [brandon, Chris Cruft]
@@ -141,9 +141,9 @@ single-table inheritance. #3833, #9886 [Gabriel Gironda, rramdas, François Bea
* Speedup database date/time parsing. [Jeremy Kemper, Tarmo Tänav]
-* Fix calling .clear on a has_many :dependent=>:delete_all association. [tarmo]
+* Fix calling .clear on a has_many :dependent=>:delete_all association. [Tarmo Tänav]
-* Allow change_column to set NOT NULL in the PostgreSQL adapter [tarmo]
+* Allow change_column to set NOT NULL in the PostgreSQL adapter [Tarmo Tänav]
* Fix that ActiveRecord would create attribute methods and override custom attribute getters if the method is also defined in Kernel.methods. [Rick]
@@ -179,7 +179,7 @@ single-table inheritance. #3833, #9886 [Gabriel Gironda, rramdas, François Bea
* Fixed rename_column for SQLite when using symbols for the column names #8616 [drodriguez]
-* Added the possibility of using symbols in addition to concrete classes with ActiveRecord::Observer#observe #3998 [robbyrussell/tarmo]
+* Added the possibility of using symbols in addition to concrete classes with ActiveRecord::Observer#observe. #3998 [Robby Russell, Tarmo Tänav]
* Added ActiveRecord::Base#to_json/from_json [DHH, Chu Yeow]
@@ -214,7 +214,7 @@ single-table inheritance. #3833, #9886 [Gabriel Gironda, rramdas, François Bea
* Moved acts_as_nested_set into a plugin of the same name on the official Rails svn. #9516 [Josh Peek]
-* Moved acts_as_list into a plugin of the same name on the official Rails svn [josh]
+* Moved acts_as_list into a plugin of the same name on the official Rails svn. [Josh Peek]
* Explicitly require active_record/query_cache before using it. [Jeremy Kemper]
@@ -276,7 +276,7 @@ single-table inheritance. #3833, #9886 [Gabriel Gironda, rramdas, François Bea
* Define collection singular ids method for has_many :through associations. #8763 [Pratik Naik]
-* Array attribute conditions work with proxied association collections. #8318 [kamal, theamazingrando]
+* Array attribute conditions work with proxied association collections. #8318 [Kamal Fariz Mahyuddin, theamazingrando]
* Fix polymorphic has_one associations declared in an abstract class. #8638 [Pratik Naik, Dax Huiberts]
@@ -284,7 +284,7 @@ single-table inheritance. #3833, #9886 [Gabriel Gironda, rramdas, François Bea
* Rollback if commit raises an exception. #8642 [kik, Jeremy Kemper]
-* Update tests' use of fixtures for the new collections api. #8726 [kamal]
+* Update tests' use of fixtures for the new collections api. #8726 [Kamal Fariz Mahyuddin]
* Save associated records only if the association is already loaded. #8713 [blaine]
@@ -294,7 +294,7 @@ single-table inheritance. #3833, #9886 [Gabriel Gironda, rramdas, François Bea
* Fixtures: people(:technomancy, :josh) returns both fixtures. #7880 [technomancy, Josh Peek]
-* Calculations support non-numeric foreign keys. #8154 [kamal]
+* Calculations support non-numeric foreign keys. #8154 [Kamal Fariz Mahyuddin]
* with_scope is protected. #8524 [Josh Peek]
@@ -330,7 +330,7 @@ single-table inheritance. #3833, #9886 [Gabriel Gironda, rramdas, François Bea
* Load database adapters on demand. Eliminates config.connection_adapters and RAILS_CONNECTION_ADAPTERS. Add your lib directory to the $LOAD_PATH and put your custom adapter in lib/active_record/connection_adapters/adaptername_adapter.rb. This way you can provide custom adapters as plugins or gems without modifying Rails. [Jeremy Kemper]
-* Ensure that associations with :dependent => :delete_all respect :conditions option. Closes #8034 [danger, joshpeek, Rick]
+* Ensure that associations with :dependent => :delete_all respect :conditions option. Closes #8034 [danger, Josh Peek, Rick]
* belongs_to assignment creates a new proxy rather than modifying its target in-place. #8412 [mmangino@elevatedrails.com]
@@ -733,7 +733,7 @@ during calendar reform. #7649, #7724 [fedot, Geoff Buesing]
* Fixed to_xml with :include misbehaviors when invoked on array of model instances #5690 [alexkwolfe@gmail.com]
-* Added support for conditions on Base.exists? #5689 [josh@joshpeek.com]. Examples:
+* Added support for conditions on Base.exists? #5689 [Josh Peek]. Examples:
assert (Topic.exists?(:author_name => "David"))
assert (Topic.exists?(:author_name => "Mary", :approved => true))
@@ -1190,7 +1190,7 @@ during calendar reform. #7649, #7724 [fedot, Geoff Buesing]
* Fixed to_xml with :include misbehaviors when invoked on array of model instances #5690 [alexkwolfe@gmail.com]
-* Added support for conditions on Base.exists? #5689 [josh@joshpeek.com]. Examples:
+* Added support for conditions on Base.exists? #5689 [Josh Peek]. Examples:
assert (Topic.exists?(:author_name => "David"))
assert (Topic.exists?(:author_name => "Mary", :approved => true))
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG
index 54b36d2fd7..3a52c4e909 100644
--- a/activesupport/CHANGELOG
+++ b/activesupport/CHANGELOG
@@ -16,9 +16,9 @@
* Speedup String#blank? [Jeremy Kemper, Koz]
-* Add documentation for Hash#diff. Closes #9306 [tarmo]
+* Add documentation for Hash#diff. Closes #9306 [Tarmo Tänav]
-* Add new superclass_delegating_accessors. Similar to class inheritable attributes but with subtly different semantics. [Koz, tarmo]
+* Add new superclass_delegating_accessors. Similar to class inheritable attributes but with subtly different semantics. [Koz, Tarmo Tänav]
* Change JSON to encode %w(< > &) as 4 digit hex codes to be in compliance with the JSON spec. Closes #9975 [Josh Peek, Chu Yeow, Tim Pope]
@@ -85,11 +85,11 @@
* Decode json strings as Dates/Times if they're using a YAML-compatible format. Closes #9614 [Rick]
-* Fixed cache_page to use the request url instead of the routing options when picking a save path #8614 [josh]
+* Fixed cache_page to use the request url instead of the routing options when picking a save path. #8614 [Josh Peek]
* Object.subclasses_of includes anonymous subclasses. [Jeremy Kemper]
-* Fixed that pluralizing an empty string should return the same empty string, not "s" #7720 [josh]
+* Fixed that pluralizing an empty string should return the same empty string, not "s". #7720 [Josh Peek]
* Added call to inspect on non-string classes for the logger #8533 [codahale]
diff --git a/railties/CHANGELOG b/railties/CHANGELOG
index ebf771c6fc..d3f82f4762 100644
--- a/railties/CHANGELOG
+++ b/railties/CHANGELOG
@@ -129,7 +129,7 @@ databases on localhost. #9753 [Trevor Wennblom]
* Default to plural table name in Rails Generator if ActiveRecord is not present. Closes #8963 [evan]
-* Added rake routes for listing all the defined routes in the system #8795 [josh]
+* Added rake routes for listing all the defined routes in the system. #8795 [Josh Peek]
* db:create creates the database for the current environment if it's on localhost. db:create:all creates local databases for all environments. #8783 [matt]
@@ -141,7 +141,7 @@ databases on localhost. #9753 [Trevor Wennblom]
* Added --skip-migration option to scaffold and resource generators #8656 [Michael Glaesemann]
-* Fix that FCGIs would leave log files open when asked to shut down by USR2 #3028 [sebastian.kanthak/josh]
+* Fix that FCGIs would leave log files open when asked to shut down by USR2. #3028 [Sebastian Kanthak, Josh Peek]
* Fixed that dispatcher preparation callbacks only run once in production mode. Mock Routes.reload so that dispatcher preparation callback tests run. [Rick]