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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

### Fixed
- Reverted `:igniter` dependency from `only: [:dev, :test], runtime: false` back to `optional: true`, restoring correct Igniter behaviour for generator tasks.
- Fix jason dependency version requirement to allow for newer versions.

## [v0.3.0] - 2026-04-28

### Added
Expand Down
6 changes: 3 additions & 3 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ defmodule Permit.Ecto.MixProject do
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:permit, "~> 0.4.0"},
{:permit, "~> 0.4.1"},
{:ecto, ">= 3.11.2 and < 4.0.0"},
{:ecto_sql, ">= 3.11.0"},
{:postgrex, "~> 0.16", only: :test},
{:jason, "~> 1.3", only: [:dev, :test]},
{:jason, "~> 1.3"},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:dialyxir, "~> 1.3", only: [:dev, :test], runtime: false},
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
Expand All @@ -68,7 +68,7 @@ defmodule Permit.Ecto.MixProject do

defp igniter_dep do
if Version.match?(System.version(), ">= 1.15.0") do
[{:igniter, "~> 0.5", only: [:dev, :test], runtime: false}]
[{:igniter, "~> 0.5", optional: true, runtime: false}]
else
[]
end
Expand Down
Loading
Loading