Packages
eventstore
1.2.3
1.4.8
1.4.7
1.4.6
1.4.4
1.4.3
1.4.2
1.4.1
1.4.0
1.3.2
1.3.1
1.3.0
1.2.3
1.2.2
1.2.1
1.2.0
1.1.0
1.0.3
1.0.2
1.0.1
1.0.0
1.0.0-rc.0
0.17.0
0.16.2
0.16.1
0.16.0
0.15.1
0.15.0
0.14.0
0.14.0-rc.0
0.13.2
0.13.1
0.13.0
0.12.1
0.12.0
0.11.0
0.11.0-rc.0
0.10.1
0.10.0
0.9.0
0.8.1
0.8.0
0.7.4
0.7.3
0.7.2
0.7.1
0.7.0
0.6.2
0.6.1
0.6.0
0.5.2
0.5.1
0.5.0
0.4.3
0.4.2
0.4.1
0.4.0
0.3.0
0.2.1
0.2.0
0.1.0
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Event store using PostgreSQL for persistence.
Current section
65 Versions
Jump to
Current section
65 Versions
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…