All Versions
25
Latest Version
Avg Release Cycle
48 days
Latest Release
1387 days ago

Changelog History
Page 1

  • v5.0.0 Changes

    June 10, 2020

    ๐Ÿ› Bug Fixes

    • neuron.connection.http: fix error case so return value matches typespec (#60) (b96d871), closes #59

    ๐Ÿ’ฅ BREAKING CHANGES

    • neuron.connection.http: If your code expects the response field of JSONParseError to be a tuple, it will break.
  • v4.1.2 Changes

    February 19, 2020

    ๐Ÿ› Bug Fixes

    • โš  warning: compile time warning (default arguments in handle/3 are never used) (75c151c)
  • v4.1.1 Changes

    December 26, 2019

    ๐Ÿ› Bug Fixes

    • fragments: remove duplicate fragments when inserting them into the query (d3a5c3d), closes #56
  • v4.1.0 Changes

    November 21, 2019

    ๐Ÿ”‹ Features

    • connection: Allow to inject custom connection module (f22287e)
  • v4.0.0 Changes

    October 25, 2019

    ๐Ÿ› Bug Fixes

    • connection: fix function signature for Neuron.Connection.post (82817e7)
    • typespecs: Fix typespecs for Neuron.query/3 and Neuron.Store.set/3 (263fef4)

    ๐Ÿ”‹ Features

    • fragment: raise Neuron.MissingFragmentsError for queries with missing fragments (75ddf54)

    ๐Ÿ’ฅ BREAKING CHANGES

    • fragment: Queries with missing fragments will now raise Neuron.MissingFragmentsError instead of a regular exception.
  • v3.0.1 Changes

    August 26, 2019

    ๐Ÿ› Bug Fixes

    • deps: Make poison a test dependency (d75e10b)
  • v3.0.0 Changes

    August 23, 2019

    ๐Ÿ”‹ Features

    • json: Use Jason as default JSOn library (3b4e472)

    ๐Ÿ’ฅ BREAKING CHANGES

    • json: JSON parsing library is now Jason. In order to keep using Poison ๐Ÿ”ง you'll need to manually add it as a dependency and configure neuron to ๐Ÿ‘‰ use it by running Neuron.Config.set(json_library: AnotherJSONLibrary).
  • v2.0.0 Changes

    June 26, 2019

    chore

    • deps: Update poison to 4.0, mock to 0.3.3 and coverex to 1.5 (600db92)

    ๐Ÿ’ฅ BREAKING CHANGES

    • Now requires elixir >= 1.6
  • v1.2.0 Changes

    May 30, 2019

    ๐Ÿ”‹ Features

    • fragment: recursively embed fragments (3807d89)
  • v1.1.1 Changes

    March 14, 2019

    ๐Ÿ› Bug Fixes

    • typespecs: Fix typespec for Neuron.query/3 (e267f8c), closes #31