summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorCarlos Martín Nieto <cmn@dwim.me>2015-10-13 11:25:41 +0200
committerCarlos Martín Nieto <cmn@dwim.me>2015-11-03 08:10:29 -0800
commit7fafde632580f75ff3647ddf9e1e92ee388f317e (patch)
treed5ca0c2de9d73d24313366d89110c2d7c0b17a7a /CHANGELOG.md
parentd39f643a0a09336ad77f04b7037cbc1c486bdd50 (diff)
downloadlibgit2-7fafde632580f75ff3647ddf9e1e92ee388f317e.tar.gz
stream: allow registering a user-provided TLS constructorcmn/tls-register
This allows the application to use their own TLS stream, regardless of the capabilities of libgit2 itself.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0b2e43308..dec40e49e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -17,11 +17,16 @@ v0.23 + 1
the opportunity for concurrent operations and not committing any
changes until the unlock.
+
* `git_diff_options` added a new callback `progress_cb` to report on the
progress of the diff as files are being compared. The documentation of
the existing callback `notify_cb` was updated to reflect that it only
gets called when new deltas are added to the diff.
+* `git_stream_register_tls()` lets you register a callback to be used
+ as the constructor for a TLS stream instead of the libgit2 built-in
+ one.
+
### API removals
### Breaking API changes