CHANGES 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. In 3.4.0
  2. * Use rebar3 as default build and test tool
  3. * Move tests to common test; launch test postgresql server from Erlang
  4. * Compatibility with Erlang 20
  5. * `ssl_options` connection option fixed
  6. * New types: int8range and int4range
  7. In 3.3.0
  8. * Streaming replication protocol support (epgsql may act like PostgreSQL slave)
  9. https://github.com/epgsql/epgsql/blob/devel/streaming.md
  10. * Connection options now may be passed as map()
  11. * More error extra data fields returned in #error{extra}
  12. http://www.postgresql.org/docs/current/interactive/protocol-error-fields.html
  13. * Prefer non-localized severity in #error{severity} when available
  14. * Added `set_notice_receiver/2` function to dynamically change receiver for asynchronous notifications
  15. * Asynchronous notifications receiver may be set to registered process name (atom)
  16. * `get_cmd_status/1` function added
  17. * Fixed return value of `DELETE ... RETURNING ..` in case when 0 rows were deleted
  18. (now returns `{ok, 0, Columns, []}` instead of `{ok, 0}`)
  19. * TCP socket implicitly closed when epgsql connection process terminates
  20. * Some typespecs fixed
  21. In 3.2.0:
  22. * #error.codename (more readable errors)
  23. * Redshift support (by allowing dynamic typecache update fail)
  24. * Aggregate small binary packets to one in epgsql_sock (network performance improvement)
  25. * Handle situations, when server initiate connection close
  26. * prepared_query APIs (useful when you need to execute one query many times with different parameters)
  27. * array of records type support
  28. * jsonb type support
  29. In 3.1.1:
  30. * It dialyzes happily now
  31. In 3.1.0:
  32. * Deal with int4range type.
  33. In 3.0.0:
  34. * Renamed everything to use the epgsql namespace.