Skip to content

Releases: randycoulman/mix_test_interactive

v2.0.4

05 Mar 04:40
4272f69
Compare
Choose a tag to compare

Fixed

  • Ignore some filesystem events emitted by inotify. Some events are triggered later than others and end up causing the tests to run twice for a single file change. (#86 - Thanks @jwilger!)

v2.0.3

27 Jan 19:12
935d494
Compare
Choose a tag to compare

Changed

  • Update file_system dependency to allow versions 0.2 and 1.0 to avoid dependency conflicts with popular libraries like phoenix_live_reload. Previously, we'd specified v0.3, but there is no such version of file_system. (#83)

v2.0.2

26 Jan 04:44
c9ae339
Compare
Choose a tag to compare

Changed

  • Allow file_system versions 0.3 and 1.0 to avoid dependency conflicts with popular libraries like phoenix_live_reload. (#81)

v2.0.1

26 Jan 04:32
f025948
Compare
Choose a tag to compare

Fixed

  • Make the styler dependency a dev-only dependency to avoid pulling it into client projects with a potential version conflict. (#79)

v2.0.0

23 Jan 04:15
Compare
Choose a tag to compare

💥 BREAKING CHANGES 💥

  • This release drops support for older Elixir versions. We officially support the same versions as Elixir itself, so support for Elixir 1.11 and prior has been dropped. (#67, #75)
  • Upgrade file_system dependency to version 1.0. This appears to be a simple bump to 1.0 with no breaking changes, so should be safe to upgrade to. It might break dependency resolution if you're locked to a pre-1.0 version, so it's noted here. (#72 - Thanks @andyl!)

There are no actual breaking changes, so as long as you're on Elixir 1.12 or later and aren't depending on a pre-1.0 version of file_system, you should have no problems upgrading to this version.

Added

  • Add full task documentation. mix help test.interactive will now show a summary of usage and configuration information (#70)
  • Add support for newer mix test options (#71)

v1.2.2 - Repository Transfer

15 Nov 15:53
1547f66
Compare
Choose a tag to compare

No functional changes; purely administrative.

Changed

v1.2.1

01 Jun 20:26
d43498a
Compare
Choose a tag to compare

Fixed

  • Include .heex in list of watched file extensions
    (#57 - Thanks @juddey!)

v1.2.0

07 Apr 22:06
05b7d92
Compare
Choose a tag to compare

Changed

  • Now tested against Elixir 1.12 and 1.13. (#55)
  • Misc. dependency upgrades. (#55)

Documentation

  • Include proper source ref in the generated documentation so that it now points at the correct version of the source code. (#51 - Thanks @kianmeng!)

  • Include license and changelog in generated documentation. (#51 - Thanks @kianmeng!)

v1.1.0

08 Oct 20:57
6ce4ea1
Compare
Choose a tag to compare

Fixed

  • The p (pattern) command now works properly in umbrella projects. Previously, it was unable to find any test files in order to filter the pattern and would therefore not run any tests. Now, in an umbrella project, mix test.interactive looks for test files in apps/*/test by default, but still respects the :test_paths config option used by mix test. (#48)

Documentation

  • Fixed the spelling of Louis Pilfold's name in the README. Sorry, Louis! 🤦‍♂️ (#49)

v1.0.1

09 Mar 22:19
a7411c3
Compare
Choose a tag to compare

Fixed

  • Eliminates a GenServer call timeout that can occur if a command is typed while a long-running test run is in progress. (#44).