-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a394821
commit 51d904c
Showing
1 changed file
with
39 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
## 2.0 (2020-05-06) | ||
|
||
### Added | ||
|
||
- Streaming `execute_` helpers: `execute_map`, `execute_iter`, `execute_fold`, and `execute_pipe`. | ||
- `Param.Array` now supports lists, which is useful for `IN ($1)` clauses. | ||
|
||
### Changed | ||
|
||
- Make `connect`'s `port` argument optional | ||
- Support Core v0.13 | ||
- Result sets that don't contain row data aren't returned. For example, `INSERT ...; SELECT ...` now returns one | ||
result set instead of two. | ||
|
||
### Fixed | ||
|
||
- Correctly use `port` when provided | ||
- Various [upstream fixes in `ocaml-freetds`](https://github.com/kennknowles/ocaml-freetds/releases/tag/0.7) | ||
- Exceptions shouldn't break the connection handle | ||
- Runtime lock released during queries | ||
- Logging always occurs in an Async context | ||
- Logging occurs in the same Async context as the caller and not a random one | ||
- We depend on Async_extra | ||
|
||
### Removed | ||
|
||
- `Mssql.Test`. This module was for testing and shouldn't have been part of the public API. We recommend adding a | ||
module like this to your own code if you want it. | ||
- Semi-broken connection pool (`Mssql.Pool`) removed. Doing this safely requires setting the | ||
[`RESETCONNECTION` bit](https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-tds/ce398f9a-7d47-4ede-8f36-9dd6fc21ca43), | ||
which doesn't seem to be possible in FreeTDS. | ||
|
||
## 1.1 (2019-01-29) | ||
|
||
- Switch build command from jbuilder to dune | ||
|
||
## 1.0 (2019-01-28) | ||
|
||
Initial release |