diff options
author | stephan <stephan@noemail.net> | 2022-11-27 00:57:56 +0000 |
---|---|---|
committer | stephan <stephan@noemail.net> | 2022-11-27 00:57:56 +0000 |
commit | ca9309cc565da99c6a8e8dea84852b9c4ee478a4 (patch) | |
tree | 6ff521e3562e22b7902f97fea2c166892fbe5306 /ext/wasm/api/sqlite3-opfs-async-proxy.js | |
parent | 217e77d24008f5bd813c719e4a08da93500a2218 (diff) | |
download | sqlite-ca9309cc565da99c6a8e8dea84852b9c4ee478a4.tar.gz sqlite-ca9309cc565da99c6a8e8dea84852b9c4ee478a4.zip |
Document an OPFS API change in Chrome v108 which does not break our code but does change several formerly async methods to synchronous. No code changes.
FossilOrigin-Name: e9dd87e28a96eb6560943b9a2cb3cb0ff14698c96fe63865944dcfed73b67bd3
Diffstat (limited to 'ext/wasm/api/sqlite3-opfs-async-proxy.js')
-rw-r--r-- | ext/wasm/api/sqlite3-opfs-async-proxy.js | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/ext/wasm/api/sqlite3-opfs-async-proxy.js b/ext/wasm/api/sqlite3-opfs-async-proxy.js index 8a3db9c64..8e60969bc 100644 --- a/ext/wasm/api/sqlite3-opfs-async-proxy.js +++ b/ext/wasm/api/sqlite3-opfs-async-proxy.js @@ -29,6 +29,22 @@ This file represents an implementation detail of a larger piece of code, and not a public interface. Its details may change at any time and are not intended to be used by any client-level code. + + 2022-11-27: Chrome v108 changes some async methods to synchronous, as + documented at: + + https://developer.chrome.com/blog/sync-methods-for-accesshandles/ + + We cannot change to the sync forms at this point without breaking + clients who use Chrome v104-ish or higher. truncate(), getSize(), + flush(), and close() are now (as of v108) synchronous. Calling them + with an "await", as we have to for the async forms, is still legal + with the sync forms but is superfluous. Calling the async forms with + theFunc().then(...) is not compatible with the change to + synchronous, but we do do not use those APIs that way. i.e. we don't + _need_ to change anything for this, but at some point (after Chrome + versions (approximately) 104-107 are extinct) should change our + usage of those methods to remove the "await". */ "use strict"; const toss = function(...args){throw new Error(args.join(' '))}; |