Skip to content

Commit 55e3dd8

Browse files
committed
Release: v0.8.0
1 parent 443b6da commit 55e3dd8

4 files changed

Lines changed: 33 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,34 @@
11
# Changelog
22

3+
## 0.8.0 (2026-04-21)
4+
5+
### Features
6+
* Open callback implementation in editor in [#959](https://github.com/software-mansion/live-debugger/pull/959)
7+
8+
### Bug fixes
9+
* Fix endless reload loop in [#960](https://github.com/software-mansion/live-debugger/pull/960)
10+
* Fix filters buttons in [#963](https://github.com/software-mansion/live-debugger/pull/963)
11+
* Fix highlighting LiveViews by their children bounding boxes in [#976](https://github.com/software-mansion/live-debugger/pull/976)
12+
* Fix trace fullscreen highlighting in [#971](https://github.com/software-mansion/live-debugger/pull/971)
13+
* Disable tracing when heap size limit is reached in [#972](https://github.com/software-mansion/live-debugger/pull/972)
14+
15+
### Enhancements
16+
* Create groups for settings in [#958](https://github.com/software-mansion/live-debugger/pull/958)
17+
* Isolate LiveDebugger injected assets from debugged app in [#964](https://github.com/software-mansion/live-debugger/pull/964)
18+
* Refactor tooltips content in [#961](https://github.com/software-mansion/live-debugger/pull/961)
19+
* Add info to the remaining node inspector sections in [#969](https://github.com/software-mansion/live-debugger/pull/969)
20+
21+
### Other
22+
* Docs: Update images and feature overview in docs in [#977](https://github.com/software-mansion/live-debugger/pull/977)
23+
* Docs: Fix urls for LiveDebugger Tour in [#978](https://github.com/software-mansion/live-debugger/pull/978)
24+
* Docs: Update README with ad servers and fix links in [#968](https://github.com/software-mansion/live-debugger/pull/968), [#965](https://github.com/software-mansion/live-debugger/pull/965)
25+
* Docs: website updates v0.7.0 in [#955](https://github.com/software-mansion/live-debugger/pull/955)
26+
* Tests: Migrate remaining e2e tests to Playwright in [#947](https://github.com/software-mansion/live-debugger/pull/947), [#953](https://github.com/software-mansion/live-debugger/pull/953)
27+
* Tests: Fix flaky e2e tests and adjust shadow dom in [#951](https://github.com/software-mansion/live-debugger/pull/951), [#967](https://github.com/software-mansion/live-debugger/pull/967)
28+
* Chore: update version in [#954](https://github.com/software-mansion/live-debugger/pull/954)
29+
30+
---
31+
332
## 0.7.0 (2026-03-17)
433

534
### Features

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Add `live_debugger` to your list of dependencies in `mix.exs`:
5353
```elixir
5454
defp deps do
5555
[
56-
{:live_debugger, "~> 0.7.0", only: :dev}
56+
{:live_debugger, "~> 0.8.0", only: :dev}
5757
]
5858
end
5959
```

docs/welcome.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Add `live_debugger` to your list of dependencies in `mix.exs`:
3636
```elixir
3737
defp deps do
3838
[
39-
{:live_debugger, "~> 0.7.0", only: :dev}
39+
{:live_debugger, "~> 0.8.0", only: :dev}
4040
]
4141
end
4242
```

mix.exs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule LiveDebugger.MixProject do
22
use Mix.Project
33

4-
@version "0.8.0-dev"
4+
@version "0.8.0"
55

66
def project do
77
[
@@ -125,7 +125,7 @@ defmodule LiveDebugger.MixProject do
125125
],
126126
source_url: "https://github.com/software-mansion/live-debugger",
127127
homepage_url: "https://docs.swmansion.com/live-debugger/",
128-
source_ref: @version,
128+
source_ref: "v#{@version}",
129129
api_reference: false,
130130
assets: %{
131131
Path.expand("./docs/images") => "images"

0 commit comments

Comments
 (0)