Release v0.9.1

This commit is contained in:
Jonatan Kłosko 2023-04-06 00:32:08 +02:00
parent 55925873fd
commit 744406d1d8
7 changed files with 30 additions and 6 deletions

View file

@ -4,6 +4,30 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## [v0.9.1](https://github.com/livebook-dev/livebook/tree/v0.9.1) (2023-04-06)
### Added
- Support for clients-only outputs ([#1810](https://github.com/livebook-dev/livebook/pull/1810))
- Option to unstar notebooks directly from cards ([#1818](https://github.com/livebook-dev/livebook/pull/1818))
- Option to hide notebooks from recent list ([#1830](https://github.com/livebook-dev/livebook/pull/1830))
- Purging cookies once they exceed 24kB ([#1833](https://github.com/livebook-dev/livebook/pull/1833))
- Preview for booting apps on the auth screen ([#1836](https://github.com/livebook-dev/livebook/pull/1836))
### Changed
- Moved "Livebook" to the end of page title ([#1828](https://github.com/livebook-dev/livebook/pull/1828))
### Fixed
- Image and audio inputs to update preview on change for other users ([#1807](https://github.com/livebook-dev/livebook/pull/1807))
- Notebooks on Kino and on MapLibre ([#1806](https://github.com/livebook-dev/livebook/pull/1806), [#1811](https://github.com/livebook-dev/livebook/pull/1811))
- Booting if apps path is unavailable ([#1812](https://github.com/livebook-dev/livebook/pull/1812))
- Rendering of error pages
- (Desktop) Fixed app URLs ([#1835](https://github.com/livebook-dev/livebook/pull/1835))
- Respect whitespace in plain text output ([#1841](https://github.com/livebook-dev/livebook/pull/1841))
- (Desktop) Fixed displaying error dialog and logging errors ([#1848](https://github.com/livebook-dev/livebook/pull/1848))
## [v0.9.0](https://github.com/livebook-dev/livebook/tree/v0.9.0) (2023-03-20) ## [v0.9.0](https://github.com/livebook-dev/livebook/tree/v0.9.0) (2023-03-20)
We migrated Docker images from Docker Hub to GitHub Container Registry (see [#1792](https://github.com/livebook-dev/livebook/pull/1792)). Make sure to upgrade image references from `livebook/livebook` to `ghcr.io/livebook-dev/livebook`. We migrated Docker images from Docker Hub to GitHub Container Registry (see [#1792](https://github.com/livebook-dev/livebook/pull/1792)). Make sure to upgrade image references from `livebook/livebook` to `ghcr.io/livebook-dev/livebook`.

View file

@ -2,7 +2,7 @@
```elixir ```elixir
Mix.install([ Mix.install([
{:kino, "~> 0.9.0"} {:kino, "~> 0.9.1"}
]) ])
``` ```

View file

@ -2,7 +2,7 @@
```elixir ```elixir
Mix.install([ Mix.install([
{:kino, "~> 0.9.0"} {:kino, "~> 0.9.1"}
]) ])
``` ```

View file

@ -2,7 +2,7 @@
```elixir ```elixir
Mix.install([ Mix.install([
{:kino, "~> 0.9.0"} {:kino, "~> 0.9.1"}
]) ])
``` ```

View file

@ -2,7 +2,7 @@
```elixir ```elixir
Mix.install([ Mix.install([
{:kino, "~> 0.9.0"}, {:kino, "~> 0.9.1"},
{:jason, "~> 1.4"} {:jason, "~> 1.4"}
]) ])
``` ```

View file

@ -2,7 +2,7 @@
```elixir ```elixir
Mix.install([ Mix.install([
{:kino, "~> 0.9.0"}, {:kino, "~> 0.9.1"},
{:kino_vega_lite, "~> 0.1.7"} {:kino_vega_lite, "~> 0.1.7"}
]) ])
``` ```

View file

@ -2,7 +2,7 @@ defmodule Livebook.MixProject do
use Mix.Project use Mix.Project
@elixir_requirement "~> 1.14.2 or ~> 1.15-dev" @elixir_requirement "~> 1.14.2 or ~> 1.15-dev"
@version "0.9.0" @version "0.9.1"
@description "Automate code & data workflows with interactive notebooks" @description "Automate code & data workflows with interactive notebooks"
@app_elixir_version "1.14.2" @app_elixir_version "1.14.2"