Accepting request 842638 from home:AndreasStieger:branches:devel:libraries:c_c++

libgit2 1.1.0

OBS-URL: https://build.opensuse.org/request/show/842638
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libgit2?expand=0&rev=88
This commit is contained in:
2020-10-26 12:38:43 +00:00
committed by Git OBS Bridge
parent cc71a07d1c
commit 405490f96d
5 changed files with 44 additions and 6 deletions

View File

@@ -1,3 +1,41 @@
-------------------------------------------------------------------
Mon Oct 19 20:30:28 UTC 2020 - Andreas Stieger <andreas.stieger@gmx.de>
- update to 1.1.0:
* The refs/remotes/origin/HEAD file will be created at clone
time to point to the origin's default branch
* libgit2 now uses the __atomic_ intrinsics instead of __sync_
intrinsics on supported gcc and clang versions
* The init.defaultBranch setting is now respected and master is
no longer the hardcoded as the default branch name
* Patch files that do not contain an index line can now be parsed
* Configuration files with multi-line values can now contain
quotes split across multiple lines
* Servers that request an upgrade to a newer HTTP version are
silently ignored instead of erroneously failing
* Users can pass NULL to the options argument to
git_describe_commit
* Clones and fetches of very large packfiles now succeeds on
32-bit platforms
* Custom reference database backends can now handle the
repository's HEAD correctly
* Repositories with a large number of packfiles no longer
exhaust the number of file descriptors
* The test framework now supports TAP output when the -t flag
is specified
* The test framework can now specify an exact match to a test
function using a trailing $
* All checkout types support GIT_CHECKOUT_DISABLE_PATHSPEC_MATCH
* git_blame now can ignore whitespace changes using the option
GIT_BLAME_IGNORE_WHITESPACE
* Several new examples have been created, including an examples
for commit, add and push
* Mode changes during rename are now supported in patch
application
* git_checkout_head now correctly removes untracked files in a
subdirectory when the FORCE | REMOVE_UNTRACKED options are
specified
-------------------------------------------------------------------
Sat Jun 20 17:49:44 UTC 2020 - Andreas Stieger <andreas.stieger@gmx.de>