From 195bc502fdaffdfd8c05f331257fda755b33e866 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonatan=20K=C5=82osko?= Date: Thu, 6 Oct 2022 20:13:36 +0200 Subject: [PATCH] Update changelog --- CHANGELOG.md | 1 + lib/livebook/settings.ex | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 64c8e5145..28cfc7cb3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -33,6 +33,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Fixed the "evaluate all" shortcut to work when a cells is evaluating ([#1334](https://github.com/livebook-dev/livebook/pull/1334)) - Source corruption when adding dependencies on Windows ([#1337](https://github.com/livebook-dev/livebook/pull/1337)) +- Failure when changing file system from S3 to local ([#1377](https://github.com/livebook-dev/livebook/pull/1377)) - Evaluator to wait for garbage collected processes to terminate before next evaluation ([#1385](https://github.com/livebook-dev/livebook/pull/1385)) - Fixed unnecessary vertical whitespace in Mermaid graphs ([#1415](https://github.com/livebook-dev/livebook/pull/1415)) - Started ignoring non-Livebook logs in the Attached runtime ([#1451](https://github.com/livebook-dev/livebook/pull/1451)) diff --git a/lib/livebook/settings.ex b/lib/livebook/settings.ex index 74bf464ce..2df255951 100644 --- a/lib/livebook/settings.ex +++ b/lib/livebook/settings.ex @@ -12,7 +12,7 @@ defmodule Livebook.Settings do @typedoc """ An id that is used for filesystem's manipulation, either insertion or removal. """ - @type file_system_id :: :local | String.t() + @type file_system_id :: String.t() @doc """ Returns the current autosave path. @@ -52,7 +52,7 @@ defmodule Livebook.Settings do @doc """ Returns all known filesystems with their associated ids. - In case of the local filesystem the id resolves to `:local` atom. + In case of the local filesystem the id resolves to `"local"`. """ @spec file_systems() :: [{file_system_id(), Filesystem.t()}] def file_systems() do