Skip to content

Commit fdea158

Browse files
committed
Release v0.14.0
1 parent b1a82ab commit fdea158

File tree

2 files changed

+14
-22
lines changed

2 files changed

+14
-22
lines changed

CHANGELOG.md

Lines changed: 13 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,34 @@
22

33
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
44

5-
## [v0.14.0-rc.1](https://github.com/livebook-dev/livebook/tree/v0.14.0-rc.1) (2024-08-19)
5+
## [v0.14.0](https://github.com/livebook-dev/livebook/tree/v0.14.0) (2024-08-26)
66

77
### Added
88

9+
* Introduced Fly.io runtime ([#2708](https://github.com/livebook-dev/livebook/pull/2708), [#2714](https://github.com/livebook-dev/livebook/pull/2714))
10+
* Added `LIVEBOOK_PUBLIC_BASE_URL_PATH` to serve public routes from a different base url path ([#2704](https://github.com/livebook-dev/livebook/pull/2704))
11+
* Suggestion to setup without cache on dependencies error ([#2716](https://github.com/livebook-dev/livebook/pull/2716))
12+
* Added FLAME runner cell
913
* Support for specifying column ratios in grid output ([#2718](https://github.com/livebook-dev/livebook/pull/2718))
1014
* Added go-to-definition feature for modules and functions defined in the notebook ([#2730](https://github.com/livebook-dev/livebook/pull/2730), [#2741](https://github.com/livebook-dev/livebook/pull/2741))
1115
* Documented how to use Nginx as a HTTPS proxy in front of Livebook ([#2735](https://github.com/livebook-dev/livebook/pull/2735))
1216
* Introduced nightly Docker image builds, tagged as `nightly` and `nightly-cuda12` ([#2739](https://github.com/livebook-dev/livebook/pull/2739))
1317
* Highlight for the relevant symbol when showing hover details in the code editor ([#2747](https://github.com/livebook-dev/livebook/pull/2747))
1418
* Link to live dashboard for the runtime node in the runtime panel ([#2754](https://github.com/livebook-dev/livebook/pull/2754))
19+
* Showing module definitions under the corresponding sections in the side panel ([#2760](https://github.com/livebook-dev/livebook/pull/2760))
1520

1621
### Changed
1722

23+
* Bumped versions to Elixir 1.17.2 in the Docker image and the desktop app
24+
* Change the scroll behavior to immediate jump when clicking a notebook sections ([#2705](https://github.com/livebook-dev/livebook/pull/2705))
25+
* Reduced the size of CUDA-enabled images by including only a subset of the CUDA toolkit ([#2724](https://github.com/livebook-dev/livebook/pull/2724))
1826
* Improved error message in the Fly runtime config when the app name is taken
1927
* (Desktop) The Windows installer to execute as normal user ([#2628](https://github.com/livebook-dev/livebook/pull/2628))
2028
* New Docker images with CUDA 12 are now tagged `*-cuda12` ([#2739](https://github.com/livebook-dev/livebook/pull/2739))
2129
* Restored browser-default outlines on tab-navigation ([#2749](https://github.com/livebook-dev/livebook/pull/2749))
2230
* Docker images with CUDA 12 now include cuDNN 9 for compatibility with nx/exla v0.8+
31+
* Renamed the "Sections" side panel to "Outline" (now under the `so` shortcut)
32+
* Changed shortcut for showing secrets panel from `se` to `ss`
2333

2434
### Removed
2535

@@ -29,30 +39,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
2939

3040
### Fixed
3141

42+
* (Desktop) Fixed opening an already open notebook ([#2709](https://github.com/livebook-dev/livebook/pull/2709))
43+
* Fixed horizontal editor scrollbar to not overlap content in Firefox
3244
* Page crash when creating a Fly volume fails
3345
* Fly runtime failing to reconnect when volume is not detached on time ([#2737](https://github.com/livebook-dev/livebook/pull/2737))
3446
* Slow file transfer when reading file and image inputs from a Fly runtime ([#2738](https://github.com/livebook-dev/livebook/pull/2738))
3547

36-
## [v0.14.0-rc.0](https://github.com/livebook-dev/livebook/tree/v0.14.0-rc.0) (2024-07-26)
37-
38-
### Added
39-
40-
* Introduced Fly.io runtime ([#2708](https://github.com/livebook-dev/livebook/pull/2708), [#2714](https://github.com/livebook-dev/livebook/pull/2714))
41-
* Added `LIVEBOOK_PUBLIC_BASE_URL_PATH` to serve public routes from a different base url path ([#2704](https://github.com/livebook-dev/livebook/pull/2704))
42-
* Suggestion to setup without cache on dependencies error ([#2716](https://github.com/livebook-dev/livebook/pull/2716))
43-
* Added FLAME runner cell
44-
45-
### Changed
46-
47-
* Bumped versions to Elixir 1.17.2 in the Docker image and the desktop app
48-
* Change the scroll behavior to immediate jump when clicking a notebook sections ([#2705](https://github.com/livebook-dev/livebook/pull/2705))
49-
* Reduced the size of CUDA-enabled images by including only a subset of the CUDA toolkit ([#2724](https://github.com/livebook-dev/livebook/pull/2724))
50-
51-
### Fixed
52-
53-
* (Desktop) Fixed opening an already open notebook ([#2709](https://github.com/livebook-dev/livebook/pull/2709))
54-
* Fixed horizontal editor scrollbar to not overlap content in Firefox
55-
5648
## v0.13
5749

5850
The CHANGELOG for v0.13 releases can be found in the [v0.13](https://github.com/livebook-dev/livebook/tree/v0.13/CHANGELOG.md) branch.

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ defmodule Livebook.MixProject do
66
use Mix.Project
77

88
@elixir_requirement "~> 1.16"
9-
@version "0.14.0-rc.1"
9+
@version "0.14.0"
1010
@description "Automate code & data workflows with interactive notebooks"
1111

1212
def project do

0 commit comments

Comments
 (0)