did a few test with the newest library (downloaded today);
our websolution doesn’t work anymore …
doing some debug we found out that the problem is converting a string to a json-object;
this test-source, using the previous version, returns “object” but it’s returning “null” with the new library;
is there a syntax change for this cases?
It possible to patch the library and restore the older behavior, but I strongly recommend against it. Old code has used eval for JSON parsing, which results in possible security issues. The new version uses JSON.parse which is more strict, but much more safe in the same time.