]> git.proxmox.com Git - libgit2.git/blame - CHANGELOG.md
CHANGELOG: add note about WinHTTP cred handling
[libgit2.git] / CHANGELOG.md
CommitLineData
159061a8
CMN
1v0.23 + 1
2-------
3
4### Changes or improvements
5
9a99ca7b
ET
6* Custom filters can now be registered with wildcard attributes, for
7 example `filter=*`. Consumers should examine the attributes parameter
8 of the `check` function for details.
9
d83b2e9f
CMN
10* Symlinks are now followed when locking a file, which can be
11 necessary when multiple worktrees share a base repository.
12
027bbaa7
CMN
13* You can now set your own user-agent to be sent for HTTP requests by
14 using the `GIT_OPT_SET_USER_AGENT` with `git_libgit2_opts()`.
15
82885255
CMN
16* You can set custom HTTP header fields to be sent along with requests
17 by passing them in the fetch and push options.
18
fc436469
CMN
19* Tree objects are now assumed to be sorted. If a tree is not
20 correctly formed, it will give bad results. This is the git approach
21 and cuts a significant amount of time when reading the trees.
22
f596946f
CMN
23* Filter registration is now protected against concurrent
24 registration.
25
26* Filenames which are not valid on Windows in an index no longer cause
27 to fail to parse it on that OS.
28
29* Rebases can now be performed purely in-memory, without touching the
30 repository's workdir.
31
f2dddf52
ET
32* When adding objects to the index, or when creating new tree or commit
33 objects, the inputs are validated to ensure that the dependent objects
34 exist and are of the correct type. This object validation can be
35 disabled with the GIT_OPT_ENABLE_STRICT_OBJECT_CREATION option.
36
a7ef27af
CMN
37* The WinHTTP transport's handling of bad credentials now behaves like
38 the others, asking for credentials again.
39
159061a8
CMN
40### API additions
41
5340d63d
CMN
42* `git_config_lock()` has been added, which allow for
43 transactional/atomic complex updates to the configuration, removing
44 the opportunity for concurrent operations and not committing any
45 changes until the unlock.
36f784b5 46
3138ad93
JH
47* `git_diff_options` added a new callback `progress_cb` to report on the
48 progress of the diff as files are being compared. The documentation of
49 the existing callback `notify_cb` was updated to reflect that it only
50 gets called when new deltas are added to the diff.
51
82885255
CMN
52* `git_fetch_options` and `git_push_options` have gained a `custom_headers`
53 field to set the extra HTTP header fields to send.
54
7fafde63
CMN
55* `git_stream_register_tls()` lets you register a callback to be used
56 as the constructor for a TLS stream instead of the libgit2 built-in
57 one.
58
f596946f
CMN
59* `git_commit_header_field()` allows you to look up a specific header
60 field in a commit.
61
62* `git_commit_extract_signature()` extracts the signature from a
63 commit and gives you both the signature and the signed data so you
64 can verify it.
65
159061a8
CMN
66### API removals
67
79698030
ET
68### Breaking API changes
69
fa78782f
ET
70* The `git_merge_tree_flag_t` is now `git_merge_flag_t`. Subsequently,
71 its members are no longer prefixed with `GIT_MERGE_TREE_FLAG` but are
72 now prefixed with `GIT_MERGE_FLAG`, and the `tree_flags` field of the
73 `git_merge_options` structure is now named `flags`.
74
75* The `git_merge_file_flags_t` enum is now `git_merge_file_flag_t` for
76 consistency with other enum type names.
77
79698030
ET
78* `git_cert` descendent types now have a proper `parent` member
79
fec4a68c 80* It is the responsibility of the refdb backend to decide what to do
01d0c02d
CMN
81 with the reflog on ref deletion. The file-based backend must delete
82 it, a database-backed one may wish to archive it.
83
36f784b5
CMN
84* `git_config_backend` has gained two entries. `lock` and `unlock`
85 with which to implement the transactional/atomic semantics for the
86 configuration backend.
87
ad8509ef
CMN
88* `git_index_add` and `git_index_conflict_add()` will now use the case
89 as provided by the caller on case insensitive systems. Previous
90 versions would keep the case as it existed in the index. This does
91 not affect the higher-level `git_index_add_bypath` or
92 `git_index_add_frombuffer` functions.
a32bc85e 93
3138ad93
JH
94* The `notify_payload` field of `git_diff_options` was renamed to `payload`
95 to reflect that it's also the payload for the new progress callback.
96
82885255
CMN
97* The `git_config_level_t` enum has gained a higher-priority value
98 `GIT_CONFIG_LEVEL_PROGRAMDATA` which represent a rough Windows equivalent
99 to the system level configuration.
100
f596946f
CMN
101* `git_rebase_init()` not also takes a merge options.
102
103* The index no longer performs locking itself. This is not something
104 users of the library should have been relying on as it's not part of
105 the concurrency guarantees.
106
159061a8 107v0.23
c8b64f70
CMN
108------
109
16bcf0c7
CMN
110### Changes or improvements
111
70b0f128
JG
112* Patience and minimal diff drivers can now be used for merges.
113
114* Merges can now ignore whitespace changes.
115
0161e096
SS
116* Updated binary identification in CRLF filtering to avoid false positives in
117 UTF-8 files.
118
4d6f55ac
ET
119* Rename and copy detection is enabled for small files.
120
96b82b11
ET
121* Checkout can now handle an initial checkout of a repository, making
122 `GIT_CHECKOUT_SAFE_CREATE` unnecessary for users of clone.
123
659cf202
CMN
124* The signature parameter in the ref-modifying functions has been
125 removed. Use `git_repository_set_ident()` and
126 `git_repository_ident()` to override the signature to be used.
127
0ef54a63
CMN
128* The local transport now auto-scales the number of threads to use
129 when creating the packfile instead of sticking to one.
130
8acf058f
CMN
131* Reference renaming now uses the right id for the old value.
132
133* The annotated version of branch creation, HEAD detaching and reset
134 allow for specifying the expression from the user to be put into the
135 reflog.
136
aa9bb425 137* `git_rebase_commit` now returns `GIT_EUNMERGED` when you attempt to
eaf0d688
ET
138 commit with unstaged changes.
139
85247df0 140* On Mac OS X, we now use SecureTransport to provide the cryptographic
ca2466ff 141 support for HTTPS connections insead of OpenSSL.
85247df0 142
1f1f5c63
ET
143* Checkout can now accept an index for the baseline computations via the
144 `baseline_index` member.
145
b1ae3e53
CMN
146* The configuration for fetching is no longer stored inside the
147 `git_remote` struct but has been moved to a `git_fetch_options`. The
148 remote functions now take these options or the callbacks instead of
149 setting them beforehand.
150
ca2466ff
CMN
151* `git_submodule` instances are no longer cached or shared across
152 lookup. Each submodule represents the configuration at the time of
153 loading.
154
874cc35a
CMN
155* The index now uses diffs for `add_all()` and `update_all()` which
156 gives it a speed boost and closer semantics to git.
157
e3435673
CMN
158* The ssh transport now reports the stderr output from the server as
159 the error message, which allows you to get the "repository not
160 found" messages.
161
ecd60a56
ET
162* `git_index_conflict_add()` will remove staged entries that exist for
163 conflicted paths.
b1ae3e53 164
10549a2d
ET
165* The flags for a `git_diff_file` will now have the `GIT_DIFF_FLAG_EXISTS`
166 bit set when a file exists on that side of the diff. This is useful
167 for understanding whether a side of the diff exists in the presence of
168 a conflict.
b1ae3e53 169
a5670d4f
CMN
170* The constructor for a write-stream into the odb now takes
171 `git_off_t` instead of `size_t` for the size of the blob, which
172 allows putting large files into the odb on 32-bit systems.
173
771069e1
PS
174* The remote's push and pull URLs now honor the url.$URL.insteadOf
175 configuration. This allows modifying URL prefixes to a custom
176 value via gitconfig.
177
0e522f6e
ET
178* `git_diff_foreach`, `git_diff_blobs`, `git_diff_blob_to_buffer`,
179 and `git_diff_buffers` now accept a new binary callback of type
180 `git_diff_binary_cb` that includes the binary diff information.
181
bb4896f2
CMN
182* The race condition mitigations described in `racy-git.txt` have been
183 implemented.
184
ede517bc
CMN
185* If libcurl is installed, we will use it to connect to HTTP(S)
186 servers.
187
16bcf0c7
CMN
188### API additions
189
70b0f128
JG
190* The `git_merge_options` gained a `file_flags` member.
191
eac773d9
CMN
192* Parsing and retrieving a configuration value as a path is exposed
193 via `git_config_parse_path()` and `git_config_get_path()`
194 respectively.
195
659cf202
CMN
196* `git_repository_set_ident()` and `git_repository_ident()` serve to
197 set and query which identity will be used when writing to the
198 reflog.
199
9a97f49e
CMN
200* `git_config_entry_free()` frees a config entry.
201
202* `git_config_get_string_buf()` provides a way to safely retrieve a
203 string from a non-snapshot configuration.
204
8acf058f
CMN
205* `git_annotated_commit_from_revspec()` allows to get an annotated
206 commit from an extended sha synatx string.
207
208* `git_repository_set_head_detached_from_annotated()`,
209 `git_branch_create_from_annotated()` and
210 `git_reset_from_annotated()` allow for the caller to provide an
211 annotated commit through which they can control what expression is
212 put into the reflog as the source/target.
d578b45f 213
a275fbc0 214* `git_index_add_frombuffer()` can now create a blob from memory
b1ae3e53
CMN
215 buffer and add it to the index which is attached to a repository.
216
217* The structure `git_fetch_options` has been added to determine the
218 runtime configuration for fetching, such as callbacks, pruning and
219 autotag behaviour. It has the runtime initializer
220 `git_fetch_init_options()`.
221
222* The enum `git_fetch_prune_t` has been added, letting you specify the
223 pruning behaviour for a fetch.
a275fbc0 224
a5670d4f
CMN
225* A push operation will notify the caller of what updates it indends
226 to perform on the remote, which provides similar information to
227 git's pre-push hook.
228
15fdf054
ET
229* `git_stash_apply()` can now apply a stashed state from the stash list,
230 placing the data into the working directory and index.
231
232* `git_stash_pop()` will apply a stashed state (like `git_stash_apply()`)
233 but will remove the stashed state after a successful application.
234
1396c381
CMN
235* A new error code `GIT_EEOF` indicates an early EOF from the
236 server. This typically indicates an error with the URL or
237 configuration of the server, and tools can use this to show messages
238 about failing to communicate with the server.
239
3cf91d98
CMN
240* A new error code `GIT_EINVALID` indicates that an argument to a
241 function is invalid, or an invalid operation was requested.
242
7c948014
ET
243* `git_diff_index_to_workdir()` and `git_diff_tree_to_index()` will now
244 produce deltas of type `GIT_DELTA_CONFLICTED` to indicate that the index
245 side of the delta is a conflict.
246
247* The `git_status` family of functions will now produce status of type
248 `GIT_STATUS_CONFLICTED` to indicate that a conflict exists for that file
249 in the index.
250
9f545b9d
ET
251* `git_index_entry_is_conflict()` is a utility function to determine if
252 a given index entry has a non-zero stage entry, indicating that it is
253 one side of a conflict.
254
a5670d4f
CMN
255* It is now possible to pass a keypair via a buffer instead of a
256 path. For this, `GIT_CREDTYPE_SSH_MEMORY` and
257 `git_cred_ssh_key_memory_new()` have been added.
258
2eecc288
ET
259* `git_filter_list_contains` will indicate whether a particular
260 filter will be run in the given filter list.
261
a3f42fe8
CMN
262* `git_commit_header_field()` has been added, which allows retrieving
263 the contents of an arbitrary header field.
264
ca2466ff
CMN
265* `git_submodule_set_branch()` allows to set the configured branch for
266 a submodule.
267
16bcf0c7
CMN
268### API removals
269
9663d1bd 270* `git_remote_save()` and `git_remote_clear_refspecs()` have been
b1ae3e53
CMN
271 removed. Remote's configuration is changed via the configuration
272 directly or through a convenience function which performs changes to
273 the configuration directly.
274
275* `git_remote_set_callbacks()`, `git_remote_get_callbacks()` and
9663d1bd 276 `git_remote_set_transport()` have been removed and the remote no
b1ae3e53
CMN
277 longer stores this configuration.
278
70f7484d
CMN
279* `git_remote_set_fetch_refpecs()` and
280 `git_remote_set_push_refspecs()` have been removed. There is no
281 longer a way to set the base refspecs at run-time.
282
ca2466ff
CMN
283* `git_submodule_save()` has been removed. The submodules are no
284 longer configured via the objects.
285
34065968
CMN
286* `git_submodule_reload_all()` has been removed as we no longer cache
287 submodules.
288
16bcf0c7
CMN
289### Breaking API changes
290
bf2ba529
JM
291* `git_smart_subtransport_cb` now has a `param` parameter.
292
70b0f128
JG
293* The `git_merge_options` structure member `flags` has been renamed
294 to `tree_flags`.
295
b8c50808 296* The `git_merge_file_options` structure member `flags` is now
70b0f128
JG
297 an unsigned int. It was previously a `git_merge_file_flags_t`.
298
96b82b11
ET
299* `GIT_CHECKOUT_SAFE_CREATE` has been removed. Most users will generally
300 be able to switch to `GIT_CHECKOUT_SAFE`, but if you require missing
301 file handling during checkout, you may now use `GIT_CHECKOUT_SAFE |
302 GIT_CHECKOUT_RECREATE_MISSING`.
303
41513659
CMN
304* The `git_clone_options` and `git_submodule_update_options`
305 structures no longer have a `signature` field.
306
307* The following functions have removed the signature and/or log message
308 parameters in favour of git-emulating ones.
309
310 * `git_branch_create()`, `git_branch_move()`
311 * `git_rebase_init()`, `git_rebase_abort()`
312 * `git_reference_symbolic_create_matching()`,
313 `git_reference_symbolic_create()`, `git_reference_create()`,
314 `git_reference_create_matching()`,
315 `git_reference_symbolic_set_target()`,
316 `git_reference_set_target()`, `git_reference_rename()`
317 * `git_remote_update_tips()`, `git_remote_fetch()`, `git_remote_push()`
318 * `git_repository_set_head()`,
319 `git_repository_set_head_detached()`,
320 `git_repository_detach_head()`
321 * `git_reset()`
322
9a97f49e
CMN
323* `git_config_get_entry()` now gives back a ref-counted
324 `git_config_entry`. You must free it when you no longer need it.
325
326* `git_config_get_string()` will return an error if used on a
327 non-snapshot configuration, as there can be no guarantee that the
328 returned pointer is valid.
329
385449b1
CMN
330* `git_note_default_ref()` now uses a `git_buf` to return the string,
331 as the string is otherwise not guaranteed to stay allocated.
332
30640aa9
ET
333* `git_rebase_operation_current()` will return `GIT_REBASE_NO_OPERATION`
334 if it is called immediately after creating a rebase session but before
335 you have applied the first patch.
336
a5670d4f
CMN
337* `git_rebase_options` now contains a `git_checkout_options` struct
338 that will be used for functions that modify the working directory,
88ab3be6
CMN
339 namely `git_rebase_init`, `git_rebase_next` and
340 `git_rebase_abort`. As a result, `git_rebase_open` now also takes
a5670d4f 341 a `git_rebase_options` and only the `git_rebase_init` and
f3a199dd
ET
342 `git_rebase_open` functions take a `git_rebase_options`, where they
343 will persist the options to subsequent `git_rebase` calls.
344
b1ae3e53
CMN
345* The `git_clone_options` struct now has fetch options in a
346 `fetch_opts` field instead of remote callbacks in
347 `remote_callbacks`.
348
a5670d4f
CMN
349* The remote callbacks has gained a new member `push_negotiation`
350 which gets called before sending the update commands to the server.
351
ca2466ff 352* The following functions no longer act on a remote instance but
b1ae3e53
CMN
353 change the repository's configuration. Their signatures have changed
354 accordingly:
355
356 * `git_remote_set_url()`, `git_remote_seturl()`
357 * `git_remote_add_fetch()`, `git_remote_add_push()` and
358 * `git_remote_set_autotag()`
359
360* `git_remote_connect()` and `git_remote_prune()` now take a pointer
361 to the callbacks.
362
9663d1bd 363* `git_remote_fetch()` and `git_remote_download()` now take a pointer
b1ae3e53
CMN
364 to fetch options which determine the runtime configuration.
365
366* The `git_remote_autotag_option_t` values have been changed. It has
c2418f46 367 gained a `_UNSPECIFIED` default value to specify no override for the
b1ae3e53
CMN
368 configured setting.
369
370* `git_remote_update_tips()` now takes a pointer to the callbacks as
371 well as a boolean whether to write `FETCH_HEAD` and the autotag
372 setting.
373
ae5b9362
CMN
374* `git_remote_create_anonymous()` no longer takes a fetch refspec as
375 url-only remotes cannot have configured refspecs.
376
b1ae3e53
CMN
377* The `git_submodule_update_options` struct now has fetch options in
378 the `fetch_opts` field instead of callbacks in the
379 `remote_callbacks` field.
380
ca2466ff
CMN
381* The following functions no longer act on a submodule instance but
382 change the repository's configuration. Their signatures have changed
383 accordingly:
384
385 * `git_submodule_set_url()`, `git_submodule_set_ignore()`,
386 `git_submodule_set_update()`,
387 `git_submodule_set_fetch_recurse_submodules()`.
388
389* `git_submodule_status()` no longer takes a submodule instance but a
390 repsitory, a submodule name and an ignore setting.
391
b1ae3e53
CMN
392* The `push` function in the `git_transport` interface now takes a
393 pointer to the remote callbacks.
394
98270f56
CMN
395* The `git_index_entry` struct's fields' types have been changed to
396 more accurately reflect what is in fact stored in the
397 index. Specifically, time and file size are 32 bits intead of 64, as
398 these values are truncated.
399
885b94aa
ET
400* `GIT_EMERGECONFLICT` is now `GIT_ECONFLICT`, which more accurately
401 describes the nature of the error.
402
3cf91d98
CMN
403* It is no longer allowed to call `git_buf_grow()` on buffers
404 borrowing the memory they point to.
405
c8b64f70 406v0.22
d30447cb
CMN
407------
408
b91f28be 409### Changes or improvements
e1fc03c9 410
b91f28be 411* `git_signature_new()` now requires a non-empty email address.
274c3fa6 412
b91f28be 413* Use CommonCrypto libraries for SHA-1 calculation on Mac OS X.
d412165f 414
b91f28be
CMN
415* Disable SSL compression and SSLv2 and SSLv3 ciphers in favor of TLSv1
416 in OpenSSL.
d412165f 417
b91f28be
CMN
418* The fetch behavior of remotes with autotag set to `GIT_REMOTE_DOWNLOAD_TAGS_ALL`
419 has been changed to match git 1.9.0 and later. In this mode, libgit2 now
420 fetches all tags in addition to whatever else needs to be fetched.
c180c065 421
b91f28be
CMN
422* `git_checkout()` now handles case-changing renames correctly on
423 case-insensitive filesystems; for example renaming "readme" to "README".
7449c82e 424
b91f28be
CMN
425* The search for libssh2 is now done via pkg-config instead of a
426 custom search of a few directories.
3753110a 427
b91f28be
CMN
428* Add support for core.protectHFS and core.protectNTFS. Add more
429 validation for filenames which we write such as references.
5192bcc5 430
b91f28be
CMN
431* The local transport now generates textual progress output like
432 git-upload-pack does ("counting objects").
c180c065 433
b91f28be
CMN
434* `git_checkout_index()` can now check out an in-memory index that is not
435 necessarily the repository's index, so you may check out an index
436 that was produced by git_merge and friends while retaining the cached
437 information.
1697cd6f 438
b91f28be
CMN
439* Remove the default timeout for receiving / sending data over HTTP using
440 the WinHTTP transport layer.
d4256ed5 441
b91f28be 442* Add SPNEGO (Kerberos) authentication using GSSAPI on Unix systems.
46c8f7f8 443
b91f28be
CMN
444* Provide built-in objects for the empty blob (e69de29) and empty
445 tree (4b825dc) objects.
262eec23 446
b91f28be
CMN
447* The index' tree cache is now filled upon read-tree and write-tree
448 and the cache is written to disk.
0862f617 449
b91f28be 450* LF -> CRLF filter refuses to handle mixed-EOL files
1697cd6f 451
b91f28be 452* LF -> CRLF filter now runs when * text = auto (with Git for Windows 1.9.4)
1697cd6f 453
b91f28be
CMN
454* File unlocks are atomic again via rename. Read-only files on Windows are
455 made read-write if necessary.
d58a64e9 456
b91f28be 457* Share open packfiles across repositories to share descriptors and mmaps.
6812afaf 458
b91f28be 459* Use a map for the treebuilder, making insertion O(1)
2cd3cb8e 460
b91f28be
CMN
461* The build system now accepts an option EMBED_SSH_PATH which when set
462 tells it to include a copy of libssh2 at the given location. This is
463 enabled for MSVC.
9fef46de
CMN
464
465* Add support for refspecs with the asterisk in the middle of a
466 pattern.
7db0e6ee 467
c5837cad
CMN
468* Fetching now performs opportunistic updates. To achieve this, we
469 introduce a difference between active and passive refspecs, which
b91f28be 470 make `git_remote_download()` and `git_remote_fetch()` to take a list of
c5837cad
CMN
471 resfpecs to be the active list, similarly to how git fetch accepts a
472 list on the command-line.
473
b91f28be
CMN
474* The THREADSAFE option to build libgit2 with threading support has
475 been flipped to be on by default.
209425ce 476
b91f28be
CMN
477* The remote object has learnt to prune remote-tracking branches. If
478 the remote is configured to do so, this will happen via
479 `git_remote_fetch()`. You can also call `git_remote_prune()` after
480 connecting or fetching to perform the prune.
481
482
483### API additions
d524b2d3 484
b91f28be
CMN
485* Introduce `git_buf_text_is_binary()` and `git_buf_text_contains_nul()` for
486 consumers to perform binary detection on a git_buf.
487
488* `git_branch_upstream_remote()` has been introduced to provide the
489 branch.<name>.remote configuration value.
490
491* Introduce `git_describe_commit()` and `git_describe_workdir()` to provide
492 a description of the current commit (and working tree, respectively)
493 based on the nearest tag or reference
494
495* Introduce `git_merge_bases()` and the `git_oidarray` type to expose all
7db0e6ee 496 merge bases between two commits.
eca07bcd 497
b91f28be 498* Introduce `git_merge_bases_many()` to expose all merge bases between
eca07bcd 499 multiple commits.
67917281 500
67917281 501* Introduce rebase functionality (using the merge algorithm only).
b91f28be
CMN
502 Introduce `git_rebase_init()` to begin a new rebase session,
503 `git_rebase_open()` to open an in-progress rebase session,
504 `git_rebase_commit()` to commit the current rebase operation,
505 `git_rebase_next()` to apply the next rebase operation,
506 `git_rebase_abort()` to abort an in-progress rebase and `git_rebase_finish()`
67917281
ET
507 to complete a rebase operation.
508
b91f28be
CMN
509* Introduce `git_note_author()` and `git_note_committer()` to get the author
510 and committer information on a `git_note`, respectively.
79b0ae4e 511
b91f28be
CMN
512* A factory function for ssh has been added which allows to change the
513 path of the programs to execute for receive-pack and upload-pack on
514 the server, `git_transport_ssh_with_paths()`.
21083a71 515
b91f28be
CMN
516* The ssh transport supports asking the remote host for accepted
517 credential types as well as multiple challeges using a single
518 connection. This requires to know which username you want to connect
519 as, so this introduces the USERNAME credential type which the ssh
520 transport will use to ask for the username.
d88766c4 521
b91f28be
CMN
522* The `GIT_EPEEL` error code has been introduced when we cannot peel a tag
523 to the requested object type; if the given object otherwise cannot be
524 peeled, `GIT_EINVALIDSPEC` is returned.
68182085 525
b91f28be
CMN
526* Introduce `GIT_REPOSITORY_INIT_RELATIVE_GITLINK` to use relative paths
527 when writing gitlinks, as is used by git core for submodules.
e284c451 528
b91f28be 529* `git_remote_prune()` has been added. See above for description.
799e22ea 530
8aba3d47 531
b91f28be
CMN
532* Introduce reference transactions, which allow multiple references to
533 be locked at the same time and updates be queued. This also allows
534 us to safely update a reflog with arbitrary contents, as we need to
535 do for stash.
6d91dc53 536
b91f28be 537### API removals
dce7b1a4 538
b91f28be
CMN
539* `git_remote_supported_url()` and `git_remote_is_valid_url()` have been
540 removed as they have become essentially useless with rsync-style ssh paths.
541
542* `git_clone_into()` and `git_clone_local_into()` have been removed from the
543 public API in favour of `git_clone callbacks`.
544
545* The option to ignore certificate errors via `git_remote_cert_check()`
546 is no longer present. Instead, `git_remote_callbacks` has gained a new
547 entry which lets the user perform their own certificate checks.
548
549### Breaking API changes
208a2c8a 550
b91f28be
CMN
551* `git_cherry_pick()` is now `git_cherrypick()`.
552
553* The `git_submodule_update()` function was renamed to
554 `git_submodule_update_strategy()`. `git_submodule_update()` is now used to
555 provide functionalty similar to "git submodule update".
556
557* `git_treebuilder_create()` was renamed to `git_treebuilder_new()` to better
208a2c8a
CMN
558 reflect it being a constructor rather than something which writes to
559 disk.
40d79154 560
b91f28be
CMN
561* `git_treebuilder_new()` (was `git_treebuilder_create()`) now takes a
562 repository so that it can query repository configuration.
563 Subsequently, `git_treebuilder_write()` no longer takes a repository.
aad27e6e 564
b91f28be
CMN
565* `git_threads_init()` and `git_threads_shutdown()` have been renamed to
566 `git_libgit2_init()` and `git_libgit2_shutdown()` to better explain what
567 their purpose is, as it's grown to be more than just about threads.
aad27e6e 568
b91f28be
CMN
569* `git_libgit2_init()` and `git_libgit2_shutdown()` now return the number of
570 initializations of the library, so consumers may schedule work on the
571 first initialization.
aad27e6e 572
b91f28be
CMN
573* The `git_transport_register()` function no longer takes a priority and takes
574 a URL scheme name (eg "http") instead of a prefix like "http://"
aad27e6e 575
b91f28be
CMN
576* `git_index_name_entrycount()` and `git_index_reuc_entrycount()` now
577 return size_t instead of unsigned int.
9d1f97df 578
b91f28be
CMN
579* The `context_lines` and `interhunk_lines` fields in `git_diff`_options are
580 now `uint32_t` instead of `uint16_t`. This allows to set them to `UINT_MAX`,
581 in effect asking for "infinite" context e.g. to iterate over all the
582 unmodified lines of a diff.
974d21c8 583
b91f28be
CMN
584* `git_status_file()` now takes an exact path. Use `git_status_list_new()` if
585 pathspec searching is needed.
974d21c8 586
b91f28be
CMN
587* `git_note_create()` has changed the position of the notes reference
588 name to match `git_note_remove()`.
974d21c8 589
b91f28be
CMN
590* Rename `git_remote_load()` to `git_remote_lookup()` to bring it in line
591 with the rest of the lookup functions.
974d21c8 592
b91f28be
CMN
593* `git_remote_rename()` now takes the repository and the remote's
594 current name. Accepting a remote indicates we want to change it,
595 which we only did partially. It is much clearer if we accept a name
596 and no loaded objects are changed.
974d21c8 597
b91f28be
CMN
598* `git_remote_delete()` now accepts the repository and the remote's name
599 instead of a loaded remote.
974d21c8 600
b91f28be
CMN
601* `git_merge_head` is now `git_annotated_commit`, to better reflect its usage
602 for multiple functions (including rebase)
974d21c8 603
b91f28be
CMN
604* The `git_clone_options` struct no longer provides the `ignore_cert_errors` or
605 `remote_name` members for remote customization.
974d21c8 606
b91f28be
CMN
607 Instead, the `git_clone_options` struct has two new members, `remote_cb` and
608 `remote_cb_payload`, which allow the caller to completely override the remote
609 creation process. If needed, the caller can use this callback to give their
610 remote a name other than the default (origin) or disable cert checking.
974d21c8 611
b91f28be
CMN
612 The `remote_callbacks` member has been preserved for convenience, although it
613 is not used when a remote creation callback is supplied.
974d21c8 614
b91f28be
CMN
615* The `git_clone`_options struct now provides `repository_cb` and
616 `repository_cb_payload` to allow the user to create a repository with
617 custom options.
974d21c8 618
b91f28be
CMN
619* The `git_push` struct to perform a push has been replaced with
620 `git_remote_upload()`. The refspecs and options are passed as a
621 function argument. `git_push_update_tips()` is now also
622 `git_remote_update_tips()` and the callbacks are in the same struct as
623 the rest.
974d21c8 624
b91f28be
CMN
625* The `git_remote_set_transport()` function now sets a transport factory function,
626 rather than a pre-existing transport instance.
61cd037e 627
b91f28be
CMN
628* The `git_transport` structure definition has moved into the sys/transport.h
629 file.
630
631* libgit2 no longer automatically sets the OpenSSL locking
632 functions. This is not something which we can know to do. A
633 last-resort convenience function is provided in sys/openssl.h,
634 `git_openssl_set_locking()` which can be used to set the locking.