Update kino references

This commit is contained in:
Jonatan Kłosko 2023-12-12 15:41:21 +07:00
parent c8fbad1bf8
commit a30a0233f3
8 changed files with 7 additions and 18 deletions

View file

@ -29,6 +29,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
* Persisting Smart cells with `-->` sequence in the attributes ([#2364](https://github.com/livebook-dev/livebook/pull/2364))
* Downloading files in notebook export
* Secrets list not updating when deleting Teams hub secrets ([#2371](https://github.com/livebook-dev/livebook/pull/2371))
* File system form in Teams hub to show errors when creation fails because of duplicated bucket ([#2396](https://github.com/livebook-dev/livebook/pull/2396))
## v0.11

View file

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

View file

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

View file

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

View file

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

View file

@ -2,7 +2,7 @@
```elixir
Mix.install([
{:kino, "~> 0.11.0"},
{:kino, "~> 0.12.0"},
{:kino_vega_lite, "~> 0.1.10"}
])
```

View file

@ -1,5 +1,5 @@
defmodule Livebook.Runtime.Definitions do
@kino_requirement "~> 0.11.0"
@kino_requirement "~> 0.12.0"
def kino_requirement do
@kino_requirement

View file

@ -1346,18 +1346,6 @@ defmodule LivebookWeb.SessionLive do
)}
end
def handle_event("add_form_cell_dependencies", %{}, socket) do
Session.add_dependencies(socket.assigns.session.pid, [%{dep: {:kino, "~> 0.8.1"}, config: []}])
{status, socket} = maybe_reconnect_runtime(socket)
if status == :ok do
Session.queue_cell_evaluation(socket.assigns.session.pid, Cell.setup_cell_id())
end
{:noreply, socket}
end
def handle_event("queue_cell_evaluation", %{"cell_id" => cell_id} = params, socket) do
data = socket.private.data