Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.6.0 #36

Merged
merged 1 commit into from
Oct 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 17 additions & 17 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,34 +1,34 @@
# Changelog

## Next

- Upgrade Dialyxir
- Upgrade Build/CI targets to Elixir 1.15 & OTP 26
- Upgrade LiveDashboard to v0.8.2
- Upgrade LiveView to v0.20
- Rework module form validation to be more reliable
- Don't require `Elixir.` prefix on Elixir modules
- Rework trace_started? to not rely on Trace GenServer
- Run module/function validations on selected node (thanks @schrockwell)
- Upgrade LiveView to v0.18
## 0.6.0

- Upgrade Dialyxir
- Upgrade Build/CI targets to Elixir 1.15 & OTP 26
- Upgrade LiveDashboard to v0.8.2
- Upgrade LiveView to v0.20
- Rework module form validation to be more reliable
- Don't require `Elixir.` prefix on Elixir modules
- Rework trace_started? to not rely on Trace GenServer
- Run module/function validations on selected node (thanks @schrockwell)
- Upgrade LiveView to v0.18

## 0.5.2

- Improve performance by not rendering blocks smaller than 0.1% of the top block width (Thanks @schrockwell)
- Improve performance by not rendering blocks smaller than 0.1% of the top block width (Thanks @schrockwell)

## 0.5.1

- Support tracing functions with greater than 4 arity (Thanks @schrockwell)
- Support tracing functions with greater than 4 arity (Thanks @schrockwell)

## 0.5.0

- Rewrite underlying tracing/capture engine
- Rewrite underlying tracing/capture engine

## 0.4.0

- Allow targeting a node to run on, and honor dashboard node switcher
- Add commas to integers in tooltips for readability
- Allow targeting a node to run on, and honor dashboard node switcher
- Add commas to integers in tooltips for readability

## 0.3.0

- Upgrade eFlambe to 0.2.3 to resolve graph truncation and :not_mocked error
- Upgrade eFlambe to 0.2.3 to resolve graph truncation and :not_mocked error
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Add `:flame_on` to your dependencies:
```elixir
def deps do
[
{:flame_on, "~> 0.5.2"}
{:flame_on, "~> 0.6.0"}
]
end
```
Expand Down Expand Up @@ -74,7 +74,7 @@ Credit to [eFlambe](https://github.com/Stratus3D/eflambe) for being the original

## Authors

- [Mike Binns](https://github.com/TheFirstAvenger)
- [Mike Binns](https://github.com/TheFirstAvenger)

[We are very thankful for the many contributors](https://github.com/DockYard/flame_on/graphs/contributors)

Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule FlameOn.MixProject do
def project do
[
app: :flame_on,
version: "0.5.2",
version: "0.6.0",
elixir: "~> 1.15",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
Expand Down