Update changelog (#2257)

Co-authored-by: Alexandre de Souza <alexandre@aledsz.com.br>
This commit is contained in:
Jonatan Kłosko 2023-10-06 18:30:39 +02:00 committed by GitHub
parent 19e9aa0089
commit 30db2ce574
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,6 +4,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## [Unreleased](https://github.com/livebook-dev/livebook/tree/main) ## [Unreleased](https://github.com/livebook-dev/livebook/tree/main)
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](https://gist.github.com/jonatanklosko/20e28aa772a888a25a829337a4b805e1).
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](https://github.com/livebook-dev/kino/blob/main/CHANGELOG.md#user-content-v0110-2023-10-06).
### Added ### Added
* Introduced file management to track and access files used by a notebook ([#2022](https://github.com/livebook-dev/livebook/pull/2022), [#2044](https://github.com/livebook-dev/livebook/pull/2044), [#2072](https://github.com/livebook-dev/livebook/pull/2072), [#2083](https://github.com/livebook-dev/livebook/pull/2083), [#2085](https://github.com/livebook-dev/livebook/pull/2085), [#2111](https://github.com/livebook-dev/livebook/pull/2111), [#2112](https://github.com/livebook-dev/livebook/pull/2112), [#2113](https://github.com/livebook-dev/livebook/pull/2113), [#2131](https://github.com/livebook-dev/livebook/pull/2131), [#2167](https://github.com/livebook-dev/livebook/pull/2167)) * Introduced file management to track and access files used by a notebook ([#2022](https://github.com/livebook-dev/livebook/pull/2022), [#2044](https://github.com/livebook-dev/livebook/pull/2044), [#2072](https://github.com/livebook-dev/livebook/pull/2072), [#2083](https://github.com/livebook-dev/livebook/pull/2083), [#2085](https://github.com/livebook-dev/livebook/pull/2085), [#2111](https://github.com/livebook-dev/livebook/pull/2111), [#2112](https://github.com/livebook-dev/livebook/pull/2112), [#2113](https://github.com/livebook-dev/livebook/pull/2113), [#2131](https://github.com/livebook-dev/livebook/pull/2131), [#2167](https://github.com/livebook-dev/livebook/pull/2167))
@ -21,7 +25,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
* Option to enable Vim/Emacs mode in the editor ([#2173](https://github.com/livebook-dev/livebook/pull/2173)) * Option to enable Vim/Emacs mode in the editor ([#2173](https://github.com/livebook-dev/livebook/pull/2173))
* Support for chunked text and markdown outputs ([#2174](https://github.com/livebook-dev/livebook/pull/2174)) * Support for chunked text and markdown outputs ([#2174](https://github.com/livebook-dev/livebook/pull/2174))
* (Desktop) Allowed the application to ask for microphone and camera access ([#2177](https://github.com/livebook-dev/livebook/pull/2177)) * (Desktop) Allowed the application to ask for microphone and camera access ([#2177](https://github.com/livebook-dev/livebook/pull/2177))
* Added Remote execution cell ([#2197](https://github.com/livebook-dev/livebook/pull/2197)) * Added Remote execution cell ([#2197](https://github.com/livebook-dev/livebook/pull/2197), [#2217](https://github.com/livebook-dev/livebook/pull/2217))
* Support for getting temporary directory tied to runtime lifetime ([#2204](https://github.com/livebook-dev/livebook/pull/2204))
* Button for inserting a branching section ([#2205](https://github.com/livebook-dev/livebook/pull/2205))
* Zero Trust authentication strategy for Tailscale ([#1938](https://github.com/livebook-dev/livebook/pull/1938))
* (Desktop) "Open .livebookdesktop.sh|bat" option to the system tray menu ([#2225](https://github.com/livebook-dev/livebook/pull/2225))
* Support for customizing debounce behaviour on inputs ([#2224](https://github.com/livebook-dev/livebook/pull/2224))
* (Desktop) "New Notebook" option to the system tray menu ([#2247](https://github.com/livebook-dev/livebook/pull/2247))
* Improved audio and image inputs to handle large files by streaming ([#2249](https://github.com/livebook-dev/livebook/pull/2249))
* Docker image with CUDA 12 ([#2255](https://github.com/livebook-dev/livebook/pull/2255))
### Changed ### Changed
@ -29,6 +41,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
* Changed attached runtime to establish a hidden connection to avoid clustering errors on OTP25 ([#2110](https://github.com/livebook-dev/livebook/pull/2110)) * Changed attached runtime to establish a hidden connection to avoid clustering errors on OTP25 ([#2110](https://github.com/livebook-dev/livebook/pull/2110))
* Clicking links within iframes to trigger navigation for the whole page ([#2160](https://github.com/livebook-dev/livebook/pull/2160)) * Clicking links within iframes to trigger navigation for the whole page ([#2160](https://github.com/livebook-dev/livebook/pull/2160))
* Setup cell output to never be exported ([#2184](https://github.com/livebook-dev/livebook/pull/2184)) * Setup cell output to never be exported ([#2184](https://github.com/livebook-dev/livebook/pull/2184))
* Moved file storage configuration from Settings to Hub page ([#2212](https://github.com/livebook-dev/livebook/pull/2212))
* Bumped Elixir and Erlang versions in the Docker image ([#2254](https://github.com/livebook-dev/livebook/pull/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](https://github.com/livebook-dev/livebook/pull/2252))
### Fixed ### Fixed
@ -36,6 +52,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
* Smart cell editor initialization when no language is specified * Smart cell editor initialization when no language is specified
* Race conditions during apps setup when deploying from a directory ([#2115](https://github.com/livebook-dev/livebook/pull/2115)) * Race conditions during apps setup when deploying from a directory ([#2115](https://github.com/livebook-dev/livebook/pull/2115))
* Fixed `require` not propagating across cells in certain cases ([#2134](https://github.com/livebook-dev/livebook/pull/2134)) * Fixed `require` not propagating across cells in certain cases ([#2134](https://github.com/livebook-dev/livebook/pull/2134))
* Frame updates containing inputs ([#2219](https://github.com/livebook-dev/livebook/pull/2219))
## v0.10 ## v0.10