Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 8357

Show
Ignore:
Timestamp:
12/10/07 03:19:17 (10 months ago)
Author:
bitsweat
Message:

More changelog updates

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/actionmailer/CHANGELOG

    r8330 r8357  
    2020* Fix attachment decoding when using the TMail C extension.  #7861 [orangechicken] 
    2121 
    22 * Increase mail delivery test coverage.  #8692 [kamal
     22* Increase mail delivery test coverage.  #8692 [Kamal Fariz Mahyuddin
    2323 
    2424* Register alternative template engines using ActionMailer::Base.register_template_extension('haml').  #7534 [cwd, Josh Peek] 
  • trunk/actionpack/CHANGELOG

    r8352 r8357  
    2525* Fixed that verification violations with no specified action didn't halt the chain (now they do with a 400 Bad Request) [DHH] 
    2626 
    27 * Raise UnknownHttpMethod exception for unknown HTTP methods. Closes #10303 [tarmo
     27* Raise UnknownHttpMethod exception for unknown HTTP methods. Closes #10303 [Tarmo TÀnav
    2828 
    2929* Update to Prototype -r8232.  [sam] 
     
    137137* Add :status to redirect_to allowing users to choose their own response code without manually setting headers. #8297 [codahale, chasgrundy] 
    138138 
    139 * Add link_to :back which uses your referrer with a fallback to a javascript link. #7366 [eventualbuddha, tarmo
     139* Add link_to :back which uses your referrer with a fallback to a javascript link. #7366 [eventualbuddha, Tarmo TÀnav
    140140 
    141141* error_messages_for and friends also work with local variables.  #9699 [Frederick Cheung] 
     
    228228* Added that render :json will automatically call .to_json unless it's being passed a string [DHH]. 
    229229 
    230 * Autolink behaves well with emails embedded in URLs.  #7313 [Jeremy McAnally, tarmo
     230* Autolink behaves well with emails embedded in URLs.  #7313 [Jeremy McAnally, Tarmo TÀnav
    231231 
    232232* Fixed that default layouts did not take the format into account #9564 [Pratik Naik] 
     
    306306   
    307307 
    308 * Allow you to delete cookies with options. Closes #3685 [josh, Chris Wanstrath] 
     308* Allow you to delete cookies with options. Closes #3685 [Josh Peek, Chris Wanstrath] 
    309309 
    310310* Allow you to render views with periods in the name.  Closes #8076 [norbert] 
     
    322322* Give the legacy X-POST_DATA_FORMAT header greater precedence during params parsing for backward compatibility.  [Jeremy Kemper] 
    323323 
    324 * Fixed that link_to with an href of # when using :method will not allow for click-through without JavaScript #7037 [stevenbristol/josh
    325  
    326 * Fixed that radio_button_tag should generate unique ids #3353 [BobSilva/rebecca/josh
     324* Fixed that link_to with an href of # when using :method will not allow for click-through without JavaScript #7037 [Steven Bristol, Josh Peek
     325 
     326* Fixed that radio_button_tag should generate unique ids #3353 [Bob Silva, Rebecca, Josh Peek
    327327 
    328328* Fixed that HTTP authentication should work if the header is called REDIRECT_X_HTTP_AUTHORIZATION as well #6754 [mislaw] 
     
    356356* Routing: map.resource :logo routes to LogosController so the controller may be reused for multiple nestings or namespaces.  [Jeremy Kemper] 
    357357 
    358 * render :partial recognizes Active Record associations as Arrays.  #8538 [kamal
     358* render :partial recognizes Active Record associations as Arrays.  #8538 [Kamal Fariz Mahyuddin
    359359 
    360360* Routing: drop semicolon and comma as route separators.  [Jeremy Kemper] 
     
    38173817* Fixed that cached template loading would still check the file system to see if the file existed #258 [Andreas Schwarz] 
    38183818 
    3819 * Added options to tailor header tag, div id, and div class on ActiveRecordHelper#error_messages_for [josh
     3819* Added options to tailor header tag, div id, and div class on ActiveRecordHelper#error_messages_for [Josh Peek
    38203820 
    38213821* Added graceful handling of non-alphanumeric names and misplaced brackets in input parameters [Jeremy Kemper] 
  • trunk/activerecord/CHANGELOG

    r8352 r8357  
    6666* Update Schema documentation to use updated sexy migration notation. Closes #10086 [sjgman9] 
    6767 
    68 * Make fixtures work with the new test subclasses. [tarmo, Koz] 
     68* Make fixtures work with the new test subclasses. [Tarmo TÀnav, Koz] 
    6969 
    7070* Introduce finder :joins with associations. Same :include syntax but with inner rather than outer joins.  #10012 [RubyRedRick] 
     
    9494* Add docs explaining how to protect all attributes using attr_accessible with no arguments. Closes #9631 [boone, rmm5t] 
    9595 
    96 * Update add_index documentation to use new options api. Closes #9787 [kamal
     96* Update add_index documentation to use new options api. Closes #9787 [Kamal Fariz Mahyuddin
    9797 
    9898* Allow find on a has_many association defined with :finder_sql to accept id arguments as strings like regular find does. Closes #9916 [krishna] 
     
    100100* Use VALID_FIND_OPTIONS when resolving :find scoping rather than hard coding the list of valid find options. Closes #9443 [sur] 
    101101 
    102 * Limited eager loading no longer ignores scoped :order. Closes #9561 [danger, josh
     102* Limited eager loading no longer ignores scoped :order. Closes #9561 [danger, Josh Peek
    103103 
    104104* 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] 
     
    142142* Speedup database date/time parsing.  [Jeremy Kemper, Tarmo TÀnav] 
    143143 
    144 * Fix calling .clear on a has_many :dependent=>:delete_all association. [tarmo
    145  
    146 * Allow change_column to set NOT NULL in the PostgreSQL adapter [tarmo
     144* Fix calling .clear on a has_many :dependent=>:delete_all association. [Tarmo TÀnav
     145 
     146* Allow change_column to set NOT NULL in the PostgreSQL adapter [Tarmo TÀnav
    147147 
    148148* Fix that ActiveRecord would create attribute methods and override custom attribute getters if the method is also defined in Kernel.methods. [Rick] 
     
    180180* Fixed rename_column for SQLite when using symbols for the column names #8616 [drodriguez] 
    181181 
    182 * Added the possibility of using symbols in addition to concrete classes with ActiveRecord::Observer#observe #3998 [robbyrussell/tarmo
     182* Added the possibility of using symbols in addition to concrete classes with ActiveRecord::Observer#observe.  #3998 [Robby Russell, Tarmo TÀnav
    183183 
    184184* Added ActiveRecord::Base#to_json/from_json [DHH, Chu Yeow] 
     
    215215* Moved acts_as_nested_set into a plugin of the same name on the official Rails svn.  #9516 [Josh Peek] 
    216216 
    217 * Moved acts_as_list into a plugin of the same name on the official Rails svn [josh
     217* Moved acts_as_list into a plugin of the same name on the official Rails svn.  [Josh Peek
    218218 
    219219* Explicitly require active_record/query_cache before using it.  [Jeremy Kemper] 
     
    277277* Define collection singular ids method for has_many :through associations.  #8763 [Pratik Naik] 
    278278 
    279 * Array attribute conditions work with proxied association collections.  #8318 [kamal, theamazingrando] 
     279* Array attribute conditions work with proxied association collections.  #8318 [Kamal Fariz Mahyuddin, theamazingrando] 
    280280 
    281281* Fix polymorphic has_one associations declared in an abstract class.  #8638 [Pratik Naik, Dax Huiberts] 
     
    285285* Rollback if commit raises an exception.  #8642 [kik, Jeremy Kemper] 
    286286 
    287 * Update tests' use of fixtures for the new collections api.  #8726 [kamal
     287* Update tests' use of fixtures for the new collections api.  #8726 [Kamal Fariz Mahyuddin
    288288 
    289289* Save associated records only if the association is already loaded.  #8713 [blaine] 
     
    295295* Fixtures: people(:technomancy, :josh) returns both fixtures.  #7880 [technomancy, Josh Peek] 
    296296 
    297 * Calculations support non-numeric foreign keys.  #8154 [kamal
     297* Calculations support non-numeric foreign keys.  #8154 [Kamal Fariz Mahyuddin
    298298 
    299299* with_scope is protected.  #8524 [Josh Peek] 
     
    331331* 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] 
    332332 
    333 * Ensure that associations with :dependent => :delete_all respect :conditions option.  Closes #8034 [danger, joshpeek, Rick] 
     333* Ensure that associations with :dependent => :delete_all respect :conditions option.  Closes #8034 [danger, Josh Peek, Rick] 
    334334 
    335335* belongs_to assignment creates a new proxy rather than modifying its target in-place.  #8412 [mmangino@elevatedrails.com] 
     
    734734* Fixed to_xml with :include misbehaviors when invoked on array of model instances #5690 [alexkwolfe@gmail.com] 
    735735 
    736 * Added support for conditions on Base.exists? #5689 [josh@joshpeek.com]. Examples: 
     736* Added support for conditions on Base.exists? #5689 [Josh Peek]. Examples: 
    737737 
    738738    assert (Topic.exists?(:author_name => "David"))  
     
    11911191* Fixed to_xml with :include misbehaviors when invoked on array of model instances #5690 [alexkwolfe@gmail.com] 
    11921192 
    1193 * Added support for conditions on Base.exists? #5689 [josh@joshpeek.com]. Examples: 
     1193* Added support for conditions on Base.exists? #5689 [Josh Peek]. Examples: 
    11941194 
    11951195    assert (Topic.exists?(:author_name => "David"))  
  • trunk/activesupport/CHANGELOG

    r8349 r8357  
    1717* Speedup String#blank?  [Jeremy Kemper, Koz] 
    1818 
    19 * Add documentation for Hash#diff. Closes #9306 [tarmo
    20  
    21 * Add new superclass_delegating_accessors.  Similar to class inheritable attributes but with subtly different semantics. [Koz, tarmo
     19* Add documentation for Hash#diff. Closes #9306 [Tarmo TÀnav
     20 
     21* Add new superclass_delegating_accessors.  Similar to class inheritable attributes but with subtly different semantics. [Koz, Tarmo TÀnav
    2222 
    2323* 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] 
     
    8686* Decode json strings as Dates/Times if they're using a YAML-compatible format.  Closes #9614 [Rick] 
    8787 
    88 * Fixed cache_page to use the request url instead of the routing options when picking a save path #8614 [josh
     88* Fixed cache_page to use the request url instead of the routing options when picking a save path.  #8614 [Josh Peek
    8989 
    9090* Object.subclasses_of includes anonymous subclasses.  [Jeremy Kemper] 
    9191 
    92 * Fixed that pluralizing an empty string should return the same empty string, not "s" #7720 [josh
     92* Fixed that pluralizing an empty string should return the same empty string, not "s".  #7720 [Josh Peek
    9393 
    9494* Added call to inspect on non-string classes for the logger #8533 [codahale] 
  • trunk/railties/CHANGELOG

    r8352 r8357  
    130130* Default to plural table name in Rails Generator if ActiveRecord is not present.  Closes #8963 [evan] 
    131131 
    132 * Added rake routes for listing all the defined routes in the system #8795 [josh
     132* Added rake routes for listing all the defined routes in the system.  #8795 [Josh Peek
    133133 
    134134* 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] 
     
    142142* Added --skip-migration option to scaffold and resource generators #8656 [Michael Glaesemann] 
    143143 
    144 * Fix that FCGIs would leave log files open when asked to shut down by USR2 #3028 [sebastian.kanthak/josh
     144* Fix that FCGIs would leave log files open when asked to shut down by USR2.  #3028 [Sebastian Kanthak, Josh Peek
    145145 
    146146* Fixed that dispatcher preparation callbacks only run once in production mode.  Mock Routes.reload so that dispatcher preparation callback tests run. [Rick]