Skip to content

Commit

Permalink
libgit2: Bump to v1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bnjmnt4n committed Mar 22, 2024
1 parent d65c7c2 commit 5187c9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libgit2-sys/libgit2
Submodule libgit2 updated 61 files
+3 −3 .github/workflows/benchmark.yml
+1 −1 .github/workflows/build-containers.yml
+118 −0 .github/workflows/experimental.yml
+11 −38 .github/workflows/main.yml
+13 −10 .github/workflows/nightly.yml
+169 −0 COPYING
+2 −2 README.md
+7 −0 ci/setup-sanitizer-build.sh
+1 −1 deps/ntlmclient/CMakeLists.txt
+311 −0 deps/ntlmclient/crypt_builtin_md4.c
+0 −20 deps/ntlmclient/crypt_mbedtls.c
+2 −2 deps/ntlmclient/ntlm.c
+317 −0 docs/changelog.md
+2 −2 examples/README.md
+13 −13 examples/general.c
+35 −21 examples/log.c
+22 −2 include/git2/config.h
+10 −8 include/git2/errors.h
+5 −4 include/git2/remote.h
+1 −0 include/git2/repository.h
+3 −3 include/git2/version.h
+5 −3 include/git2/worktree.h
+1 −1 package.json
+10 −0 script/valgrind.supp
+2 −1 src/cli/CMakeLists.txt
+1 −1 src/libgit2/clone.c
+328 −276 src/libgit2/config.c
+9 −4 src/libgit2/config.h
+5 −4 src/libgit2/config_parse.c
+1 −1 src/libgit2/git2.rc
+1 −1 src/libgit2/path.c
+125 −57 src/libgit2/refdb_fs.c
+6 −1 src/libgit2/remote.c
+38 −3 src/libgit2/repository.c
+52 −58 src/libgit2/streams/mbedtls.c
+6 −6 src/libgit2/trailer.c
+11 −6 src/libgit2/transaction.c
+4 −1 src/libgit2/transaction.h
+5 −0 src/libgit2/transports/local.c
+2 −2 src/libgit2/transports/smart_pkt.c
+14 −17 src/libgit2/worktree.c
+70 −0 src/util/ctype_compat.h
+13 −13 src/util/date.c
+1 −0 src/util/git2_util.h
+2 −2 src/util/str.c
+0 −34 src/util/util.h
+10 −0 tests/libgit2/clone/local.c
+41 −0 tests/libgit2/config/configlevel.c
+1 −1 tests/libgit2/config/readonly.c
+30 −0 tests/libgit2/config/write.c
+8 −4 tests/libgit2/core/opts.c
+27 −4 tests/libgit2/message/trailer.c
+40 −30 tests/libgit2/pack/packbuilder.c
+1 −1 tests/libgit2/repo/open.c
+0 −24 tests/libgit2/trace/trace.c
+80 −1 tests/libgit2/worktree/config.c
+61 −1 tests/libgit2/worktree/refs.c
+54 −3 tests/libgit2/worktree/worktree.c
+2 −0 tests/resources/testrepo/.gitted/config
+2 −0 tests/resources/testrepo/.gitted/config.worktree
+2 −0 tests/resources/testrepo/.gitted/worktrees/testrepo-worktree/config.worktree

0 comments on commit 5187c9e

Please sign in to comment.