Skip to content
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
11 changes: 6 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches: [main]

env:
MIX_ENV: test
elixir_version: '1.17.0'
otp_version: '26.2.5.6'

Expand Down Expand Up @@ -122,12 +123,12 @@ jobs:
uses: actions/cache@v4
id: plt_cache
with:
key: plt-${{ steps.beam.outputs.otp-version }}-${{ steps.beam.outputs.elixir-version }}-${{ hashFiles('**/mix.lock') }}-${{ hashFiles('**/*.ex') }}
key: plt-${{ env.otp_version }}-${{ env.elixir_version }}-${{ hashFiles('**/mix.lock') }}-${{ hashFiles('**/*.ex') }}
restore-keys: |
plt-${{ steps.beam.outputs.otp-version }}-${{ steps.beam.outputs.elixir-version }}-${{ hashFiles('**/mix.lock') }}-${{ hashFiles('**/*.ex') }}
plt-${{ steps.beam.outputs.otp-version }}-${{ steps.beam.outputs.elixir-version }}-${{ hashFiles('**/mix.lock') }}-
plt-${{ steps.beam.outputs.otp-version }}-${{ steps.beam.outputs.elixir-version }}-
plt-${{ steps.beam.outputs.otp-version }}-
plt-${{ env.otp_version }}-${{ env.elixir_version }}-${{ hashFiles('**/mix.lock') }}-${{ hashFiles('**/*.ex') }}
plt-${{ env.otp_version }}-${{ env.elixir_version }}-${{ hashFiles('**/mix.lock') }}-
plt-${{ env.otp_version }}-${{ env.elixir_version }}-
plt-${{ env.otp_version }}-
path: priv/plts

- name: Create PLTs
Expand Down
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ priv/static/*
# Ignore local .db files
/priv/*.db*

# Dialyzer
/priv/plts/*.plt
/priv/plts/*.plt.hash

# Ignore .tool-versions file
.tool-versions

8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
# CHANGELOG (v0.1.X)

## 0.1.7 🚀 (2025-03-21)
## 0.1.8 ()

### Backwards incompatible changes for 0.1.6
### Backwards incompatible changes for 0.1.7
* None

### Bug fixes
* Fixing possible pattern match error with Liveview Socket without URI
* None

### Enhancements
* [[`PR-13`](https://github.com/thiagoesteves/deployex/pull/13)] Fixed dialyzer configuration

# 🚀 Previous Releases
* [0.1.7 (2025-03-21)](https://github.com/thiagoesteves/observer_web/blob/v0.1.7/CHANGELOG.md)
* [0.1.6 (2025-03-21)](https://github.com/thiagoesteves/observer_web/blob/v0.1.6/CHANGELOG.md)
* [0.1.5 (2025-02-26)](https://github.com/thiagoesteves/observer_web/blob/v0.1.5/CHANGELOG.md)
* [0.1.4 (2025-02-11)](https://github.com/thiagoesteves/observer_web/blob/v0.1.4/CHANGELOG.md)
Expand Down
11 changes: 8 additions & 3 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ defmodule ObserverWeb.MixProject do
use Mix.Project

@source_url "https://github.com/thiagoesteves/observer_web"
@version "0.1.7"
@version "0.1.8"

def project do
[
Expand All @@ -21,7 +21,12 @@ defmodule ObserverWeb.MixProject do
docs: docs(),
deps: deps(),
test_coverage: [tool: ExCoveralls],
dialyzer: [ignore_warnings: ".dialyzer_ignore.exs"],
dialyzer: [
plt_add_apps: [:ex_unit, :mix],
check_plt: true,
plt_file: {:no_warn, "priv/plts/dialyzer.plt"},
ignore_warnings: ".dialyzer_ignore.exs"
],
preferred_cli_env: [
coveralls: :test,
"coveralls.detail": :test,
Expand Down Expand Up @@ -120,7 +125,7 @@ defmodule ObserverWeb.MixProject do

# Tooling
{:credo, "~> 1.7", only: [:test, :dev], runtime: false},
{:dialyxir, "~> 1.4", only: [:dev], runtime: false},
{:dialyxir, "~> 1.4", only: [:dev, :test], runtime: false},
{:floki, "~> 0.33", only: [:test, :dev]},
{:mox, "~> 1.0", only: :test},
{:excoveralls, "~> 0.18", only: :test},
Expand Down