1. 10 Sep, 2017 2 commits
  2. 09 Sep, 2017 8 commits
  3. 06 Sep, 2017 3 commits
  4. 29 Aug, 2017 1 commit
  5. 27 Aug, 2017 2 commits
  6. 26 Aug, 2017 2 commits
  7. 25 Aug, 2017 7 commits
  8. 24 Aug, 2017 1 commit
  9. 23 Aug, 2017 2 commits
  10. 22 Aug, 2017 3 commits
  11. 21 Aug, 2017 3 commits
  12. 20 Aug, 2017 2 commits
  13. 16 Aug, 2017 4 commits
    • 💥 changed iterators to andom_access_iterator #593 · c77a0be5
      Niels Lohmann authored
      This commit changes the iterator category to andom_access_iterator and allows offsets and subscript operators for object iterators.
    • 🔨 approach to un-break the changes for #462 · aba8b584
      Niels Lohmann authored
    • 💥 CBOR/MessagePack input must end with EOF #505 · 22b59693
      Niels Lohmann authored
      The CBOR and MessagePack parsers now expect the input to be read until the end. Unless the new parameter "strict" is set to false (it is true by default), an exception is raised if the parser ends prematurely. This is a breaking change as the parsers ignored unread input so far.
      
      Furthermore, the offset/startIndex paramter introduced in #462 was removed as this behavior can be mimicked with an iterator range. For instance, instead of calling "from_cbor(vec, 5);", you can write "from_cbor({vec.begin()+5, vec.end()});".
    • Catch v1.9.7 · 1f31a5b8
      Niels Lohmann authored