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+ # 2.0.2 (2013-01-09)
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# 2.0.1 (2012-12-28)
28
39* Fix: [ #29 ] ( https://github.com/savonrb/nori/issues/29 ) Nori now properly parses XML
@@ -113,7 +119,7 @@ Please make sure to read the updated README for how to use the new version.
113119
114120# # 0.2.1 (2011-05-15)
115121
116- * Fix: Changed XML attributes converted to Hash keys to be prefixed with an @- sign.
122+ * Fix: Changed XML attributes converted to Hash keys to be prefixed with an @- sign.
117123 This avoids problems with attributes and child nodes having the same name.
118124
119125 < multiRef id= " id1" >
Original file line number Diff line number Diff line change @@ -77,9 +77,7 @@ def self.available_typecasts=(obj)
7777 self . typecasts [ "decimal" ] = lambda { |v | v . nil? ? nil : BigDecimal ( v . to_s ) }
7878 self . typecasts [ "double" ] = lambda { |v | v . nil? ? nil : v . to_f }
7979 self . typecasts [ "float" ] = lambda { |v | v . nil? ? nil : v . to_f }
80- self . typecasts [ "symbol" ] = lambda { |v | v . nil? ? nil : v . to_sym }
8180 self . typecasts [ "string" ] = lambda { |v | v . to_s }
82- self . typecasts [ "yaml" ] = lambda { |v | v . nil? ? nil : YAML . load ( v ) }
8381 self . typecasts [ "base64Binary" ] = lambda { |v | v . unpack ( 'm' ) . first }
8482
8583 self . available_typecasts = self . typecasts . keys
You can’t perform that action at this time.
0 commit comments