Skip to content

2024.3.2

Compare
Choose a tag to compare
@ntoll ntoll released this 26 Mar 11:36
· 29 commits to main since this release
2f3659b

PyScript Release Notes

Polyscript

  • updated MicroPython to its latest version: micropython/micropython#13583
  • it is now possible to fully work offline with Polyscript: pyscript/polyscript#85
  • it is now possible to automatically extract .zip and .tar.gz files if the extension matches and the target ends with a /*, as in /* for root or ./dest/path/* for relative paths: pyscript/polyscript#84
  • updated coincident to its latest, allowing main -> worker interaction without needing SharedArrayBuffer (so await is mandatory, but no special headers are needed to consume asynchronous workers utilities): pyscript/polyscript#80

PyScript

  • improved the previously shipped pyscript.fetch utility to satisfy all requirements around it: #2001
  • improved documentation around JS libraries imported directly in PyScript (both Pyodide and MicroPython)
  • added a pyscript.ffi module that exports both create_proxy and to_js, normalized for both Pyodide and MicroPython and converting by default everything as object literal instead of Map: #2005