Skip to content

v0.11.0

Compare
Choose a tag to compare
@livebook-bot livebook-bot released this 09 Oct 17:11
· 446 commits to main since this release

This release introduces file management, you can now tell Livebook what files the notebook depends on, be it on your disk or on the web. In relation to this, the images/ directory has been deprecated in favour of notebook attachments (files living in the files/ directory). One way to migrate is to rename the images/ directory to files/, open the files panel (in the session sidebar), then "Add file" and choose "From unlisted". If you want to automatically do this for a large repository of notebooks, you can try out this script.

This release introduces a breaking change to audio and image inputs. Previously input values (when read or received as an event) included a :data attribute with a binary. This attribute has been removed in favour of :file_ref, this way the binary is not stored in the memory upfront and it is up to the user to read it or stream it depending on the use case. For more information on the API, see Kino v0.11.0 changelog.

Added

  • Introduced file management to track and access files used by a notebook (#2022, #2044, #2072, #2083, #2085, #2111, #2112, #2113, #2131, #2167)
  • Improved debugging discoverability on app errors (#2061)
  • Option to mark a directory as the default file selector location (#2046)
  • Button for reevaluating apps on change (#2066)
  • Button for retrying on app errors (#2066)
  • Drag and drop actions for notebook files (#2096, #2103, #2192)
  • Support for dropping external files into the notebook (#2097)
  • Notebook custom view (#2101)
  • Automatic runtime setup when creating a new notebook to streamline autocompletion (#2102)
  • Manual warmup mode for apps to cache notebook dependencies during a Docker build (#2115)
  • Warning when Livebook runs out of memory during notebook setup (#2128)
  • Shortcut to toggle keyboard control in the focused cell (#2145)
  • Option to enable Vim/Emacs mode in the editor (#2173)
  • Support for chunked text and markdown outputs (#2174)
  • (Desktop) Allowed the application to ask for microphone and camera access (#2177)
  • Added Remote execution cell (#2197, #2217)
  • Support for getting temporary directory tied to runtime lifetime (#2204)
  • Button for inserting a branching section (#2205)
  • Zero Trust authentication strategy for Tailscale (#2207)
  • (Desktop) "Open .livebookdesktop.sh|bat" option to the system tray menu (#2225)
  • Support for customizing debounce behaviour on inputs (#2224)
  • (Desktop) "New Notebook" option to the system tray menu (#2247)
  • Improved audio and image inputs to handle large files by streaming (#2249)
  • Docker image with CUDA 12 (#2255)

Changed

  • Changed apps to not reevaluate automatically and require an action on change (#2066)
  • Changed attached runtime to establish a hidden connection to avoid clustering errors on OTP25 (#2110)
  • Clicking links within iframes to trigger navigation for the whole page (#2160)
  • Setup cell output to never be exported (#2184)
  • Moved file storage configuration from Settings to Hub page (#2212)
  • Bumped Elixir and Erlang versions in the Docker image (#2254)
  • (Breaking) Changed audio and image input values to include file rather than inline binary data
  • Changed the algorithm used by Personal hub for stamping (#2252)

Fixed

  • App menu to fit in the viewport on mobile (#2092)
  • Smart cell editor initialization when no language is specified
  • Race conditions during apps setup when deploying from a directory (#2115)
  • Fixed require not propagating across cells in certain cases (#2134)
  • Frame updates containing inputs (#2219)