]> git.proxmox.com Git - libgit2.git/blame - CHANGELOG.md
git_index_add_all: test that conflicts are handled
[libgit2.git] / CHANGELOG.md
CommitLineData
c8b64f70
CMN
1v0.22 + 1
2------
3
16bcf0c7
CMN
4### Changes or improvements
5
70b0f128
JG
6* Patience and minimal diff drivers can now be used for merges.
7
8* Merges can now ignore whitespace changes.
9
0161e096
SS
10* Updated binary identification in CRLF filtering to avoid false positives in
11 UTF-8 files.
12
4d6f55ac
ET
13* Rename and copy detection is enabled for small files.
14
96b82b11
ET
15* Checkout can now handle an initial checkout of a repository, making
16 `GIT_CHECKOUT_SAFE_CREATE` unnecessary for users of clone.
17
659cf202
CMN
18* The signature parameter in the ref-modifying functions has been
19 removed. Use `git_repository_set_ident()` and
20 `git_repository_ident()` to override the signature to be used.
21
0ef54a63
CMN
22* The local transport now auto-scales the number of threads to use
23 when creating the packfile instead of sticking to one.
24
8acf058f
CMN
25* Reference renaming now uses the right id for the old value.
26
27* The annotated version of branch creation, HEAD detaching and reset
28 allow for specifying the expression from the user to be put into the
29 reflog.
30
aa9bb425 31* `git_rebase_commit` now returns `GIT_EUNMERGED` when you attempt to
eaf0d688
ET
32 commit with unstaged changes.
33
85247df0
CMN
34* On Mac OS X, we now use SecureTransport to provide the cryptographic
35support for HTTPS connections insead of OpenSSL.
36
1f1f5c63
ET
37* Checkout can now accept an index for the baseline computations via the
38 `baseline_index` member.
39
b1ae3e53
CMN
40* The configuration for fetching is no longer stored inside the
41 `git_remote` struct but has been moved to a `git_fetch_options`. The
42 remote functions now take these options or the callbacks instead of
43 setting them beforehand.
44
874cc35a
CMN
45* The index now uses diffs for `add_all()` and `update_all()` which
46 gives it a speed boost and closer semantics to git.
47
e3435673
CMN
48* The ssh transport now reports the stderr output from the server as
49 the error message, which allows you to get the "repository not
50 found" messages.
51
ecd60a56
ET
52* `git_index_conflict_add()` will remove staged entries that exist for
53 conflicted paths.
b1ae3e53 54
16bcf0c7
CMN
55### API additions
56
70b0f128
JG
57* The `git_merge_options` gained a `file_flags` member.
58
eac773d9
CMN
59* Parsing and retrieving a configuration value as a path is exposed
60 via `git_config_parse_path()` and `git_config_get_path()`
61 respectively.
62
659cf202
CMN
63* `git_repository_set_ident()` and `git_repository_ident()` serve to
64 set and query which identity will be used when writing to the
65 reflog.
66
9a97f49e
CMN
67* `git_config_entry_free()` frees a config entry.
68
69* `git_config_get_string_buf()` provides a way to safely retrieve a
70 string from a non-snapshot configuration.
71
8acf058f
CMN
72* `git_annotated_commit_from_revspec()` allows to get an annotated
73 commit from an extended sha synatx string.
74
75* `git_repository_set_head_detached_from_annotated()`,
76 `git_branch_create_from_annotated()` and
77 `git_reset_from_annotated()` allow for the caller to provide an
78 annotated commit through which they can control what expression is
79 put into the reflog as the source/target.
d578b45f 80
a275fbc0 81* `git_index_add_frombuffer()` can now create a blob from memory
b1ae3e53
CMN
82 buffer and add it to the index which is attached to a repository.
83
84* The structure `git_fetch_options` has been added to determine the
85 runtime configuration for fetching, such as callbacks, pruning and
86 autotag behaviour. It has the runtime initializer
87 `git_fetch_init_options()`.
88
89* The enum `git_fetch_prune_t` has been added, letting you specify the
90 pruning behaviour for a fetch.
a275fbc0 91
15fdf054
ET
92* `git_stash_apply()` can now apply a stashed state from the stash list,
93 placing the data into the working directory and index.
94
95* `git_stash_pop()` will apply a stashed state (like `git_stash_apply()`)
96 but will remove the stashed state after a successful application.
97
1396c381
CMN
98* A new error code `GIT_EEOF` indicates an early EOF from the
99 server. This typically indicates an error with the URL or
100 configuration of the server, and tools can use this to show messages
101 about failing to communicate with the server.
102
7c948014
ET
103* `git_diff_index_to_workdir()` and `git_diff_tree_to_index()` will now
104 produce deltas of type `GIT_DELTA_CONFLICTED` to indicate that the index
105 side of the delta is a conflict.
106
107* The `git_status` family of functions will now produce status of type
108 `GIT_STATUS_CONFLICTED` to indicate that a conflict exists for that file
109 in the index.
110
9f545b9d
ET
111* `git_index_entry_is_conflict()` is a utility function to determine if
112 a given index entry has a non-zero stage entry, indicating that it is
113 one side of a conflict.
114
16bcf0c7
CMN
115### API removals
116
b1ae3e53
CMN
117* `git_remote_save()` and `git_remote_clear_refspecs()` has been
118 removed. Remote's configuration is changed via the configuration
119 directly or through a convenience function which performs changes to
120 the configuration directly.
121
122* `git_remote_set_callbacks()`, `git_remote_get_callbacks()` and
123 `git_remote_set_transport()` have been removed a the remote no
124 longer stores this configuration.
125
16bcf0c7
CMN
126### Breaking API changes
127
bf2ba529
JM
128* `git_smart_subtransport_cb` now has a `param` parameter.
129
70b0f128
JG
130* The `git_merge_options` structure member `flags` has been renamed
131 to `tree_flags`.
132
b8c50808 133* The `git_merge_file_options` structure member `flags` is now
70b0f128
JG
134 an unsigned int. It was previously a `git_merge_file_flags_t`.
135
96b82b11
ET
136* `GIT_CHECKOUT_SAFE_CREATE` has been removed. Most users will generally
137 be able to switch to `GIT_CHECKOUT_SAFE`, but if you require missing
138 file handling during checkout, you may now use `GIT_CHECKOUT_SAFE |
139 GIT_CHECKOUT_RECREATE_MISSING`.
140
41513659
CMN
141* The `git_clone_options` and `git_submodule_update_options`
142 structures no longer have a `signature` field.
143
144* The following functions have removed the signature and/or log message
145 parameters in favour of git-emulating ones.
146
147 * `git_branch_create()`, `git_branch_move()`
148 * `git_rebase_init()`, `git_rebase_abort()`
149 * `git_reference_symbolic_create_matching()`,
150 `git_reference_symbolic_create()`, `git_reference_create()`,
151 `git_reference_create_matching()`,
152 `git_reference_symbolic_set_target()`,
153 `git_reference_set_target()`, `git_reference_rename()`
154 * `git_remote_update_tips()`, `git_remote_fetch()`, `git_remote_push()`
155 * `git_repository_set_head()`,
156 `git_repository_set_head_detached()`,
157 `git_repository_detach_head()`
158 * `git_reset()`
159
9a97f49e
CMN
160* `git_config_get_entry()` now gives back a ref-counted
161 `git_config_entry`. You must free it when you no longer need it.
162
163* `git_config_get_string()` will return an error if used on a
164 non-snapshot configuration, as there can be no guarantee that the
165 returned pointer is valid.
166
385449b1
CMN
167* `git_note_default_ref()` now uses a `git_buf` to return the string,
168 as the string is otherwise not guaranteed to stay allocated.
169
30640aa9
ET
170* `git_rebase_operation_current()` will return `GIT_REBASE_NO_OPERATION`
171 if it is called immediately after creating a rebase session but before
172 you have applied the first patch.
173
f3a199dd
ET
174* `git_rebase_options` now contains an optional pointer to
175 `git_checkout_options` that will be used for functions that modify
176 the working directory, namely `git_checkout_init`, `git_checkout_next`
177 and `git_checkout_abort`. As a result, `git_rebase_open` now also
178 takes a `git_rebase_options` and only the `git_rebase_init` and
179 `git_rebase_open` functions take a `git_rebase_options`, where they
180 will persist the options to subsequent `git_rebase` calls.
181
b1ae3e53
CMN
182* The `git_clone_options` struct now has fetch options in a
183 `fetch_opts` field instead of remote callbacks in
184 `remote_callbacks`.
185
186* The following functions now longer act on a remote instance but
187 change the repository's configuration. Their signatures have changed
188 accordingly:
189
190 * `git_remote_set_url()`, `git_remote_seturl()`
191 * `git_remote_add_fetch()`, `git_remote_add_push()` and
192 * `git_remote_set_autotag()`
193
194* `git_remote_connect()` and `git_remote_prune()` now take a pointer
195 to the callbacks.
196
197* `git_remote_fetch()` and `git_remote_download()` now take a poitner
198 to fetch options which determine the runtime configuration.
199
200* The `git_remote_autotag_option_t` values have been changed. It has
201 gained a `_FALLBACK` default value to specify no override for the
202 configured setting.
203
204* `git_remote_update_tips()` now takes a pointer to the callbacks as
205 well as a boolean whether to write `FETCH_HEAD` and the autotag
206 setting.
207
208* The `git_submodule_update_options` struct now has fetch options in
209 the `fetch_opts` field instead of callbacks in the
210 `remote_callbacks` field.
211
212* The `push` function in the `git_transport` interface now takes a
213 pointer to the remote callbacks.
214
98270f56
CMN
215* The `git_index_entry` struct's fields' types have been changed to
216 more accurately reflect what is in fact stored in the
217 index. Specifically, time and file size are 32 bits intead of 64, as
218 these values are truncated.
219
c8b64f70 220v0.22
d30447cb
CMN
221------
222
b91f28be 223### Changes or improvements
e1fc03c9 224
b91f28be 225* `git_signature_new()` now requires a non-empty email address.
274c3fa6 226
b91f28be 227* Use CommonCrypto libraries for SHA-1 calculation on Mac OS X.
d412165f 228
b91f28be
CMN
229* Disable SSL compression and SSLv2 and SSLv3 ciphers in favor of TLSv1
230 in OpenSSL.
d412165f 231
b91f28be
CMN
232* The fetch behavior of remotes with autotag set to `GIT_REMOTE_DOWNLOAD_TAGS_ALL`
233 has been changed to match git 1.9.0 and later. In this mode, libgit2 now
234 fetches all tags in addition to whatever else needs to be fetched.
c180c065 235
b91f28be
CMN
236* `git_checkout()` now handles case-changing renames correctly on
237 case-insensitive filesystems; for example renaming "readme" to "README".
7449c82e 238
b91f28be
CMN
239* The search for libssh2 is now done via pkg-config instead of a
240 custom search of a few directories.
3753110a 241
b91f28be
CMN
242* Add support for core.protectHFS and core.protectNTFS. Add more
243 validation for filenames which we write such as references.
5192bcc5 244
b91f28be
CMN
245* The local transport now generates textual progress output like
246 git-upload-pack does ("counting objects").
c180c065 247
b91f28be
CMN
248* `git_checkout_index()` can now check out an in-memory index that is not
249 necessarily the repository's index, so you may check out an index
250 that was produced by git_merge and friends while retaining the cached
251 information.
1697cd6f 252
b91f28be
CMN
253* Remove the default timeout for receiving / sending data over HTTP using
254 the WinHTTP transport layer.
d4256ed5 255
b91f28be 256* Add SPNEGO (Kerberos) authentication using GSSAPI on Unix systems.
46c8f7f8 257
b91f28be
CMN
258* Provide built-in objects for the empty blob (e69de29) and empty
259 tree (4b825dc) objects.
262eec23 260
b91f28be
CMN
261* The index' tree cache is now filled upon read-tree and write-tree
262 and the cache is written to disk.
0862f617 263
b91f28be 264* LF -> CRLF filter refuses to handle mixed-EOL files
1697cd6f 265
b91f28be 266* LF -> CRLF filter now runs when * text = auto (with Git for Windows 1.9.4)
1697cd6f 267
b91f28be
CMN
268* File unlocks are atomic again via rename. Read-only files on Windows are
269 made read-write if necessary.
d58a64e9 270
b91f28be 271* Share open packfiles across repositories to share descriptors and mmaps.
6812afaf 272
b91f28be 273* Use a map for the treebuilder, making insertion O(1)
2cd3cb8e 274
b91f28be
CMN
275* The build system now accepts an option EMBED_SSH_PATH which when set
276 tells it to include a copy of libssh2 at the given location. This is
277 enabled for MSVC.
9fef46de
CMN
278
279* Add support for refspecs with the asterisk in the middle of a
280 pattern.
7db0e6ee 281
c5837cad
CMN
282* Fetching now performs opportunistic updates. To achieve this, we
283 introduce a difference between active and passive refspecs, which
b91f28be 284 make `git_remote_download()` and `git_remote_fetch()` to take a list of
c5837cad
CMN
285 resfpecs to be the active list, similarly to how git fetch accepts a
286 list on the command-line.
287
b91f28be
CMN
288* The THREADSAFE option to build libgit2 with threading support has
289 been flipped to be on by default.
209425ce 290
b91f28be
CMN
291* The remote object has learnt to prune remote-tracking branches. If
292 the remote is configured to do so, this will happen via
293 `git_remote_fetch()`. You can also call `git_remote_prune()` after
294 connecting or fetching to perform the prune.
295
296
297### API additions
d524b2d3 298
b91f28be
CMN
299* Introduce `git_buf_text_is_binary()` and `git_buf_text_contains_nul()` for
300 consumers to perform binary detection on a git_buf.
301
302* `git_branch_upstream_remote()` has been introduced to provide the
303 branch.<name>.remote configuration value.
304
305* Introduce `git_describe_commit()` and `git_describe_workdir()` to provide
306 a description of the current commit (and working tree, respectively)
307 based on the nearest tag or reference
308
309* Introduce `git_merge_bases()` and the `git_oidarray` type to expose all
7db0e6ee 310 merge bases between two commits.
eca07bcd 311
b91f28be 312* Introduce `git_merge_bases_many()` to expose all merge bases between
eca07bcd 313 multiple commits.
67917281 314
67917281 315* Introduce rebase functionality (using the merge algorithm only).
b91f28be
CMN
316 Introduce `git_rebase_init()` to begin a new rebase session,
317 `git_rebase_open()` to open an in-progress rebase session,
318 `git_rebase_commit()` to commit the current rebase operation,
319 `git_rebase_next()` to apply the next rebase operation,
320 `git_rebase_abort()` to abort an in-progress rebase and `git_rebase_finish()`
67917281
ET
321 to complete a rebase operation.
322
b91f28be
CMN
323* Introduce `git_note_author()` and `git_note_committer()` to get the author
324 and committer information on a `git_note`, respectively.
79b0ae4e 325
b91f28be
CMN
326* A factory function for ssh has been added which allows to change the
327 path of the programs to execute for receive-pack and upload-pack on
328 the server, `git_transport_ssh_with_paths()`.
21083a71 329
b91f28be
CMN
330* The ssh transport supports asking the remote host for accepted
331 credential types as well as multiple challeges using a single
332 connection. This requires to know which username you want to connect
333 as, so this introduces the USERNAME credential type which the ssh
334 transport will use to ask for the username.
d88766c4 335
b91f28be
CMN
336* The `GIT_EPEEL` error code has been introduced when we cannot peel a tag
337 to the requested object type; if the given object otherwise cannot be
338 peeled, `GIT_EINVALIDSPEC` is returned.
68182085 339
b91f28be
CMN
340* Introduce `GIT_REPOSITORY_INIT_RELATIVE_GITLINK` to use relative paths
341 when writing gitlinks, as is used by git core for submodules.
e284c451 342
b91f28be 343* `git_remote_prune()` has been added. See above for description.
799e22ea 344
8aba3d47 345
b91f28be
CMN
346* Introduce reference transactions, which allow multiple references to
347 be locked at the same time and updates be queued. This also allows
348 us to safely update a reflog with arbitrary contents, as we need to
349 do for stash.
6d91dc53 350
b91f28be 351### API removals
dce7b1a4 352
b91f28be
CMN
353* `git_remote_supported_url()` and `git_remote_is_valid_url()` have been
354 removed as they have become essentially useless with rsync-style ssh paths.
355
356* `git_clone_into()` and `git_clone_local_into()` have been removed from the
357 public API in favour of `git_clone callbacks`.
358
359* The option to ignore certificate errors via `git_remote_cert_check()`
360 is no longer present. Instead, `git_remote_callbacks` has gained a new
361 entry which lets the user perform their own certificate checks.
362
363### Breaking API changes
208a2c8a 364
b91f28be
CMN
365* `git_cherry_pick()` is now `git_cherrypick()`.
366
367* The `git_submodule_update()` function was renamed to
368 `git_submodule_update_strategy()`. `git_submodule_update()` is now used to
369 provide functionalty similar to "git submodule update".
370
371* `git_treebuilder_create()` was renamed to `git_treebuilder_new()` to better
208a2c8a
CMN
372 reflect it being a constructor rather than something which writes to
373 disk.
40d79154 374
b91f28be
CMN
375* `git_treebuilder_new()` (was `git_treebuilder_create()`) now takes a
376 repository so that it can query repository configuration.
377 Subsequently, `git_treebuilder_write()` no longer takes a repository.
aad27e6e 378
b91f28be
CMN
379* `git_threads_init()` and `git_threads_shutdown()` have been renamed to
380 `git_libgit2_init()` and `git_libgit2_shutdown()` to better explain what
381 their purpose is, as it's grown to be more than just about threads.
aad27e6e 382
b91f28be
CMN
383* `git_libgit2_init()` and `git_libgit2_shutdown()` now return the number of
384 initializations of the library, so consumers may schedule work on the
385 first initialization.
aad27e6e 386
b91f28be
CMN
387* The `git_transport_register()` function no longer takes a priority and takes
388 a URL scheme name (eg "http") instead of a prefix like "http://"
aad27e6e 389
b91f28be
CMN
390* `git_index_name_entrycount()` and `git_index_reuc_entrycount()` now
391 return size_t instead of unsigned int.
9d1f97df 392
b91f28be
CMN
393* The `context_lines` and `interhunk_lines` fields in `git_diff`_options are
394 now `uint32_t` instead of `uint16_t`. This allows to set them to `UINT_MAX`,
395 in effect asking for "infinite" context e.g. to iterate over all the
396 unmodified lines of a diff.
974d21c8 397
b91f28be
CMN
398* `git_status_file()` now takes an exact path. Use `git_status_list_new()` if
399 pathspec searching is needed.
974d21c8 400
b91f28be
CMN
401* `git_note_create()` has changed the position of the notes reference
402 name to match `git_note_remove()`.
974d21c8 403
b91f28be
CMN
404* Rename `git_remote_load()` to `git_remote_lookup()` to bring it in line
405 with the rest of the lookup functions.
974d21c8 406
b91f28be
CMN
407* `git_remote_rename()` now takes the repository and the remote's
408 current name. Accepting a remote indicates we want to change it,
409 which we only did partially. It is much clearer if we accept a name
410 and no loaded objects are changed.
974d21c8 411
b91f28be
CMN
412* `git_remote_delete()` now accepts the repository and the remote's name
413 instead of a loaded remote.
974d21c8 414
b91f28be
CMN
415* `git_merge_head` is now `git_annotated_commit`, to better reflect its usage
416 for multiple functions (including rebase)
974d21c8 417
b91f28be
CMN
418* The `git_clone_options` struct no longer provides the `ignore_cert_errors` or
419 `remote_name` members for remote customization.
974d21c8 420
b91f28be
CMN
421 Instead, the `git_clone_options` struct has two new members, `remote_cb` and
422 `remote_cb_payload`, which allow the caller to completely override the remote
423 creation process. If needed, the caller can use this callback to give their
424 remote a name other than the default (origin) or disable cert checking.
974d21c8 425
b91f28be
CMN
426 The `remote_callbacks` member has been preserved for convenience, although it
427 is not used when a remote creation callback is supplied.
974d21c8 428
b91f28be
CMN
429* The `git_clone`_options struct now provides `repository_cb` and
430 `repository_cb_payload` to allow the user to create a repository with
431 custom options.
974d21c8 432
b91f28be
CMN
433* The `git_push` struct to perform a push has been replaced with
434 `git_remote_upload()`. The refspecs and options are passed as a
435 function argument. `git_push_update_tips()` is now also
436 `git_remote_update_tips()` and the callbacks are in the same struct as
437 the rest.
974d21c8 438
b91f28be
CMN
439* The `git_remote_set_transport()` function now sets a transport factory function,
440 rather than a pre-existing transport instance.
61cd037e 441
b91f28be
CMN
442* The `git_transport` structure definition has moved into the sys/transport.h
443 file.
444
445* libgit2 no longer automatically sets the OpenSSL locking
446 functions. This is not something which we can know to do. A
447 last-resort convenience function is provided in sys/openssl.h,
448 `git_openssl_set_locking()` which can be used to set the locking.