Skip to content

Releases: meadsteve/chaos-spawn

v0.8.1 - Removes call to `random` module deprecated in otp19.

02 Aug 07:12
Compare
Choose a tag to compare

Removes call to random module deprecated in otp19.

v0.8.0 - Version dep upgrades

01 Aug 18:47
Compare
Choose a tag to compare

Bumps to a stable version of timex with elixir 1.3 support.
This version now only supports >= elixir 1.3

v0.7.0

04 Dec 11:16
Compare
Choose a tag to compare

Fixes bug in supervisor and worker spec options (#18) thanks to @fishcakez.
Adds day of the week restrictions to when processes can be killed #16

v0.6.0

11 Nov 22:42
Compare
Choose a tag to compare

Adds the :id option to chaotic workers and supervisors

v0.5.0

11 Nov 21:41
Compare
Choose a tag to compare

Added helper logic for wrapping supervisors as well as workers (from previousrelease). Used as follows:

Replace a call to supervisor with a call to ChaosSpawn.Chaotic.ChaoticSupervisor.supervisor.
Any process of this child will then be automatically registered as a process that can be killed.

v0.3.0

24 Oct 14:49
Compare
Choose a tag to compare

Added helper logic for wrapping workers. Used as follows:

Replace a call to worker with a call to ChaosSpawn.Chaotic.ChaoticWorker.worker.
Any proceses of this child will then be automatically registered as a process that can be killed.

defmodule ChaosSpawn.Example.Supervisor do
  alias ChaosSpawn.Chaotic.ChaoticWorker

  def init(:ok) do
    children = [
      ChaoticWorker.worker(Some.Module, [:arg, :another_arg])
    ]

    supervise(children, strategy: :one_for_one)
  end

end

v0.2.0

15 Oct 07:04
Compare
Choose a tag to compare

Primarily adds new config option:

config :chaos_spawn, :only_kill_between, {{10, 00, 00}, {16, 00, 00}}

that limits killing to specific times of day.

v0.1.0

11 Oct 15:23
Compare
Choose a tag to compare
  • Logging is less noisey
  • process killing can be switched on and off.

v0.0.2

30 Sep 19:56
Compare
Choose a tag to compare

Added spawn macros.
Added GenEvent and GenServer helpers.
Added config options.

v0.0.1

29 Sep 15:14
Compare
Choose a tag to compare

Proof of concept but no useful controls.