-
Notifications
You must be signed in to change notification settings - Fork 296
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
persistent-postgresql: add
createPostgresqlPoolTailored
function (#…
…1511) * persistent-postgresql: add `createPostgresqlPoolTailored` function This change adds a connection pool creation function that is just like the `createPostgresqlPoolModifiedWithVersion` function but that can take a custom `open'`-like connection-creation function. The motivation for this change is that we need to be able to customize the resource creation action dynamically at run-time. * persistent-postgresql: version `2.13.5.2` -> `2.13.6` This change alters the API surface (via addition) and, as-per `CONTRIBUTING.md`, requires a `C` bump. * persistent-postgresql: update `@since` decl for bumped version * persistent-postgresql: run `stylish-haskell` on `Postgresql.hs` * persistent-postgresql: update `ChangeLog.md` * persistent-postgresql: follow the same comment style * persistent-postgresql: remove comment that offends haddock parser * persistent-postgresql: expose `createBackend` ... so that users can construct their own `open'`-like function. * persistent-postgresql: expose `getServerVersion` ... so users don't have to write their own. * Update `Changelog.md` to reflect b03fc4f and 9788fad * Minor improvement to CHANGELOG.md to also trigger CI As requested by @parsonsmatt.
- Loading branch information
Showing
3 changed files
with
44 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
name: persistent-postgresql | ||
version: 2.13.5.2 | ||
version: 2.13.6 | ||
license: MIT | ||
license-file: LICENSE | ||
author: Felipe Lessa, Michael Snoyman <[email protected]> | ||
|