File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1+ == master
2+
3+ * Fix for remote code execution bug. For more in-depth information, read about the
4+ recent [ Rails hotfix] ( https://groups.google.com/forum/?fromgroups=#!topic/rubyonrails-security/61bkgvnSGTQ ) .
5+ Please make sure to upgrade now!
6+
17== 1.0.2 (2011-07-04)
28
39* Fix: When specifying a custom formula to convert tags, XML attributes were ignored.
5460
5561== 0.2.1 (2011-05-15)
5662
57- * Fix: Changed XML attributes converted to Hash keys to be prefixed with an @-sign.
63+ * Fix: Changed XML attributes converted to Hash keys to be prefixed with an @-sign.
5864 This avoids problems with attributes and child nodes having the same name.
5965
6066 <multiRef id="id1">
Original file line number Diff line number Diff line change @@ -52,9 +52,7 @@ def self.available_typecasts=(obj)
5252 self . typecasts [ "decimal" ] = lambda { |v | v . nil? ? nil : BigDecimal ( v . to_s ) }
5353 self . typecasts [ "double" ] = lambda { |v | v . nil? ? nil : v . to_f }
5454 self . typecasts [ "float" ] = lambda { |v | v . nil? ? nil : v . to_f }
55- self . typecasts [ "symbol" ] = lambda { |v | v . nil? ? nil : v . to_sym }
5655 self . typecasts [ "string" ] = lambda { |v | v . to_s }
57- self . typecasts [ "yaml" ] = lambda { |v | v . nil? ? nil : YAML . load ( v ) }
5856 self . typecasts [ "base64Binary" ] = lambda { |v | v . unpack ( 'm' ) . first }
5957
6058 self . available_typecasts = self . typecasts . keys
You can’t perform that action at this time.
0 commit comments