Changeset 8411
- Timestamp:
- 12/15/07 02:30:04 (7 months ago)
- Files:
-
- trunk/actionpack/CHANGELOG (modified) (1 diff)
- trunk/activerecord/CHANGELOG (modified) (2 diffs)
- trunk/activesupport/CHANGELOG (modified) (5 diffs)
- trunk/railties/CHANGELOG (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionpack/CHANGELOG
r8385 r8411 5 5 * Added that Array#to_param calls to_param on all it's elements #10473 [brandon] 6 6 7 * Ensure asset cache directories are automatically created. #10337 [Josh Peek, Ch u Yeow]8 9 * render :xml and :json preserve custom content types. #10388 [jmettraux, Ch u Yeow]7 * Ensure asset cache directories are automatically created. #10337 [Josh Peek, Cheah Chu Yeow] 8 9 * render :xml and :json preserve custom content types. #10388 [jmettraux, Cheah Chu Yeow] 10 10 11 11 * Refactor Action View template handlers. #10437, #10455 [Josh Peek] trunk/activerecord/CHANGELOG
r8395 r8411 42 42 render :partial => @client.becomes(Company) # renders companies/company instead of clients/client 43 43 44 * Fixed that to_xml should not automatically pass :procs to associations included with :include #10162 [Ch u Yeow]44 * Fixed that to_xml should not automatically pass :procs to associations included with :include #10162 [Cheah Chu Yeow] 45 45 46 46 * Fix documentation typo introduced in [8250]. Closes #10339 [Henrik N] … … 198 198 * Added the possibility of using symbols in addition to concrete classes with ActiveRecord::Observer#observe. #3998 [Robby Russell, Tarmo TÀnav] 199 199 200 * Added ActiveRecord::Base#to_json/from_json [DHH, Ch u Yeow]200 * Added ActiveRecord::Base#to_json/from_json [DHH, Cheah Chu Yeow] 201 201 202 202 * Added ActiveRecord::Base#from_xml [DHH]. Example: trunk/activesupport/CHANGELOG
r8389 r8411 1 1 *SVN* 2 2 3 * TimeZone#to_s uses UTC rather than GMT. #1689 [Ch u Yeow]3 * TimeZone#to_s uses UTC rather than GMT. #1689 [Cheah Chu Yeow] 4 4 5 5 * Refactor of Hash#symbolize_keys! to use Hash#replace. Closes #10420 [ReinH] … … 24 24 * Add new superclass_delegating_accessors. Similar to class inheritable attributes but with subtly different semantics. [Koz, Tarmo TÀnav] 25 25 26 * Change JSON to encode %w(< > &) as 4 digit hex codes to be in compliance with the JSON spec. Closes #9975 [Josh Peek, Ch u Yeow, Tim Pope]26 * Change JSON to encode %w(< > &) as 4 digit hex codes to be in compliance with the JSON spec. Closes #9975 [Josh Peek, Cheah Chu Yeow, Tim Pope] 27 27 28 28 * Fix JSON encoding/decoding bugs dealing with /'s. Closes #9990 [Rick, theamazingrando] … … 33 33 is done to test/unit's classes. 34 34 35 * Document Enumerable and Hash #to_json. #9970 [Ch u Yeow]35 * Document Enumerable and Hash #to_json. #9970 [Cheah Chu Yeow] 36 36 37 37 * Hash#to_xml handles symbol values. #9954 [Assaf] … … 65 65 * Unbundle Builder in favor of a gem dependency. [Jeremy Kemper] 66 66 67 * Disambiguate Time, Date, and DateTime#to_json formatting. #9750 [Geoff Buesing, Ch u Yeow]68 69 * Hash#to_json takes :only or :except options to specific or omit certain hash keys. Enumerable#to_json passes through its options to each element. #9751 [Ch u Yeow]67 * Disambiguate Time, Date, and DateTime#to_json formatting. #9750 [Geoff Buesing, Cheah Chu Yeow] 68 69 * Hash#to_json takes :only or :except options to specific or omit certain hash keys. Enumerable#to_json passes through its options to each element. #9751 [Cheah Chu Yeow] 70 70 71 71 * BufferedLogger#auto_flushing = N flushes the log every N messages. Buffers with an array instead of string. Disabling auto_flushing still flushes when the buffer hits a maximum size, as a failsafe against memory-gobbling. [Jeremy Kemper] … … 75 75 * Fixed that La Paz was included in -25200 and -14400 offsets when it should only be in -14400 #9735 [bermi] 76 76 77 * Fixed JSON encoding to use quoted keys according to the JSON standard. #8762 [choonkat, Ch u Yeow]77 * Fixed JSON encoding to use quoted keys according to the JSON standard. #8762 [choonkat, Cheah Chu Yeow] 78 78 79 79 * Alias Object#send to send! for Ruby 1.9 forward compatibility. [Jeremy Kemper] trunk/railties/CHANGELOG
r8400 r8411 37 37 * Introduce SecretKeyGenerator for more secure session secrets than CGI::Session's pseudo-random id generator. Consider extracting to Active Support later. #10286 [Hongli Lai] 38 38 39 * RAILS_GEM_VERSION may be set to any valid gem version specifier. #10057 [Chad Woolley, Ch u Yeow]39 * RAILS_GEM_VERSION may be set to any valid gem version specifier. #10057 [Chad Woolley, Cheah Chu Yeow] 40 40 41 41 * Load config/preinitializer.rb, if present, before loading the environment. #9943 [Chad Woolley]