Skip to content

Commit 64b7122

Browse files
authored
Chore: update version (#954)
* Update versions * Update changelog
1 parent 97ed142 commit 64b7122

File tree

4 files changed

+44
-3
lines changed

4 files changed

+44
-3
lines changed

CHANGELOG.md

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

3+
## 0.7.0 (2026-03-17)
4+
5+
### Features
6+
* Add flash message when LiveView crashes in [#923](https://github.com/software-mansion/live-debugger/pull/923)
7+
* Add `:auto_port` and `:ignore_startup_errors` configs in [#950](https://github.com/software-mansion/live-debugger/pull/950)
8+
* Add components tree as filter to global callback traces in [#945](https://github.com/software-mansion/live-debugger/pull/945)
9+
10+
### Bug fixes
11+
* Fix startup error associated with missing timezone in [#938](https://github.com/software-mansion/live-debugger/pull/938)
12+
* DeadView mode sometimes is not triggered properly in [#939](https://github.com/software-mansion/live-debugger/pull/939)
13+
* Fix spacing in open in editor button in [#949](https://github.com/software-mansion/live-debugger/pull/949)
14+
15+
### Enhancements
16+
* Add better indicator of selected node in [#916](https://github.com/software-mansion/live-debugger/pull/916)
17+
* Allow opening LiveView/LiveComponent in editor in [#925](https://github.com/software-mansion/live-debugger/pull/925)
18+
* Use telemetry event for updating components tree in [#926](https://github.com/software-mansion/live-debugger/pull/926)
19+
* Better description in active LiveViews in [#940](https://github.com/software-mansion/live-debugger/pull/940)
20+
* Improve displaying nested LiveViews in [#936](https://github.com/software-mansion/live-debugger/pull/936)
21+
* Cleanup LiveDebugger logs in [#942](https://github.com/software-mansion/live-debugger/pull/942)
22+
* Moved copy and history buttons to all assigns in [#943](https://github.com/software-mansion/live-debugger/pull/943)
23+
* Assigns section polish in [#946](https://github.com/software-mansion/live-debugger/pull/946)
24+
25+
### Other
26+
* Docs: Update website after v0.6.0 release in [#922](https://github.com/software-mansion/live-debugger/pull/922)
27+
* Chore: update version in [#921](https://github.com/software-mansion/live-debugger/pull/921)
28+
* Chore: fix process monitor reconnect test case in [#944](https://github.com/software-mansion/live-debugger/pull/944)
29+
* Tests: Setup Playwright in [#919](https://github.com/software-mansion/live-debugger/pull/919)
30+
31+
## 0.6.1 (2026-02-27)
32+
33+
### Features
34+
* Allow configuring endpoint drainer in [#933](https://github.com/software-mansion/live-debugger/pull/933)
35+
36+
### Bug fixes
37+
* Use `handle_continue` to continue init instead of sending a message to self in [#929](https://github.com/software-mansion/live-debugger/pull/929)
38+
* Enhanced performance of LiveDebugger init in [#928](https://github.com/software-mansion/live-debugger/pull/928)
39+
40+
### Enhancements
41+
* Better version checks in [#935](https://github.com/software-mansion/live-debugger/pull/935)
42+
* Support Unix socket IP in endpoint configuration in [#924](https://github.com/software-mansion/live-debugger/pull/924)
43+
344
## 0.6.0 (2026-02-05)
445

546
### Features

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Add `live_debugger` to your list of dependencies in `mix.exs`:
3333
```elixir
3434
defp deps do
3535
[
36-
{:live_debugger, "~> 0.6.0", only: :dev}
36+
{:live_debugger, "~> 0.7.0", only: :dev}
3737
]
3838
end
3939
```

docs/welcome.md

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

mix.exs

Lines changed: 1 addition & 1 deletion
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.7.0-dev"
4+
@version "0.8.0-dev"
55

66
def project do
77
[

0 commit comments

Comments
 (0)