Oj v3.13.8 Release Notes

Release Date: 2021-09-27 // over 2 years ago
    • 🛠 Fix Oj::Doc behaviour for inexisting path.

      Oj::Doc.open('{"foo":1}') do |doc|
      doc.fetch('/foo/bar') # used to give `1`, now gives `nil`
      doc.exists?('/foo/bar') # used to give `true`, now gives `false`
      end
      
    • 🛠 Fix Oj::Parser handling of BigDecimal. snprint() does not handle %Lg correctly but sprintf() does.