All Versions
53
Latest Version
Avg Release Cycle
6 days
Latest Release
-

Changelog History
Page 4

  • v0.3.5 Changes

    • ๐Ÿ‘ better error messages; issue #33
    • not retrying a connection when the server is not available/started
    • incorrect number of retries, performed by the driver in case of errors; was one extra
  • v0.3.4 Changes

    • โšก๏ธ dependencies update, minor code cleanup, listening to Credo :) and finally using a Markdown linter
  • v0.3.3 Changes

    • โž• Add link to travis build; #31 by vic
  • v0.3.2 Changes

    • ๐Ÿ”ง Use the project's own configuration file when executing the bolt.cypher mix task. Fixes issue #20
  • v0.3.1 Changes

    • ๐Ÿ”จ rollback/refactor to optionally allow external configuration options to be defined at runtime. You must start the Bolt.Sips manually, when needed, i.e. Bolt.Sips.start_link(url: "localhost"), or by changing your app's mix config file, i.e.
    def application do
      [applications: [:logger, :bolt_sips],
       mod: {Bolt.Sips.Application, []}]
    end
    

    ๐Ÿ”ง You can also specify custom configuration settings in you app's mix config file. These may overwrite your config file:

    def application do
      [extra_applications: [:logger], mod:
        {Bolt.Sips.Application, [url: 'localhost', pool_size: 15]}
      ]
    end
    
    • code cleanup
  • v0.2.6 Changes

    April 21, 2017
    • โšก๏ธ cleanup, and minor dependencies update
  • v0.2.5 Changes

    March 22, 2017
    • ๐Ÿ split multi-line Cypher statements containing semicolons only if the ; character is at the end of the line, followed by \r\n on Windows and \n on Unix like system, otherwise it may break the Cypher statement when the semicolon appears somewhere else
  • v0.2.4 Changes

    February 26, 2017
    • โž• add the fuzzyurl to the list of apps, for project using Elixir < 1.4 (thank you, @dnesteryuk!)
  • v0.2.3 Changes

    February 26, 2017
    • ๐Ÿ‘Œ improved connection handling
  • v0.2.2 Changes

    February 24, 2017
    • PR #18; Bring up :boltex and :retry in applications, for Elixir < 1.4 (from: @wli0503, thank you!)
    • โœ… PR #19; test for error message on invalid parameter types (from: @vic, thank you!).