Current section

65 Versions

Jump to

Compare versions

7 files changed
+17 additions
-8 deletions
  @@ -1,5 +1,10 @@
1 1 # Changelog
2 2
3 + ## v1.2.3
4 +
5 + - Add `:configure` to postgrex connection options ([#233](https://github.com/commanded/eventstore/pull/233)).
6 + - Use runtime configuration in Mix tasks ([#236](https://github.com/commanded/eventstore/pull/236)).
7 +
3 8 ## v1.2.2
4 9
5 10 - Read stream and stream events backward ([#234](https://github.com/commanded/eventstore/pull/234)).
  @@ -247,6 +247,7 @@ EventStore exists thanks to the following people who have contributed.
247 247
248 248 - [Andreas Riemer](https://github.com/arfl)
249 249 - [Andrey Akulov](https://github.com/astery)
250 + - [Basile Nouvellet](https://github.com/BasileNouvellet)
250 251 - [Ben Smith](https://github.com/slashdotdash)
251 252 - [Bruce Williams](https://github.com/bruce)
252 253 - [Chris Brodt](https://github.com/uberbrodt)
Failed to load diff
  @@ -92,7 +92,7 @@
92 92 <<"CHANGELOG.md">>]}.
93 93 {<<"licenses">>,[<<"MIT">>]}.
94 94 {<<"links">>,
95 - [{<<"Changelog">>,<<"https://hexdocs.pm/eventstore/1.2.2/changelog.html">>},
95 + [{<<"Changelog">>,<<"https://hexdocs.pm/eventstore/1.2.3/changelog.html">>},
96 96 {<<"GitHub">>,<<"https://github.com/commanded/eventstore">>}]}.
97 97 {<<"name">>,<<"eventstore">>}.
98 98 {<<"requirements">>,
  @@ -126,4 +126,4 @@
126 126 {<<"optional">>,true},
127 127 {<<"repository">>,<<"hexpm">>},
128 128 {<<"requirement">>,<<"~> 1.5">>}]]}.
129 - {<<"version">>,<<"1.2.2">>}.
129 + {<<"version">>,<<"1.2.3">>}.
  @@ -69,6 +69,7 @@ defmodule EventStore.Config do
69 69 :password,
70 70 :database,
71 71 :hostname,
72 + :configure,
72 73 :port,
73 74 :types,
74 75 :socket,
Loading more files…