You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[FIXED] fixed regression caused by 1.5.6 where responseToJSON and responseFromJSON can return arrayBuffer instead of text for application/json content type.
[FIXED] PersistenceRequest has been updated to only override for versions of Safari that are lower than 14.1. For older Safari versions, PersistenceRequest.arrayBuffer() is updated to generate the arraybuffer directly rather than going from text to arrayBuffer.
[UPDATED] Tests now run with karma-mocha instead of puppeteer
[Added] QUERY HANDLER SHOULD SUPPORT SORTING
The default query handlers supplied by toolkit earlier, in particular the Oracle-specific
one, was not support sorting. With this release it is supported in the query handlers.
[FIXED] SHREDDER USES LOCALSTORAGE WHICH IS NOT AVAILABLE WHILE IN SERVICEWORKER
[FIXED] RAMP/ADFbc LIKE queries do not work with oracleRestJsonShredding
[FIXED] PersistenceManager cannot be re-instantiated on Safari
[Bug Fix] Creating new Request objects with existing Requests or calling fetch with a Request and additional parameters such as abortSignal should no longer results in a url of '<>/[object%20Object]' url anymore on Safari.
[Added] PersistenceXMLHttpRequests now allow for Abort/Timeout/Upload functionality.
The Abort and Timeout features both require the AbortController API to be present within the browser otherwise will they will result in a no op. For Timeouts, the timeout event will fire but without the AbortController API, the request to the server itself is not aborted after timing out.