pj-nodegit 0.27.0 → 0.28.1
Sign up to get free protection for your applications and to get access to all the features.
- package/.github/workflows/tests.yml +83 -15
- package/binding.gyp +23 -15
- package/dist/blob.js +0 -22
- package/dist/config.js +24 -0
- package/dist/credential.js +1 -1
- package/dist/deprecated/structs/ApplyOptions.js +5 -0
- package/dist/deprecated/structs/BlameOptions.js +8 -0
- package/dist/deprecated/structs/BlobFilterOptions.js +5 -0
- package/dist/deprecated/structs/CheckoutOptions.js +10 -0
- package/dist/deprecated/structs/CherrypickOptions.js +7 -0
- package/dist/deprecated/structs/CloneOptions.js +8 -0
- package/dist/deprecated/structs/DescribeFormatOptions.js +6 -0
- package/dist/deprecated/structs/DescribeOptions.js +8 -0
- package/dist/deprecated/structs/DiffFindOptions.js +10 -0
- package/dist/deprecated/structs/DiffOptions.js +10 -0
- package/dist/deprecated/structs/FetchOptions.js +9 -0
- package/dist/deprecated/structs/MergeFileInput.js +6 -0
- package/dist/deprecated/structs/MergeFileOptions.js +7 -0
- package/dist/deprecated/structs/MergeOptions.js +10 -0
- package/dist/deprecated/structs/ProxyOptions.js +5 -0
- package/dist/deprecated/structs/PushOptions.js +7 -0
- package/dist/deprecated/structs/RebaseOptions.js +8 -0
- package/dist/deprecated/structs/RemoteCreateOptions.js +5 -0
- package/dist/deprecated/structs/RepositoryInitOptions.js +6 -0
- package/dist/deprecated/structs/RevertOptions.js +7 -0
- package/dist/deprecated/structs/StashApplyOptions.js +6 -0
- package/dist/deprecated/structs/StatusOptions.js +6 -0
- package/dist/deprecated/structs/SubmoduleUpdateOptions.js +7 -0
- package/dist/diff.js +0 -46
- package/dist/enums.js +20 -6
- package/dist/filter_registry.js +0 -3
- package/dist/libgit2.js +2 -2
- package/dist/merge.js +0 -6
- package/dist/nodegit.js +253 -13
- package/dist/rebase.js +11 -53
- package/dist/remote.js +0 -204
- package/dist/repository.js +1 -4
- package/dist/reset.js +0 -25
- package/dist/revparse.js +19 -0
- package/dist/stash.js +0 -44
- package/dist/status.js +1 -3
- package/dist/submodule.js +0 -38
- package/include/annotated_commit.h +62 -22
- package/include/apply.h +56 -8
- package/include/apply_options.h +70 -71
- package/include/async_baton.h +65 -84
- package/include/async_worker.h +91 -0
- package/include/attr.h +37 -12
- package/include/blame.h +40 -14
- package/include/blame_hunk.h +18 -6
- package/include/blame_options.h +26 -44
- package/include/blob.h +106 -38
- package/include/blob_filter_options.h +27 -23
- package/include/branch.h +117 -41
- package/include/branch_iterator.h +18 -6
- package/include/buf.h +18 -6
- package/include/callback_wrapper.h +12 -17
- package/include/cert.h +18 -6
- package/include/cert_hostkey.h +21 -6
- package/include/cert_x509.h +18 -6
- package/include/checkout.h +48 -16
- package/include/checkout_options.h +110 -176
- package/include/checkout_perfdata.h +18 -6
- package/include/cherrypick.h +37 -12
- package/include/cherrypick_options.h +26 -32
- package/include/cleanup_handle.h +21 -0
- package/include/clone.h +26 -8
- package/include/clone_options.h +26 -50
- package/include/commit.h +161 -58
- package/include/config.h +227 -82
- package/include/config_entry.h +18 -6
- package/include/config_iterator.h +51 -18
- package/include/configmap.h +18 -6
- package/include/configurable_class_wrapper.h +59 -0
- package/include/context.h +90 -0
- package/include/convenient_hunk.h +19 -5
- package/include/convenient_patch.h +20 -5
- package/include/credential.h +40 -14
- package/include/describe_format_options.h +26 -30
- package/include/describe_options.h +26 -38
- package/include/describe_result.h +18 -6
- package/include/diff.h +190 -70
- package/include/diff_binary.h +18 -6
- package/include/diff_binary_file.h +18 -6
- package/include/diff_delta.h +18 -6
- package/include/diff_file.h +18 -6
- package/include/diff_find_options.h +26 -42
- package/include/diff_hunk.h +18 -6
- package/include/diff_line.h +18 -6
- package/include/diff_options.h +82 -120
- package/include/diff_patchid_options.h +27 -19
- package/include/diff_perfdata.h +18 -6
- package/include/diff_stats.h +29 -10
- package/include/error.h +18 -6
- package/include/fetch.h +15 -4
- package/include/fetch_options.h +26 -45
- package/include/filter.h +115 -142
- package/include/filter_list.h +62 -22
- package/include/filter_registry.h +24 -11
- package/include/filter_source.h +29 -10
- package/include/graph.h +37 -12
- package/include/hashsig.h +40 -14
- package/include/ignore.h +26 -8
- package/include/index.h +282 -99
- package/include/index_conflict_iterator.h +29 -10
- package/include/index_entry.h +74 -43
- package/include/index_iterator.h +29 -10
- package/include/index_name_entry.h +40 -14
- package/include/index_reuc_entry.h +62 -22
- package/include/index_time.h +59 -32
- package/include/indexer_progress.h +18 -6
- package/include/libgit2.h +15 -4
- package/include/lock_master.h +146 -165
- package/include/mailmap.h +84 -30
- package/include/merge.h +103 -36
- package/include/merge_file_input.h +26 -34
- package/include/merge_file_options.h +26 -42
- package/include/merge_file_result.h +18 -6
- package/include/merge_options.h +26 -46
- package/include/nodegit.h +0 -4
- package/include/nodegit_wrapper.h +35 -6
- package/include/note.h +117 -41
- package/include/note_iterator.h +18 -6
- package/include/object.h +84 -30
- package/include/odb.h +95 -34
- package/include/odb_object.h +18 -6
- package/include/oid.h +18 -6
- package/include/oid_shorten.h +18 -6
- package/include/oidarray.h +18 -6
- package/include/packbuilder.h +62 -22
- package/include/patch.h +77 -27
- package/include/path.h +15 -4
- package/include/pathspec.h +62 -22
- package/include/pathspec_match_list.h +18 -6
- package/include/promise_completion.h +7 -11
- package/include/proxy.h +15 -4
- package/include/proxy_options.h +85 -94
- package/include/push_options.h +26 -37
- package/include/push_update.h +18 -6
- package/include/rebase.h +73 -26
- package/include/rebase_operation.h +18 -6
- package/include/rebase_options.h +55 -76
- package/include/refdb.h +29 -10
- package/include/reference.h +175 -63
- package/include/reflog.h +40 -14
- package/include/reflog_entry.h +18 -6
- package/include/refspec.h +29 -10
- package/include/remote.h +280 -91
- package/include/remote_callbacks.h +201 -186
- package/include/remote_create_options.h +27 -35
- package/include/remote_head.h +18 -6
- package/include/repository.h +324 -105
- package/include/repository_init_options.h +26 -46
- package/include/reset.h +48 -16
- package/include/revert.h +37 -12
- package/include/revert_options.h +26 -32
- package/include/revparse.h +26 -8
- package/include/revspec.h +86 -0
- package/include/revwalk.h +62 -22
- package/include/signature.h +40 -14
- package/include/stash.h +81 -27
- package/include/stash_apply_options.h +49 -57
- package/include/status.h +70 -22
- package/include/status_entry.h +18 -6
- package/include/status_list.h +29 -10
- package/include/status_options.h +26 -31
- package/include/str_array_converter.h +2 -0
- package/include/strarray.h +19 -7
- package/include/submodule.h +216 -77
- package/include/submodule_update_options.h +26 -32
- package/include/tag.h +153 -55
- package/include/thread_pool.h +56 -51
- package/include/time.h +18 -6
- package/include/trace.h +15 -4
- package/include/tracker_wrap.h +76 -0
- package/include/transaction.h +29 -10
- package/include/transport.h +18 -6
- package/include/tree.h +73 -26
- package/include/tree_entry.h +29 -10
- package/include/tree_update.h +27 -32
- package/include/treebuilder.h +40 -14
- package/include/v8_helpers.h +10 -0
- package/include/worker_pool.h +180 -0
- package/include/worktree.h +119 -22
- package/include/worktree_add_options.h +33 -33
- package/include/worktree_prune_options.h +33 -33
- package/include/wrapper.h +2 -3
- package/include/writestream.h +18 -6
- package/lifecycleScripts/install.js +7 -1
- package/package.json +8 -9
- package/src/annotated_commit.cc +250 -258
- package/src/apply.cc +215 -108
- package/src/apply_options.cc +183 -218
- package/src/async_baton.cc +76 -2
- package/src/async_worker.cc +43 -0
- package/src/attr.cc +127 -147
- package/src/blame.cc +149 -154
- package/src/blame_hunk.cc +43 -43
- package/src/blame_options.cc +128 -164
- package/src/blob.cc +496 -517
- package/src/blob_filter_options.cc +49 -65
- package/src/branch.cc +577 -557
- package/src/branch_iterator.cc +6 -6
- package/src/buf.cc +35 -35
- package/src/cert.cc +10 -10
- package/src/cert_hostkey.cc +78 -30
- package/src/cert_x509.cc +20 -20
- package/src/checkout.cc +196 -205
- package/src/checkout_options.cc +435 -674
- package/src/checkout_perfdata.cc +18 -18
- package/src/cherrypick.cc +142 -150
- package/src/cherrypick_options.cc +83 -119
- package/src/cleanup_handle.cc +6 -0
- package/src/clone.cc +74 -75
- package/src/clone_options.cc +108 -194
- package/src/commit.cc +856 -910
- package/src/config.cc +997 -1034
- package/src/config_entry.cc +20 -20
- package/src/config_iterator.cc +173 -182
- package/src/configmap.cc +19 -19
- package/src/context.cc +84 -0
- package/src/convenient_hunk.cc +48 -22
- package/src/convenient_patch.cc +65 -35
- package/src/credential.cc +153 -161
- package/src/describe_format_options.cc +74 -104
- package/src/describe_options.cc +96 -134
- package/src/describe_result.cc +6 -6
- package/src/diff.cc +911 -920
- package/src/diff_binary.cc +20 -20
- package/src/diff_binary_file.cc +23 -23
- package/src/diff_delta.cc +32 -32
- package/src/diff_file.cc +32 -32
- package/src/diff_find_options.cc +104 -140
- package/src/diff_hunk.cc +31 -31
- package/src/diff_line.cc +35 -35
- package/src/diff_options.cc +310 -384
- package/src/diff_patchid_options.cc +37 -49
- package/src/diff_perfdata.cc +14 -14
- package/src/diff_stats.cc +77 -80
- package/src/error.cc +30 -30
- package/src/fetch.cc +2 -2
- package/src/fetch_options.cc +142 -181
- package/src/filter.cc +336 -495
- package/src/filter_list.cc +239 -260
- package/src/filter_registry.cc +77 -26
- package/src/filter_source.cc +65 -48
- package/src/graph.cc +127 -125
- package/src/hashsig.cc +120 -128
- package/src/ignore.cc +65 -70
- package/src/index.cc +1216 -1250
- package/src/index_conflict_iterator.cc +71 -72
- package/src/index_entry.cc +308 -96
- package/src/index_iterator.cc +65 -66
- package/src/index_name_entry.cc +132 -144
- package/src/index_reuc_entry.cc +258 -276
- package/src/index_time.cc +121 -45
- package/src/indexer_progress.cc +34 -34
- package/src/libgit2.cc +23 -23
- package/src/lock_master.cc +190 -197
- package/src/mailmap.cc +329 -349
- package/src/merge.cc +591 -595
- package/src/merge_file_input.cc +88 -128
- package/src/merge_file_options.cc +113 -169
- package/src/merge_file_result.cc +30 -30
- package/src/merge_options.cc +118 -166
- package/src/nodegit.cc +158 -229
- package/src/nodegit_wrapper.cc +71 -8
- package/src/note.cc +527 -552
- package/src/note_iterator.cc +6 -6
- package/src/object.cc +380 -386
- package/src/odb.cc +391 -408
- package/src/odb_object.cc +28 -28
- package/src/oid.cc +59 -59
- package/src/oid_shorten.cc +17 -17
- package/src/oidarray.cc +15 -15
- package/src/packbuilder.cc +250 -254
- package/src/patch.cc +418 -347
- package/src/path.cc +7 -7
- package/src/pathspec.cc +229 -249
- package/src/pathspec_match_list.cc +34 -34
- package/src/promise_completion.cc +32 -15
- package/src/proxy.cc +2 -2
- package/src/proxy_options.cc +203 -254
- package/src/push_options.cc +119 -146
- package/src/push_update.cc +26 -26
- package/src/rebase.cc +370 -378
- package/src/rebase_operation.cc +20 -20
- package/src/rebase_options.cc +172 -242
- package/src/refdb.cc +64 -65
- package/src/reference.cc +973 -962
- package/src/reference_counter.cc +2 -2
- package/src/reflog.cc +138 -142
- package/src/reflog_entry.cc +30 -30
- package/src/refspec.cc +98 -101
- package/src/remote.cc +1592 -1456
- package/src/remote_callbacks.cc +671 -544
- package/src/remote_create_options.cc +91 -140
- package/src/remote_head.cc +30 -30
- package/src/repository.cc +3248 -1216
- package/src/repository_init_options.cc +138 -208
- package/src/reset.cc +185 -204
- package/src/revert.cc +142 -152
- package/src/revert_options.cc +83 -119
- package/src/revparse.cc +62 -65
- package/src/revspec.cc +130 -0
- package/src/revwalk.cc +255 -201
- package/src/signature.cc +139 -141
- package/src/stash.cc +294 -312
- package/src/stash_apply_options.cc +133 -179
- package/src/status.cc +199 -197
- package/src/status_entry.cc +20 -20
- package/src/status_list.cc +85 -85
- package/src/status_options.cc +96 -111
- package/src/str_array_converter.cc +16 -0
- package/src/strarray.cc +20 -20
- package/src/submodule.cc +990 -1036
- package/src/submodule_update_options.cc +83 -119
- package/src/tag.cc +772 -763
- package/src/thread_pool.cc +748 -87
- package/src/time.cc +19 -19
- package/src/trace.cc +2 -2
- package/src/tracker_wrap.cc +238 -0
- package/src/transaction.cc +89 -90
- package/src/transport.cc +6 -6
- package/src/tree.cc +349 -346
- package/src/tree_entry.cc +87 -88
- package/src/tree_update.cc +83 -117
- package/src/treebuilder.cc +137 -141
- package/src/v8_helpers.cc +19 -0
- package/src/worktree.cc +539 -328
- package/src/worktree_add_options.cc +59 -51
- package/src/worktree_prune_options.cc +59 -51
- package/src/wrapper.cc +10 -10
- package/src/writestream.cc +6 -6
- package/utils/README.md +1 -13
- package/utils/acquireOpenSSL.js +196 -62
- package/utils/build-openssl.bat +13 -0
- package/utils/execPromise.js +9 -2
- package/utils/getElectronOpenSSLRoot.js +10 -0
- package/vendor/libgit2/.gitattributes +1 -0
- package/vendor/libgit2/.github/workflows/codeql.yml +36 -0
- package/vendor/libgit2/.github/workflows/main.yml +98 -34
- package/vendor/libgit2/.github/workflows/nightly.yml +292 -0
- package/vendor/libgit2/CMakeLists.txt +6 -6
- package/vendor/libgit2/README.md +29 -5
- package/vendor/libgit2/{azure-pipelines → ci}/build.sh +12 -1
- package/vendor/libgit2/{azure-pipelines → ci}/coverity.sh +0 -0
- package/vendor/libgit2/{azure-pipelines → ci}/docker/bionic +4 -1
- package/vendor/libgit2/{azure-pipelines → ci}/docker/docurium +2 -1
- package/vendor/libgit2/{azure-pipelines → ci}/docker/entrypoint.sh +0 -0
- package/vendor/libgit2/{azure-pipelines → ci}/docker/focal +5 -4
- package/vendor/libgit2/{azure-pipelines → ci}/docker/xenial +2 -1
- package/vendor/libgit2/{azure-pipelines → ci}/getcontainer.sh +17 -11
- package/vendor/libgit2/{azure-pipelines → ci}/setup-mingw.sh +0 -0
- package/vendor/libgit2/{azure-pipelines → ci}/setup-osx.sh +0 -0
- package/vendor/libgit2/{azure-pipelines → ci}/test.sh +0 -0
- package/vendor/libgit2/deps/chromium-zlib/CMakeLists.txt +101 -0
- package/vendor/libgit2/deps/ntlmclient/CMakeLists.txt +1 -0
- package/vendor/libgit2/deps/ntlmclient/compat.h +0 -27
- package/vendor/libgit2/deps/ntlmclient/crypt_openssl.c +1 -1
- package/vendor/libgit2/deps/ntlmclient/ntlm.c +5 -5
- package/vendor/libgit2/deps/ntlmclient/util.c +15 -1
- package/vendor/libgit2/deps/ntlmclient/util.h +2 -1
- package/vendor/libgit2/deps/pcre/LICENCE +93 -0
- package/vendor/libgit2/deps/pcre/pcre.h +2 -2
- package/vendor/libgit2/deps/pcre/pcre_compile.c +29 -17
- package/vendor/libgit2/deps/pcre/pcre_jit_compile.c +4 -4
- package/vendor/libgit2/deps/pcre/pcreposix.c +2 -3
- package/vendor/libgit2/examples/blame.c +1 -1
- package/vendor/libgit2/examples/checkout.c +1 -1
- package/vendor/libgit2/examples/common.h +1 -1
- package/vendor/libgit2/examples/general.c +0 -5
- package/vendor/libgit2/examples/log.c +3 -3
- package/vendor/libgit2/examples/rev-list.c +1 -1
- package/vendor/libgit2/examples/rev-parse.c +3 -3
- package/vendor/libgit2/examples/tag.c +2 -2
- package/vendor/libgit2/fuzzers/commit_graph_fuzzer.c +80 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/005682ce1cb5b20c20fccf4be5dbd47ca399e53e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/00574fc29fd1323e93d18d625cde80d3ea20e8cc +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/00916ec21ddbd3c622bde6e4dc824250176b9e88 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/00b6dde4b8d5e68a5ec40d88c39134cf2f1f8bc3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/020f0e77e42d8b3810019050f4c5ceadd205b37c +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/02739c05abc1715fac1ce995b532e482abc8d4dc +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/02a276faa5dc8c7df5b82a57ab6cd195a13e4ae0 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/02de15987d68a97db3d9fd964cfd785bcbd54d3a +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/02e106f97a91b1d3aef4dd2d31368ae5077bd42b +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/038555bcb4cc2daf764840f79ebce4023bdb7670 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/04c159a04b0732e04ac4c59ed3356860af8dffce +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/0560ec993882ffbd8d46dcab0ed430089c4f2aa1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/059b3aab3fde6b4c9404aff83fed638596f594bb +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/06168e726aa0260f520165be4ea0c88244831049 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/066d1ec700a526b97009cedd0305b6a47242faba +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/086a5f8cbfa9f058b5c938a6eb724c9e4c5f84f3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/089313c698f3e351433e9a45af2ace1d85b9673e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/092eb973a771fa14cf0b567d65bd2c99130f543e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/094b8cd1aa3e40b1f9ff83680892d52e246df0f8 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/0ce990c9c2ec121b8c78ba2bdf84679e04c0bdae +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/0dd0770c34fcf6b1f13219450190616d344db021 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/0e2b2e6a32733b8a625bc7e812e2ea508d69a5e4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/0e8d0bd07c543d708aecaca377106492b7a74fa3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/0f0d16e1b8c8671dbe1074115c1d86aa9b359e7e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/102ef78036de5a30927e7f751377b05441c41a08 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/10494e7cc9cb8dff289c431d7560bcee0d1b14ed +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/107b11d86381345f50aa19b8485477a870ff399f +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/10bb37e18fb3c0897dabacf9c464b4d324007dc3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/10ee715f64b08549c3e8261204276694728eb841 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/123e4eeb7a731f48d06e336b4d29af717f8b6550 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/125a228afb923970e0a6d4412f7257ba998594a1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/130d96c16fba06dcbe7e2a661ab959a3274a4bd9 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/131c5a2fec55cb0d63f7dc055d6fad5f3dc3c974 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/13e562d61acb3aa36260a819a00b07ff16450335 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/1414e6e8ab6bad1b5c51fed807c514a9d6575e66 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/1432d191846ae2d0e381813efcfacff2f1dba0e4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/14a84cdc6f8d432be4cd3d3eafce92ae385e472f +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/14e3e735dba88791f2cadd6e0dc5d662a104a6d7 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/1574abb020203103ea629d677edd21c967fc0f4c +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/169cc492ba94948a6206765436881a1a0c601780 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/16a2130c1d75129f3bae3bf8f2c2de41fb3533c0 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/16ba602eadfc9a3f74c0845394eda0de42b61571 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/17555fb2dfc444d171ba686667d72e388bd6c041 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/1a10450d99c1e53d9b7f97b8014cb7fc01906ef2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/1af670b5515231fc04b2be9038ee30a7e066b09b +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/1b72cfa68259e3f3b3802906902a0a29368f86b5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/1c62ac5d632aa9e449a4335b675941107d8825ae +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/1d95b5db2f802011b33d10212a66fbe40827dfd4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/1e068537ce1211a325aab42ae1263a109131c9f9 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/1e9c882c9d33304a5791ef6c98eee65e142bd7fd +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/1f54935df929403a29e77591c97f767d94871aea +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/206015659641771bb0d668728c2fdc4209e65dda +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2096493a2bcc2d15b7ae5bf3112fe49c39976ad8 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/209b74e08abe8c787b7c5ba81e51cb69c57ecded +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/21137876575fbca357fc0c96db1de73c6737e1ae +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2143d9db9802f076c72a71184cd9d0cb4581e9e7 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/21a52a5282145407d951ac73c2ff27876783899d +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/21d5c8c8ac3a09bcba5388c472df32795986a5cb +1 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/22170d1110a1c18009b7feb21a470681f55e85fb +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/22f55dff94785f24252d7a070f713840f59b0870 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/23d10ee9694e1c66bedc7060990f19a2ac3eaee3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2435430ca19502c3b0ec4987508d4a8fbdbc898c +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/244d2ea0c5c3117000b599cfab37680ba8f04513 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/248bf94143d150da2459cfdca099c30c6daff00a +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/25bc53498129bb3717671f00c355d2637a91c86a +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2614f60da2d7e291501397238366d27513bff773 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2651b3d5a8b4616b1faa81dabe27ab2712a27561 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/270257a2872b33dd13c4fd466cbc1ae67d613f9b +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2830c6244c74656f6c5649c8226953905a582a38 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2889a85c07c20551ff0b97fc640e3c91b33aa4a1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/295ce43fdd56def8948d1ba2bfa7fdf0c47b5318 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/296cbb94c4e68ab86972a174405308ee34d0c40f +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2975adf222cad108ec90d8225fd655e30e3bf253 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/29f5d27760c9254ab4db661a6cd0323dd11c34ca +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2a359fb09eaad968e57d353453908027645873d1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2a6b65a8d6c28febaa081d220a4433f8366d02bc +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2b14dcade4d0919b0a17830fe353738015f492a6 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2b298a13abbd9829e965424a1486baa13d4166c4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2b44d8cd8e70e25172b4c740ebe38ef411c965b3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2b590c4e61fdfcf21c017b29440747a1894b1534 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2becb18a971ae30e1a8f6680982fd7305708caa0 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2bf78b02099a1fe4ce50d065254e843ca55e280f +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2c1541ecd01aa7b9e99bccfe9804198b3e79f118 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2c6798057af5894c27631ff63e845fe1e4bdc9ee +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2cf7eb7fe489e5acd64df755e820c871784c2ba1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2d49ba35ca404baa0d593925f36a81ce53943c8d +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2d507d42ca43ffc2f3c8892826e1db74144ec096 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2e4da693e3e336d2b1a40311a7ccf94def035b6b +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2e71ff86128b5618f0f067c407a76ff645ae2019 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2eb777c6d7e6ee9bd7a44e37372595043aad596b +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2ec3ebffba165b9dd49e755a9e77e23aed796628 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/302703e3b0d74219868aca39ee7593944c0b2400 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/3048c6908dc3176707fa8bcb0196824e3358357a +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/30616cb39d3ad6060324fada03709d611ad28d5c +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/306beadd9b3135a00037323760eb5377c88a403e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/31464a6fbad023923a7e4700fc11564e811bcbd2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/317f4bcfecf066961ef1982d551cd14e63c9f008 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/31b2248faaabbec69a06098c8cb0f69c5d0aa208 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/31d1c3d1147385d58dbe6f82898a5523320fbcac +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/32c9bc1616a78a230a3724abc02150db1cc40aa0 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/331e2866416b091252f0299e98d32cfb29237029 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/331eb3876dd2f3f0bd51f380ac431d86d6e3bb5e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/346bd6eaeadeafcb840ff9441614b309330db63e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/349931f447981f21476481448576e805c093a25b +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/34a2da1e9adaac1b4be1d40b1ece81fe00643d49 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/34bb8f475e7384a8a39618fd15fdc5fb1b12c1a1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/351a036c6eb95db9364706b861f7e75ad26194e8 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/355452c1da8e7689d816d67cdde040b5df7eabd7 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/35c157ad2b100b4f334cddcf3dea6ef2d85462be +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/36a81a45eabfcf53e1ae0361aa234791e2fdb750 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/36ee20f6dbeb3a34e91eafbbe2e379f9ac6cfa43 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/377627c19bcac6adc880202048a9eac07b5417d4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/38747e7c8bec2f9c923739d50ba54ff88ba6503f +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/3945843a6fab2ec71030f09b237c125b97cd3ea5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/396321d39b82ffaccbc64115117df7e822b0f515 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/396e78eb9b54e2cefb52cd76a22137c8abd6cbcf +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/39c1ab66035adc104cd06a6d98b77668172d21af +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/3a1078c35f5401ce09b5ba921fc348dde37530bb +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/3aa3d8f40392d1c863d23799b8ec0aedc7191302 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/3b08c505601271cb92345ec7f0ff0b28daf90a9c +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/3b41702587be45f678b36823ad2f7e5002337dc4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/3b69108cc919aba0248f9b864d4e71c5f6d1931e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/3b90507501bb3bcfe0094f9c92cc2869f1a7dda5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/3bc7fe44c3a1464dd35a4d22b482f46cdeda0405 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/3ce99994986efb6df3f3568423e0077b53c7ef78 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/3d6cb3ba21181c9f0ab08b2608eab773f36773f2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/3d8ec41450b943d5dea73fb1e393960b03d7c3b9 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/3e29e8baaac0f6c7e4cf3d5adca2ab3a2c491ac7 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/3e9469b3c68ba334671aacda7a7669b0e97b74d6 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/3eeda3bfa7abef69911c94520c009a08c49b9942 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/3f0f5021016451b57f673d0603cd9e4830c2198d +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/3f46540fbd94bf0337c1d0d7437ec992a3568f09 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/402d9c25d5833d42630882ab5c57833266bef785 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/4048bb3c26d67c345630ff9e86db551a3add6549 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/40792f23c1281842dab671e8b213fc408d1ec39f +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/41cd0b5d9a9540947b7b1841a55e4c11bd4346a2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/41d86e5ea3df4a0de60d42aeb16e2a5599aedeae +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/42b4e5430b2b1b17a361067fb9dd33ab74e52232 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/42ef1c9d234b90acaf1651d930fc52d5f8f158f2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/4570c8ff26d7f31afe73b3d9a35a29bc1274d68a +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/45cf4751a5929930a7c30ec10134434b9ee13c3d +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/46e9d351dd5bb71f7d4d8f15b3fad312c781452e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/472421633b984556b96bc20f1fcf7a98c25736f3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/47f35b91699caee098cacdde0161ffab21bdfc57 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/48b9da327218f9409287687a43b7eead4789a588 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/48d14fca326d5d591d18d34c2821a457277819a2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/48f3a33e2a027f5735d0a333ec4acd5a2aa57118 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/49e0eee24eab094a9c62f6b37b6ba01f8aece4e4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/4b45bcb707d2a0bc23b415e9bc3d7eb1f7f0e188 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/4c428300fe4866fe81cff02ad4bc14b6848f7f73 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/4d69c567df2e858c5f248b3fc8e4a9c04f02481c +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/4d88b6c9b513d5db2e07313a39b43d112d3d4562 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/4da73370cf854ef8bd08c7f79b92a187cdbff278 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/4e4b2827351bbfd414b718052a8f950a9e3eb7ee +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/4ed43f7d3c0305461edcbc86f62e0c6ad56df01e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/4f011529809e88205421fa8ce39dcc025293bcb8 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/4f1928b6376369ab6acf8a282284366cc3bf71ef +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/4f669eca3416c44f0d003ef2720d03e697e2230e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/4f750f24ecb5080bea2845061cfd3ce4529d30ee +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/4fab9bb2bacf562e65f4a8681c429e6ea92aaed7 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/4fd757c7251c17413b3005fb38aee0fd029d89ec +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/506092de91dcf93254cdd5ad9e02a953a38099ea +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/50e934fb52d9bc5cd2a531adced1cad7f102a112 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/512e49a9e789656964988950009e6534907e6317 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/51404149f1ea30ee6959fafe81a52acabed97e9e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/5150f8a67399ee16178a2b08198cf91a90c0e53e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/51a1fd23dfe5a8062cd4601d235509247f3bc2dc +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/51a963486f041a60c422f0dd6da3b69c52f12fb7 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/51fbf57a2a35ec33164838fa254fe605a3c868e9 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/53068b9f9cb54bb52d076e9602ccd55f169ef39a +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/5314619e15fa5ee67df44481b8213a53786d39c5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/533f5f00275968129846522fe01e2819746272eb +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/53a62799135c282435a17e032deda03eaf9daf0f +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/53c9d5cd849977e523d92dd2d639e9b0e721be50 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/54767a0bb3b96d39f5b2004ce3f274465f1a927e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/548de37dbe6a3829b73d976996ec9838cf608554 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/5522cefa54b798ea4aba8ef2a42ad248a7fb02ee +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/554fab3eef5d8709f06d1d4319efe5c0c437421b +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/567fe73919dae39b0bcb78b03d655643a71714a8 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/5717a281aa722ee4a32dfa1cc72fc5d6081f6755 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/577d814e0be43df9321c5b27119c398bd00a00c5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/58680611707c6188f9f067f8747b699cd2fe82d3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/5915b7f91dd43ec37a4718061c90cbec2686b916 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/599516e368ff621dd06d8450837350f4e9558c38 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/5a2d01d141e4d523e718c30e20cb07c3ad98f33d +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/5a9803ef8cd88d1e8f1d6e5920b8afd170cafb11 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/5ba93c9db0cff93f52b521d7420e43f6eda2784f +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/5bf0ca772092e6fa34b6822f61a1b1c3d7f2c6e3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/5cfbfb3e12b629dc9f74baf0a8741345ec288795 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/5d8cc97b739c39820b761b6551d34dd647da6816 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/5dcbb3e1c2fc9a191dd3f3443b86f6bc38c39e37 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/5ec17d081aef9872f746e88ad8b03553719f9c36 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/5f88e3ba60c11be25c47a842763d8870d23cc7f2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/6045e4d2bf85013c78a32e71b014ba3d4a4b7c61 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/615c7ba7ffbce955ffd964682e2a0f7ef3c767e4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/6189f29cbbe88ac6cb32fdefecda1bd6194332a6 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/627224cb8484c62992dcbc4cdebdbfa48a3c021a +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/629fff0962d298a7283a3d1e1d1b940dfef9b315 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/6322594cff2a99d0abb1139e6a43b06df76d539a +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/63de5e8e042222d53bf05640c87da376aefb76cc +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/647dbb1d05fe0fab685bfe126bd9ac3a12b6bccf +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/647e5e265d8d1079784fc2a3da25f7ba58126acd +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/653bd480dfd1e5f4bdca702aba3dfd8da0c204b7 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/65485740a465377213c80fa68028727f281299fb +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/6551f8c8c3028006d0cc4997943df8a86ee3f598 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/67799e79d33883510f85ae9705ab3932862128a2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/67b475481e5a21351b49789874adbc988aefd64c +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/67e5a649967dee002d1c181e079748c404e29767 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/687424a4a31a66a78d1637c680c9c10746741007 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/68fa6dd52832657cb8dd7e1485d6fbafd4e93903 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/691696af1c042115f4d9f9b8e24f7b8c06ed189b +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/6a80152f9b1afa3a3080bf3f6aa48e84c2e18497 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/6af27e4cf4c7bcce128a5949ee27fc73ab2cc71e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/6afd8f82d5639b774de0dfd418ae85322f4168dd +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/6c64a9e26e0e1480bb5e60b7044ca6ce17104a80 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/6c850c17db130ca0152f7c75562fa191f7ef89de +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/6c9afe4527371a2baf33c5e220e4ca21a3207f94 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/6ce3d40b0225923a7f4123a919b1c5d70841fad7 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/6cfd064aa6197813eb18f38df967ae4cdba9c6da +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/6e6675676c53bcddc870e06605d2432e3429f224 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/6e6e82579b7abae2b43d90448d3f2ead4dfcba78 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/6f13d23c75a562eddefafe85e208e602832294e2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/6fed59b0472927f5d2396d0ee4d7fd13579377ce +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/71f7724196f9f8fcfe3ee0161a84893bb9c4ab11 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/7335ecb1d41e713bf3909adf5802b90e22bc1581 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/73afaa73175f461e1d19d5138e055c1649926dfe +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/73e2fcb45c4df90d19091056b235e7a317631a62 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/741cb2d5ae11b0a9e0608b58ec7284d75129a1f2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/7431bb0097a9bb52e1ceaaa8674a13cd3486a387 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/7455b805995d0c96ac12f8a1c1264caaffcfac1c +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/74e39b8a82fc06f9ed8f83ea30545ddf6df66811 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/75d51e413d3e916560dc0c2ee5092d2f4972aec1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/75e068964ea6beb7310a154d763de74a70071f48 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/763bf498dd847bd2b4af7b611199619bd428bea6 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/77064ae04581a3c6d2a77158ef1a0b1e60db414a +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/783bb14d68021061f592601607f40fe232ad17c4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/7862814cb684310b54ef920b35403515efaba13c +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/791fd85b6ffb2429e9fa5ba29eebdce214ad88c7 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/79396d4f6142a53e26e14aa6ccb4afb4fd8fc580 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/79661b8e529e2182d5c612faba9f26e32a122b78 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/7969143acb3334bffac46c6dfd96362c81644191 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/79d84866dc8c067508c02516b65c0e48cf689b56 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/7b61f8f4a96e309bbe64ed82637fc81492a9652f +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/7b8123f973edfb0f3cab027c0cd6b8efc7b11d6b +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/7b8dd3093efba07f7a4d3bab4b90b8f6e4f28bfb +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/7cc771aab0f3be7730881a46d952ae0a06958201 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/7d177f4207de78d50df2493a3bc07f2cd578b363 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/7d2df075f3e73ea9809c31586c37ece0f568b7fa +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/7d386e68e4c733a1fb11c0117f379fb4b9955fbb +1 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/7e4260830352479d29310bd6e1022e19a68ffe76 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/7e4dfdae52be18cf95555c2eb1f54af7f69c6dde +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/7eafedf7e7f20e86ecdf9ba51febf8492bdbc1f1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/7ef1829a378d66b1dd70a767729127a0dc5edcae +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/80b7d2b9d7e8c8fd7ae239b8d307b592f97ee000 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/810f577ff5c1af7807a26226af912687558158cd +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/81603f1fe8d8e29005418d0fc9a9b33972366038 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/81c8b4d6884f954935fa4a8e828c4637db04b61a +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/8226846e9b092561f85cc2956ab89d8cc1ae61e0 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/825cfceea434e2392cce161356e3cb5f81ec2b3a +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/82603febce83d95adf68b85cabf15d43ca0c4ee9 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/827f0826cc4156e19b4c4938bec74e38de62fe9c +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/8486397ff8d1156249676c19b419a7758ff53f9a +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/84d99ee359bec1b8ee0f59e9bd96f1da062030b7 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/84e629bc7416039f1feb81fa9168d7c1ee3141c2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/84e885752179076fb38739ca7bc4345716bee56a +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/859ef05494c8070057810b5c20df00fc81f81cf5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/859fe592f33abc1d959c0e73ecd6cd4bffe23a97 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/860da5e8a468805b76a44b9ac99b4575be16ea15 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/865e415745cead02a826f058a5ee49099bdf9562 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/878bfce051a9c7462847d4e99b7e926dc821b7b8 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/880492e4dc7259577c227bb4f075d7165e875c29 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/88b7de1bd1c96454a1350286d115c0ee368511f9 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/896268e4a5775b7ce33923ac6daeb0810420c55b +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/8978f8da89f9652878edabad164f5513ef508f27 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/89a6525b7db0e6ec211a484efd2880abef928d4e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/8ae86cba2bba6664fc5eb97be8e9777b8825d823 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/8b845fbd2aa14e4f83c4dbc8b4b0b54d06482acd +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/8c4121e6ce5956cfa408b980f16d276f456374dc +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/8cb6a5b8ab41e3d27668d5735b5c09ff1f2eab65 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/8d80a70ffd362a89b88663e27f11e8ab69b70c1b +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/8db603c1720b3680047f831f2ea9862567a7cdc4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/8dd40b2d27c7dd4b986c35d87f826da287c09c4c +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/8e9d6e6408e5f708a1924e8370e687e2c202a4c4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/8f2dff1a30ee28e5985cb9379828aea5658d5849 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/8f7d18cdd6e605b85784ada14571fd5e5a184f2a +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/903ae52f0ac9af8348038b12f9259741b0de42f1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/9119e331f59e9337d419739c324f49d1bd62c8bf +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/91d54d03b0917314ea1d67a70690df9247dd08d2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/922da3b96725bfd0e3f6ce119f1e2249d53f9086 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/9277561e0524cccba2f851970b0d88ec4f4d3f5e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/92a4d571804026b7bbe957396185e079e756b894 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/931224cc80168fd362a360d99bab813ed7bbf8ce +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/936ea5dad3bf023c552aa0bbeea8f7f66a11612c +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/93aa4e0b1864933dce0abc0df69fe3d261f117f2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/93d5b084965cf1b09085c4079a972e25207b3659 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/9443fd3468bcc0bc3ff8dfe765225f045ab43d0a +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/9624c26cefb5804b7906147d262e81ee4000b6d6 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/9890933a73f39208627bd36e2fe88a6d54343a74 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/989dad0448e79af10040d5080f74eba2b8a401ba +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/98ed4808b4a8da66a91fcea1be63be6371a7c7ac +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/9928e516b85e22fbad58d562d3b7e814d9ce812d +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/994c7cc5599252b5628d89cd0ba4b5574d32bf00 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/99c8557c2a02ea030de42869af42c1f7c77114db +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/9a14c867272f102b84efdba73662d318c3e51cfe +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/9a6f158c176d4a1982d541be2bc27a8afba4ea57 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/9aa4af603192823a2fdc53d95ed36896bc3309b2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/9b40c2190123cec66af3b37212f6c567869efda3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/9b6268c11d78c35db5164f1346905e602b6a49fe +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/9c6883ba5cedb7d711b12733d66ef1a1156dd0af +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/9c85c90f44b454ce0d52882c447f5ecb8d303634 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/9cb7a2e89ec636da3fd41ecc49ebe25e5344e2c6 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/9d912dc5a3497e4b5b40b37202fc0ffbf5263666 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/9dcbafe8c5345194ee0ce7eb4f6efaeb55543626 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/9f4b0f3d2d25e6405ba6093f24d0605327711573 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/a047bf683239fa208dbac09424b105820ac23f43 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/a1379dcd89ef5e73eabbfcc395113e3636e0ae09 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/a38c7ef56adabd0916abac514154b1f362d40434 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/a38ec6ad4a8466b4feb88e67b16524e8f3feac64 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/a3fdea21020268b3b2409c1115d50697d9ae8f8c +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/a45f1987a444b2c27e90fc1477e8b0815f75383f +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/a4682958fb7029384c0a01a4a1356ac6f2f44fe1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/a4de41561725960d6f48f210a4fb74d527f7b0c2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/a5935f34435ecdd6587ad4f77b20d479d3387dbe +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/a5b394beb2b1d463ad80924a8c8c70584bf5c629 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/a62bc806f8c98ba7986243c2185a0548a8dd57ef +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/a7013e97948893e0118c686c06e332cc611bea7e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/a74f5df8c7f25c37c15c0f74ed50019d17338225 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/a7ab3559fb3da3f027e67091116253f3bdfd7828 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/a845c8258a02022d447ea9249788b345f5504648 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/a8d3e026e2393587eb170afb32e94ff0e1f8a8be +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/a8d547e41ee21e163e65cf0a186d469dfa50ec19 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/a8fa22521dd6813e595cc0a9586ee71fff305fe2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/a9969442d585d9a53259c71c73b095701280eac5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/a99789d0ce2d7b937aaa8afa3cfc0f4ccd7be95f +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/aaca30ee3ab38edfa2b061fcbcbca0c0ea657f15 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/aacdec3f05e98eb6eedddb9c6edb968e1a63c551 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/aadd85127241b94a41d02d9e9699e3e9773de1c9 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/ab8ad126702803d21dbafc85713bbee7f25f36e5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/ac26f9afd599ff6f33396c2e02130654f3e2390c +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/ac8b129e4756fda0c50c9dd0eb13e34c7b41ce8e +1 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/aceaf3b72c2627dd3dd065974b854150681c093f +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/ad1fcdc3bf806392e754a902eba9edd3b344c31f +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/ad8c80e532482f9dfbfbb7c0d447f1f4e592bf72 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/add92b71bf897da2f71f691e6abcb6d02cb8e99f +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/aeb8ccf6d82be9236c9e689e1580d043bd701eb0 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/af1a827aedbf674fff2bdeb5589554eec62787ab +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/afaab9a75414d231176ad4582b6f8d81b5dbedb3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/afc12c4ebed1f3ab962d7dcef110b5328b1e24c3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/b0044f3744cf019658d668a33f8d1e53ef8bd6ce +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/b06adc81a4e1cdcda3786970ca07ed9dee0b6401 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/b139802a1cc90fd5b86cae044c221361892c688d +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/b1b8f251542db01bdb01be3b6d5b117b07db1834 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/b1b9af93f84ed6861b9c0ade39980e89ef828c8f +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/b2eae68035cafd4077f6a4c3e4e961fdc1e8122b +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/b32897a6aedaa8c5a6e656dd808bafabc4ee5608 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/b376e4fc517297f92ac1713803ae3b60d5ebbe43 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/b3fd100b139cfbffaad68aacf7d462861e9dca35 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/b40808ca955faab4829811bced1cccb2ab58ea58 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/b43daf9f87a514bce74af3e5a39284c69c4e7011 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/b477da07f3e5796ff4a98c8a5bdb0e4a634954bf +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/b4a2ef09cf59ca5ccf810a6f001cce710cc02f6b +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/b4b75e588cb83430c502a34ec3dcfaf774a00359 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/b4ce98acd2b288b6cfc00461e2e15e0f8004030c +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/b75563f30f7e4fb369d2449b723ee8b282d03eff +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/b7a0a820afa7057081de186728d0d887131d9314 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/b7e880446146c735a3f820fb93969c8c172c2fb5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/b833073d3006e7cbac03c494603a9b75e7b2a723 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/b89459c1fb6fc918db4c81a32a75ee66217f9ab8 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/b8aab6c9b2c706f8df0ff695ff94969171f9c807 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/b9751182a36acb79b77585e1e379857a530e95c8 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/b9ddb239b5a2c1348d972ec70a08507c35ba4432 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/ba8f573256a0fbb95c5626f399ebc3ef50bbd826 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/bc165749042d5425c5d6d4e29b17769a2315a80d +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/bc910bd349319e1ed44d7c7266e3ac99cc29ecc6 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/bc97b1d4f57eb7770bc3983e2d57c8c01b21d29e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/bd06f768e35ded4437cb88e2bc0ddd0bea3fa84c +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/bd702faff9725a7a1957fd0f85cc52799f37b682 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/bee4464861e1cae3cfdd5fbcb340efbf02e8d8ca +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/bf7ad994b098ec85d62683a16e067635e21a8af5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c054fc89ed72101dec861668ff1738ef85b728b9 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c06752415ac037fefe5172dc7245cd7c49ca7fca +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c0c8b54354d172a0be751e3e9b80be961bb15ddb +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c0e7ca9b5b4d0e72d23d7dc9e9d1f2463a17a20d +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c13576a29c98bee02aa47f646f5f170f9b7d83f9 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c14edf1d34f40b3cc74772c81ebe5d72172cc662 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c2789364cb35d111f08f924d0d7550ea9785c61e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c2d8b07acb13e43a89b6c4afb3ecb9817dd4a8e9 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c36ed796c1bf839668db8fc3475a2ffb32ad8ceb +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c41ec9dd94427423e4704721e7f21eae0c44ef20 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c42c544fa9dbb1264b39bf920b40985384db1d16 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c45ec3f594abc15de0a8cc3ad748ba23cb34ec64 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c49004d980961f288616a4eb9ebf68123fd68ffa +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c4c3c3c8df24adf505127627b3090116de78d9a6 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c5c1921293af4a5953cb386092694042715fcfb3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c615caad21cd8a754fcb2008420234c5511c62b7 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c6a9ee3f8fdc42566c4799db3912a83c8c438d7f +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c6b661e976282051285b913b3728383f36103ef8 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c716ba47f810c238fe7bda1fbdc7b1ccc34e9848 +1 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c85b2fa4421302e2fa333a9e33d59a882aa04f4f +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c871d135f2d3117b326688355bc0fa6f26d56cd6 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c915b02265a27d185a8b028305f082ddb3ebd704 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c952d38b3e642db4795d7f954b85f4f6d2a041aa +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c98ee52065736c4172f6ee0c31977bf1b560d685 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c99b183a2cd0dd8a4c1a141cc6eebb0311501fa5 +1 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/ca0cd26baff2f2c0759e619800ebbe7314d2bb95 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/ca3e0d745c35d7cceb0f6e3f8a709eb658b7e5a8 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/cac667320e99e93a796bb89842de4675735eb4a4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/cb41b00e9db33a07e27b3ee05d3bbecaf853b963 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/cbdbd3f320eee627097778f15b9fb2c1dc2bd15f +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/cc7f114000c83abb2ab17f0deab6dcfc2acde7f5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/cc9bb93a6b7a1362a15f04898845dbe1447ec382 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/cce7355f826bbcf3955394596d358abc7df6fe6f +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/cceff2878a558166fb5bf2a0354c1be31dcc4e21 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/cd96909f3ded7aa54bb2ffd2f2f47f8acc6f99e2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/cee9f69d7d1a227833fba127a529ea2a10341da3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/d064f27a3109afde629165432f78f389da73ff07 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/d07e3094f02b0c0e3bab370684c2d8c5634224d5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/d0ba3413d5706de17de64824d78233d48c6efbec +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/d136511364a74973b009f2be9b021d4122f71a6c +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/d1d215c40bcc8dd4ce02b0c0621e90b183b40b3e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/d1e35b137b2027b61def408f3f3c8cf9bcab274e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/d349d137e57fb1a60ab8babd20e2acedc7a9042e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/d3714ec4d3acc6262295b0fc99c6ba699f5bfe65 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/d419df696512216074f1c6b17ea1dfc81c0e6e20 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/d49ad4fdafac251ceec32481826228c1698360aa +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/d4f85ba549c87ccaba59971a25da7e07b57c9f4e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/d51ade0715bcea7decee2a045934599a10c1b07a +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/d5447fb72c97462a3f47c8b2d55deb0afaa225f8 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/d6611a91c29291872ed2932455cb15ddb3801323 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/d676f5e7efd6de6f2e1773231479471d2bba7261 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/d6a21eaa08a957d8f428192e193c2508fca2c218 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/d778052a29539344a9e3144e262e68df9628ebde +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/d884f6944adfff7cb41728062bf91cac5cdacfc9 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/d89aae18d8e320bbae55eaae6a0514d7e005a883 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/d926fde818c63f7b34f38c9f018bc833bc0bf7e1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/d9d542d7c56774143cb6362e5a63739055469349 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/da99bc9ce5b831f132dfb2eb11b8537e5cccfcd4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/dabff2729fa69ab507fb00b7392aee1262056a29 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/dac4f4b91e33847bcedf7c66ef6e4ad0181e8ad8 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/db10ff6d01c7a66aa1823b9f99193590ddce99c6 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/dbbda2208fa688a5275dda0d304630db01ca081d +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/dc47c5037be68a2747ff8a9fa450e1078a5ac5a5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/dc760f136b123e38677aec72853e3365f08010fc +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/dca41b901bf1612d4197e6a450366a00ac036ec3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/dca62f21fce50d1c8c51b82e0d7eeedc6746e652 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/dcc7e6c444f95b10d634b1137413824e2cd68f62 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/dcf4b6addda69040f792c9b860ade2af0b77a14c +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/dd6178166ac1eed82d132fea491bcda0d953227c +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/ddbd5d3074323ccd7cd70bf5de5a2f30de977d99 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/ddd8ec5632bf1b8153d03a4537d3d76517c497d5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/de7a56f36e10d7b9ff43160b1cea3e76b24386d1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/defa60aa46ea5a47c09b6962b4e4296ef1bcad92 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/e0ae419425207832518d66c0ef35d11cbdc20361 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/e0f519accbf15bc57a1bf1d7cc46d2a0b07a67f5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/e128eff8ca7572d9bb0bfc84f64d79c52afc2c67 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/e17fdc21ae03243bd1d31bb6301b4187cab6fe47 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/e340ace35a2db7f89d6aa21cc1300766a74be4e1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/e36dfc11bcaab1e42df13924a2d7da024684db2e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/e39e0c87ac5ce0b78c89ae2df84226baba666372 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/e46b4666c6bfcd6f589ec3617a48cce9c968e833 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/e57219555e11f9221d3166d5029ed2ad92300608 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/e58ce590c2454e7ebe18e0a31a943b0b754fbd13 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/e595f8fef5c8014cb0867978c6580301078ca0d9 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/e5b76398f60628e879328d7009b9fa89feea14cb +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/e5cec0217eea93b18a59d76b0aed6b46b13fa6a9 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/e637b4e0b47d0d6cd870502e6a2d6a53bf917f73 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/e7a6cb6e5a1552837fdbee9025fc48a9373f8564 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/e7f57c48016e1180c9af95acd34470881f10bd06 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/e8253c668bfe37df5c5ada3226860cee74fb33a2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/e8f9981443c34ece02bca3c66130f3429d7b3375 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/e91ed5416bbcd1b03803197b99c08f42c9869139 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/e94201cfa88df7b198abd3abae9007a6780b52a7 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/e967bbd6a0d251ae62c9c38b784271d707f792c0 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/ea01737ceed783b3e0f66d9d0c409cb496c1d526 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/ea40f7879a58d1e52a46404c761f76a949e14a31 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/ea5ad04a54f95963baea1f47845847626e08dd55 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/ea608a401f54b0ca70e42b897f0c8ce6efdbc0ef +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/eb8700d6b3728e6e70c2a0fe504543771639f2b6 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/ec1f271b04c322353865f4819153d46df7def873 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/ee215536e7f0cfbd07b53dd65c5af9a604a01830 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/ee4d4393d7d79b755f85ef5bf8f6e3d743bfa258 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/ee8099331b2c392e7e036ffcd4a9b36ec2c2082d +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/eede9da76db25513f8347f972e170102831de91a +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/ef707cdeaa9548b6c820f769c1d8ad607b3c4514 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/ef98609d8196dc158365dfcbbc47e3d1699c50c2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/efa38b4269f978f3714b44b501831bea678244e0 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/efba428e29811d233720ccaaf41966a309312a29 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/efd514f056d8d83498b4724249c4623560e0390d +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/f00e449ba67ef15e7f29df1e6948c28155d72baa +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/f0a83929d588466051dced6eae0c387db307d646 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/f0e53b72e5d69467e7c014474028ea734f4fcb26 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/f186265b3f10f4383f4174e9fb74f0a0cdfa3fca +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/f18932fcce5a9db5d6c8f59d622eabc25e255e12 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/f2ea163bddb95d67597e2a747779ebf4651cb2a9 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/f2f7d48a6d86143ecb4969808d634163576065b1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/f34a833faf2b0dcbae8aaad142c76c7c7e534e99 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/f5c044ce01645c069334698fb8c4750e44835912 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/f680112645c2502f0612e9d017bbb50cb28affbf +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/f6b778d1b34415a7715905f54968c8b6eb057912 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/f6ca6a62dc885c6b2a4b40c4aa1a7cb8118e30bb +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/f733a8770c23fde182d2fef7e0d96e67244274d5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/f8529ddf17d4505c0932c3d40abe33cbfd8c6f22 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/f96f8419a3fc3719ae86d64e1147e7b7f66a2470 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/fae241a6c87af37781a3b49e534b7ddb6636eda8 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/faf8817a04b77c6a976ab0a3d1e905f79bb7f799 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/fb3e769019fb25d384d4be9d38e4cbce00a6adbc +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/fb9b4b2a46f1c65076340a7bd03b076eb101b760 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/fca9b0a398832c9ba02cdc811f625b97d5beb18e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/fcb1b42c706e61245d5e86f708be777ae63f2772 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/fd6c463e7c30b0e51198c0d1ebbea25f20145e3f +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/fdcbaa49097ad120c6d7709b29d5b65b8cf8e719 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/fe46775b28a2923b8770b44381552a8a1560d875 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/ff04441135ef3308fec2687cf688069c6df8aa31 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/037cbbe0dc03807dd9d9e8629f1712d7df34ee18 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/039ee34fef8f323ed618a10abc0109df123d0cb5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/054ee2c82bdb6a170106eb5d35f21bde2119d584 +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/055ca4cbc961ebf5fd5c922b4f73880d3fbfe39d +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/05c4e5eb1b97bc9b6973921fcb30d4c5e2eb79e4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/0672eeda541a191cfc68d521a3c7ac0aac4057a6 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/06a58d1bd5562a668ebf01ef297fd774e0e587a6 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/06bf7c2461ae1049030f31b83ae76babfcc20c83 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/06c2db67ea65758d971346bfd6beaa61ed12f22c +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/07f88eefaf12609b7370fe78b82be2955f1b41fd +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/08495c5f3828a56c167de870d385c46ffdce03c5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/08ec8594e5b35fb9e8e0726584f720154f0b2b5d +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/0903e378a493c596298074d6bff8de7f9ac25aa7 +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/09144a846f90f894049ef8a0ed0cc7ab4588dc6c +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/09b40dd618373bfe4d3f2838f686a70f645e640b +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/0a00ef44d234c18d365ec41724dbf4f21b09d0c5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/0a94e9f4a9b8cf56d52a9e3e7f2fa9a0a5c80d30 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/0b35a123104b7872a7f15a710a23ef3594ace04d +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/0c3d7e6be32c014ea873440b0f095961d391af1a +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/0c65de477b89afc312a7e89cde06f8a17f65bd54 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/0c81d0f368e979d2a0eb4598cbf1c9283936ba0c +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/0c95a44ae995070a5279a2991c36de2251081460 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/0de38e2cb13167df7d5a882570633596f64bc4f4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/0de96aa193045315457ade63c2614610c503db9e +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/0e02deca2b16d71f8637933bd56dc8592ed9fdff +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/0e44fc9176fe2c1bae4209369da5bc057f54b2d2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/0f6c5fc9b6a68835364bbef8937560ee5a481938 +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/10d542d5c7da060a5f0664e21478a0d598e29844 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/118735f7786ae6b4c2f6b36314ab1f2cafe9c3c8 +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/119b58eb353aa344264005016297fb911510ea0d +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/127626832c30d6d94bb29384c0fde7ac6bca75ec +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/1284f1a162588d4de87ca17149474644a0863b27 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/1458599f19f1a967c787562bf8ec3e67677da9c8 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/14ba6c1ddd05b22c6f2eae5f894721cd3efcbb16 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/158cdc0a5aa005f167a8588d0beed9eee4aa36f2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/15dafc6fa800327f694b5eb2fc4ebf007be9c117 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/1613ed4b2e909871f8897fd6354ff80a4ac12f87 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/16daf4cb967bb47cf4566e9be7d96d3125bd2e12 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/177783dce78efee878f6d6020fd87ab107bb11a1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/17a5090400a1fedc45070e4b530a26f320a89097 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/17dea5cfa498f4d54384289a1daed0d15a85e7cc +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/17e76ae5b54316679981113f52c27edc87dbcdea +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/191ed5e9334693c53fc843f692dbc3c2c63e8241 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/196a0ba4edb5bbfd66c1cda669abf0496573cf0e +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/19742b6cee79fa5bf9b27dcbe367c82d0a399904 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/1a21d7581d3b0a8d67934d48e91d45bd818836e8 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/1b2f96c5d75c7ca09b1012be4e6c3a7b248ed924 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/1b604ff0683d0e23dc7945431f6514ba30d6ca0d +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/1b771dd5bd3ae2b1c42c4efe6c896c83b88a4f91 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/1b793a4ee73fa8bf423da70fca5f39ef32a8d288 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/1c9599ce00978780519272be279f508c402e3268 +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/1cc0068f9f63b12dc8fdd38f9ebfb96c42664e95 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/1de6e1f5579da6e5c40f4ee23ac62e29e4f90541 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/1eec93083260ebfab5f4c6d13119cf27c374b7e9 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/1f0f574addd363d1fed131289f301c5c033aaa8f +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/1f3e85cffdb545c1ba7c8bbe1ca18ec13e341038 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/1f6a66a92d5f083a73a82280a0a1ae0800e56ae5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/208e422322052efcdaeb1a09bbf06c5f476b8efc +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/22d75b2c3937957b14eded621b638283ce7fe1fe +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/22f90ff68166a409acf8f89bf60a31ad2c64ab37 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/236ebad449d432b039d6ace1f250ef1fa2aa364d +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/252a4e4bf7fb21792ec2f305fd88fa7c9168505f +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/259e1faf7b7f12250062d36ded1193a9dbcae0f5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/25ad3dfb655ab4c853d0d277872310d9579c8e83 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/26210f5b8fdbf81b312feea48659ec6e2e083c0b +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/263a2a0915be36d8cb2bc30774e37e0344262347 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/2679bfbc2f4f7c10a304245da4e156e235377b63 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/270b7b567a63dd94bb2a90448bbbc2e2bbc4a261 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/271cd5c5e254a293d115588ee130040ef26b59e8 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/27839a8035b48f8c19ab073808a03a95b6a90cc3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/2810c385c9285cbdb65bcdab5175999fe547cbad +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/28afaf4ab4b092ccf987661e58009f96126bba63 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/29f842e86a891cff9f0b44c8aec19f7e23a47000 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/2aa2549f617f19402d1feac61d4ca1af3545cc8a +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/2b73c2902eda6da41321493601003b29c3445713 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/2bcec1274c5e7b2d7a581d851c016ef5b553fabe +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/2dd9a328b6d4e29e42684347be5c4b7cd7dc1a66 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/2ddc17ee7ee89bb7dbc673328d5f3e55c76e686e +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/2f71d5e99dc93618ed99fdb7c244a8f5e4a7eb4a +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/2f7cd0154d71a83e7b104670b2a77fbd285ffde2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/2f9d40ef790f5213234e95d123dce942b2d1d389 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/31577bacbca7017308d2a0c9ebfdd4fce513bbe4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/3278f1bab88b80597d0066812d49f8bd3c7b1dcf +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/328160cae6235605ff70951a2f6ac669ba7bb397 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/337ed1bf91701a4c8926840259077e55938c6efc +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/33a97d83ff7a774797b1751ea4bffbb4a22c58d9 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/341021da9516401cf364ed2b7dfdda346db04f2f +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/341773a439cdecc58f55fb205ac584cd93ffe0f2 +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/366091157510e40bca08fc2102b9018ccf4697de +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/37096157e2f9f2ec8e0b97b21d335bd653f3edbd +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/373a74b8613d09babcb567f91047e7b556a8de90 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/3748b07ee7bec7bdd202ee14222cefca182417d1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/38b7906b9f956dca01dc92d0a901388ec1cbc8b1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/38ddf3424559f1a6e7687eff8469a358184b833b +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/38e31d0a7dcc3835ce1a4afeeda8446fb3d7ed73 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/3955ec4497b226391ef9eb40f38af6dee4fa26b7 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/3b6b424342133feb0f587f22bcd8f21595c004e5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/3bb71f41200e0ebf8d19532e7d6e384c48aa2d03 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/3c5a6063797aba9ffe5ea9903bbfcf87193652d3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/3dfb9927d959f2462f6944a32d080b60a265abfe +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/3e19242a63ec92a0c3f7138ebbc31bfe7cbd40cd +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/3ec53ce4ea1f41f040a3c2beed929572af95dd43 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/3f0762fdf49a58c0d8fd6683964a85caddee391b +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/3f71ae863c4e9bac98e49a554b8ec4d78b17492d +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/3f9df30bfb66a28fbe6f1951ef7ae4ca9f19fdf2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/3fabb14670c008c22094c1d7cd7b1e23b4c48b3d +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/408fba9c66c5d1deb31e4c69f1dd0677844dbc1b +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/40ca8645081087e950ad61bccf8d43450366356e +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/412faec949b9d04498de939561664ee559a583a7 +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/4148bd5336f89e73b2a5416c67d491c0ec4a2b7d +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/41933e61fa20fbe2b190f9ae7ceae4a4b1220021 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/423d90f3fc7ddc146095ec5a4b4f455aa876b69b +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/42a6c52249aa12cfef1db1bf302a483a01c972f3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/42a82726f0e70da9b87b6c52bc1b3415576025f2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/4458e19f99e38c61ad9792b0b3bf8ac79f8236f1 +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/44a4411a8d6ed67ee3ea61d91d2afafe89295b0f +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/44e04754d1b6c0c045e05509dd7033d19a926b10 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/45259e9f0a2cc7739a94eccaafb37c1570f73884 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/46c0d7e952200cabc08b9cd776a9f6759f4208c3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/46deac8631633ea3c32005124e20a2bc2bbabade +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/46e7edf6e9d6cbcdabde3b48f1c4efd93be40348 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/46fe9556c28c94f7321baa2519a3cbeabbd54d09 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/49223681729e73b48b26a2262e4a66b2ba00e176 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/499e61b689f6cc7e4efb0631684739c2a6f97c7d +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/4a06ad8c4d717bd048a7a1315a3d609d70f0162d +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/4adb7d4791a4c6370478dff2eb987d715554bf09 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/4b01c479cdc9b750a31d5e7ac5004309222d218d +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/4bce7460a6becba6d26984bb438d7d3aa4e4fc56 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/4cc96483b6800dda296f00887b12a35154115090 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/4f3aa59bae0619c9a06b631d9cb7767591810ab0 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/501840d963cedd2945018de59e0202444d7ebf4b +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/50479958c030d1addceb1ca8c27f24447e555e65 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/508ba8ef164a809f739834a39d690e700101a7a1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/521d345313812e54bc6c944485e19dbb39a87768 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/5369d74ac157f85b597c1b28bbd6768105e9327b +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/53997b0146ff49bfe464be203b130a67ea93fd26 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/560ea8bd7d11b00e0d21631b6d9ec7e63f0a5286 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/5682ebc6878e247ce9bc636d34ada6ad338fcaf0 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/5762abb5234edd913754b69e1ab03274c711ee68 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/579406f055070559bda3c6120107feb3e637c481 +2 -0
- package/vendor/libgit2/fuzzers/corpora/midx/5837d16af4a9c1f2616467cc4aa9ec8836e05c58 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/58901e865fe20b9fa136cca4b253d3ae73c2b78e +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/58a87098a14572e46b53c87340083f999d8fcfc2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/59ae139a21448e0eb7371ddc6ef57f0c9dfe9c85 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/5a7e81419f895168c555ac9b4e75a1ad4f04b34a +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/5b848c1f56a150d64020e9b0bb398a286dca4096 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/5bd311bd846336149b2815666052fdb7e8bf2ea6 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/5ce77eb98473a2e01d04909939edf7aabef5762c +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/5e5cd5819811507ac69bd8abad27433ccd6b7521 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/5ea114ae3dbb140364000c416152b0f32ce3de23 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/5f181bb0a79603c84534a9b8e37ecdeb1d2aeeb5 +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/5f428ce1169e28353cedb8be3e2f6edd0ef354e4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/5f9bc7729dc331e3c4d8e52df0688abad6d4aee8 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/619527e1d650cd1c26e9bc61e424c9fdc04b17b9 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/625d3676de25188865e05db2a3933c38508406fc +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/6368569cfde7fbe369a0ee4695fa4d5a7d7887a6 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/6388fe4d630064ea1ea33aa85381d9c82e328e95 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/64cff4e110f0bcb3ea833c1afda6e27a57dac0bc +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/66449b87ce47b681c6326f337bebf03366a0ee99 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/66ae3584497a1823a955c33e5bc53f7434c13e49 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/66e238a6ad70fb30c82171ff1b73ea71b4379355 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/66f345dc060ac5a1fe8bcf0828102d072deb1111 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/66f839146ef46deed25fd2cd169a4f1a2a3533fa +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/671720ee2b7ba45920b41b8016eb5206b88168ee +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/679c7140ad60ed32aeb7ee464499dd52b0fc212f +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/67c5e6ce7bb47cefe54d749374f3288a2c915936 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/69592399b45f2f83e0cc823c5f0e3865ac3fa611 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/6abf97508f0ed808b7fe0d9bb2439981153badd2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/6b2dfb51b35b78680cb02ff54e06f0c983c04866 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/6bbf6ab605fedd41ed6c7581ec9f87c75403e9c3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/6c0656104902e1323f3a19c46df7cffecae94f1c +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/6c0ce8006b3ebd8202e61fe5f4cc2285248bd1ba +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/6cc635e6dd4e430ed4fb68a9f5add38aa02ae14f +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/6d1b281d7bdd9887e53505fd5d040731db18ba48 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/6d5c35f9d87253b2fbe383bfde3775a9f737da12 +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/6d95355018cadedd97bed65c45a44a7ff6f065f7 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/6dd70e887ab94db3327d9aaa0335914a1f4986b7 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/6ed51a953a8b6671de417406e340d8d0a211aa12 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/6f911f19652a4457c93ef92b594bc1dc2ca900f8 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/6fa76cbaeb3cf0417c7a372132167bcd737db66b +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/71f66d3f7da318d69681a22ebbceb1a2bb290658 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/7227a2dc335af13e7225536c49969f46a800750a +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/72fce27bbccf582f2023f5e168853251e576592a +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/738e5543ae005a6de85dfcd960eb8e3e6faa8947 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/739d9c8868445202305d0a4e5766df1c68932688 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/7438b07314917c84d348e7d9629e3712190c7da7 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/7490f00d660f5d8dedfa606cca241bd07be86a4f +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/75c64e8b61af41b28516c2c0fe902362d55a24f3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/75e94b59a41e7f086b6f7ab3bca801251744ae3d +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/7612ceb3a989f97a7bb19f57c7f9c61366953642 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/76ac2328e1c979bca648b4082b8bfe6f2e2e73ea +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/76f296039ba4d666c9147ad234d43b55050808e3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/777f248eea53e3dd2b726e1e0de5eeda43b6d323 +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/792fcd0075bd8031a98a68ce04d6a9f23feef7b4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/7a936c3e69013b2c71dcb72f0eccd99c93367533 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/7b30d0cd07108f2e45ce1a3fab3f971b25dcf5cd +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/7b87f367b5fa3bf29bae19031814e5d0120a15ba +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/7c12e4bca60858eae13c47a66e54cd9e96a50909 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/7c59f95e649b3be6344f4f835afd0d9a894c1144 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/7dcb6494c3614a8690dc496309f90e0f23634c37 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/7e64b86827ea98f0a4eb54736c460a59b0c30420 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/8125d9eaa09b3d2283fea73223866cb36877c4a4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/81c7fc514fa9a07b5b87b94cf9c00df2b1325a74 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/81f9df0493052d980ca13918637bc6ce565615b3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/82556b9345134dd689cb9d0d08d3dc8459454181 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/82d35a7a6ffb333b02d0d597e88ffdd481237a8b +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/82e931da372a2c69c0f10274342173c2be091f1c +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/83e2b53f22afe8f7ee21d30fae2619ad0d6a71e3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/83f4d70189dbc0d3aaf5025977c53d4d34fc5893 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/85e17cceba7850be893afdc04c8233bea1ef6e72 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/874d4abdcd7db751eb930928231669afe90589f5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/87894ec663568153d7837f49b80f6d2e99818bd7 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/88052b76108b4ede342f3dd87bb6835b2f71ea83 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/884c54256c0ec2cf1c5fa08a0b3d9c2fea021300 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/8858f36373db5fd6b805a768af55c21019c664b2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/88fe8b6767c1bd32308208b22e0b00697e5eddf7 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/898cac1610f2f2fb67eb092cd053f0006c3070e3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/89d0f5573ae1b524e7e9bdb1fb54ea4ce99e3ef0 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/8a55300e400efd56be5e12258ebf575c4f3b55ed +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/8bf7b464aaa2c2b536aa1d76a1297c19155f5603 +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/8c05e8ef26302a79c89670ad3aa4e8d0bc921923 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/8c15f5a268ded9663197d66e8d7d4098e0ae9bf5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/8ca9e85a9e628f0016ea4e6413945b3830730c24 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/8e74126a239927900a8f655c813a4b230191a5ba +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/8ee63e791c004427dd033b468b2ed7446ee6e2e0 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/9028113aa78b649e13ff259027a4e450d469e5da +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/90db2115b8262ebecbefbe8f0a07c451e39bca07 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/923f28a4d1917e20ee0736b90695c2123c0c987c +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/92a5c74e0506d65d1a12686496452870367b169a +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/92dcf94eb2f92b4e1a232eab3b3f808f4236f118 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/9414502aedbef5e307897683625418dd4ac575ac +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/9422e25bec5fec9f84603a85673b54b1a5e77a40 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/943754e865888063e0684aec838222522390d43e +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/943e067806ae069afbc029ea7a612410e5395687 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/9547646cc1a5d260df099b00ea7ee2b95567aee1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/968f7027ec9fbf75a519069ea5189e85a81448b2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/9691046a2f8b31319a6fdfde0506c9a72aed839a +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/96a8cd5c33986cc26cc00eb2de627149f5259e33 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/972466bbc33d2d7d7c21be21c7594b51e78675c5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/980f21a3609762154030f7cf0fe98a892d20f220 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/9865f12189ef977418d8410fceebb6830c74d820 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/98a1096d609545083878d5126743bbc5985786a9 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/98c3b6bbf5dc19bc4aad894087277a36d7c79669 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/98f9cd44400b592f809596004125267acf848435 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/9a97260f04ecfe0918499ede95cf4bcb3dbc2b51 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/9ba0dba2ca4405d04113086309882dac6182e6b8 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/9c329ee4b02f2d26ee1a399c873b0452aedca3c0 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/9e8e638837e202d83ff606a22dd0e310150fa260 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/9ee03d17e070df72547e423a412da0b6a60ad565 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/9fad6bd2b07d65e607039bb2bcda0816410cf983 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/9fcbd21f4dd194a623d832422384a1519742f0bb +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/a019fb7f17aa36a9743c530e1f11d5613b8b1158 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/a0b8c6ef20198377b19f59e41f08f4cf2107f460 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/a14079a3e8cbc2112da4fa747ef20cdfd580e068 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/a14d61ba0c609665d37e6c6da929cb53c5b70545 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/a15cf2a13e408cb76af0091a0c286af7ffce58e1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/a1ddedbdd05eac99b8b31322635771cd9c999f8a +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/a235661c3f8b0174a1658e9c435a69577c49256a +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/a261397a4db5ac196c72d73ba6999e9fd4fc5c1f +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/a3a803fd6a56d31269717983bbdf2fceebb626c3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/a3d5b0b21d977e8f94d401250de1bbd4fa1d0ee0 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/a42f2900ca519bd15b8d6f507449d1a07de2ef75 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/a4884775b414eaf9643224564f3be405519cf99a +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/a48da63e9a5709c24cb66f598a7a964cbc7ccfc7 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/a5789fd83dff18079ea7ba41c999f57bee4db41b +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/a5bb1c60191742df4a91afb622e9b22a2f0b7765 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/a5fdfade1cef5e7e494dd6e3791bca5a663d7012 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/a6c66f79f5aaf2c1a26ff16754fe1a8c22627e0c +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/a7478a05a1fc04a9e035be5593bfb6a281ec460f +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/a75193dd600661d2b417d4e29b23faa7d721c214 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/a7ccae74c641ffcdda0042e6c04438d5b32c4cf3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/a94aa5881abdea5374775b8155812121673f89c3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/a98d794f0f24be7a36917826121fc14a24120893 +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/a993077e321bc4e1831bb5a8ac7511d90d32ae27 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/aa3bc67656945e43f9342d3aaaef247584d96cfa +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ab111c4d72e3d6796e3d7391e9f35b4e6fefc04a +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ab248c42f77952d5d17d6f5203adaa5925c05c64 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ab8451fadf805e5087837d9f6d91ef7eb6fa5edb +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/abbee3b37aff879b1cef47390001b89b0f6ebc0a +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ac15b23f03af8be6dbbb3bbb8d3877a1f9e074a3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ac47bda12269c06d773f5f3c6517f78513a54a08 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ad1f4fb57f481a00a9bb231517a3155ef0d0877f +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ad25e7ffabedd94833d2529886af4d459529ec9d +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ad796ebb423f58187806c4a7ee7b787394353ce6 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/adc83b19e793491b1c6ea0fd8b46cd9f32e592fc +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ae14b80f26f5cee2d85d5154c2cef1eefafa8cc9 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ae3ba892de543801b3c1dfbce370eb2c80a6fb27 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/aecc0c7f08810803da234e26e7c6fa7a9f1c0593 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/aed2e85d5d39d25e738a34f30a722680bde30368 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/b00a75de1987c6f549bf73a63e8f23a2de6641b3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/b02e9f951ce9f10a8eb80f1fc61cd3d2832dd7f4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/b04aff8ab2e133d45bf44565bd4bf9e33b795a97 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/b12097ed83db761f7bb79411a59e2474de9b1199 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/b1beb2f462b4cb30a09d534b9f49f2e08d76363c +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/b201733b6165f4544578bd6aad3f55aeafd9a194 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/b2699f25c21ffe453dcce20e31b3093e0f9b2abf +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/b34a5760a1036f909e0243cd857fcef65e40d752 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/b3fdacd639073cc1954bcb1f31046d094e2d2296 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/b40a6dbe32c8e6a9b777331e7fd97f0d94ceca1c +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/b52ff2010f22ae6758cde5d529fd19de2a7d5fc5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/b53a7a2afd9dfc55c328b4e06a36882c53126e95 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/b548ae8a77a62b7f375b8b48e7184ceed59bc8f8 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/b66eaf0b689495cc7c194ab1fca7d36ae9da9758 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/b680bf23da22b8b7e77d847169fe9b6968d79e8b +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/b70d6e7d230fb1393b8f665adcd5658cad7059fe +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/b87a59f78adb3ef18b0176a8e7fe7e90c2ab4ef7 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/b88c5233090e859e923acbdfa9b168f95d7fc14b +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ba1923ea69eec8fe765e8d1222eccb928ca6c3c2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ba4d695c1eb02c702bd99a3db27838c7ba617d79 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ba7e4f999dc22d223c7f75db36646bfa05848572 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/bc5f0cd338d1d17a230378390aa810bc7b103cda +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/bcbb4cf10018a177dd9a6c642d887e0de3d8e522 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/bcfeb114df6d5c6e0c85cbe1081631bc321ff65b +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/bd582237a9293e2a53d8222722a69e7d215822bf +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/bdc83a415da40f74825379203538a2e4d27cffa7 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/be160536594c87dc07554a71c7d24cd1d718aecc +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/be8f3c744a23f67fb316a39609ca11ddac025b58 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/bf873b027b48f3fd7b727473c832486d99ddb196 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/bf8e20ef6b79131ef9bab8c9c1bb7dbecbead6a5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/bf90507b8f7c7eebb89edeaabf6a432d86e7df4a +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/bfa7a5ce666899fb3e2a7216dbf59886da672658 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/bfeaa454d8db33efabba88f146bee6c803369ba0 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c0388910e8d88dcd2e65848ba2cef465caa6b258 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c0db293f75bb44668bcbb79286ebed87df141a85 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c1234da1441255244aba15ecad2a4fa7fd47115e +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c2206ac3c289a759ee0e9d0d31cc336f0802f7bc +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c22340ab36e5cff088a58272f63cf69e54a1a9f4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c242c9336c4c22b316e0e56d616b2d45b3318ca4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c25a51d8dfaf58d5b609729bb156a80e3b0d892f +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c3419450240d06982b0d828911b188a903355216 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c36ea7651f76ae817d8d60cae580e47638741372 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c42300c021bfd35702f564e917839503922cbe9a +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c45d82ddade99ef857b563e435f2efe89e58b0be +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c4d1e9187de1e13353b3beb3c1ab16dd62cda571 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c4e98278a25011c54734494d4534a97489cf4c24 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c4f996ab08f56ce2e9fec7a0428ded510dd6a04a +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c544850a7325e7226583895204f99de730525803 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c56629528d5bebdb94f85522caf0f36bbcb19106 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c5c75b58883ccf41b20b140740e2ce763c6086cd +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c62da85dca0d4dfb1d7af5d0520eb74993a1e3b0 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c6379aaaecd282b8ed6d0b4291d0d9fdc763160a +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c6431921184e3edf4fd3e47384c69654cdac0189 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c6f2ca17c6d313a35676cbacd094eb40fd74b23e +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c83e04d58e04fccac37b9dd313eab72011fe8ea1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c88dc350b98a5c5ae0503683318c1f30443906a8 +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c89ee2e9e30a474b5f9532ec61d7aad78377baa0 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c921be4abeb44d1ff07f76f632a16e86526bc4be +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c98bdc0431aaece1e8a721aff0ea511cfb8062a6 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c9c456fd3e35a942ef4ab756e04e725cf1f71167 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/cd1f1a31b79af77e1e764102942ba7a79dcd24cf +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/cd57e5904254c2278e9ecf28ed7414d7aed8eef1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/cd665cdc2bd6a26eb68c9af6d1728a7d4f6eb309 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ce72111c4314b22c4c7824bc8ea340ebd6d3fa84 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ceacc7ace2f4be962b0db2eeeea3fe6a00ca9dd6 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/cf40769d8b4fcbac1b10ced2e0c3c1294f23fcdd +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/d120111a77a3e3d1d504a04bbfc5f53effa14eb0 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/d1ce81240a32aec2de1b0d779aa29a62c36f291f +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/d21869b290cd2b448e7b8103dced97e62fefffcc +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/d2bffcd01e87ce9860007b244ff1e79ecd3d4d0f +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/d2d668b6e28fca83da5146021879c2b006406fa4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/d37abe0d299b8ad1e90f5b7af302c24f411a7ed1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/d3d689a12ab3808313d5ba0044e8c67ecb4337e4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/d48eb559213edf05aa2850a14194885ae2086ba4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/d490f365693e49ebdeaf658b3f549311a399c6a8 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/d54821b652a8611c486bedd8645081d3a4b1c8d1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/d5586a91f9a879e8a67ec7b09a48038909918ad9 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/d696362920a2fad8e280293e8d1c92b18c87e4ae +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/d6b546a2b1bc1c8f80028e4be10c45a06014b32d +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/d7f04cbca92b2122e0f437ed4dd8fd1782d40f7f +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/d81944a0c1ed56d11129533d9a3d0d038113d53d +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/d8524e83ea63c9b365c2e93af75a8100a08b1b69 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/d8d9a2d06763cf6feb433cef92a80ef14baab31a +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/d917fbd641cc40786246387456a636899d56b5a6 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/d99f9ec8b504029457185ac03ea8ba21c2611737 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/d9c9c90c1bbc55beb81875838e9067c473d0fa92 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/d9e908317a6ef08a7528924672836a550d34cb5f +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/d9ef71deb57fa6f40e027be2c84fa37d288e1cc5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/da8841b9d04382d62d4aeb3fde4dc78466f31543 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/db3fbb74c9c9c4185f91eca85f14c3d2c3d9f487 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/db7a31de22258d4dc17d44a27d9340946e9c9ee9 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/dbbe57fc653930b4ff43f168565ba84ef25f60c2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/dbe74c0d9e7b62c1fd87d5e3ea73ee04f0337154 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/dbebf36a6b91568ac059142c3ca3211226da12a8 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ddacbb379242b31a00d62fdff5777dffc1e899c2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/decd2cd9cef352610ac9e5cc461df1829543f9f0 +3 -0
- package/vendor/libgit2/fuzzers/corpora/midx/deeae69363db06972798b296a0c5c99e02cb2b4c +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/e03e105323e6e7b2af90ad876b5c547af90d8f6b +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/e3133215848c9cde428338c9d51424c8a81b96f5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/e32a25f0347b0e95d4bea16c27a1f374847683bd +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/e45ce97522194abcdd7ff9beb931e20b86c97a79 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/e484023d50fc1036e46a437053b965c527700d42 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/e4e60e77fe3a050940d0afcc7dbab7ef06b04ba3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/e51629784092d9cf811ea1bd894297f062ed7ec4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/e5a7e837029178b3fb6a26d77ea4574ffeaa219d +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/e5c616e9efdd9c80181f9210d0e3a81c08fe9b4d +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/e5e6e84e2c7770537c744bcfdbe8303afe39ef92 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/e5fb20928feec1ee3114597317edc0e06c413749 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/e789319791fe704e5a8ffd7cb570c8d2722ac35f +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/e9fdb9f08f225b4231f01dda9c7b61e7b78bf7d3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ea6780324dca9a06db28598dfb590436d846d99f +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ea6afcc92b8a6c9e14cc053d351909ad5b0a3fdf +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ea8c569029c0cacc4ae75e95b2f4e84abb6867f4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/eb3e80c3ea9cfe9e08b2eef117aaa522a51a619c +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ec55b30741fe8fffeec584176c8d20f6a679cfa1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ed0724a6c3804a3ab20a980b5ca48671689a602f +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/edeb545d1cf852dc9582fa764010fe844a5e3515 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ee70b920de91f1be6b4448070ee2d1bd9e08286d +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ef004af4e947d25b4d1d1dd16502260d4c7a99cd +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/f009d226503b73aed0f1fd952ef8725433d158be +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/f0a821dffe21afd357932febaf6e8ee331f53197 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/f101a2fe93dfaaed1c596022b4e509cf3a591c8a +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/f1101f71657385174f8cb920026a761404b4395d +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/f138c84e42d3cc61a219c4be9db791750f0541c8 +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/f1da273522bfff4a4971b4ffc31e365f60fdbbfe +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/f2fe69d30ec47e78a9e92f1423698a52270672b2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/f368bb6f633587a7bb271de7e20695f178c89686 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/f38ced5a16edaceb5f527ebc35e7870f42586c90 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/f404371362ae68ffb2837ce1766346ebb645d173 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/f473b5e1cf51502345f5c1840ec3948d308dd314 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/f4ad43d6f913c3be6243dfc439e4b6f5b2e814b9 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/f4cde4083a974d755a38bf5ea3820f78b576754a +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/f5888d0dcacda196d73772aabc18fe2ad6e1dfa2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/f5c3577a62d401f071d5edaa77c54ae98d6a0318 +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/f5dee0d9da0d6950069ac36b1880090a20f50f3e +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/f605fff495fef2719585c706c05c350812402a35 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/f6fdaf4e77e29c780b9e0b91637777575bebfab4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/f72700bd65fa86c588607ec50d60a9c684c86f43 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/f777db12ef18f002febd5af13e2b948c95d964c3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/f777e9274d508e7ac1069e2a04bedc042942491c +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/f81306f8ceaec3d06d5d34afa9769d15f0d209eb +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/f84c2b36689f22809d9bda00febab557c381ffa4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/f98168fa74c26b17ad0c3002f2263beb0af7c0ce +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/fa6759d6a2807bbad83ba21761772c0119122c35 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/fa8b927b25a67fa3d60b12c53ac365366cc2b52d +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/fc5e4b78e59daebed1118389b57a386981f2430e +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/fdaf408880429153cfcf5d978727cd7b84c3d60e +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/fe50e7564a28683b24c57f8bcdcb3fbfa61f5c6a +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/fe64b998872d3ad87df2019173ddc52686841d7d +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/fec56c7cc86871aaa9c7a947c4084307cac2778d +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ff164dfc56dd28709488130dc6dfc17406bf9e9d +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ff7035b3c055718728a6025b3cdf55c34c4c744b +0 -0
- package/vendor/libgit2/fuzzers/midx_fuzzer.c +76 -0
- package/vendor/libgit2/git.git-authors +2 -2
- package/vendor/libgit2/include/git2/annotated_commit.h +1 -1
- package/vendor/libgit2/include/git2/blob.h +18 -2
- package/vendor/libgit2/include/git2/branch.h +12 -0
- package/vendor/libgit2/include/git2/cert.h +41 -5
- package/vendor/libgit2/include/git2/config.h +1 -1
- package/vendor/libgit2/include/git2/deprecated.h +102 -8
- package/vendor/libgit2/include/git2/index.h +1 -1
- package/vendor/libgit2/include/git2/patch.h +8 -0
- package/vendor/libgit2/include/git2/refs.h +6 -5
- package/vendor/libgit2/include/git2/remote.h +3 -2
- package/vendor/libgit2/include/git2/repository.h +95 -52
- package/vendor/libgit2/include/git2/revparse.h +5 -5
- package/vendor/libgit2/include/git2/tag.h +12 -0
- package/vendor/libgit2/include/git2/transport.h +1 -1
- package/vendor/libgit2/include/git2/tree.h +0 -14
- package/vendor/libgit2/include/git2/version.h +3 -3
- package/vendor/libgit2/package.json +1 -1
- package/vendor/libgit2/script/thread-sanitizer.supp +26 -0
- package/vendor/libgit2/src/CMakeLists.txt +13 -2
- package/vendor/libgit2/src/alloc.c +21 -8
- package/vendor/libgit2/src/allocators/failalloc.c +92 -0
- package/vendor/libgit2/src/allocators/failalloc.h +23 -0
- package/vendor/libgit2/src/allocators/win32_leakcheck.c +118 -0
- package/vendor/libgit2/src/allocators/{win32_crtdbg.h → win32_leakcheck.h} +3 -3
- package/vendor/libgit2/src/annotated_commit.c +21 -9
- package/vendor/libgit2/src/apply.c +16 -7
- package/vendor/libgit2/src/attr.c +12 -3
- package/vendor/libgit2/src/attr_file.c +8 -5
- package/vendor/libgit2/src/attrcache.c +5 -5
- package/vendor/libgit2/src/blame.c +26 -15
- package/vendor/libgit2/src/blob.c +32 -12
- package/vendor/libgit2/src/branch.c +57 -15
- package/vendor/libgit2/src/buf_text.c +2 -2
- package/vendor/libgit2/src/buffer.c +25 -14
- package/vendor/libgit2/src/buffer.h +2 -2
- package/vendor/libgit2/src/cache.c +3 -3
- package/vendor/libgit2/src/cache.h +7 -7
- package/vendor/libgit2/src/cc-compat.h +1 -1
- package/vendor/libgit2/src/checkout.c +66 -63
- package/vendor/libgit2/src/cherrypick.c +6 -2
- package/vendor/libgit2/src/clone.c +109 -25
- package/vendor/libgit2/src/commit.c +41 -28
- package/vendor/libgit2/src/commit_graph.c +470 -0
- package/vendor/libgit2/src/commit_graph.h +116 -0
- package/vendor/libgit2/src/common.h +4 -2
- package/vendor/libgit2/src/config.c +38 -19
- package/vendor/libgit2/src/config_cache.c +8 -4
- package/vendor/libgit2/src/config_file.c +2 -2
- package/vendor/libgit2/src/config_parse.c +2 -2
- package/vendor/libgit2/src/custom_tls.c +4 -4
- package/vendor/libgit2/src/date.c +2 -1
- package/vendor/libgit2/src/delta.c +1 -1
- package/vendor/libgit2/src/describe.c +7 -4
- package/vendor/libgit2/src/diff.c +11 -8
- package/vendor/libgit2/src/diff_driver.c +2 -2
- package/vendor/libgit2/src/diff_generate.c +45 -15
- package/vendor/libgit2/src/diff_print.c +19 -6
- package/vendor/libgit2/src/diff_stats.c +13 -10
- package/vendor/libgit2/src/diff_tform.c +7 -6
- package/vendor/libgit2/src/errors.c +24 -14
- package/vendor/libgit2/src/features.h.in +1 -1
- package/vendor/libgit2/src/fetch.c +5 -2
- package/vendor/libgit2/src/fetchhead.c +8 -4
- package/vendor/libgit2/src/filebuf.c +9 -7
- package/vendor/libgit2/src/filter.c +31 -25
- package/vendor/libgit2/src/futils.c +5 -5
- package/vendor/libgit2/src/hash/sha1/collisiondetect.c +3 -3
- package/vendor/libgit2/src/hash/sha1/common_crypto.c +3 -3
- package/vendor/libgit2/src/hash/sha1/mbedtls.c +12 -12
- package/vendor/libgit2/src/hash/sha1/openssl.c +3 -3
- package/vendor/libgit2/src/hash/sha1/win32.c +15 -11
- package/vendor/libgit2/src/hash.c +11 -8
- package/vendor/libgit2/src/hashsig.c +20 -9
- package/vendor/libgit2/src/ignore.c +6 -2
- package/vendor/libgit2/src/index.c +109 -72
- package/vendor/libgit2/src/index.h +1 -1
- package/vendor/libgit2/src/indexer.c +50 -32
- package/vendor/libgit2/src/integer.h +77 -0
- package/vendor/libgit2/src/iterator.c +28 -20
- package/vendor/libgit2/src/iterator.h +1 -1
- package/vendor/libgit2/src/{settings.c → libgit2.c} +116 -46
- package/vendor/libgit2/src/libgit2.h +15 -0
- package/vendor/libgit2/src/mailmap.c +19 -10
- package/vendor/libgit2/src/map.h +3 -3
- package/vendor/libgit2/src/merge.c +53 -21
- package/vendor/libgit2/src/merge_driver.c +19 -13
- package/vendor/libgit2/src/merge_file.c +11 -3
- package/vendor/libgit2/src/message.c +3 -1
- package/vendor/libgit2/src/midx.c +477 -0
- package/vendor/libgit2/src/midx.h +94 -0
- package/vendor/libgit2/src/mwindow.c +110 -61
- package/vendor/libgit2/src/mwindow.h +3 -3
- package/vendor/libgit2/src/net.c +15 -4
- package/vendor/libgit2/src/net.h +5 -2
- package/vendor/libgit2/src/netops.c +6 -4
- package/vendor/libgit2/src/netops.h +1 -1
- package/vendor/libgit2/src/notes.c +10 -10
- package/vendor/libgit2/src/object.c +22 -14
- package/vendor/libgit2/src/odb.c +197 -40
- package/vendor/libgit2/src/odb.h +1 -0
- package/vendor/libgit2/src/odb_loose.c +28 -18
- package/vendor/libgit2/src/odb_mempack.c +1 -1
- package/vendor/libgit2/src/odb_pack.c +317 -114
- package/vendor/libgit2/src/oid.c +5 -4
- package/vendor/libgit2/src/pack-objects.c +36 -36
- package/vendor/libgit2/src/pack.c +272 -132
- package/vendor/libgit2/src/pack.h +19 -7
- package/vendor/libgit2/src/patch.c +14 -7
- package/vendor/libgit2/src/patch_generate.c +3 -5
- package/vendor/libgit2/src/patch_parse.c +4 -2
- package/vendor/libgit2/src/path.c +44 -43
- package/vendor/libgit2/src/path.h +0 -2
- package/vendor/libgit2/src/pathspec.c +6 -5
- package/vendor/libgit2/src/pool.c +28 -20
- package/vendor/libgit2/src/pool.h +8 -0
- package/vendor/libgit2/src/posix.c +36 -12
- package/vendor/libgit2/src/posix.h +9 -0
- package/vendor/libgit2/src/reader.c +9 -4
- package/vendor/libgit2/src/rebase.c +26 -18
- package/vendor/libgit2/src/refdb.c +30 -13
- package/vendor/libgit2/src/refdb_fs.c +59 -33
- package/vendor/libgit2/src/reflog.c +19 -14
- package/vendor/libgit2/src/refs.c +92 -44
- package/vendor/libgit2/src/refs.h +1 -2
- package/vendor/libgit2/src/refspec.c +80 -44
- package/vendor/libgit2/src/remote.c +137 -72
- package/vendor/libgit2/src/repository.c +170 -92
- package/vendor/libgit2/src/repository.h +8 -2
- package/vendor/libgit2/src/reset.c +7 -6
- package/vendor/libgit2/src/revert.c +6 -2
- package/vendor/libgit2/src/revparse.c +14 -9
- package/vendor/libgit2/src/revwalk.c +32 -15
- package/vendor/libgit2/src/runtime.c +162 -0
- package/vendor/libgit2/src/runtime.h +62 -0
- package/vendor/libgit2/src/settings.h +11 -0
- package/vendor/libgit2/src/signature.c +6 -5
- package/vendor/libgit2/src/sortedcache.h +1 -1
- package/vendor/libgit2/src/stash.c +3 -1
- package/vendor/libgit2/src/status.c +7 -4
- package/vendor/libgit2/src/strarray.c +2 -1
- package/vendor/libgit2/src/streams/mbedtls.c +8 -8
- package/vendor/libgit2/src/streams/openssl.c +13 -10
- package/vendor/libgit2/src/streams/registry.c +5 -6
- package/vendor/libgit2/src/streams/socket.c +6 -2
- package/vendor/libgit2/src/streams/stransport.c +6 -3
- package/vendor/libgit2/src/streams/tls.c +5 -3
- package/vendor/libgit2/src/submodule.c +89 -33
- package/vendor/libgit2/src/submodule.h +9 -9
- package/vendor/libgit2/src/sysdir.c +8 -7
- package/vendor/libgit2/src/tag.c +47 -11
- package/vendor/libgit2/src/thread.c +140 -0
- package/vendor/libgit2/src/thread.h +422 -0
- package/vendor/libgit2/src/threadstate.c +83 -0
- package/vendor/libgit2/src/threadstate.h +24 -0
- package/vendor/libgit2/src/trace.c +2 -2
- package/vendor/libgit2/src/transaction.c +19 -8
- package/vendor/libgit2/src/transport.c +3 -3
- package/vendor/libgit2/src/transports/auth_negotiate.c +10 -3
- package/vendor/libgit2/src/transports/auth_ntlm.c +8 -4
- package/vendor/libgit2/src/transports/credential.c +15 -7
- package/vendor/libgit2/src/transports/git.c +1 -3
- package/vendor/libgit2/src/transports/http.c +6 -6
- package/vendor/libgit2/src/transports/http.h +1 -0
- package/vendor/libgit2/src/transports/httpclient.c +59 -34
- package/vendor/libgit2/src/transports/local.c +3 -3
- package/vendor/libgit2/src/transports/smart.c +10 -7
- package/vendor/libgit2/src/transports/smart.h +1 -1
- package/vendor/libgit2/src/transports/smart_protocol.c +9 -4
- package/vendor/libgit2/src/transports/ssh.c +47 -13
- package/vendor/libgit2/src/transports/winhttp.c +98 -58
- package/vendor/libgit2/src/tree.c +97 -75
- package/vendor/libgit2/src/tree.h +1 -0
- package/vendor/libgit2/src/tsort.c +0 -2
- package/vendor/libgit2/src/unix/map.c +3 -1
- package/vendor/libgit2/src/unix/posix.h +16 -1
- package/vendor/libgit2/src/unix/pthread.c +27 -6
- package/vendor/libgit2/src/unix/pthread.h +2 -2
- package/vendor/libgit2/src/util.c +53 -12
- package/vendor/libgit2/src/util.h +11 -7
- package/vendor/libgit2/src/vector.c +23 -19
- package/vendor/libgit2/src/win32/findfile.c +4 -2
- package/vendor/libgit2/src/win32/map.c +1 -1
- package/vendor/libgit2/src/win32/msvc-compat.h +9 -1
- package/vendor/libgit2/src/win32/path_w32.c +6 -8
- package/vendor/libgit2/src/win32/posix_w32.c +70 -1
- package/vendor/libgit2/src/win32/precompiled.h +0 -1
- package/vendor/libgit2/src/win32/thread.c +27 -18
- package/vendor/libgit2/src/win32/thread.h +1 -1
- package/vendor/libgit2/src/win32/w32_buffer.c +3 -3
- package/vendor/libgit2/src/win32/w32_leakcheck.c +576 -0
- package/vendor/libgit2/src/win32/w32_leakcheck.h +220 -0
- package/vendor/libgit2/src/worktree.c +27 -12
- package/vendor/libgit2/src/zstream.c +1 -1
- package/vendor/libgit2/tests/clar/fs.h +3 -3
- package/vendor/libgit2/tests/clar/sandbox.h +7 -4
- package/vendor/libgit2/tests/clar_libgit2.c +4 -3
- package/vendor/libgit2/tests/clar_libgit2_trace.c +2 -2
- package/vendor/libgit2/tests/clone/empty.c +17 -0
- package/vendor/libgit2/tests/clone/nonetwork.c +8 -0
- package/vendor/libgit2/tests/config/read.c +76 -0
- package/vendor/libgit2/tests/config/stress.c +5 -0
- package/vendor/libgit2/tests/core/integer.c +253 -0
- package/vendor/libgit2/tests/core/path.c +1 -27
- package/vendor/libgit2/tests/core/strtol.c +2 -0
- package/vendor/libgit2/tests/core/structinit.c +5 -0
- package/vendor/libgit2/tests/core/useragent.c +1 -1
- package/vendor/libgit2/tests/diff/format_email.c +1 -2
- package/vendor/libgit2/tests/diff/parse.c +23 -0
- package/vendor/libgit2/tests/diff/stats.c +36 -2
- package/vendor/libgit2/tests/fetchhead/nonetwork.c +29 -0
- package/vendor/libgit2/tests/filter/bare.c +1 -1
- package/vendor/libgit2/tests/graph/commit_graph.c +90 -0
- package/vendor/libgit2/tests/network/refspecs.c +1 -1
- package/vendor/libgit2/tests/network/remote/isvalidname.c +15 -8
- package/vendor/libgit2/tests/network/urlparse.c +401 -12
- package/vendor/libgit2/tests/online/badssl.c +2 -7
- package/vendor/libgit2/tests/online/clone.c +28 -1
- package/vendor/libgit2/tests/online/push_util.c +3 -1
- package/vendor/libgit2/tests/pack/filelimit.c +1 -1
- package/vendor/libgit2/tests/pack/midx.c +46 -0
- package/vendor/libgit2/tests/pack/threadsafety.c +62 -0
- package/vendor/libgit2/tests/refs/branches/name.c +17 -0
- package/vendor/libgit2/tests/refs/isvalidname.c +29 -22
- package/vendor/libgit2/tests/refs/revparse.c +13 -13
- package/vendor/libgit2/tests/refs/tags/name.c +17 -0
- package/vendor/libgit2/tests/repo/getters.c +13 -0
- package/vendor/libgit2/tests/repo/init.c +120 -81
- package/vendor/libgit2/tests/resources/config/config12 +10 -0
- package/vendor/libgit2/tests/resources/describe/.gitted/refs/tags/A +1 -0
- package/vendor/libgit2/tests/resources/describe/.gitted/refs/tags/B +1 -0
- package/vendor/libgit2/tests/resources/describe/.gitted/refs/tags/D +1 -0
- package/vendor/libgit2/tests/resources/describe/.gitted/refs/tags/R +1 -0
- package/vendor/libgit2/tests/resources/describe/.gitted/refs/tags/c +1 -0
- package/vendor/libgit2/tests/resources/describe/.gitted/refs/tags/e +1 -0
- package/vendor/libgit2/tests/resources/empty_bare.git/refs/tags/dummy-marker.txt +0 -0
- package/vendor/libgit2/tests/resources/empty_standard_repo/.gitted/refs/tags/dummy-marker.txt +0 -0
- package/vendor/libgit2/tests/resources/merge-recursive/.gitted/objects/info/commit-graph +0 -0
- package/vendor/libgit2/tests/resources/push_src/.gitted/refs/tags/tag-blob +1 -0
- package/vendor/libgit2/tests/resources/push_src/.gitted/refs/tags/tag-commit +1 -0
- package/vendor/libgit2/tests/resources/push_src/.gitted/refs/tags/tag-commit-two +1 -0
- package/vendor/libgit2/tests/resources/push_src/.gitted/refs/tags/tag-lightweight +1 -0
- package/vendor/libgit2/tests/resources/push_src/.gitted/refs/tags/tag-tag +1 -0
- package/vendor/libgit2/tests/resources/push_src/.gitted/refs/tags/tag-tree +1 -0
- package/vendor/libgit2/tests/resources/testrepo/.gitted/refs/tags/e90810b +1 -0
- package/vendor/libgit2/tests/resources/testrepo/.gitted/refs/tags/foo/bar +1 -0
- package/vendor/libgit2/tests/resources/testrepo/.gitted/refs/tags/foo/foo/bar +1 -0
- package/vendor/libgit2/tests/resources/testrepo/.gitted/refs/tags/point_to_blob +1 -0
- package/vendor/libgit2/tests/resources/testrepo/.gitted/refs/tags/test +1 -0
- package/vendor/libgit2/tests/resources/testrepo.git/objects/info/commit-graph +0 -0
- package/vendor/libgit2/tests/resources/testrepo.git/objects/pack/multi-pack-index +0 -0
- package/vendor/libgit2/tests/resources/testrepo.git/refs/tags/annotated_tag_to_blob +1 -0
- package/vendor/libgit2/tests/resources/testrepo.git/refs/tags/e90810b +1 -0
- package/vendor/libgit2/tests/resources/testrepo.git/refs/tags/hard_tag +1 -0
- package/vendor/libgit2/tests/resources/testrepo.git/refs/tags/point_to_blob +1 -0
- package/vendor/libgit2/tests/resources/testrepo.git/refs/tags/taggerless +1 -0
- package/vendor/libgit2/tests/resources/testrepo.git/refs/tags/test +1 -0
- package/vendor/libgit2/tests/resources/testrepo.git/refs/tags/wrapped_tag +1 -0
- package/vendor/libgit2/tests/threads/basic.c +7 -1
- package/vendor/libgit2/tests/threads/diff.c +9 -9
- package/vendor/libgit2/tests/threads/thread_helpers.h +1 -1
- package/vendor/libgit2/tests/threads/tlsdata.c +65 -0
- package/vendor/libgit2/tests/trace/windows/stacktrace.c +53 -53
- package/vendor/libgit2/tests/worktree/worktree.c +12 -0
- package/vendor/libgit2.gyp +35 -18
- package/vendor/libssh2/CMakeLists.txt +8 -0
- package/vendor/libssh2/COPYING +3 -1
- package/vendor/libssh2/Makefile.am +5 -3
- package/vendor/libssh2/Makefile.in +29 -15
- package/vendor/libssh2/Makefile.inc +2 -2
- package/vendor/libssh2/NEWS +1376 -486
- package/vendor/libssh2/RELEASE-NOTES +56 -38
- package/vendor/libssh2/acinclude.m4 +1 -0
- package/vendor/libssh2/aclocal.m4 +44 -33
- package/vendor/libssh2/compile +3 -3
- package/vendor/libssh2/configure +9704 -4102
- package/vendor/libssh2/configure.ac +20 -8
- package/vendor/libssh2/depcomp +1 -1
- package/vendor/libssh2/docs/{HACKING.CRYPTO → HACKING-CRYPTO} +312 -49
- package/vendor/libssh2/docs/INSTALL_AUTOTOOLS +2 -2
- package/vendor/libssh2/docs/Makefile.am +2 -2
- package/vendor/libssh2/docs/Makefile.in +14 -7
- package/vendor/libssh2/docs/libssh2_session_callback_set.3 +36 -4
- package/vendor/libssh2/example/CMakeLists.txt +1 -0
- package/vendor/libssh2/example/Makefile.am +3 -3
- package/vendor/libssh2/example/Makefile.in +49 -42
- package/vendor/libssh2/example/ssh2_agent_forwarding.c +292 -0
- package/vendor/libssh2/include/libssh2.h +18 -13
- package/vendor/libssh2/include/libssh2_sftp.h +26 -26
- package/vendor/libssh2/install-sh +92 -69
- package/vendor/libssh2/ltmain.sh +6 -4
- package/vendor/libssh2/m4/libtool.m4 +5 -5
- package/vendor/libssh2/missing +1 -1
- package/vendor/libssh2/src/CMakeLists.txt +8 -2
- package/vendor/libssh2/src/Makefile.in +25 -17
- package/vendor/libssh2/src/agent.c +60 -63
- package/vendor/libssh2/src/agent.h +112 -0
- package/vendor/libssh2/src/agent_win.c +361 -0
- package/vendor/libssh2/src/bcrypt_pbkdf.c +3 -3
- package/vendor/libssh2/src/blf.h +3 -4
- package/vendor/libssh2/src/channel.c +158 -1
- package/vendor/libssh2/src/comp.c +2 -1
- package/vendor/libssh2/src/comp.h +0 -1
- package/vendor/libssh2/src/crypto.h +6 -6
- package/vendor/libssh2/src/global.c +2 -1
- package/vendor/libssh2/src/hostkey.c +41 -2
- package/vendor/libssh2/src/kex.c +691 -974
- package/vendor/libssh2/src/knownhost.c +2 -2
- package/vendor/libssh2/src/libgcrypt.h +4 -1
- package/vendor/libssh2/src/libssh2_config.h.in +6 -18
- package/vendor/libssh2/src/libssh2_priv.h +17 -6
- package/vendor/libssh2/src/mac.h +0 -1
- package/vendor/libssh2/src/mbedtls.c +520 -2
- package/vendor/libssh2/src/mbedtls.h +146 -7
- package/vendor/libssh2/src/misc.c +14 -16
- package/vendor/libssh2/src/openssl.c +227 -181
- package/vendor/libssh2/src/openssl.h +9 -22
- package/vendor/libssh2/src/packet.c +98 -38
- package/vendor/libssh2/src/packet.h +3 -3
- package/vendor/libssh2/src/pem.c +20 -11
- package/vendor/libssh2/src/scp.c +3 -3
- package/vendor/libssh2/src/session.c +2 -2
- package/vendor/libssh2/src/session.h +3 -3
- package/vendor/libssh2/src/sftp.c +1 -1
- package/vendor/libssh2/src/sftp.h +3 -3
- package/vendor/libssh2/src/transport.c +11 -4
- package/vendor/libssh2/src/transport.h +0 -1
- package/vendor/libssh2/src/userauth.c +24 -22
- package/vendor/libssh2/src/userauth.h +3 -3
- package/vendor/libssh2/src/wincng.c +485 -60
- package/vendor/libssh2/src/wincng.h +33 -5
- package/vendor/libssh2/test-driver +6 -4
- package/vendor/libssh2/tests/CMakeLists.txt +4 -1
- package/vendor/libssh2/tests/Makefile.am +60 -23
- package/vendor/libssh2/tests/Makefile.in +223 -65
- package/vendor/libssh2/tests/key_ecdsa +10 -0
- package/vendor/libssh2/tests/key_ecdsa.pub +1 -0
- package/vendor/libssh2/tests/key_ed25519 +7 -0
- package/vendor/libssh2/tests/key_ed25519.pub +1 -0
- package/vendor/libssh2/tests/key_ed25519_encrypted +8 -0
- package/vendor/libssh2/tests/key_ed25519_encrypted.pub +1 -0
- package/vendor/libssh2/tests/key_rsa_encrypted +30 -0
- package/vendor/libssh2/tests/key_rsa_encrypted.pub +1 -0
- package/vendor/libssh2/tests/key_rsa_openssh +27 -0
- package/vendor/libssh2/tests/key_rsa_openssh.pub +1 -0
- package/vendor/libssh2/tests/openssh_fixture.c +141 -46
- package/vendor/libssh2/tests/openssh_server/Dockerfile +9 -0
- package/vendor/libssh2/tests/openssh_server/authorized_keys +1 -0
- package/vendor/libssh2/tests/openssh_server/ca_ecdsa +12 -0
- package/vendor/libssh2/tests/openssh_server/ca_ecdsa.pub +1 -0
- package/vendor/libssh2/tests/openssh_server/ssh_host_ecdsa_key +5 -0
- package/vendor/libssh2/tests/openssh_server/ssh_host_ed25519_key +7 -0
- package/vendor/libssh2/tests/ossfuzz/Makefile.am +32 -0
- package/vendor/libssh2/tests/ossfuzz/Makefile.in +731 -0
- package/vendor/libssh2/tests/ossfuzz/ssh2_client_fuzzer.cc +90 -0
- package/vendor/libssh2/tests/ossfuzz/standaloneengine.cc +74 -0
- package/vendor/libssh2/tests/ossfuzz/testinput.h +3 -0
- package/vendor/libssh2/tests/ssh2.c +9 -5
- package/vendor/libssh2/tests/test_agent_forward_succeeds.c +51 -0
- package/vendor/libssh2/tests/test_hostkey.c +5 -3
- package/vendor/libssh2/tests/test_hostkey_hash.c +32 -19
- package/vendor/libssh2/tests/test_keyboard_interactive_auth_fails_with_wrong_response.c +3 -3
- package/vendor/libssh2/tests/test_keyboard_interactive_auth_succeeds_with_correct_response.c +5 -4
- package/vendor/libssh2/tests/test_password_auth_fails_with_wrong_password.c +1 -1
- package/vendor/libssh2/tests/test_password_auth_fails_with_wrong_username.c +2 -1
- package/vendor/libssh2/tests/test_password_auth_succeeds_with_correct_credentials.c +3 -2
- package/vendor/libssh2/tests/test_public_key_auth_fails_with_wrong_key.c +1 -1
- package/vendor/libssh2/tests/test_public_key_auth_succeeds_with_correct_dsa_key.c +3 -2
- package/vendor/libssh2/tests/test_public_key_auth_succeeds_with_correct_ecdsa_key.c +38 -0
- package/vendor/libssh2/tests/test_public_key_auth_succeeds_with_correct_ed25519_key.c +38 -0
- package/vendor/libssh2/tests/test_public_key_auth_succeeds_with_correct_ed25519_key_from_mem.c +98 -0
- package/vendor/libssh2/tests/test_public_key_auth_succeeds_with_correct_encrypted_ed25519_key.c +39 -0
- package/vendor/libssh2/tests/test_public_key_auth_succeeds_with_correct_encrypted_rsa_key.c +3 -2
- package/vendor/libssh2/tests/test_public_key_auth_succeeds_with_correct_rsa_key.c +3 -2
- package/vendor/libssh2/tests/test_public_key_auth_succeeds_with_correct_rsa_openssh_key.c +3 -2
- package/vendor/libssh2/tests/test_public_key_auth_succeeds_with_correct_signed_ecdsa_key.c +38 -0
- package/vendor/libssh2/vms/libssh2_make_help.dcl +12 -12
- package/vendor/libssh2/win32/libssh2.dsp +8 -0
- package/CHANGELOG.md +0 -3415
- package/HISTORY.md +0 -9
- package/dist/blame.js +0 -22
- package/dist/checkout.js +0 -53
- package/dist/cherrypick.js +0 -62
- package/dist/clone.js +0 -35
- package/dist/status_list.js +0 -14
- package/dist/utils/normalize_fetch_options.js +0 -43
- package/dist/utils/normalize_options.js +0 -31
- package/gibberish/.git/hooks/README.sample +0 -5
- package/include/async_libgit2_queue_worker.h +0 -33
- package/vendor/libgit2/azure-pipelines/bash.yml +0 -17
- package/vendor/libgit2/azure-pipelines/coverity.yml +0 -26
- package/vendor/libgit2/azure-pipelines/docker.yml +0 -51
- package/vendor/libgit2/azure-pipelines/nightly.yml +0 -232
- package/vendor/libgit2/azure-pipelines.yml +0 -203
- package/vendor/libgit2/docs/changelog.md +0 -1627
- package/vendor/libgit2/src/allocators/win32_crtdbg.c +0 -118
- package/vendor/libgit2/src/global.c +0 -357
- package/vendor/libgit2/src/global.h +0 -41
- package/vendor/libgit2/src/thread-utils.c +0 -263
- package/vendor/libgit2/src/thread-utils.h +0 -294
- package/vendor/libgit2/src/win32/w32_crtdbg_stacktrace.c +0 -345
- package/vendor/libgit2/src/win32/w32_crtdbg_stacktrace.h +0 -127
- package/vendor/libgit2/src/win32/w32_stack.c +0 -188
- package/vendor/libgit2/src/win32/w32_stack.h +0 -140
- package/vendor/libssh2/buildconf +0 -22
- package/vendor/libssh2/docs/INSTALL_CMAKE +0 -179
package/CHANGELOG.md
DELETED
@@ -1,3415 +0,0 @@
|
|
1
|
-
# Change Log
|
2
|
-
|
3
|
-
## <a name="v0-27-0" href="#v0-27-0">v0.27.0</a> [(2020-07-28)](https://github.com/nodegit/nodegit/releases/tag/v0.27.0)
|
4
|
-
|
5
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.26.5...v0.27.0)
|
6
|
-
|
7
|
-
#### Summary of changes
|
8
|
-
- Expose git_remote_rename
|
9
|
-
- Bump OpenSSL from 1.1.0i -> 1.1.1c in Windows/Mac OS Electron builds
|
10
|
-
- Replace unmaintained request library with got
|
11
|
-
- Remove promisify-node and use vanilla promises for all NodeGit promises
|
12
|
-
- Prebuilds for Node 14, deprecate Node 8
|
13
|
-
- Persist RemoteCallbacks and ProxyOptions on the remote if using Remote.prototype.connect. This fixes a segfault when using any routines on a connected remote.
|
14
|
-
|
15
|
-
### #Merged PRs into NodeGit
|
16
|
-
- [Upgrade build environments #1785](https://github.com/nodegit/nodegit/pull/1785)
|
17
|
-
- [Remote needs to persist the callback/proxyOpts/headers #1784](https://github.com/nodegit/nodegit/pull/1784)
|
18
|
-
- [Remove promisify-node and remove old callback api remnants](https://github.com/nodegit/nodegit/pull/1772)
|
19
|
-
- [Replace deprecated package request with got](https://github.com/nodegit/nodegit/pull/1771)
|
20
|
-
- [Bump OpenSSL prebuilt to 1.1.1c](https://github.com/nodegit/nodegit/pull/1770)
|
21
|
-
- [Expose git_remote_rename](https://github.com/nodegit/nodegit/pull/1767)
|
22
|
-
- [Dedupe Remote.prototype.fetch](https://github.com/nodegit/nodegit/pull/1766)
|
23
|
-
|
24
|
-
## <a name="v0-27-0-alpha-1" href="#v0-27-0-alpha-1">v0.27.0-alpha.1</a> [(2020-03-26)](https://github.com/nodegit/nodegit/releases/tag/v0.27.0-alpha.1)
|
25
|
-
|
26
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.26.5...v0.27.0-alpha.1)
|
27
|
-
|
28
|
-
#### Summary of changes
|
29
|
-
- Expose git_remote_rename
|
30
|
-
- Bump OpenSSL from 1.1.0i -> 1.1.1c in Windows/Mac OS Electron builds
|
31
|
-
- Replace unmaintained request library with got
|
32
|
-
- Remove promisify-node and use vanilla promises for all NodeGit promises
|
33
|
-
|
34
|
-
### #Merged PRs into NodeGit
|
35
|
-
- [Remove promisify-node and remove old callback api remnants](https://github.com/nodegit/nodegit/pull/1772)
|
36
|
-
- [Replace deprecated package request with got](https://github.com/nodegit/nodegit/pull/1771)
|
37
|
-
- [Bump OpenSSL prebuilt to 1.1.1c](https://github.com/nodegit/nodegit/pull/1770)
|
38
|
-
- [Expose git_remote_rename](https://github.com/nodegit/nodegit/pull/1767)
|
39
|
-
- [Dedupe Remote.prototype.fetch](https://github.com/nodegit/nodegit/pull/1766)
|
40
|
-
|
41
|
-
|
42
|
-
## <a name="v0-26-5" href="#v0-26-5">v0.26.5</a> [(2020-02-27)](https://github.com/nodegit/nodegit/releases/tag/v0.26.5)
|
43
|
-
|
44
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.26.4...v0.26.5)
|
45
|
-
|
46
|
-
#### Summary of changes
|
47
|
-
- Bring in improvement to client certificate handling on Windows from [winhttp: support optional client cert #5384](https://github.com/libgit2/libgit2/pull/5384)
|
48
|
-
- `Commit.prototype.parent()` now correctly assigns the repo property on the retrieved commit. This should solve certain bugs when working with a commit retrieved from `parent`.
|
49
|
-
|
50
|
-
#### Merged PRs into NodeGit
|
51
|
-
- [Bring in Libgit2 #5384 to NodeGit](https://github.com/nodegit/nodegit/pull/1758)
|
52
|
-
- [Fix behavior of Commit#parent](https://github.com/nodegit/nodegit/pull/1509)
|
53
|
-
- [Remove DiffList](https://github.com/nodegit/nodegit/pull/1733)
|
54
|
-
- [Remove unnecessary assignment of Commit#repo](https://github.com/nodegit/nodegit/pull/1508)
|
55
|
-
|
56
|
-
#### Merged PRs into LibGit2
|
57
|
-
- [winhttp: support optional client cert #5384](https://github.com/libgit2/libgit2/pull/5384)
|
58
|
-
- [Support `core.longpaths` on Windows #5347](https://github.com/libgit2/libgit2/pull/5347)
|
59
|
-
- [Parallelize checkout_create_the_new for perf #4205](https://github.com/libgit2/libgit2/pull/4205)
|
60
|
-
|
61
|
-
|
62
|
-
## <a name="v0-26-4" href="#v0-26-4">v0.26.4</a> [(2020-01-14)](https://github.com/nodegit/nodegit/releases/tag/v0.26.4)
|
63
|
-
|
64
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.26.3...v0.26.4)
|
65
|
-
|
66
|
-
#### Summary of changes
|
67
|
-
- Bumped LibGit2
|
68
|
-
- Now can be configured to support longpaths on Windows. Does not respect the config value, but is configured through `NodeGit.Libgit2.opts`. See [#1748](https://github.com/nodegit/nodegit/pull/1748) for details.
|
69
|
-
- Support for complex SSH auth creds handshakes
|
70
|
-
- Pulled in patch for Libssh2 that covers an integer overflow, see [Libssh2#402](https://github.com/libssh2/libssh2/pull/402)
|
71
|
-
|
72
|
-
#### Merged PRs into NodeGit
|
73
|
-
- [Fix some issues from the libgit2 bump](https://github.com/nodegit/nodegit/pull/1751)
|
74
|
-
- [Add option to support longpaths on Windows](https://github.com/nodegit/nodegit/pull/1748)
|
75
|
-
- [Bring in libssh2#402](https://github.com/nodegit/nodegit/pull/1749)
|
76
|
-
- [Wait for copy and remove promises to finish](https://github.com/nodegit/nodegit/pull/1730)
|
77
|
-
|
78
|
-
#### Merged PRs into LibGit2
|
79
|
-
- [Support `core.longpaths` on Windows #5347](https://github.com/libgit2/libgit2/pull/5347)
|
80
|
-
- [Parallelize checkout_create_the_new for perf #4205](https://github.com/libgit2/libgit2/pull/4205)
|
81
|
-
- [win32: fix relative symlinks pointing into dirs](https://github.com/libgit2/libgit2/pull/5355)
|
82
|
-
- [ntlm: prevent (spurious) compiler warnings](https://github.com/libgit2/libgit2/pull/5354)
|
83
|
-
- [Adds support for multiple SSH auth mechanisms being used sequentially](https://github.com/libgit2/libgit2/pull/5305)
|
84
|
-
- [netops: handle intact query parameters in service_suffix removal](https://github.com/libgit2/libgit2/pull/5339)
|
85
|
-
- [Refactor packfile code to use zstream abstraction](https://github.com/libgit2/libgit2/pull/5340)
|
86
|
-
- [Fix git_submodule_sync with relative url](https://github.com/libgit2/libgit2/pull/5322)
|
87
|
-
- [http: avoid generating double slashes in url](https://github.com/libgit2/libgit2/pull/5325)
|
88
|
-
- [Correct typo in name of referenced parameter](https://github.com/libgit2/libgit2/pull/5348)
|
89
|
-
- [patch_parse: fix undefined behaviour due to arithmetic on NULL pointers](https://github.com/libgit2/libgit2/pull/5338)
|
90
|
-
- [smart_pkt: fix overflow resulting in OOB read/write of one byte](https://github.com/libgit2/libgit2/pull/5337)
|
91
|
-
- [branch: clarify documentation around branches](https://github.com/libgit2/libgit2/pull/5300)
|
92
|
-
- [examples: checkout: implement guess heuristic for remote branches](https://github.com/libgit2/libgit2/pull/5283)
|
93
|
-
- [Minor doc improvements](https://github.com/libgit2/libgit2/pull/5320)
|
94
|
-
- [attr: Update definition of binary macro](https://github.com/libgit2/libgit2/pull/5333)
|
95
|
-
- [Security fixes for master](https://github.com/libgit2/libgit2/pull/5331)
|
96
|
-
- [release.md: note that we do two security releases](https://github.com/libgit2/libgit2/pull/5318)
|
97
|
-
- [MSVC: Fix warning C4133 on x64: "function": Incompatible types - from "unsigned long *" to "size_t *"](https://github.com/libgit2/libgit2/pull/5317)
|
98
|
-
- [ci: only push docs from the libgit2/libgit2 repo](https://github.com/libgit2/libgit2/pull/5316)
|
99
|
-
- [global: convert to fiber-local storage to fix exit races](https://github.com/libgit2/libgit2/pull/5314)
|
100
|
-
- [Fix copy&paste in git_cherrypick_commit docstring](https://github.com/libgit2/libgit2/pull/5315)
|
101
|
-
- [patch_parse: fix out-of-bounds reads caused by integer underflow](https://github.com/libgit2/libgit2/pull/5312)
|
102
|
-
- [tests: fix compiler warning if tracing is disabled](https://github.com/libgit2/libgit2/pull/5311)
|
103
|
-
- [tests: config: only test parsing huge file with GITTEST_INVASIVE_SPEED](https://github.com/libgit2/libgit2/pull/5313)
|
104
|
-
- [diff: complete support for git patchid](https://github.com/libgit2/libgit2/pull/5306)
|
105
|
-
- [Memory optimizations for config entries](https://github.com/libgit2/libgit2/pull/5243)
|
106
|
-
- [ssh: include sha256 host key hash when supported](https://github.com/libgit2/libgit2/pull/5307)
|
107
|
-
- [Various examples shape-ups](https://github.com/libgit2/libgit2/pull/5272)
|
108
|
-
- [Improve trace support in tests](https://github.com/libgit2/libgit2/pull/5309)
|
109
|
-
- [Move `git_off_t` to `git_object_size_t`](https://github.com/libgit2/libgit2/pull/5123)
|
110
|
-
- [Add compat typdef for git_attr_t](https://github.com/libgit2/libgit2/pull/5310)
|
111
|
-
- [CI Build Updates](https://github.com/libgit2/libgit2/pull/5308)
|
112
|
-
- [patch_parse: use paths from "---"/"+++" lines for binary patches](https://github.com/libgit2/libgit2/pull/5303)
|
113
|
-
- [Follow 308 redirect in WinHTTP transport](https://github.com/libgit2/libgit2/pull/5285)
|
114
|
-
- [fileops: correct error return on p_lstat failures when mkdir](https://github.com/libgit2/libgit2/pull/5302)
|
115
|
-
- [config_mem: implement support for snapshots](https://github.com/libgit2/libgit2/pull/5299)
|
116
|
-
- [patch_parse: fix segfault when header path contains whitespace only](https://github.com/libgit2/libgit2/pull/5298)
|
117
|
-
- [config_file: fix race when creating an iterator](https://github.com/libgit2/libgit2/pull/5282)
|
118
|
-
- [Fix crash if snapshotting a config_snapshot](https://github.com/libgit2/libgit2/pull/5293)
|
119
|
-
- [fix a bug introduced in 8a23597b](https://github.com/libgit2/libgit2/pull/5295)
|
120
|
-
- [reflogs: fix behaviour around reflogs with newlines](https://github.com/libgit2/libgit2/pull/5275)
|
121
|
-
- [commit: verify objects exist in git_commit_with_signature](https://github.com/libgit2/libgit2/pull/5289)
|
122
|
-
- [patch_parse: fixes for fuzzing errors](https://github.com/libgit2/libgit2/pull/5276)
|
123
|
-
- [apply: add GIT_APPLY_CHECK](https://github.com/libgit2/libgit2/pull/5227)
|
124
|
-
- [refs: unlock unmodified refs on transaction commit](https://github.com/libgit2/libgit2/pull/5264)
|
125
|
-
- [fuzzers: add a new fuzzer for patch parsing](https://github.com/libgit2/libgit2/pull/5269)
|
126
|
-
- [patch_parse: handle patches without extended headers](https://github.com/libgit2/libgit2/pull/5273)
|
127
|
-
- [Provide a wrapper for simple submodule clone steps](https://github.com/libgit2/libgit2/pull/4637)
|
128
|
-
- [macOS GSS Support](https://github.com/libgit2/libgit2/pull/5238)
|
129
|
-
- [cmake: correct the link stanza for CoreFoundation](https://github.com/libgit2/libgit2/pull/5265)
|
130
|
-
- [Fix file locking on POSIX OS](https://github.com/libgit2/libgit2/pull/5257)
|
131
|
-
- [cmake: update minimum CMake version to v3.5.1](https://github.com/libgit2/libgit2/pull/5260)
|
132
|
-
- [patch_parse: handle patches with new empty files](https://github.com/libgit2/libgit2/pull/5248)
|
133
|
-
- [DRY commit parsing](https://github.com/libgit2/libgit2/pull/4445)
|
134
|
-
- [azure: avoid building and testing in Docker as root](https://github.com/libgit2/libgit2/pull/5239)
|
135
|
-
- [regexp: implement a new regular expression API](https://github.com/libgit2/libgit2/pull/5226)
|
136
|
-
- [git_refdb API fixes](https://github.com/libgit2/libgit2/pull/5106)
|
137
|
-
- [Don't use enum for flags](https://github.com/libgit2/libgit2/pull/5242)
|
138
|
-
- [valgrind: suppress memory leaks in libssh2_session_handshake](https://github.com/libgit2/libgit2/pull/5240)
|
139
|
-
- [buffer: fix writes into out-of-memory buffers](https://github.com/libgit2/libgit2/pull/5232)
|
140
|
-
- [cred: add missing private header in GSSAPI block](https://github.com/libgit2/libgit2/pull/5237)
|
141
|
-
- [CMake pkg-config modulification](https://github.com/libgit2/libgit2/pull/5206)
|
142
|
-
- [Update chat resources in README.md](https://github.com/libgit2/libgit2/pull/5229)
|
143
|
-
- [Circular header splitting](https://github.com/libgit2/libgit2/pull/5223)
|
144
|
-
|
145
|
-
|
146
|
-
## <a name="v0-26-3" href="#v0-26-3">v0.26.3</a> [(2019-12-10)](https://github.com/nodegit/nodegit/releases/tag/v0.26.3)
|
147
|
-
|
148
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.26.2...v0.26.3)
|
149
|
-
|
150
|
-
#### Summary of changes
|
151
|
-
- Include LibGit2 security patch: https://github.com/libgit2/libgit2/releases/tag/v0.28.4
|
152
|
-
|
153
|
-
#### Merged PRs into NodeGit
|
154
|
-
- [Bring in security patches from libgit2 #1743](https://github.com/nodegit/nodegit/pull/1743)
|
155
|
-
|
156
|
-
|
157
|
-
## <a name="v0-26-2" href="#v0-26-2">v0.26.2</a> [(2019-09-26)](https://github.com/nodegit/nodegit/releases/tag/v0.26.2)
|
158
|
-
|
159
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.26.1...v0.26.2)
|
160
|
-
|
161
|
-
#### Summary of changes
|
162
|
-
- Added options to fetch additional data (gpg signature) from LibGit2 in revWalk.prototype.commitWalk and return plain objects
|
163
|
-
- _revWalk.prototype.commitWalk(numCommits: number, { returnPlainObjects: boolean })_
|
164
|
-
|
165
|
-
#### Merged PRs into NodeGit
|
166
|
-
- [Optionally retrieve more data on commit walk #1728](https://github.com/nodegit/nodegit/pull/1728)
|
167
|
-
|
168
|
-
|
169
|
-
## <a name="v0-26-1" href="#v0-26-1">v0.26.1</a> [(2019-09-16)](https://github.com/nodegit/nodegit/releases/tag/v0.26.1)
|
170
|
-
|
171
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.26.0...v0.26.1)
|
172
|
-
|
173
|
-
#### Summary of changes
|
174
|
-
- Bumped LibGit2
|
175
|
-
- Additional git ignore fixes
|
176
|
-
- Allow credentials callback to return any credential type from list of supported types
|
177
|
-
- Memory leak and allocation fixes
|
178
|
-
- updateTips has optional parameters and should convert plain objects into options structs correctly now
|
179
|
-
- Added Nodegit.Blob.prototype.filter, this should be used instead of NodeGit.Blob.filteredContent as it is not deprecated.
|
180
|
-
|
181
|
-
#### Merged PRs into NodeGit
|
182
|
-
- [Bump libgit2 to latest fork of master #1723](https://github.com/nodegit/nodegit/pull/1723)
|
183
|
-
- [updateTips: optional param and normalizeOptions #1722](https://github.com/nodegit/nodegit/pull/1722)
|
184
|
-
|
185
|
-
#### Merged PRs into LibGit2
|
186
|
-
- [Parallelize checkout_create_the_new for perf #4205](https://github.com/libgit2/libgit2/pull/4205)
|
187
|
-
- [azure: build Docker images as part of the pipeline](https://github.com/libgit2/libgit2/pull/5198)
|
188
|
-
- [smart: use push_glob instead of manual filtering](https://github.com/libgit2/libgit2/pull/5195)
|
189
|
-
- [ntlm: fix failure to find openssl headers](https://github.com/libgit2/libgit2/pull/5216)
|
190
|
-
- [cmake: remove extraneous logging](https://github.com/libgit2/libgit2/pull/5222)
|
191
|
-
- [open:fix memory leak when passing NULL to git_repository_open_ext](https://github.com/libgit2/libgit2/pull/5224)
|
192
|
-
- [apply: Fix a patch corruption related to EOFNL handling](https://github.com/libgit2/libgit2/pull/5209)
|
193
|
-
- [ignore: correct handling of nested rules overriding wild card unignore](https://github.com/libgit2/libgit2/pull/5210)
|
194
|
-
- [Memory allocation fixes for diff generator](https://github.com/libgit2/libgit2/pull/5214)
|
195
|
-
- [Use an HTTP scheme that supports the given credentials](https://github.com/libgit2/libgit2/pull/5212)
|
196
|
-
- [apply: git_apply_to_tree fails to apply patches that add new files](https://github.com/libgit2/libgit2/pull/5208)
|
197
|
-
- [Optionally read `.gitattributes` from HEAD](https://github.com/libgit2/libgit2/pull/5189)
|
198
|
-
- [config: implement "onbranch" conditional](https://github.com/libgit2/libgit2/pull/5196)
|
199
|
-
- [Fix include casing for case-sensitive filesystems.](https://github.com/libgit2/libgit2/pull/5213)
|
200
|
-
- [util: use 64 bit timer on Windows](https://github.com/libgit2/libgit2/pull/5054)
|
201
|
-
- [Memory allocation audit](https://github.com/libgit2/libgit2/pull/5200)
|
202
|
-
- [clone: don't decode URL percent encodings](https://github.com/libgit2/libgit2/pull/5187)
|
203
|
-
- [Security updates from 0.28.3](https://github.com/libgit2/libgit2/pull/5202)
|
204
|
-
|
205
|
-
|
206
|
-
## <a name="v0-26-0" href="#v0-26-0">v0.26.0</a> [(2019-09-09)](https://github.com/nodegit/nodegit/releases/tag/v0.26.0)
|
207
|
-
|
208
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.25.1...v0.26.0)
|
209
|
-
|
210
|
-
#### Summary of changes
|
211
|
-
- Bumped libssh2 to 1.9 for security patch
|
212
|
-
- Remote.prototype.upload and Remote.prototype.updateTips should be async now
|
213
|
-
|
214
|
-
#### Merged PRs into NodeGit
|
215
|
-
- [GitRemote upload and updateTips are async #1720](https://github.com/nodegit/nodegit/pull/1720)
|
216
|
-
- [Update libssh2 to 1.9 #1719](https://github.com/nodegit/nodegit/pull/1719)
|
217
|
-
|
218
|
-
|
219
|
-
## <a name="v0-25-1" href="#v0-25-1">v0.25.1</a> [(2019-08-13)](https://github.com/nodegit/nodegit/releases/tag/v0.25.1)
|
220
|
-
|
221
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.25.0...v0.25.1)
|
222
|
-
|
223
|
-
#### Summary of changes
|
224
|
-
Security patch for LibGit2:
|
225
|
-
- A carefully constructed commit object with a very large number
|
226
|
-
of parents may lead to potential out-of-bounds writes or
|
227
|
-
potential denial of service.
|
228
|
-
|
229
|
-
- The ProgramData configuration file is always read for compatibility
|
230
|
-
with Git for Windows and Portable Git installations. The ProgramData
|
231
|
-
location is not necessarily writable only by administrators, so we
|
232
|
-
now ensure that the configuration file is owned by the administrator
|
233
|
-
or the current user.
|
234
|
-
|
235
|
-
Additionally:
|
236
|
-
- Stash should run much faster now.
|
237
|
-
|
238
|
-
#### Merged PRs into LibGit2
|
239
|
-
- [Parallelize checkout_create_the_new for perf #4205](https://github.com/libgit2/libgit2/pull/4205)
|
240
|
-
- [stash: avoid recomputing tree when committing worktree](https://github.com/libgit2/libgit2/pull/5113)
|
241
|
-
- [Variadic macros](https://github.com/libgit2/libgit2/pull/5121)
|
242
|
-
- [Add sign capability to git_rebase_commit](https://github.com/libgit2/libgit2/pull/4913)
|
243
|
-
- [remote: remove unused block of code](https://github.com/libgit2/libgit2/pull/5197)
|
244
|
-
- [Adjust printf specifiers in examples code](https://github.com/libgit2/libgit2/pull/5146)
|
245
|
-
- [config: check if we are running in a sandboxed environment](https://github.com/libgit2/libgit2/pull/5191)
|
246
|
-
- [Fix example checkout to forbid rather than require --](https://github.com/libgit2/libgit2/pull/5184)
|
247
|
-
- [editorconfig: update to match our coding style](https://github.com/libgit2/libgit2/pull/5183)
|
248
|
-
- [Compare buffers in diff example](https://github.com/libgit2/libgit2/pull/5125)
|
249
|
-
- [Include ahead_behind in the test suite](https://github.com/libgit2/libgit2/pull/5135)
|
250
|
-
- [config: separate file and snapshot backends](https://github.com/libgit2/libgit2/pull/5186)
|
251
|
-
- [object: deprecate git_object__size for removal](https://github.com/libgit2/libgit2/pull/5192)
|
252
|
-
|
253
|
-
|
254
|
-
## <a name="v0-25-0" href="#v0-25-0">v0.25.0</a> [(2019-08-09)](https://github.com/nodegit/nodegit/releases/tag/v0.25.0)
|
255
|
-
|
256
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.24.3...v0.25.0)
|
257
|
-
|
258
|
-
#### Summary of changes
|
259
|
-
##### BREAKING
|
260
|
-
- `getRemotes` no longer returns remote names, it now returns remote objects directly. Use `getRemoteNames` to get a list of remote names.
|
261
|
-
- Converted Buf.prototype.set and Buf.prototype.grow from async to sync
|
262
|
-
- `Repository.prototype.continueRebase` will now throw on any error except for EAPPLIED on the first call to `Rebase.prototype.next`
|
263
|
-
- Drops support for Ubuntu 14 after EOL
|
264
|
-
- Removed access to the `diff_so_far` param in `git_diff_notify_cb` and `git_diff_progress_cb`
|
265
|
-
- Changed `FilterSource.prototype.repo` to async to prevent segfaults on filters that run during `Submodule.status`
|
266
|
-
- Changed `NodeGit.Signature.default` to async, because it actually ends up reading the config.
|
267
|
-
- Fixed bug where templates were not reporting errors for synchronous methods. It's a bit of a wide net, but in general,
|
268
|
-
it is now possible certain sync methods in NodeGit will begin failing that did not fail before. This is the correct
|
269
|
-
behavior.
|
270
|
-
|
271
|
-
##### Deprecations
|
272
|
-
- Support signing commits in `Repository.prototype.mergeBranches`. The last parameter `processMergeMessageCallback` is now deprecated, but will continue to work. Use the options object instead, which will contain the `processMergeMessageCallback`, as well as the `signingCb`.
|
273
|
-
|
274
|
-
##### New
|
275
|
-
- Support for Node 12
|
276
|
-
- Add signing support for commits and annotated tags
|
277
|
-
- Enforced consistent use of signing callbacks within the application. Any object that implements the signingCallback
|
278
|
-
pattern for signing commits or tags should use the exact same callback type and with the same meaning.
|
279
|
-
`type SigningCallback = (content: string) => {| code: number, field?: string, signedData?: string |};`
|
280
|
-
If the code is `NodeGit.Error.CODE.OK` or 0, the operation will succeed and _at least_ signedData is expected to be filled out.
|
281
|
-
If the code is a negative number, except for `NodeGit.Error.CODE.PASSTHROUGH`, the signing operation will fail.
|
282
|
-
If the code is `NodeGit.Error.CODE.PASSTHROUGH`, the operation will continue without signing the object.
|
283
|
-
- Exposed `AnnotatedCommit` methods:
|
284
|
-
- `AnnotatedCommit.prototype.ref`
|
285
|
-
- Exposed `Apply` methods:
|
286
|
-
- `Apply.apply` applies a diff to the repository
|
287
|
-
- `Apply.toTree` applies a diff to a tree
|
288
|
-
- Exposed `Config` methods:
|
289
|
-
- `Config.prototype.deleteEntry`
|
290
|
-
- `Config.prototype.deleteMultivar`
|
291
|
-
- `Config.prototype.getBool`
|
292
|
-
- `Config.prototype.getInt32`
|
293
|
-
- `Config.prototype.getInt64`
|
294
|
-
- `Config.prototype.setMultivar`
|
295
|
-
- `Config.prototype.snapshot`
|
296
|
-
- Exposed `ConfigIterator` with methods:
|
297
|
-
- `ConfigIterator.create`
|
298
|
-
- `ConfigIterator.createGlob`
|
299
|
-
- `ConfigIterator.createMultivar`
|
300
|
-
- `ConfigIterator.prototype.next`
|
301
|
-
- Exposed `IndexNameEntry`:
|
302
|
-
- `IndexNameEntry.add`
|
303
|
-
- `IndexNameEntry.clear`
|
304
|
-
- `IndexNameEntry.entryCount`
|
305
|
-
- `IndexNameEntry.getByIndex`
|
306
|
-
- `IndexNameEntry.prototype.ancestor`
|
307
|
-
- `IndexNameEntry.prototype.ours`
|
308
|
-
- `IndexNameEntry.prototype.theirs`
|
309
|
-
- Exposed `IndexReucEntry`:
|
310
|
-
- `IndexReucEntry.add`
|
311
|
-
- `IndexReucEntry.clear`
|
312
|
-
- `IndexReucEntry.entryCount`
|
313
|
-
- `IndexReucEntry.find`
|
314
|
-
- `IndexReucEntry.getByIndex`
|
315
|
-
- `IndexReucEntry.getByPath`
|
316
|
-
- `IndexReucEntry.remove`
|
317
|
-
- `IndexReucEntry.prototype.mode`
|
318
|
-
- `IndexReucEntry.prototype.oid`
|
319
|
-
- `IndexReucEntry.prototype.path`
|
320
|
-
- Exposed `Mailmap`:
|
321
|
-
- `Mailmap.prototype.addEntry`
|
322
|
-
- `Mailmap.fromBuffer`
|
323
|
-
- `Mailmap.fromRepository`
|
324
|
-
- `Mailmap.create`
|
325
|
-
- `Mailmap.prototype.resolve`
|
326
|
-
- `Mailmap.prototype.resolveSignature`
|
327
|
-
- Exposed `Merge` methods:
|
328
|
-
- `Merge.analysis`
|
329
|
-
- `Merge.analysisForRef`
|
330
|
-
- Exposed `Path.isGitfile`
|
331
|
-
- Added `RebaseOptions` to `Repository.prototype.rebaseContinue`
|
332
|
-
- Added `NodeGit.Reference.updateTerminal`
|
333
|
-
- Exposed `Remote` methods:
|
334
|
-
- `Remote.createWithOpts`
|
335
|
-
- Exposed `Tag.createFromBuffer`
|
336
|
-
- Expose `Tree.prototype.createUpdated(repo, numUpdates, updates)`
|
337
|
-
|
338
|
-
##### Fixed
|
339
|
-
- Updates lodash dependency to address security notice
|
340
|
-
- Fixed a prototype problem with cherrypick, merge, and other collections that have a function at their root. call, apply, and bind should now be on NodeGit.Cherrypick.
|
341
|
-
- Bumped libssh2 to resolve security notice.
|
342
|
-
- Improve speed and correctness of fileHistoryWalk. The API should not have changed; however, when the end of the walk has been reached, `reachedEndOfHistory` will be specified on the resulting array.
|
343
|
-
- Fixes openssl prebuilt downloads for electron builds
|
344
|
-
- Fixes commits retrieved from `Commit.prototype.parent`
|
345
|
-
- Bump Node-Gyp to 4.0.0 to fix tar security vulnerability
|
346
|
-
- Optimized a set of routines in NodeGit. These methods as written in Javascript require hundreds or thousands of requests to async workers to retrieve data. We've batched these requests and performed them on a single async worker. There are now native implementations of the following:
|
347
|
-
- `Repository.prototype.getReferences`: Retrieves all references on async worker.
|
348
|
-
- `Repository.prototype.getRemotes`: Retrieves all remotes on async worker.
|
349
|
-
- `Repository.prototype.getSubmodules`: Retrieves all submodules on async worker.
|
350
|
-
- `Repository.prototype.refreshReferences`: Open sourced function from GitKraken. Grabs a lot of information about references on an async worker.
|
351
|
-
- `Revwalk.prototype.commitWalk`: Retrieves up to N commits from a revwalk on an async worker.
|
352
|
-
- When installing on a machine that has yarn and does not have npm, the preinstall script should succeed now
|
353
|
-
- `ceiling_dirs` is now an optional parameter to `Repository.discover`
|
354
|
-
- Added support for building on IBM i (PASE) machines
|
355
|
-
- Fixed leak where struct/option types were leaking libgit2 pointers
|
356
|
-
- Switched `NodeGit.Oid.fromString`'s internal implementation from `git_oid_fromstr` to `git_oid_fromstrp`
|
357
|
-
- Fixed builds for Electron 4
|
358
|
-
- Updated `Signature.prototype.toString` to optionally include timestamps
|
359
|
-
|
360
|
-
##### LibGit2 Bump
|
361
|
-
- Fixes gitignore issue with pattern negation
|
362
|
-
- `Remote.list` now gets the correct list of remotes if remotes are changed by external process
|
363
|
-
- Always use builtin regex for linux for portability
|
364
|
-
- Use Iconv on OSX for better internationalization support.
|
365
|
-
- Removed LibCurl from LibGit2:
|
366
|
-
- Now with built-in NTLM proxy support
|
367
|
-
- Now with built-in Negotiate/Kerberos proxy support
|
368
|
-
- Working with proxy URLs may be different as curl could auto detect scheme for proxies
|
369
|
-
- Various git config fixes
|
370
|
-
- Various git ignore fixes
|
371
|
-
- Various libgit2 performance improvements
|
372
|
-
- Windows/Linux now use PCRE for regex, OSX uses regcomp_l, this should address collation issues in diffing
|
373
|
-
|
374
|
-
#### Merged PRs into NodeGit
|
375
|
-
- [Add deprecation warnings for enums that need them. #1711](https://github.com/nodegit/nodegit/pull/1711)
|
376
|
-
- [https://github.com/nodegit/nodegit/pull/1706](https://github.com/nodegit/nodegit/pull/1706)
|
377
|
-
- [Reintroduce Odb.prototype.addDiskAlternate #1695](https://github.com/nodegit/nodegit/pull/1695)
|
378
|
-
- [Fix behaviour of Repository#getReferences #1708](https://github.com/nodegit/nodegit/pull/1708)
|
379
|
-
- [Bump libgit2 #1705](https://github.com/nodegit/nodegit/pull/1705)
|
380
|
-
- [Fix Tree#createUpdated #1704](https://github.com/nodegit/nodegit/pull/1704)
|
381
|
-
- [Fix failing tests on CI #1703](https://github.com/nodegit/nodegit/pull/1703)
|
382
|
-
- [Audit lodash and fix package-lock.json #1702](https://github.com/nodegit/nodegit/pull/1702)
|
383
|
-
- [Implement support for Node 12 #1696](https://github.com/nodegit/nodegit/pull/1696)
|
384
|
-
- [Remove NSEC #1699](https://github.com/nodegit/nodegit/pull/1699)
|
385
|
-
- [Use builtin regex library for linux for better portability #1693](https://github.com/nodegit/nodegit/pull/1693)
|
386
|
-
- [Remove pcre-config from binding.gyp #1694](https://github.com/nodegit/nodegit/pull/1694)
|
387
|
-
- [refresh_references.cc: skip refs that can't be directly resolved #1689](https://github.com/nodegit/nodegit/pull/1689)
|
388
|
-
- [Bump libgit2 to fork of latest master #1690](https://github.com/nodegit/nodegit/pull/1690)
|
389
|
-
- [Bump libssh2 to 1.8.2 and fix some npm audit warnings #1678](https://github.com/nodegit/nodegit/pull/1678)
|
390
|
-
- [Root functions should keep their function prototypes correctly #1681](https://github.com/nodegit/nodegit/pull/1681)
|
391
|
-
- [refresh_references.cc: bust LibGit2 remote list cache by reading config #1685](https://github.com/nodegit/nodegit/pull/1685)
|
392
|
-
- [Implement faster file history walk #1676](https://github.com/nodegit/nodegit/pull/1676)
|
393
|
-
- [EOL for Node 6 and Ubuntu 14.04 #1649](https://github.com/nodegit/nodegit/pull/1649)
|
394
|
-
- [Ensures that commits from parent(*) has a repository #1658](https://github.com/nodegit/nodegit/pull/1658)
|
395
|
-
- [Update openssl conan distributions #1663](https://github.com/nodegit/nodegit/pull/1663)
|
396
|
-
- [Support signing in Repository#mergeBranches #1664](https://github.com/nodegit/nodegit/pull/1664)
|
397
|
-
- [Dependency upgrade node-gyp upgraded to 4.0.0 #1672](https://github.com/nodegit/nodegit/pull/1672)
|
398
|
-
- [Add additional getters to streamline information gathering (breaking change) #1671](https://github.com/nodegit/nodegit/pull/1671)
|
399
|
-
- [Clean up some dangerous memory accesses in callbacks #1642](https://github.com/nodegit/nodegit/pull/1642)
|
400
|
-
- [Output the item that was deprecated when giving deprecation notice #1643](https://github.com/nodegit/nodegit/pull/1643)
|
401
|
-
- [Don't fail yarn installs when we can't find npm #1644](https://github.com/nodegit/nodegit/pull/1644)
|
402
|
-
- [`ceiling_dirs` parameter in `Repository.discover` is optional #1245](https://github.com/nodegit/nodegit/pull/1245)
|
403
|
-
- [Add missing `shouldAlloc` declarations for git_merge_analysis* functions #1641](https://github.com/nodegit/nodegit/pull/1641)
|
404
|
-
- [Fix regex state causing subsequent runs of Tag.extractSignature to fail #1630](https://github.com/nodegit/nodegit/pull/1630)
|
405
|
-
- [Update LibGit2 docs to v0.28.0 #1631](https://github.com/nodegit/nodegit/pull/1631)
|
406
|
-
- [Add support for building on IBM i (PASE) #1634](https://github.com/nodegit/nodegit/pull/1634)
|
407
|
-
- [Expose more config methods #1635](https://github.com/nodegit/nodegit/pull/1635)
|
408
|
-
- [Catch errors and pass them to libgit2 as error codes in rebase signingcb #1636](https://github.com/nodegit/nodegit/pull/1636)
|
409
|
-
- [Simplify check for IBM i operating system #1637](https://github.com/nodegit/nodegit/pull/1637)
|
410
|
-
- [Bump LibGit2 to fork of v0.28.1 #1638](https://github.com/nodegit/nodegit/pull/1638)
|
411
|
-
- [We should clear the persistent cell in structs when they are destroyed #1629](https://github.com/nodegit/nodegit/pull/1629)
|
412
|
-
- [Fix "errorno" typo #1628](https://github.com/nodegit/nodegit/pull/1628)
|
413
|
-
- [Bump Libgit2 fork to v0.28.0 #1627](https://github.com/nodegit/nodegit/pull/1627)
|
414
|
-
- [Fix macOS and Windows Electron 4 builds #1626](https://github.com/nodegit/nodegit/pull/1626)
|
415
|
-
- [Fix non-existent / dangling refs cause Repository.prototype.createCommitWithSignature to fail #1624](https://github.com/nodegit/nodegit/pull/1624)
|
416
|
-
- [Handle new gyp information for electron builds #1623](https://github.com/nodegit/nodegit/pull/1623)
|
417
|
-
- [Use same API for signingCb in all places that can be crypto signed #1621](https://github.com/nodegit/nodegit/pull/1621)
|
418
|
-
- [Breaking: Repository.prototype.continueRebase enhancements #1619](https://github.com/nodegit/nodegit/pull/1619)
|
419
|
-
- [adds support for gpg commit signing (fixes #1018) #1448](https://github.com/nodegit/nodegit/pull/1448)
|
420
|
-
- [Add `updateRef` parameter to Repository#createCommitWithSignature #1610](https://github.com/nodegit/nodegit/pull/1610)
|
421
|
-
- [Documentation fixes. #1611](https://github.com/nodegit/nodegit/pull/1611)
|
422
|
-
- [Add Commit#amendWithSignature #1616](https://github.com/nodegit/nodegit/pull/1616)
|
423
|
-
- [Bump libgit2 to a preview of v0.28 #1615](https://github.com/nodegit/nodegit/pull/1615)
|
424
|
-
- [Fix issues with Commit#amendWithSignature #1617](https://github.com/nodegit/nodegit/pull/1617)
|
425
|
-
- [Marked Repository.createBlobFromBuffer as async #1614](https://github.com/nodegit/nodegit/pull/1614)
|
426
|
-
- [Add functionality for creating Tags with signatures and extracting signatures from Tags #1618](https://github.com/nodegit/nodegit/pull/1618)
|
427
|
-
|
428
|
-
#### Merged PRs into LibGit2
|
429
|
-
- [Add sign capability to git_rebase_commit #4913](https://github.com/libgit2/libgit2/pull/4913)
|
430
|
-
- [Parallelize checkout_create_the_new for perf #4205](https://github.com/libgit2/libgit2/pull/4205)
|
431
|
-
- [config_file: refresh when creating an iterator](https://github.com/libgit2/libgit2/pull/5181)
|
432
|
-
- [azure: drop powershell](https://github.com/libgit2/libgit2/pull/5141)
|
433
|
-
- [fuzzer: use futils instead of fileops](https://github.com/libgit2/libgit2/pull/5180)
|
434
|
-
- [w32: fix unlinking of directory symlinks](https://github.com/libgit2/libgit2/pull/5151)
|
435
|
-
- [patch_parse: fix segfault due to line containing static contents](https://github.com/libgit2/libgit2/pull/5179)
|
436
|
-
- [ignore: fix determining whether a shorter pattern negates another](https://github.com/libgit2/libgit2/pull/5173)
|
437
|
-
- [patch_parse: handle missing newline indicator in old file](https://github.com/libgit2/libgit2/pull/5159)
|
438
|
-
- [patch_parse: do not depend on parsed buffer's lifetime](https://github.com/libgit2/libgit2/pull/5158)
|
439
|
-
- [sha1: fix compilation of WinHTTP backend](https://github.com/libgit2/libgit2/pull/5174)
|
440
|
-
- [repository: do not initialize HEAD if it's provided by templates](https://github.com/libgit2/libgit2/pull/5176)
|
441
|
-
- [configuration: cvar -> configmap](https://github.com/libgit2/libgit2/pull/5138)
|
442
|
-
- [Evict cache items more efficiently](https://github.com/libgit2/libgit2/pull/5172)
|
443
|
-
- [clar: fix suite count](https://github.com/libgit2/libgit2/pull/5175)
|
444
|
-
- [Ignore VS2017 specific files and folders](https://github.com/libgit2/libgit2/pull/5163)
|
445
|
-
- [gitattributes: ignore macros defined in subdirectories](https://github.com/libgit2/libgit2/pull/5156)
|
446
|
-
- [clar: correctly account for "data" suites when counting](https://github.com/libgit2/libgit2/pull/5168)
|
447
|
-
- [Allocate memory more efficiently when packing objects](https://github.com/libgit2/libgit2/pull/5170)
|
448
|
-
- [fileops: fix creation of directory in filesystem root](https://github.com/libgit2/libgit2/pull/5131)
|
449
|
-
- [win32: fix fuzzers and have CI build them](https://github.com/libgit2/libgit2/pull/5160)
|
450
|
-
- [Config parser separation](https://github.com/libgit2/libgit2/pull/5134)
|
451
|
-
- [config_file: implement stat cache to avoid repeated rehashing](https://github.com/libgit2/libgit2/pull/5132)
|
452
|
-
- [ci: build with ENABLE_WERROR on Windows](https://github.com/libgit2/libgit2/pull/5143)
|
453
|
-
- [Fix Regression: attr: Correctly load system attr file (on Windows)](https://github.com/libgit2/libgit2/pull/5152)
|
454
|
-
- [hash: fix missing error return on production builds](https://github.com/libgit2/libgit2/pull/5145)
|
455
|
-
- [Resolve static check warnings in example code](https://github.com/libgit2/libgit2/pull/5142)
|
456
|
-
- [Multiple hash algorithms](https://github.com/libgit2/libgit2/pull/4438)
|
457
|
-
- [More documentation](https://github.com/libgit2/libgit2/pull/5128)
|
458
|
-
- [Incomplete commondir support](https://github.com/libgit2/libgit2/pull/4967)
|
459
|
-
- [Remove warnings](https://github.com/libgit2/libgit2/pull/5078)
|
460
|
-
- [Re-run flaky tests](https://github.com/libgit2/libgit2/pull/5140)
|
461
|
-
- [errors: use lowercase](https://github.com/libgit2/libgit2/pull/5137)
|
462
|
-
- [largefile tests: only write 2GB on 32-bit platforms](https://github.com/libgit2/libgit2/pull/5136)
|
463
|
-
- [Fix broken link in README](https://github.com/libgit2/libgit2/pull/5129)
|
464
|
-
- [net: remove unused `git_headlist_cb`](https://github.com/libgit2/libgit2/pull/5122)
|
465
|
-
- [cmake: default NTLM client to off if no HTTPS support](https://github.com/libgit2/libgit2/pull/5124)
|
466
|
-
- [attr: rename constants and macros for consistency](https://github.com/libgit2/libgit2/pull/5119)
|
467
|
-
- [Change API instances of `fromnoun` to `from_noun` (with an underscore)](https://github.com/libgit2/libgit2/pull/5117)
|
468
|
-
- [object: rename git_object__size to git_object_size](https://github.com/libgit2/libgit2/pull/5118)
|
469
|
-
- [Replace fnmatch with wildmatch](https://github.com/libgit2/libgit2/pull/5110)
|
470
|
-
- [Documentation fixes](https://github.com/libgit2/libgit2/pull/5111)
|
471
|
-
- [Removal of `p_fallocate`](https://github.com/libgit2/libgit2/pull/5114)
|
472
|
-
- [Modularize our TLS & hash detection](https://github.com/libgit2/libgit2/pull/5055)
|
473
|
-
- [tests: merge::analysis: use test variants to avoid duplicated test suites](https://github.com/libgit2/libgit2/pull/5109)
|
474
|
-
- [Rename options initialization functions](https://github.com/libgit2/libgit2/pull/5101)
|
475
|
-
- [deps: ntlmclient: disable implicit fallthrough warnings](https://github.com/libgit2/libgit2/pull/5112)
|
476
|
-
- [gitignore with escapes](https://github.com/libgit2/libgit2/pull/5097)
|
477
|
-
- [Handle URLs with a colon after host but no port](https://github.com/libgit2/libgit2/pull/5108)
|
478
|
-
- [Merge analysis support for bare repos](https://github.com/libgit2/libgit2/pull/5022)
|
479
|
-
- [Add memleak check docs](https://github.com/libgit2/libgit2/pull/5104)
|
480
|
-
- [Data-driven tests](https://github.com/libgit2/libgit2/pull/5098)
|
481
|
-
- [sha1dc: update to fix endianess issues on AIX/HP-UX](https://github.com/libgit2/libgit2/pull/5107)
|
482
|
-
- [Add NTLM support for HTTP(s) servers and proxies](https://github.com/libgit2/libgit2/pull/5052)
|
483
|
-
- [Callback type names should be suffixed with `_cb`](https://github.com/libgit2/libgit2/pull/5102)
|
484
|
-
- [tests: checkout: fix symlink.git being created outside of sandbox](https://github.com/libgit2/libgit2/pull/5099)
|
485
|
-
- [ignore: handle escaped trailing whitespace](https://github.com/libgit2/libgit2/pull/5095)
|
486
|
-
- [Ignore: only treat one leading slash as a root identifier](https://github.com/libgit2/libgit2/pull/5074)
|
487
|
-
- [online tests: use gitlab for auth failures](https://github.com/libgit2/libgit2/pull/5094)
|
488
|
-
- [Ignore files: don't ignore whitespace](https://github.com/libgit2/libgit2/pull/5076)
|
489
|
-
- [cache: fix cache eviction using deallocated key](https://github.com/libgit2/libgit2/pull/5088)
|
490
|
-
- [SECURITY.md: split out security-relevant bits from readme](https://github.com/libgit2/libgit2/pull/5085)
|
491
|
-
- [Restore NetBSD support](https://github.com/libgit2/libgit2/pull/5086)
|
492
|
-
- [repository: fix garbage return value](https://github.com/libgit2/libgit2/pull/5084)
|
493
|
-
- [cmake: disable fallthrough warnings for PCRE](https://github.com/libgit2/libgit2/pull/5083)
|
494
|
-
- [Configuration parsing: validate section headers with quotes](https://github.com/libgit2/libgit2/pull/5073)
|
495
|
-
- [Loosen restriction on wildcard "*" refspecs](https://github.com/libgit2/libgit2/pull/5060)
|
496
|
-
- [Use PCRE for our fallback regex engine when regcomp_l is unavailable](https://github.com/libgit2/libgit2/pull/4935)
|
497
|
-
- [Remote URL last-chance resolution](https://github.com/libgit2/libgit2/pull/5062)
|
498
|
-
- [Skip UTF8 BOM in ignore files](https://github.com/libgit2/libgit2/pull/5075)
|
499
|
-
- [We've already added `ZLIB_LIBRARIES` to `LIBGIT2_LIBS` so don't also add the `z` library](https://github.com/libgit2/libgit2/pull/5080)
|
500
|
-
- [Define SYMBOLIC_LINK_FLAG_DIRECTORY if required](https://github.com/libgit2/libgit2/pull/5077)
|
501
|
-
- [Support symlinks for directories in win32](https://github.com/libgit2/libgit2/pull/5065)
|
502
|
-
- [rebase: orig_head and onto accessors](https://github.com/libgit2/libgit2/pull/5057)
|
503
|
-
- [cmake: correctly detect if system provides `regcomp`](https://github.com/libgit2/libgit2/pull/5063)
|
504
|
-
- [Correctly write to missing locked global config](https://github.com/libgit2/libgit2/pull/5023)
|
505
|
-
- [[RFC] util: introduce GIT_DOWNCAST macro](https://github.com/libgit2/libgit2/pull/4561)
|
506
|
-
- [examples: implement SSH authentication](https://github.com/libgit2/libgit2/pull/5051)
|
507
|
-
- [git_repository_init: stop traversing at windows root](https://github.com/libgit2/libgit2/pull/5050)
|
508
|
-
- [config_file: check result of git_array_alloc](https://github.com/libgit2/libgit2/pull/5053)
|
509
|
-
- [patch_parse.c: Handle CRLF in parse_header_start](https://github.com/libgit2/libgit2/pull/5027)
|
510
|
-
- [fix typo](https://github.com/libgit2/libgit2/pull/5045)
|
511
|
-
- [sha1: don't inline `git_hash_global_init` for win32](https://github.com/libgit2/libgit2/pull/5039)
|
512
|
-
- [ignore: treat paths with trailing "/" as directories](https://github.com/libgit2/libgit2/pull/5040)
|
513
|
-
- [Test that largefiles can be read through the tree API](https://github.com/libgit2/libgit2/pull/4874)
|
514
|
-
- [Tests for symlinked user config](https://github.com/libgit2/libgit2/pull/5034)
|
515
|
-
- [patch_parse: fix parsing addition/deletion of file with space](https://github.com/libgit2/libgit2/pull/5035)
|
516
|
-
- [Optimize string comparisons](https://github.com/libgit2/libgit2/pull/5018)
|
517
|
-
- [Negation of subdir ignore causes other subdirs to be unignored](https://github.com/libgit2/libgit2/pull/5020)
|
518
|
-
- [xdiff: fix typo](https://github.com/libgit2/libgit2/pull/5024)
|
519
|
-
- [docs: clarify relation of safe and forced checkout strategy](https://github.com/libgit2/libgit2/pull/5032)
|
520
|
-
- [Each hash implementation should define `git_hash_global_init`](https://github.com/libgit2/libgit2/pull/5026)
|
521
|
-
- [[Doc] Update URL to git2-rs](https://github.com/libgit2/libgit2/pull/5012)
|
522
|
-
- [remote: Rename git_remote_completion_type to _t](https://github.com/libgit2/libgit2/pull/5008)
|
523
|
-
- [odb: provide a free function for custom backends](https://github.com/libgit2/libgit2/pull/5005)
|
524
|
-
- [Have git_branch_lookup accept GIT_BRANCH_ALL](https://github.com/libgit2/libgit2/pull/5000)
|
525
|
-
- [Rename git_transfer_progress to git_indexer_progress](https://github.com/libgit2/libgit2/pull/4997)
|
526
|
-
- [High-level map APIs](https://github.com/libgit2/libgit2/pull/4901)
|
527
|
-
- [refdb_fs: fix loose/packed refs lookup racing with repacks](https://github.com/libgit2/libgit2/pull/4984)
|
528
|
-
- [Allocator restructuring](https://github.com/libgit2/libgit2/pull/4998)
|
529
|
-
- [cache: fix misnaming of `git_cache_free`](https://github.com/libgit2/libgit2/pull/4992)
|
530
|
-
- [examples: produce single cgit2 binary](https://github.com/libgit2/libgit2/pull/4956)
|
531
|
-
- [Remove public 'inttypes.h' header](https://github.com/libgit2/libgit2/pull/4991)
|
532
|
-
- [Prevent reading out of bounds memory](https://github.com/libgit2/libgit2/pull/4996)
|
533
|
-
- [Fix a memory leak in odb_otype_fast()](https://github.com/libgit2/libgit2/pull/4987)
|
534
|
-
- [Make stdalloc__reallocarray call stdalloc__realloc](https://github.com/libgit2/libgit2/pull/4986)
|
535
|
-
- [Remove `git_time_monotonic`](https://github.com/libgit2/libgit2/pull/4990)
|
536
|
-
- [Fix a _very_ improbable memory leak in git_odb_new()](https://github.com/libgit2/libgit2/pull/4988)
|
537
|
-
- [ci: publish documentation on merge](https://github.com/libgit2/libgit2/pull/4989)
|
538
|
-
- [Enable creation of worktree from bare repo's default branch](https://github.com/libgit2/libgit2/pull/4982)
|
539
|
-
- [Allow bypassing check for '.keep' file](https://github.com/libgit2/libgit2/pull/4965)
|
540
|
-
- [Deprecation: export the deprecated functions properly](https://github.com/libgit2/libgit2/pull/4979)
|
541
|
-
- [ci: skip ssh tests on macOS nightly](https://github.com/libgit2/libgit2/pull/4980)
|
542
|
-
- [CI build fixups](https://github.com/libgit2/libgit2/pull/4976)
|
543
|
-
- [v0.28 rc1](https://github.com/libgit2/libgit2/pull/4970)
|
544
|
-
- [Docs](https://github.com/libgit2/libgit2/pull/4968)
|
545
|
-
- [Documentation fixes](https://github.com/libgit2/libgit2/pull/4954)
|
546
|
-
- [ci: add an individual coverity pipeline](https://github.com/libgit2/libgit2/pull/4964)
|
547
|
-
- [ci: run docurium to create documentation](https://github.com/libgit2/libgit2/pull/4961)
|
548
|
-
- [ci: return coverity to the nightlies](https://github.com/libgit2/libgit2/pull/4962)
|
549
|
-
- [Clean up some warnings](https://github.com/libgit2/libgit2/pull/4950)
|
550
|
-
- [Nightlies: use `latest` docker images](https://github.com/libgit2/libgit2/pull/4869)
|
551
|
-
- [index: preserve extension parsing errors](https://github.com/libgit2/libgit2/pull/4858)
|
552
|
-
- [Deprecate functions and constants more gently](https://github.com/libgit2/libgit2/pull/4952)
|
553
|
-
- [Don't use deprecated constants](https://github.com/libgit2/libgit2/pull/4957)
|
554
|
-
- [Fix VS warning C4098: 'giterr_set_str' : void function returning a value](https://github.com/libgit2/libgit2/pull/4955)
|
555
|
-
- [Move `giterr` to `git_error`](https://github.com/libgit2/libgit2/pull/4917)
|
556
|
-
- [odb: Fix odb foreach to also close on positive error code](https://github.com/libgit2/libgit2/pull/4949)
|
557
|
-
- [repository: free memory in symlink detection function](https://github.com/libgit2/libgit2/pull/4948)
|
558
|
-
- [ci: update poxyproxy, run in quiet mode](https://github.com/libgit2/libgit2/pull/4947)
|
559
|
-
- [Add/multiply with overflow tweaks](https://github.com/libgit2/libgit2/pull/4945)
|
560
|
-
- [Improve deprecation of old enums](https://github.com/libgit2/libgit2/pull/4944)
|
561
|
-
- [Move `git_ref_t` to `git_reference_t`](https://github.com/libgit2/libgit2/pull/4939)
|
562
|
-
- [More `git_obj` to `git_object` updates](https://github.com/libgit2/libgit2/pull/4940)
|
563
|
-
- [ci: only run invasive tests in nightly](https://github.com/libgit2/libgit2/pull/4943)
|
564
|
-
- [Always build a cdecl library](https://github.com/libgit2/libgit2/pull/4930)
|
565
|
-
- [changelog: document changes since 0.27](https://github.com/libgit2/libgit2/pull/4932)
|
566
|
-
- [Fix a bunch of warnings](https://github.com/libgit2/libgit2/pull/4925)
|
567
|
-
- [mailmap: prefer ethomson@edwardthomson.com](https://github.com/libgit2/libgit2/pull/4941)
|
568
|
-
- [Convert tests/resources/push.sh to LF endings](https://github.com/libgit2/libgit2/pull/4937)
|
569
|
-
- [Get rid of some test files that were accidentally committed](https://github.com/libgit2/libgit2/pull/4936)
|
570
|
-
- [Fix crash on remote connection when GIT_PROXY_AUTO is set but no proxy is detected](https://github.com/libgit2/libgit2/pull/4934)
|
571
|
-
- [Make ENABLE_WERROR actually work](https://github.com/libgit2/libgit2/pull/4924)
|
572
|
-
- [Remove unconditional -Wno-deprecated-declaration on macOS](https://github.com/libgit2/libgit2/pull/4931)
|
573
|
-
- [Fix warning 'function': incompatible types - from 'git_cvar_value *' to 'int *' (C4133) on VS](https://github.com/libgit2/libgit2/pull/4926)
|
574
|
-
- [Fix Linux warnings](https://github.com/libgit2/libgit2/pull/4928)
|
575
|
-
- [Coverity fixes](https://github.com/libgit2/libgit2/pull/4922)
|
576
|
-
- [Shutdown callback count](https://github.com/libgit2/libgit2/pull/4919)
|
577
|
-
- [Update CRLF filtering to match modern git](https://github.com/libgit2/libgit2/pull/4904)
|
578
|
-
- [refdb_fs: refactor error handling in `refdb_reflog_fs__delete`](https://github.com/libgit2/libgit2/pull/4915)
|
579
|
-
- [Remove empty (sub-)directories when deleting refs](https://github.com/libgit2/libgit2/pull/4833)
|
580
|
-
- [Support creating annotated commits from annotated tags](https://github.com/libgit2/libgit2/pull/4910)
|
581
|
-
- [Fix segfault in loose_backend__readstream](https://github.com/libgit2/libgit2/pull/4906)
|
582
|
-
- [make proxy_stream_close close target stream even on errors](https://github.com/libgit2/libgit2/pull/4905)
|
583
|
-
- [Index API updates for consistency](https://github.com/libgit2/libgit2/pull/4807)
|
584
|
-
- [Allow merge analysis against any reference](https://github.com/libgit2/libgit2/pull/4770)
|
585
|
-
- [revwalk: Allow changing hide_cb](https://github.com/libgit2/libgit2/pull/4888)
|
586
|
-
- [Unused function warnings](https://github.com/libgit2/libgit2/pull/4895)
|
587
|
-
- [Add builtin proxy support for the http transport](https://github.com/libgit2/libgit2/pull/4870)
|
588
|
-
- [config: fix adding files if their parent directory is a file](https://github.com/libgit2/libgit2/pull/4898)
|
589
|
-
- [Allow certificate and credential callbacks to decline to act](https://github.com/libgit2/libgit2/pull/4879)
|
590
|
-
- [Fix warning C4133 incompatible types in MSVC](https://github.com/libgit2/libgit2/pull/4896)
|
591
|
-
- [index: introduce git_index_iterator](https://github.com/libgit2/libgit2/pull/4884)
|
592
|
-
- [commit: fix out-of-bound reads when parsing truncated author fields](https://github.com/libgit2/libgit2/pull/4894)
|
593
|
-
- [tests: 🌀 address two null argument instances #4847](https://github.com/libgit2/libgit2/pull/4847)
|
594
|
-
- [Some OpenSSL issues](https://github.com/libgit2/libgit2/pull/4875)
|
595
|
-
- [worktree: Expose git_worktree_add_init_options](https://github.com/libgit2/libgit2/pull/4892)
|
596
|
-
- [transport/http: Include non-default ports in Host header](https://github.com/libgit2/libgit2/pull/4882)
|
597
|
-
- [Support symlinks on Windows when core.symlinks=true](https://github.com/libgit2/libgit2/pull/4713)
|
598
|
-
- [strntol: fix out-of-bounds reads when parsing numbers with leading sign](https://github.com/libgit2/libgit2/pull/4886)
|
599
|
-
- [apply: small fixups in the test suite](https://github.com/libgit2/libgit2/pull/4885)
|
600
|
-
- [signature: fix out-of-bounds read when parsing timezone offset](https://github.com/libgit2/libgit2/pull/4883)
|
601
|
-
- [Remote creation API](https://github.com/libgit2/libgit2/pull/4667)
|
602
|
-
- [Index collision fixes](https://github.com/libgit2/libgit2/pull/4818)
|
603
|
-
- [Patch (diff) application](https://github.com/libgit2/libgit2/pull/4705)
|
604
|
-
- [smart transport: only clear url on hard reset (regression)](https://github.com/libgit2/libgit2/pull/4880)
|
605
|
-
- [Tree parsing fixes](https://github.com/libgit2/libgit2/pull/4871)
|
606
|
-
- [CI: Fix macOS leak detection](https://github.com/libgit2/libgit2/pull/4860)
|
607
|
-
- [README: more CI status badges](https://github.com/libgit2/libgit2/pull/4800)
|
608
|
-
- [ci: Fix some minor issues](https://github.com/libgit2/libgit2/pull/4867)
|
609
|
-
- [Object parse fixes](https://github.com/libgit2/libgit2/pull/4864)
|
610
|
-
- [Windows CI: fail build on test failure](https://github.com/libgit2/libgit2/pull/4862)
|
611
|
-
- [ci: run all the jobs during nightly builds](https://github.com/libgit2/libgit2/pull/4863)
|
612
|
-
- [strtol removal](https://github.com/libgit2/libgit2/pull/4851)
|
613
|
-
- [ buf::oom tests: use custom allocator for oom failures](https://github.com/libgit2/libgit2/pull/4854)
|
614
|
-
- [ci: arm docker builds](https://github.com/libgit2/libgit2/pull/4804)
|
615
|
-
- [Win32 path canonicalization refactoring](https://github.com/libgit2/libgit2/pull/4852)
|
616
|
-
- [Check object existence when creating a tree from an index](https://github.com/libgit2/libgit2/pull/4840)
|
617
|
-
- [Ninja build](https://github.com/libgit2/libgit2/pull/4841)
|
618
|
-
- [docs: fix transparent/opaque confusion in the conventions file](https://github.com/libgit2/libgit2/pull/4853)
|
619
|
-
- [Configuration variables can appear on the same line as the section header](https://github.com/libgit2/libgit2/pull/4819)
|
620
|
-
- [path: export the dotgit-checking functions](https://github.com/libgit2/libgit2/pull/4849)
|
621
|
-
- [cmake: correct comment from libssh to libssh2](https://github.com/libgit2/libgit2/pull/4850)
|
622
|
-
- [Object parsing fuzzer](https://github.com/libgit2/libgit2/pull/4845)
|
623
|
-
- [config: Port config_file_fuzzer to the new in-memory backend.](https://github.com/libgit2/libgit2/pull/4842)
|
624
|
-
- [Add some more tests for git_futils_rmdir_r and some cleanup](https://github.com/libgit2/libgit2/pull/4828)
|
625
|
-
- [diff_stats: use git's formatting of renames with common directories](https://github.com/libgit2/libgit2/pull/4830)
|
626
|
-
- [ignore unsupported http authentication contexts](https://github.com/libgit2/libgit2/pull/4839)
|
627
|
-
- [submodule: ignore path and url attributes if they look like options](https://github.com/libgit2/libgit2/pull/4837)
|
628
|
-
- [Smart packet security fixes](https://github.com/libgit2/libgit2/pull/4836)
|
629
|
-
- [config_file: properly ignore includes without "path" value](https://github.com/libgit2/libgit2/pull/4832)
|
630
|
-
- [int-conversion](https://github.com/libgit2/libgit2/pull/4831)
|
631
|
-
- [cmake: enable new quoted argument policy CMP0054](https://github.com/libgit2/libgit2/pull/4829)
|
632
|
-
- [fix check if blob is uninteresting when inserting tree to packbuilder](https://github.com/libgit2/libgit2/pull/4824)
|
633
|
-
- [Documentation fixups](https://github.com/libgit2/libgit2/pull/4827)
|
634
|
-
- [CI: refactoring](https://github.com/libgit2/libgit2/pull/4812)
|
635
|
-
- [In-memory configuration](https://github.com/libgit2/libgit2/pull/4767)
|
636
|
-
- [Some warnings](https://github.com/libgit2/libgit2/pull/4784)
|
637
|
-
- [index: release the snapshot instead of freeing the index](https://github.com/libgit2/libgit2/pull/4803)
|
638
|
-
- [online::clone: free url and username before resetting](https://github.com/libgit2/libgit2/pull/4816)
|
639
|
-
- [git_remote_prune to be O(n * logn)](https://github.com/libgit2/libgit2/pull/4794)
|
640
|
-
- [Rename "VSTS" to "Azure DevOps" and "Azure Pipelines"](https://github.com/libgit2/libgit2/pull/4813)
|
641
|
-
- [cmake: enable -Wformat and -Wformat-security](https://github.com/libgit2/libgit2/pull/4810)
|
642
|
-
- [Fix revwalk limiting regression](https://github.com/libgit2/libgit2/pull/4809)
|
643
|
-
- [path validation: `char` is not signed by default.](https://github.com/libgit2/libgit2/pull/4805)
|
644
|
-
- [revwalk: refer the sorting modes more to git's options](https://github.com/libgit2/libgit2/pull/4811)
|
645
|
-
- [Clar XML output redux](https://github.com/libgit2/libgit2/pull/4778)
|
646
|
-
- [remote: store the connection data in a private struct](https://github.com/libgit2/libgit2/pull/4785)
|
647
|
-
- [docs: clarify and include licenses of dependencies](https://github.com/libgit2/libgit2/pull/4789)
|
648
|
-
- [config_file: fix quadratic behaviour when adding config multivars](https://github.com/libgit2/libgit2/pull/4799)
|
649
|
-
- [config: Fix a leak parsing multi-line config entries](https://github.com/libgit2/libgit2/pull/4792)
|
650
|
-
- [Prevent heap-buffer-overflow](https://github.com/libgit2/libgit2/pull/4797)
|
651
|
-
- [ci: remove travis](https://github.com/libgit2/libgit2/pull/4790)
|
652
|
-
- [Update VSTS YAML files with the latest syntax](https://github.com/libgit2/libgit2/pull/4791)
|
653
|
-
- [Documentation fixes](https://github.com/libgit2/libgit2/pull/4788)
|
654
|
-
- [config: convert unbounded recursion into a loop](https://github.com/libgit2/libgit2/pull/4781)
|
655
|
-
- [Document giterr_last() use only after error. #4772](https://github.com/libgit2/libgit2/pull/4773)
|
656
|
-
- [util: make the qsort_r check work on macOS](https://github.com/libgit2/libgit2/pull/4765)
|
657
|
-
- [fuzzer: update for indexer changes](https://github.com/libgit2/libgit2/pull/4782)
|
658
|
-
- [tree: accept null ids in existing trees when updating](https://github.com/libgit2/libgit2/pull/4727)
|
659
|
-
- [Pack file verification](https://github.com/libgit2/libgit2/pull/4374)
|
660
|
-
- [cmake: detect and use libc-provided iconv](https://github.com/libgit2/libgit2/pull/4777)
|
661
|
-
- [Coverity flavored clang analyzer fixes](https://github.com/libgit2/libgit2/pull/4774)
|
662
|
-
- [tests: verify adding index conflicts with invalid filemodes fails](https://github.com/libgit2/libgit2/pull/4776)
|
663
|
-
- [worktree: unlock should return 1 when the worktree isn't locked](https://github.com/libgit2/libgit2/pull/4769)
|
664
|
-
- [Add a fuzzer for config files](https://github.com/libgit2/libgit2/pull/4752)
|
665
|
-
- [Fix 'invalid packet line' for ng packets containing errors](https://github.com/libgit2/libgit2/pull/4763)
|
666
|
-
- [Fix leak in index.c](https://github.com/libgit2/libgit2/pull/4768)
|
667
|
-
- [threads::diff: use separate git_repository objects](https://github.com/libgit2/libgit2/pull/4754)
|
668
|
-
- [travis: remove Coverity cron job](https://github.com/libgit2/libgit2/pull/4766)
|
669
|
-
- [parse: Do not initialize the content in context to NULL](https://github.com/libgit2/libgit2/pull/4749)
|
670
|
-
- [config_file: Don't crash on options without a section](https://github.com/libgit2/libgit2/pull/4750)
|
671
|
-
- [ci: Correct the status code check so Coverity doesn't force-fail Travis](https://github.com/libgit2/libgit2/pull/4764)
|
672
|
-
- [ci: remove appveyor](https://github.com/libgit2/libgit2/pull/4760)
|
673
|
-
- [diff: fix OOM on AIX when finding similar deltas in empty diff](https://github.com/libgit2/libgit2/pull/4761)
|
674
|
-
- [travis: do not execute Coverity analysis for all cron jobs](https://github.com/libgit2/libgit2/pull/4755)
|
675
|
-
- [ci: enable compilation with "-Werror"](https://github.com/libgit2/libgit2/pull/4759)
|
676
|
-
- [smart_pkt: fix potential OOB-read when processing ng packet](https://github.com/libgit2/libgit2/pull/4758)
|
677
|
-
- [Fix a double-free in config parsing](https://github.com/libgit2/libgit2/pull/4751)
|
678
|
-
- [Fuzzers](https://github.com/libgit2/libgit2/pull/4728)
|
679
|
-
- [ci: run VSTS builds on master and maint branches](https://github.com/libgit2/libgit2/pull/4746)
|
680
|
-
- [Windows: default credentials / fallback credential handling](https://github.com/libgit2/libgit2/pull/4743)
|
681
|
-
- [ci: add VSTS build badge to README](https://github.com/libgit2/libgit2/pull/4745)
|
682
|
-
- [ci: set PKG_CONFIG_PATH for travis](https://github.com/libgit2/libgit2/pull/4744)
|
683
|
-
- [CI: Refactor and introduce VSTS builds](https://github.com/libgit2/libgit2/pull/4723)
|
684
|
-
- [revwalk: remove tautologic condition for hiding a commit](https://github.com/libgit2/libgit2/pull/4742)
|
685
|
-
- [winhttp: retry erroneously failing requests](https://github.com/libgit2/libgit2/pull/4731)
|
686
|
-
- [Add a configurable limit to the max pack size that will be indexed](https://github.com/libgit2/libgit2/pull/4721)
|
687
|
-
- [mbedtls: remove unused variable "cacert"](https://github.com/libgit2/libgit2/pull/4739)
|
688
|
-
- [Squash some leaks](https://github.com/libgit2/libgit2/pull/4732)
|
689
|
-
- [Add a checkout example](https://github.com/libgit2/libgit2/pull/4692)
|
690
|
-
- [Assorted Coverity fixes](https://github.com/libgit2/libgit2/pull/4702)
|
691
|
-
- [Remove GIT_PKT_PACK entirely](https://github.com/libgit2/libgit2/pull/4704)
|
692
|
-
- [ ignore: improve `git_ignore_path_is_ignored` description Git analogy](https://github.com/libgit2/libgit2/pull/4722)
|
693
|
-
- [alloc: don't overwrite allocator during init if set](https://github.com/libgit2/libgit2/pull/4724)
|
694
|
-
- [C90 standard compliance](https://github.com/libgit2/libgit2/pull/4700)
|
695
|
-
- [Delta OOB access](https://github.com/libgit2/libgit2/pull/4719)
|
696
|
-
- [Release v0.27.3](https://github.com/libgit2/libgit2/pull/4717)
|
697
|
-
- [streams: report OpenSSL errors if global init fails](https://github.com/libgit2/libgit2/pull/4710)
|
698
|
-
- [patch_parse: populate line numbers while parsing diffs](https://github.com/libgit2/libgit2/pull/4687)
|
699
|
-
- [Fix git_worktree_validate failing on bare repositories](https://github.com/libgit2/libgit2/pull/4686)
|
700
|
-
- [git_refspec_transform: Handle NULL dst](https://github.com/libgit2/libgit2/pull/4699)
|
701
|
-
- [Add a "dirty" state to the index when it has unsaved changes](https://github.com/libgit2/libgit2/pull/4536)
|
702
|
-
- [refspec: rename `git_refspec__free` to `git_refspec__dispose`](https://github.com/libgit2/libgit2/pull/4709)
|
703
|
-
- [streams: openssl: Handle error in SSL_CTX_new](https://github.com/libgit2/libgit2/pull/4701)
|
704
|
-
- [refspec: add public parsing api](https://github.com/libgit2/libgit2/pull/4519)
|
705
|
-
- [Fix interaction between limited flag and sorting over resets](https://github.com/libgit2/libgit2/pull/4688)
|
706
|
-
- [deps: fix implicit fallthrough warning in http-parser](https://github.com/libgit2/libgit2/pull/4691)
|
707
|
-
- [Fix assorted leaks found via fuzzing](https://github.com/libgit2/libgit2/pull/4698)
|
708
|
-
- [Fix type confusion in git_smart__connect](https://github.com/libgit2/libgit2/pull/4695)
|
709
|
-
- [Verify ref_pkt's are long enough](https://github.com/libgit2/libgit2/pull/4696)
|
710
|
-
- [Config parser cleanups](https://github.com/libgit2/libgit2/pull/4411)
|
711
|
-
- [Fix last references to deprecated git_buf_free](https://github.com/libgit2/libgit2/pull/4685)
|
712
|
-
- [revwalk: avoid walking the entire history when output is unsorted](https://github.com/libgit2/libgit2/pull/4606)
|
713
|
-
- [Add mailmap support.](https://github.com/libgit2/libgit2/pull/4586)
|
714
|
-
- [tree: remove unused functions](https://github.com/libgit2/libgit2/pull/4683)
|
715
|
-
- [Link `mbedTLS` libraries in when `SHA1_BACKEND` == "mbedTLS"](https://github.com/libgit2/libgit2/pull/4678)
|
716
|
-
- [editorconfig: allow trailing whitespace in markdown](https://github.com/libgit2/libgit2/pull/4676)
|
717
|
-
- [docs: fix statement about tab width](https://github.com/libgit2/libgit2/pull/4681)
|
718
|
-
- [diff: fix enum value being out of allowed range](https://github.com/libgit2/libgit2/pull/4680)
|
719
|
-
- [pack: rename `git_packfile_stream_free`](https://github.com/libgit2/libgit2/pull/4436)
|
720
|
-
- [Stop leaking the memory](https://github.com/libgit2/libgit2/pull/4677)
|
721
|
-
- [Bugfix release v0.27.2](https://github.com/libgit2/libgit2/pull/4632)
|
722
|
-
- [Fix stash save bug with fast path index check](https://github.com/libgit2/libgit2/pull/4668)
|
723
|
-
- [path: unify `git_path_is_*` APIs](https://github.com/libgit2/libgit2/pull/4662)
|
724
|
-
- [Fix negative gitignore rules with leading directories ](https://github.com/libgit2/libgit2/pull/4670)
|
725
|
-
- [Custom memory allocators](https://github.com/libgit2/libgit2/pull/4576)
|
726
|
-
- [index: Fix alignment issues in write_disk_entry()](https://github.com/libgit2/libgit2/pull/4655)
|
727
|
-
- [travis: war on leaks](https://github.com/libgit2/libgit2/pull/4558)
|
728
|
-
- [refdb_fs: fix regression: failure when globbing for non-existant references](https://github.com/libgit2/libgit2/pull/4665)
|
729
|
-
- [tests: submodule: do not rely on config iteration order](https://github.com/libgit2/libgit2/pull/4673)
|
730
|
-
- [Detect duplicated submodules for the same path](https://github.com/libgit2/libgit2/pull/4641)
|
731
|
-
- [Fix docurium missing includes](https://github.com/libgit2/libgit2/pull/4530)
|
732
|
-
- [github: update issue template](https://github.com/libgit2/libgit2/pull/4627)
|
733
|
-
- [streams: openssl: add missing check on OPENSSL_LEGACY_API](https://github.com/libgit2/libgit2/pull/4661)
|
734
|
-
- [mbedtls: don't require mbedtls from our pkgconfig file](https://github.com/libgit2/libgit2/pull/4656)
|
735
|
-
- [Fixes for CVE 2018-11235](https://github.com/libgit2/libgit2/pull/4660)
|
736
|
-
- [Backport fixes for CVE 2018-11235](https://github.com/libgit2/libgit2/pull/4659)
|
737
|
-
- [Added note about Windows junction points to the differences from git document](https://github.com/libgit2/libgit2/pull/4653)
|
738
|
-
- [cmake: resolve libraries found by pkg-config ](https://github.com/libgit2/libgit2/pull/4642)
|
739
|
-
- [refdb_fs: enhance performance of globbing](https://github.com/libgit2/libgit2/pull/4629)
|
740
|
-
- [global: adjust init count under lock](https://github.com/libgit2/libgit2/pull/4645)
|
741
|
-
- [Fix GCC 8.1 warnings](https://github.com/libgit2/libgit2/pull/4646)
|
742
|
-
- [Worktrees can be made from bare repositories](https://github.com/libgit2/libgit2/pull/4630)
|
743
|
-
- [docs: add documentation to state differences from the git cli](https://github.com/libgit2/libgit2/pull/4605)
|
744
|
-
- [Sanitize the hunk header to ensure it contains UTF-8 valid data](https://github.com/libgit2/libgit2/pull/4542)
|
745
|
-
- [examples: ls-files: add ls-files to list paths in the index](https://github.com/libgit2/libgit2/pull/4380)
|
746
|
-
- [OpenSSL legacy API cleanups](https://github.com/libgit2/libgit2/pull/4608)
|
747
|
-
- [worktree: add functions to get name and path](https://github.com/libgit2/libgit2/pull/4640)
|
748
|
-
- [Fix deletion of unrelated branch on worktree](https://github.com/libgit2/libgit2/pull/4633)
|
749
|
-
- [mbedTLS support](https://github.com/libgit2/libgit2/pull/4173)
|
750
|
-
- [Configuration entry iteration in order](https://github.com/libgit2/libgit2/pull/4525)
|
751
|
-
- [blame_git: fix coalescing step never being executed](https://github.com/libgit2/libgit2/pull/4580)
|
752
|
-
- [Fix leaks in master](https://github.com/libgit2/libgit2/pull/4636)
|
753
|
-
- [Leak fixes for v0.27.1](https://github.com/libgit2/libgit2/pull/4635)
|
754
|
-
- [worktree: Read worktree specific reflog for HEAD](https://github.com/libgit2/libgit2/pull/4577)
|
755
|
-
- [fixed stack smashing due to wrong size of struct stat on the stack](https://github.com/libgit2/libgit2/pull/4631)
|
756
|
-
- [scripts: add backporting script](https://github.com/libgit2/libgit2/pull/4476)
|
757
|
-
- [worktree: add ability to create worktree with pre-existing branch](https://github.com/libgit2/libgit2/pull/4524)
|
758
|
-
- [refs: preserve the owning refdb when duping reference](https://github.com/libgit2/libgit2/pull/4618)
|
759
|
-
- [Submodules-API should report .gitmodules parse errors instead of ignoring them](https://github.com/libgit2/libgit2/pull/4522)
|
760
|
-
- [Typedef git_pkt_type and clarify recv_pkt return type](https://github.com/libgit2/libgit2/pull/4514)
|
761
|
-
- [online::clone: validate user:pass in HTTP_PROXY](https://github.com/libgit2/libgit2/pull/4556)
|
762
|
-
- [ transports: ssh: disconnect session before freeing it ](https://github.com/libgit2/libgit2/pull/4596)
|
763
|
-
- [revwalk: fix uninteresting revs sometimes not limiting graphwalk](https://github.com/libgit2/libgit2/pull/4622)
|
764
|
-
- [attr_file: fix handling of directory patterns with trailing spaces](https://github.com/libgit2/libgit2/pull/4614)
|
765
|
-
- [transports: local: fix assert when fetching into repo with symrefs](https://github.com/libgit2/libgit2/pull/4613)
|
766
|
-
- [remote/proxy: fix git_transport_certificate_check_db description](https://github.com/libgit2/libgit2/pull/4597)
|
767
|
-
- [Flag options in describe.h as being optional](https://github.com/libgit2/libgit2/pull/4587)
|
768
|
-
- [diff: Add missing GIT_DELTA_TYPECHANGE -> 'T' mapping.](https://github.com/libgit2/libgit2/pull/4611)
|
769
|
-
- [appveyor: fix typo in registry key to disable DHE](https://github.com/libgit2/libgit2/pull/4609)
|
770
|
-
- [Fix build with LibreSSL 2.7](https://github.com/libgit2/libgit2/pull/4607)
|
771
|
-
- [appveyor: workaround for intermittent test failures](https://github.com/libgit2/libgit2/pull/4603)
|
772
|
-
- [sha1dc: update to fix errors with endianess](https://github.com/libgit2/libgit2/pull/4601)
|
773
|
-
- [submodule: check index for path and prefix before adding submodule](https://github.com/libgit2/libgit2/pull/4378)
|
774
|
-
- [odb: mempack: fix leaking objects when freeing mempacks](https://github.com/libgit2/libgit2/pull/4602)
|
775
|
-
- [types: remove unused git_merge_result](https://github.com/libgit2/libgit2/pull/4598)
|
776
|
-
- [checkout: change default strategy to SAFE](https://github.com/libgit2/libgit2/pull/4531)
|
777
|
-
- [Add myself to git.git-authors](https://github.com/libgit2/libgit2/pull/4570)
|
778
|
-
|
779
|
-
|
780
|
-
## <a name="v0-25-0-alpha-16" href="#v0-25-0-alpha-16">v0.25.0-alpha.16</a> [(2019-07-23)](https://github.com/nodegit/nodegit/releases/tag/v0.25.0-alpha.16)
|
781
|
-
|
782
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.25.0-alpha.15...v0.25.0-alpha.16)
|
783
|
-
|
784
|
-
#### Summary of changes
|
785
|
-
- Adds support for Node 12
|
786
|
-
- Updates lodash dependency to address security notice
|
787
|
-
- Expose Tree.prototype.createUpdated(repo, numUpdates, updates)
|
788
|
-
- Bumps libgit2
|
789
|
-
- Fixes gitignore issue with pattern negation
|
790
|
-
- Remote.list now gets the correct list of remotes if remotes are changed by external process
|
791
|
-
|
792
|
-
#### Merged PRs into NodeGit
|
793
|
-
- [Bump libgit2 #1705](https://github.com/nodegit/nodegit/pull/1705)
|
794
|
-
- [Fix Tree#createUpdated #1704](https://github.com/nodegit/nodegit/pull/1704)
|
795
|
-
- [Fix failing tests on CI #1703](https://github.com/nodegit/nodegit/pull/1703)
|
796
|
-
- [Audit lodash and fix package-lock.json #1702](https://github.com/nodegit/nodegit/pull/1702)
|
797
|
-
- [Implement support for Node 12 #1696](https://github.com/nodegit/nodegit/pull/1696)
|
798
|
-
|
799
|
-
#### Merged PRs into LibGit2
|
800
|
-
- [config_file: refresh when creating an iterator #5181](https://github.com/libgit2/libgit2/pull/5181)
|
801
|
-
- [azure: drop powershell #5141](https://github.com/libgit2/libgit2/pull/5141)
|
802
|
-
- [fuzzer: use futils instead of fileops #5180](https://github.com/libgit2/libgit2/pull/5180)
|
803
|
-
- [w32: fix unlinking of directory symlinks #5151](https://github.com/libgit2/libgit2/pull/5151)
|
804
|
-
- [patch_parse: fix segfault due to line containing static contents #5179](https://github.com/libgit2/libgit2/pull/5179)
|
805
|
-
- [ignore: fix determining whether a shorter pattern negates another #5173](https://github.com/libgit2/libgit2/pull/5173)
|
806
|
-
- [patch_parse: handle missing newline indicator in old file #5159](https://github.com/libgit2/libgit2/pull/5159)
|
807
|
-
- [patch_parse: do not depend on parsed buffer's lifetime #5158](https://github.com/libgit2/libgit2/pull/5158)
|
808
|
-
- [sha1: fix compilation of WinHTTP backend #5174](https://github.com/libgit2/libgit2/pull/5174)
|
809
|
-
- [repository: do not initialize HEAD if it's provided by templates #5176](https://github.com/libgit2/libgit2/pull/5176)
|
810
|
-
- [configuration: cvar -> configmap #5138](https://github.com/libgit2/libgit2/pull/5138)
|
811
|
-
- [Evict cache items more efficiently #5172](https://github.com/libgit2/libgit2/pull/5172)
|
812
|
-
- [clar: fix suite count #5175](https://github.com/libgit2/libgit2/pull/5175)
|
813
|
-
- [Ignore VS2017 specific files and folders #5163](https://github.com/libgit2/libgit2/pull/5163)
|
814
|
-
- [gitattributes: ignore macros defined in subdirectories #5156](https://github.com/libgit2/libgit2/pull/5156)
|
815
|
-
- [clar: correctly account for "data" suites when counting #5168](https://github.com/libgit2/libgit2/pull/5168)
|
816
|
-
- [Allocate memory more efficiently when packing objects #5170](https://github.com/libgit2/libgit2/pull/5170)
|
817
|
-
- [fileops: fix creation of directory in filesystem root #5131](https://github.com/libgit2/libgit2/pull/5131)
|
818
|
-
- [win32: fix fuzzers and have CI build them #5160](https://github.com/libgit2/libgit2/pull/5160)
|
819
|
-
- [Config parser separation #5134](https://github.com/libgit2/libgit2/pull/5134)
|
820
|
-
- [config_file: implement stat cache to avoid repeated rehashing #5132](https://github.com/libgit2/libgit2/pull/5132)
|
821
|
-
- [ci: build with ENABLE_WERROR on Windows #5143](https://github.com/libgit2/libgit2/pull/5143)
|
822
|
-
- [Fix Regression: attr: Correctly load system attr file (on Windows) #5152](https://github.com/libgit2/libgit2/pull/5152)
|
823
|
-
- [hash: fix missing error return on production builds #5145](https://github.com/libgit2/libgit2/pull/5145)
|
824
|
-
- [Resolve static check warnings in example code #5142](https://github.com/libgit2/libgit2/pull/5142)
|
825
|
-
- [Multiple hash algorithms #4438](https://github.com/libgit2/libgit2/pull/4438)
|
826
|
-
- [More documentation #5128](https://github.com/libgit2/libgit2/pull/5128)
|
827
|
-
- [Incomplete commondir support #4967](https://github.com/libgit2/libgit2/pull/4967)
|
828
|
-
- [Remove warnings #5078](https://github.com/libgit2/libgit2/pull/5078)
|
829
|
-
- [Re-run flaky tests #5140](https://github.com/libgit2/libgit2/pull/5140)
|
830
|
-
|
831
|
-
|
832
|
-
## <a name="v0-25-0-alpha-15" href="#v0-25-0-alpha-15">v0.25.0-alpha.15</a> [(2019-07-15)](https://github.com/nodegit/nodegit/releases/tag/v0.25.0-alpha.15)
|
833
|
-
|
834
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.25.0-alpha.14...v0.25.0-alpha.15)
|
835
|
-
|
836
|
-
#### Summary of changes
|
837
|
-
- Removed NSEC optimization due to performance regressions in repositories that did not use NSEC optimization cloned via NodeGit.
|
838
|
-
|
839
|
-
#### Merged PRs into NodeGit
|
840
|
-
- [Remove NSEC #1699](https://github.com/nodegit/nodegit/pull/1699)
|
841
|
-
|
842
|
-
|
843
|
-
## <a name="v0-25-0-alpha-14" href="#v0-25-0-alpha-14">v0.25.0-alpha.14</a> [(2019-07-01)](https://github.com/nodegit/nodegit/releases/tag/v0.25.0-alpha.14)
|
844
|
-
|
845
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.25.0-alpha.13...v0.25.0-alpha.14)
|
846
|
-
|
847
|
-
#### Summary of changes
|
848
|
-
- Always use builtin regex for linux for portability
|
849
|
-
|
850
|
-
#### Merged PRs into NodeGit
|
851
|
-
- [Use builtin regex library for linux for better portability #1693](https://github.com/nodegit/nodegit/pull/1693)
|
852
|
-
- [Remove pcre-config from binding.gyp #1694](https://github.com/nodegit/nodegit/pull/1694)
|
853
|
-
|
854
|
-
## <a name="v0-25-0-alpha-13" href="#v0-25-0-alpha-13">v0.25.0-alpha.13</a> [(2019-06-26)](https://github.com/nodegit/nodegit/releases/tag/v0.25.0-alpha.13)
|
855
|
-
|
856
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.25.0-alpha.12...v0.25.0-alpha.13)
|
857
|
-
|
858
|
-
#### Summary of changes
|
859
|
-
- Turn on GIT_USE_NSEC on all platforms
|
860
|
-
- Use Iconv on OSX for better internationalization support.
|
861
|
-
- Bump libgit2 to bring in:
|
862
|
-
- NTLM proxy support
|
863
|
-
- Negotiate/Kerberos proxy support
|
864
|
-
- Various git config fixes
|
865
|
-
- Various git ignore fixes
|
866
|
-
- Various libgit2 performance improvements
|
867
|
-
- Windows/Linux now use PCRE for regex, OSX uses regcomp_l, this should address collation issues in diffing
|
868
|
-
- Fixed bug with Repository.prototype.refreshReferences dying on corrupted reference. We now ignore corrupted references
|
869
|
-
|
870
|
-
#### Merged PRs into NodeGit
|
871
|
-
- [refresh_references.cc: skip refs that can't be directly resolved #1689](https://github.com/nodegit/nodegit/pull/1689)
|
872
|
-
- [Bump libgit2 to fork of latest master #1690](https://github.com/nodegit/nodegit/pull/1690)
|
873
|
-
|
874
|
-
#### Merged PRs into LibGit2
|
875
|
-
- [errors: use lowercase](https://github.com/libgit2/libgit2/pull/5137)
|
876
|
-
- [largefile tests: only write 2GB on 32-bit platforms](https://github.com/libgit2/libgit2/pull/5136)
|
877
|
-
- [Fix broken link in README](https://github.com/libgit2/libgit2/pull/5129)
|
878
|
-
- [net: remove unused `git_headlist_cb`](https://github.com/libgit2/libgit2/pull/5122)
|
879
|
-
- [cmake: default NTLM client to off if no HTTPS support](https://github.com/libgit2/libgit2/pull/5124)
|
880
|
-
- [attr: rename constants and macros for consistency](https://github.com/libgit2/libgit2/pull/5119)
|
881
|
-
- [Change API instances of `fromnoun` to `from_noun` (with an underscore)](https://github.com/libgit2/libgit2/pull/5117)
|
882
|
-
- [object: rename git_object__size to git_object_size](https://github.com/libgit2/libgit2/pull/5118)
|
883
|
-
- [Replace fnmatch with wildmatch](https://github.com/libgit2/libgit2/pull/5110)
|
884
|
-
- [Documentation fixes](https://github.com/libgit2/libgit2/pull/5111)
|
885
|
-
- [Removal of `p_fallocate`](https://github.com/libgit2/libgit2/pull/5114)
|
886
|
-
- [Modularize our TLS & hash detection](https://github.com/libgit2/libgit2/pull/5055)
|
887
|
-
- [tests: merge::analysis: use test variants to avoid duplicated test suites](https://github.com/libgit2/libgit2/pull/5109)
|
888
|
-
- [Rename options initialization functions](https://github.com/libgit2/libgit2/pull/5101)
|
889
|
-
- [deps: ntlmclient: disable implicit fallthrough warnings](https://github.com/libgit2/libgit2/pull/5112)
|
890
|
-
- [gitignore with escapes](https://github.com/libgit2/libgit2/pull/5097)
|
891
|
-
- [Handle URLs with a colon after host but no port](https://github.com/libgit2/libgit2/pull/5108)
|
892
|
-
- [Merge analysis support for bare repos](https://github.com/libgit2/libgit2/pull/5022)
|
893
|
-
- [Add memleak check docs](https://github.com/libgit2/libgit2/pull/5104)
|
894
|
-
- [Data-driven tests](https://github.com/libgit2/libgit2/pull/5098)
|
895
|
-
- [sha1dc: update to fix endianess issues on AIX/HP-UX](https://github.com/libgit2/libgit2/pull/5107)
|
896
|
-
- [Add NTLM support for HTTP(s) servers and proxies](https://github.com/libgit2/libgit2/pull/5052)
|
897
|
-
- [Callback type names should be suffixed with `_cb`](https://github.com/libgit2/libgit2/pull/5102)
|
898
|
-
- [tests: checkout: fix symlink.git being created outside of sandbox](https://github.com/libgit2/libgit2/pull/5099)
|
899
|
-
- [ignore: handle escaped trailing whitespace](https://github.com/libgit2/libgit2/pull/5095)
|
900
|
-
- [Ignore: only treat one leading slash as a root identifier](https://github.com/libgit2/libgit2/pull/5074)
|
901
|
-
- [online tests: use gitlab for auth failures](https://github.com/libgit2/libgit2/pull/5094)
|
902
|
-
- [Ignore files: don't ignore whitespace](https://github.com/libgit2/libgit2/pull/5076)
|
903
|
-
- [cache: fix cache eviction using deallocated key](https://github.com/libgit2/libgit2/pull/5088)
|
904
|
-
- [SECURITY.md: split out security-relevant bits from readme](https://github.com/libgit2/libgit2/pull/5085)
|
905
|
-
- [Restore NetBSD support](https://github.com/libgit2/libgit2/pull/5086)
|
906
|
-
- [repository: fix garbage return value](https://github.com/libgit2/libgit2/pull/5084)
|
907
|
-
- [cmake: disable fallthrough warnings for PCRE](https://github.com/libgit2/libgit2/pull/5083)
|
908
|
-
- [Configuration parsing: validate section headers with quotes](https://github.com/libgit2/libgit2/pull/5073)
|
909
|
-
- [Loosen restriction on wildcard "*" refspecs](https://github.com/libgit2/libgit2/pull/5060)
|
910
|
-
- [Use PCRE for our fallback regex engine when regcomp_l is unavailable](https://github.com/libgit2/libgit2/pull/4935)
|
911
|
-
- [Remote URL last-chance resolution](https://github.com/libgit2/libgit2/pull/5062)
|
912
|
-
- [Skip UTF8 BOM in ignore files](https://github.com/libgit2/libgit2/pull/5075)
|
913
|
-
- [We've already added `ZLIB_LIBRARIES` to `LIBGIT2_LIBS` so don't also add the `z` library](https://github.com/libgit2/libgit2/pull/5080)
|
914
|
-
- [Define SYMBOLIC_LINK_FLAG_DIRECTORY if required](https://github.com/libgit2/libgit2/pull/5077)
|
915
|
-
- [Support symlinks for directories in win32](https://github.com/libgit2/libgit2/pull/5065)
|
916
|
-
- [rebase: orig_head and onto accessors](https://github.com/libgit2/libgit2/pull/5057)
|
917
|
-
- [cmake: correctly detect if system provides `regcomp`](https://github.com/libgit2/libgit2/pull/5063)
|
918
|
-
- [Correctly write to missing locked global config](https://github.com/libgit2/libgit2/pull/5023)
|
919
|
-
- [[RFC] util: introduce GIT_DOWNCAST macro](https://github.com/libgit2/libgit2/pull/4561)
|
920
|
-
- [examples: implement SSH authentication](https://github.com/libgit2/libgit2/pull/5051)
|
921
|
-
- [git_repository_init: stop traversing at windows root](https://github.com/libgit2/libgit2/pull/5050)
|
922
|
-
- [config_file: check result of git_array_alloc](https://github.com/libgit2/libgit2/pull/5053)
|
923
|
-
- [patch_parse.c: Handle CRLF in parse_header_start](https://github.com/libgit2/libgit2/pull/5027)
|
924
|
-
- [fix typo](https://github.com/libgit2/libgit2/pull/5045)
|
925
|
-
- [sha1: don't inline `git_hash_global_init` for win32](https://github.com/libgit2/libgit2/pull/5039)
|
926
|
-
- [ignore: treat paths with trailing "/" as directories](https://github.com/libgit2/libgit2/pull/5040)
|
927
|
-
- [Test that largefiles can be read through the tree API](https://github.com/libgit2/libgit2/pull/4874)
|
928
|
-
- [Tests for symlinked user config](https://github.com/libgit2/libgit2/pull/5034)
|
929
|
-
- [patch_parse: fix parsing addition/deletion of file with space](https://github.com/libgit2/libgit2/pull/5035)
|
930
|
-
- [Optimize string comparisons](https://github.com/libgit2/libgit2/pull/5018)
|
931
|
-
- [Negation of subdir ignore causes other subdirs to be unignored](https://github.com/libgit2/libgit2/pull/5020)
|
932
|
-
- [xdiff: fix typo](https://github.com/libgit2/libgit2/pull/5024)
|
933
|
-
- [docs: clarify relation of safe and forced checkout strategy](https://github.com/libgit2/libgit2/pull/5032)
|
934
|
-
- [Each hash implementation should define `git_hash_global_init`](https://github.com/libgit2/libgit2/pull/5026)
|
935
|
-
- [[Doc] Update URL to git2-rs](https://github.com/libgit2/libgit2/pull/5012)
|
936
|
-
- [remote: Rename git_remote_completion_type to _t](https://github.com/libgit2/libgit2/pull/5008)
|
937
|
-
- [odb: provide a free function for custom backends](https://github.com/libgit2/libgit2/pull/5005)
|
938
|
-
- [Have git_branch_lookup accept GIT_BRANCH_ALL](https://github.com/libgit2/libgit2/pull/5000)
|
939
|
-
- [Rename git_transfer_progress to git_indexer_progress](https://github.com/libgit2/libgit2/pull/4997)
|
940
|
-
- [High-level map APIs](https://github.com/libgit2/libgit2/pull/4901)
|
941
|
-
- [refdb_fs: fix loose/packed refs lookup racing with repacks](https://github.com/libgit2/libgit2/pull/4984)
|
942
|
-
- [Allocator restructuring](https://github.com/libgit2/libgit2/pull/4998)
|
943
|
-
- [cache: fix misnaming of `git_cache_free`](https://github.com/libgit2/libgit2/pull/4992)
|
944
|
-
- [examples: produce single cgit2 binary](https://github.com/libgit2/libgit2/pull/4956)
|
945
|
-
- [Remove public 'inttypes.h' header](https://github.com/libgit2/libgit2/pull/4991)
|
946
|
-
- [Prevent reading out of bounds memory](https://github.com/libgit2/libgit2/pull/4996)
|
947
|
-
- [Fix a memory leak in odb_otype_fast()](https://github.com/libgit2/libgit2/pull/4987)
|
948
|
-
- [Make stdalloc__reallocarray call stdalloc__realloc](https://github.com/libgit2/libgit2/pull/4986)
|
949
|
-
- [Remove `git_time_monotonic`](https://github.com/libgit2/libgit2/pull/4990)
|
950
|
-
- [Fix a _very_ improbable memory leak in git_odb_new()](https://github.com/libgit2/libgit2/pull/4988)
|
951
|
-
- [ci: publish documentation on merge](https://github.com/libgit2/libgit2/pull/4989)
|
952
|
-
- [Enable creation of worktree from bare repo's default branch](https://github.com/libgit2/libgit2/pull/4982)
|
953
|
-
- [Allow bypassing check for '.keep' file](https://github.com/libgit2/libgit2/pull/4965)
|
954
|
-
- [Release v0.28.1](https://github.com/libgit2/libgit2/pull/4983)
|
955
|
-
|
956
|
-
|
957
|
-
|
958
|
-
## <a name="v0-25-0-alpha-12" href="#v0-25-0-alpha-12">v0.25.0-alpha.12</a> [(2019-06-03)](https://github.com/nodegit/nodegit/releases/tag/v0.25.0-alpha.12)
|
959
|
-
|
960
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.25.0-alpha.11...v0.25.0-alpha.12)
|
961
|
-
|
962
|
-
#### Summary of changes
|
963
|
-
- Fix bug in Repository.prototype.refreshReferences where new remote references from a new remote added/fetched on a separte repo instance do not show up in the result.
|
964
|
-
- Fixed a prototype problem with cherrypick, merge, and other collections that have a function at their root. call, apply, and bind should now be on NodeGit.Cherrypick.
|
965
|
-
- Bumped libssh2 to resolve security notice.
|
966
|
-
|
967
|
-
#### Merged PRs into NodeGit
|
968
|
-
- [Bump libssh2 to 1.8.2 and fix some npm audit warnings #1678](https://github.com/nodegit/nodegit/pull/1678)
|
969
|
-
- [Root functions should keep their function prototypes correctly #1681](https://github.com/nodegit/nodegit/pull/1681)
|
970
|
-
- [refresh_references.cc: bust LibGit2 remote list cache by reading config #1685](https://github.com/nodegit/nodegit/pull/1685)
|
971
|
-
|
972
|
-
|
973
|
-
## <a name="v0-25-0-alpha-11" href="#v0-25-0-alpha-11">v0.25.0-alpha.11</a> [(2019-05-20)](https://github.com/nodegit/nodegit/releases/tag/v0.25.0-alpha.11)
|
974
|
-
|
975
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.25.0-alpha.10...v0.25.0-alpha.11)
|
976
|
-
|
977
|
-
#### Summary of changes
|
978
|
-
- Improve speed and correctness of fileHistoryWalk. The API should not have changed; however, when the end of the walk has been reached, `reachedEndOfHistory` will be specified on the resulting array.
|
979
|
-
|
980
|
-
#### Merged PRs into NodeGit
|
981
|
-
- [Implement faster file history walk #1676](https://github.com/nodegit/nodegit/pull/1676)
|
982
|
-
|
983
|
-
|
984
|
-
## <a name="v0-25-0-alpha-10" href="#v0-25-0-alpha-10">v0.25.0-alpha.10</a> [(2019-05-03)](https://github.com/nodegit/nodegit/releases/tag/v0.25.0-alpha.10)
|
985
|
-
|
986
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.25.0-alpha.9...v0.25.0-alpha.10)
|
987
|
-
|
988
|
-
#### Summary of changes
|
989
|
-
- Drops support for Ubuntu 14 after EOL
|
990
|
-
- Fixes openssl prebuilt downloads for electron builds
|
991
|
-
- Fixes commits retrieved from Commit.prototype.parent
|
992
|
-
- *DEPRECATION* Support signing commits in Repository.prototype.mergeBranches. The last parameter `processMergeMessageCallback` is now deprecated, but will continue to work. Use the options object instead, which will contain the `processMergeMessageCallback`, as well as the `signingCb`.
|
993
|
-
- Bump Node-Gyp to 4.0.0 to fix tar security vulnerability
|
994
|
-
- *BREAKING* `getRemotes` no longer returns remote names, it now returns remote objects directly. Use `getRemoteNames` to get a list of remote names.
|
995
|
-
- Optimized a set of routines in NodeGit. These methods as written in Javascript require hundreds or thousands of requests to async workers to retrieve data. We've batched these requests and performed them on a single async worker. There are now native implementations of the following:
|
996
|
-
- Repository.prototype.getReferences: Retrieves all references on async worker.
|
997
|
-
- Repository.prototype.getRemotes: Retrieves all remotes on async worker.
|
998
|
-
- Repository.prototype.getSubmodules: Retrieves all submodules on async worker.
|
999
|
-
- Repository.prototype.refreshReferences: Open sourced function from GitKraken. Grabs a lot of information about references on an async worker.
|
1000
|
-
- Revwalk.prototype.commitWalk: Retrieves up to N commits from a revwalk on an async worker.
|
1001
|
-
|
1002
|
-
#### Merged PRs into NodeGit
|
1003
|
-
- [EOL for Node 6 and Ubuntu 14.04 #1649](https://github.com/nodegit/nodegit/pull/1649)
|
1004
|
-
- [Ensures that commits from parent(*) has a repository #1658](https://github.com/nodegit/nodegit/pull/1658)
|
1005
|
-
- [Update openssl conan distributions #1663](https://github.com/nodegit/nodegit/pull/1663)
|
1006
|
-
- [Support signing in Repository#mergeBranches #1664](https://github.com/nodegit/nodegit/pull/1664)
|
1007
|
-
- [Dependency upgrade node-gyp upgraded to 4.0.0 #1672](https://github.com/nodegit/nodegit/pull/1672)
|
1008
|
-
- [Add additional getters to streamline information gathering (breaking change) #1671](https://github.com/nodegit/nodegit/pull/1671)
|
1009
|
-
|
1010
|
-
|
1011
|
-
|
1012
|
-
## <a name="v0-25-0-alpha-9" href="#v0-25-0-alpha-9">v0.25.0-alpha.9</a> [(2019-03-04)](https://github.com/nodegit/nodegit/releases/tag/v0.25.0-alpha.9)
|
1013
|
-
|
1014
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.25.0-alpha.8...v0.25.0-alpha.9)
|
1015
|
-
|
1016
|
-
#### Summary of changes
|
1017
|
-
- Removed access to the diff_so_far param in git_diff_notify_cb and git_diff_progress_cb
|
1018
|
-
- Changed FilterSource.prototype.repo to async to prevent segfaults on filters that run during Submodule.status
|
1019
|
-
- Clean up deprecation messages to inform users of what was deprecated, not just what users should switch to
|
1020
|
-
- When installing on a machine that has yarn and does not have npm, the preinstall script should succeed now
|
1021
|
-
- ceiling_dirs is now an optional parameter to Repository.discover
|
1022
|
-
|
1023
|
-
#### Merged PRs into NodeGit
|
1024
|
-
- [Clean up some dangerous memory accesses in callbacks #1642](https://github.com/nodegit/nodegit/pull/1642)
|
1025
|
-
- [Output the item that was deprecated when giving deprecation notice #1643](https://github.com/nodegit/nodegit/pull/1643)
|
1026
|
-
- [Don't fail yarn installs when we can't find npm #1644](https://github.com/nodegit/nodegit/pull/1644)
|
1027
|
-
- [`ceiling_dirs` parameter in `Repository.discover` is optional #1245](https://github.com/nodegit/nodegit/pull/1245)
|
1028
|
-
|
1029
|
-
|
1030
|
-
## <a name="v0-25-0-alpha-8" href="#v0-25-0-alpha-8">v0.25.0-alpha.8</a> [(2019-02-27)](https://github.com/nodegit/nodegit/releases/tag/v0.25.0-alpha.8)
|
1031
|
-
|
1032
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.25.0-alpha.7...v0.25.0-alpha.8)
|
1033
|
-
|
1034
|
-
#### Summary of changes
|
1035
|
-
- Fixed segfault in NodeGit.Merge.analysis and NodeGit.Merge.analysisForRef
|
1036
|
-
|
1037
|
-
#### Merged PRs into NodeGit
|
1038
|
-
- [Add missing `shouldAlloc` declarations for git_merge_analysis* functions #1641](https://github.com/nodegit/nodegit/pull/1641)
|
1039
|
-
|
1040
|
-
|
1041
|
-
## <a name="v0-25-0-alpha-7" href="#v0-25-0-alpha-7">v0.25.0-alpha.7</a> [(2019-02-20)](https://github.com/nodegit/nodegit/releases/tag/v0.25.0-alpha.7)
|
1042
|
-
|
1043
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.25.0-alpha.6...v0.25.0-alpha.7)
|
1044
|
-
|
1045
|
-
#### Summary of changes
|
1046
|
-
- Fixed bug where repeated uses of extractSignature would fail because of the use of regex.prototype.match
|
1047
|
-
- Added support for building on IBM i (PASE) machines
|
1048
|
-
- Fixed bug where signingCb in rebases would not return error codes to LibGit2 if the signingCb threw or rejected
|
1049
|
-
- Exposed AnnotatedCommit methods:
|
1050
|
-
- AnnotatedCommit.prototype.ref
|
1051
|
-
- Exposed Apply methods:
|
1052
|
-
- Apply.apply applies a diff to the repository
|
1053
|
-
- Apply.toTree applies a diff to a tree
|
1054
|
-
- Exposed Config methods:
|
1055
|
-
- Config.prototype.deleteEntry
|
1056
|
-
- Config.prototype.deleteMultivar
|
1057
|
-
- Config.prototype.getBool
|
1058
|
-
- Config.prototype.getInt32
|
1059
|
-
- Config.prototype.getInt64
|
1060
|
-
- Config.prototype.setMultivar
|
1061
|
-
- Config.prototype.snapshot
|
1062
|
-
- Exposed ConfigIterator with methods:
|
1063
|
-
- ConfigIterator.create
|
1064
|
-
- ConfigIterator.createGlob
|
1065
|
-
- ConfigIterator.createMultivar
|
1066
|
-
- ConfigIterator.prototype.next
|
1067
|
-
- Exposed Merge methods:
|
1068
|
-
- Merge.analysis
|
1069
|
-
- Merge.analysisForRef
|
1070
|
-
- Expose Remote methods:
|
1071
|
-
- Remote.createWithOpts
|
1072
|
-
|
1073
|
-
#### Merged PRs into NodeGit
|
1074
|
-
- [Fix regex state causing subsequent runs of Tag.extractSignature to fail #1630](https://github.com/nodegit/nodegit/pull/1630)
|
1075
|
-
- [Update LibGit2 docs to v0.28.0 #1631](https://github.com/nodegit/nodegit/pull/1631)
|
1076
|
-
- [Add support for building on IBM i (PASE) #1634](https://github.com/nodegit/nodegit/pull/1634)
|
1077
|
-
- [Expose more config methods #1635](https://github.com/nodegit/nodegit/pull/1635)
|
1078
|
-
- [Catch errors and pass them to libgit2 as error codes in rebase signingcb #1636](https://github.com/nodegit/nodegit/pull/1636)
|
1079
|
-
- [Simplify check for IBM i operating system #1637](https://github.com/nodegit/nodegit/pull/1637)
|
1080
|
-
- [Bump LibGit2 to fork of v0.28.1 #1638](https://github.com/nodegit/nodegit/pull/1638)
|
1081
|
-
|
1082
|
-
|
1083
|
-
## <a name="v0-25-0-alpha-6" href="#v0-25-0-alpha-6">v0.25.0-alpha.6</a> [(2019-02-14)](https://github.com/nodegit/nodegit/releases/tag/v0.25.0-alpha.6)
|
1084
|
-
|
1085
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.25.0-alpha.5...v0.25.0-alpha.6)
|
1086
|
-
|
1087
|
-
#### Summary of changes
|
1088
|
-
- Bumped LibGit2 to v0.28.0.
|
1089
|
-
- Fixed problem with continue rebase preventing users from skipping commits
|
1090
|
-
- Fixed leak where struct/option types were leaking libgit2 pointers
|
1091
|
-
|
1092
|
-
#### Merged PRs into NodeGit
|
1093
|
-
- [We should clear the persistent cell in structs when they are destroyed #1629](https://github.com/nodegit/nodegit/pull/1629)
|
1094
|
-
- [Fix "errorno" typo #1628](https://github.com/nodegit/nodegit/pull/1628)
|
1095
|
-
- [Bump Libgit2 fork to v0.28.0 #1627](https://github.com/nodegit/nodegit/pull/1627)
|
1096
|
-
|
1097
|
-
|
1098
|
-
## <a name="v0-25-0-alpha-5" href="#v0-25-0-alpha-5">v0.25.0-alpha.5</a> [(2019-02-11)](https://github.com/nodegit/nodegit/releases/tag/v0.25.0-alpha.5)
|
1099
|
-
|
1100
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.25.0-alpha.4...v0.25.0-alpha.5)
|
1101
|
-
|
1102
|
-
#### Summary of changes
|
1103
|
-
- Fixed builds for Electron 4 for real this time
|
1104
|
-
|
1105
|
-
#### Merged PRs into NodeGit
|
1106
|
-
- [Fix macOS and Windows Electron 4 builds #1626](https://github.com/nodegit/nodegit/pull/1626)
|
1107
|
-
|
1108
|
-
|
1109
|
-
## <a name="v0-25-0-alpha-4" href="#v0-25-0-alpha-4">v0.25.0-alpha.4</a> [(2019-02-08)](https://github.com/nodegit/nodegit/releases/tag/v0.25.0-alpha.4)
|
1110
|
-
|
1111
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.25.0-alpha.3...v0.25.0-alpha.4)
|
1112
|
-
|
1113
|
-
#### Summary of changes
|
1114
|
-
- Fixed bug where signing the init commit failed due to being unable to update the `HEAD` ref.
|
1115
|
-
- Changed `NodeGit.Signature.default` to async, because it actually ends up reading the config.
|
1116
|
-
- Fixed bug where templates were not reporting errors for synchronous methods. It's a bit of a wide net, but in general,
|
1117
|
-
it is now possible certain sync methods in NodeGit will begin failin that did not fail before. This is the correct
|
1118
|
-
behavior.
|
1119
|
-
- Switched `NodeGit.Oid.fromString`'s internal implementation from `git_oid_fromstr` to `git_oid_fromstrp`
|
1120
|
-
- Fixed builds for Electron 4
|
1121
|
-
- Added `NodeGit.Reference.updateTerminal`
|
1122
|
-
|
1123
|
-
#### Merged PRs into NodeGit
|
1124
|
-
- [Fix non-existent / dangling refs cause Repository.prototype.createCommitWithSignature to fail #1624](https://github.com/nodegit/nodegit/pull/1624)
|
1125
|
-
- [Handle new gyp information for electron builds #1623](https://github.com/nodegit/nodegit/pull/1623)
|
1126
|
-
|
1127
|
-
|
1128
|
-
## <a name="v0-25-0-alpha-3" href="#v0-25-0-alpha-3">v0.25.0-alpha.3</a> [(2019-02-05)](https://github.com/nodegit/nodegit/releases/tag/v0.25.0-alpha.3)
|
1129
|
-
|
1130
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.25.0-alpha.2...v0.25.0-alpha.3)
|
1131
|
-
|
1132
|
-
#### Summary of changes
|
1133
|
-
- Enforced consistent use of signing callbacks within the application. Any object that implements the signingCallback
|
1134
|
-
pattern for signing commits or tags should use the exact same callback type and with the same meaning.
|
1135
|
-
`type SigningCallback = (content: string) => {| code: number, field?: string, signedData?: string |};`
|
1136
|
-
If the code is `NodeGit.Error.CODE.OK` or 0, the operation will succeed and _at least_ signedData is expected to be filled out.
|
1137
|
-
If the code is a negative number, except for `NodeGit.Error.CODE.PASSTHROUGH`, the signing operation will fail.
|
1138
|
-
If the code is `NodeGit.Error.CODE.PASSTHROUGH`, the operation will continue without signing the object.
|
1139
|
-
|
1140
|
-
#### Merged PRs into NodeGit
|
1141
|
-
- [Use same API for signingCb in all places that can be crypto signed #1621](https://github.com/nodegit/nodegit/pull/1621)
|
1142
|
-
|
1143
|
-
|
1144
|
-
## <a name="v0-25-0-alpha-2" href="#v0-25-0-alpha-2">v0.25.0-alpha.2</a> [(2019-02-01)](https://github.com/nodegit/nodegit/releases/tag/v0.25.0-alpha.2)
|
1145
|
-
|
1146
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.25.0-alpha.1...v0.25.0-alpha.2)
|
1147
|
-
|
1148
|
-
#### Summary of changes
|
1149
|
-
- Added RebaseOptions to repository.prototype.rebaseContinue
|
1150
|
-
|
1151
|
-
#### Merged PRs into NodeGit
|
1152
|
-
- [Breaking: Repository.prototype.continueRebase enhancements #1619](https://github.com/nodegit/nodegit/pull/1619)
|
1153
|
-
|
1154
|
-
|
1155
|
-
## <a name="v0-25-0-alpha-1" href="#v0-25-0-alpha-1">v0.25.0-alpha.1</a> [(2019-01-30)](https://github.com/nodegit/nodegit/releases/tag/v0.25.0-alpha.1)
|
1156
|
-
|
1157
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.24.0...v0.25.0-alpha.1)
|
1158
|
-
|
1159
|
-
#### Summary of changes
|
1160
|
-
- Bump Libgit2 to preview of v0.28.0
|
1161
|
-
- Add signing support for commits and annotated tags
|
1162
|
-
- Updated Signature.prototype.toString to optionally include timestamps
|
1163
|
-
- [BREAKING] Converted Buf.prototype.set and Buf.prototype.grow from async to sync
|
1164
|
-
- Added complete support for libgit2 types:
|
1165
|
-
- git_index_name_entry
|
1166
|
-
- git_index_reuc_entry
|
1167
|
-
- git_mailmap
|
1168
|
-
- Exposed git_path_is_gitfile
|
1169
|
-
- Exposed git_tag_create_frombuffer
|
1170
|
-
|
1171
|
-
#### Merged PRs into NodeGit
|
1172
|
-
- [adds support for gpg commit signing (fixes #1018) #1448](https://github.com/nodegit/nodegit/pull/1448)
|
1173
|
-
- [Add `updateRef` parameter to Repository#createCommitWithSignature #1610](https://github.com/nodegit/nodegit/pull/1610)
|
1174
|
-
- [Documentation fixes. #1611](https://github.com/nodegit/nodegit/pull/1611)
|
1175
|
-
- [Add Commit#amendWithSignature #1616](https://github.com/nodegit/nodegit/pull/1616)
|
1176
|
-
- [Bump libgit2 to a preview of v0.28 #1615](https://github.com/nodegit/nodegit/pull/1615)
|
1177
|
-
- [Fix issues with Commit#amendWithSignature #1617](https://github.com/nodegit/nodegit/pull/1617)
|
1178
|
-
- [Marked Repository.createBlobFromBuffer as async #1614](https://github.com/nodegit/nodegit/pull/1614)
|
1179
|
-
- [Add functionality for creating Tags with signatures and extracting signatures from Tags #1618](https://github.com/nodegit/nodegit/pull/1618)
|
1180
|
-
|
1181
|
-
|
1182
|
-
## <a name="v0-24-0" href="#v0-24-0">v0.24.0</a> [(2019-01-16)](https://github.com/nodegit/nodegit/releases/tag/v0.24.0)
|
1183
|
-
|
1184
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.23.0...v0.24.0)
|
1185
|
-
|
1186
|
-
#### Summary of changes
|
1187
|
-
- Garbage collect most of the library.
|
1188
|
-
- All free functions have been removed. The expectation is that they will be collected by the GC.
|
1189
|
-
- All init options methods have been removed. They were never supposed to be exposed in the first place.
|
1190
|
-
- Added support for performing history walks on directories.
|
1191
|
-
- Fix various bugs that led to segfaults or incorrect behavior.
|
1192
|
-
- Removed ssl and crypto dependency from non-electron builds.
|
1193
|
-
|
1194
|
-
##### Removed methods
|
1195
|
-
Mostly due to missing support anyway, please report anything you were using as an issue.
|
1196
|
-
- NodeGit.Blob.createFromStreamCommit
|
1197
|
-
- NodeGit.Branch.Iterator.prototype.new
|
1198
|
-
- NodeGit.Config.initBackend
|
1199
|
-
- NodeGit.Config.prototype.snapshot
|
1200
|
-
- NodeGit.Config.prototype.setBool
|
1201
|
-
- NodeGit.Config.prototype.setInt32
|
1202
|
-
- NodeGit.Config.prototype.setInt64
|
1203
|
-
- NodeGit.Index.prototype.owner
|
1204
|
-
- NodeGit.Note.iteratorNew
|
1205
|
-
- NodeGit.Note.next
|
1206
|
-
- NodeGit.Odb.prototype.addDiskAlternate
|
1207
|
-
- NodeGit.Repository.prototype.configSnapshot
|
1208
|
-
- NodeGit.Signature.prototype.dup
|
1209
|
-
- NodeGit.Tag.foreach
|
1210
|
-
- NodeGit.Transport.init
|
1211
|
-
- NodeGit.Transport.sshWithPaths
|
1212
|
-
- NodeGit.Transport.unregister
|
1213
|
-
|
1214
|
-
##### Newly exposed methods:
|
1215
|
-
- NodeGit.Config.prototype.getEntry
|
1216
|
-
- NodeGit.Config.prototype.snapshot
|
1217
|
-
- NodeGit.Config.prototype.refresh
|
1218
|
-
- NodeGit.Config.prototype.setBool
|
1219
|
-
- NodeGit.Config.prototype.setInt32
|
1220
|
-
- NodeGit.Config.prototype.setInt64
|
1221
|
-
- NodeGit.Diff.prototype.isSortedIcase
|
1222
|
-
- NodeGit.DiffStats.prototype.deletions
|
1223
|
-
- NodeGit.DiffStats.prototype.filesChanged
|
1224
|
-
- NodeGit.DiffStats.prototype.insertions
|
1225
|
-
- NodeGit.DiffStats.prototype.toBuf
|
1226
|
-
- NodeGit.Odb.hashfile
|
1227
|
-
- NodeGit.Odb.prototype.readPrefix
|
1228
|
-
- NodeGit.OidShorten.prototype.add
|
1229
|
-
- NodeGit.OidShorten.create
|
1230
|
-
- NodeGit.PathspecMatchList.prototype.diffEntry
|
1231
|
-
- NodeGit.PathspecMatchList.prototype.entry
|
1232
|
-
- NodeGit.PathspecMatchList.prototype.entrycount
|
1233
|
-
- NodeGit.PathspecMatchList.prototype.failedEntry
|
1234
|
-
- NodeGit.PathspecMatchList.prototype.failedEntryCount
|
1235
|
-
|
1236
|
-
##### Newly exposed types
|
1237
|
-
- NodeGit.DescribeFormatOptions
|
1238
|
-
- NodeGit.DiffStats
|
1239
|
-
- NodeGit.OidShorten
|
1240
|
-
- NodeGit.PathspecMatchList
|
1241
|
-
|
1242
|
-
#### Merged PRs into NodeGit
|
1243
|
-
- [Garbage collection: Free mostly everything automatically #1570](https://github.com/nodegit/nodegit/pull/1570)
|
1244
|
-
- [Fix typo in GitHub issue template #1586](https://github.com/nodegit/nodegit/pull/1586)
|
1245
|
-
- [More suitable example about Signature #1582](https://github.com/nodegit/nodegit/pull/1582)
|
1246
|
-
- [Add support for directories when using `fileHistoryWalk` #1583](https://github.com/nodegit/nodegit/pull/1583)
|
1247
|
-
- [Add a test for Repository's getReferenceCommit #1601](https://github.com/nodegit/nodegit/pull/1601)
|
1248
|
-
- [Check parameters before performing reset #1603](https://github.com/nodegit/nodegit/pull/1603)
|
1249
|
-
- [Remove ssl and crypto dependency on non-electron builds #1600](https://github.com/nodegit/nodegit/pull/1600)
|
1250
|
-
- [Clean up libssh2 configure step #1574](https://github.com/nodegit/nodegit/pull/1574)
|
1251
|
-
- [Fix checkout bug in our fork of libgit2 #1609](https://github.com/nodegit/nodegit/pull/1609)
|
1252
|
-
- [Fix segfault in NodeGit.Revert.revert #1605](https://github.com/nodegit/nodegit/pull/1605)
|
1253
|
-
|
1254
|
-
|
1255
|
-
## <a name="v0-24-0-alpha.1" href="#v0-24-0-alpha.1">v0.24.0-alpha.1</a> [(2018-10-25)](https://github.com/nodegit/nodegit/releases/tag/v0.24.0-alpha.1)
|
1256
|
-
|
1257
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.23.0...v0.24.0-alpha.1)
|
1258
|
-
|
1259
|
-
#### Summary of changes
|
1260
|
-
- Garbage collect most of the library.
|
1261
|
-
- All free functions have been removed. The expectation is that they will be collected by the GC.
|
1262
|
-
- All init options methods have been removed. They were never supposed to be exposed in the first place.
|
1263
|
-
|
1264
|
-
##### Removed methods
|
1265
|
-
Mostly due to missing support anyway, please report anything you were using as an issue.
|
1266
|
-
- NodeGit.Blob.createFromStreamCommit
|
1267
|
-
- NodeGit.Branch.Iterator.prototype.new
|
1268
|
-
- NodeGit.Config.initBackend
|
1269
|
-
- NodeGit.Config.prototype.snapshot
|
1270
|
-
- NodeGit.Config.prototype.setBool
|
1271
|
-
- NodeGit.Config.prototype.setInt32
|
1272
|
-
- NodeGit.Config.prototype.setInt64
|
1273
|
-
- NodeGit.Index.prototype.owner
|
1274
|
-
- NodeGit.Note.iteratorNew
|
1275
|
-
- NodeGit.Note.next
|
1276
|
-
- NodeGit.Odb.prototype.addDiskAlternate
|
1277
|
-
- NodeGit.Repository.prototype.configSnapshot
|
1278
|
-
- NodeGit.Signature.prototype.dup
|
1279
|
-
- NodeGit.Tag.foreach
|
1280
|
-
- NodeGit.Transport.init
|
1281
|
-
- NodeGit.Transport.sshWithPaths
|
1282
|
-
- NodeGit.Transport.unregister
|
1283
|
-
|
1284
|
-
##### Newly exposed methods:
|
1285
|
-
- NodeGit.Config.prototype.getEntry
|
1286
|
-
- NodeGit.Config.prototype.snapshot
|
1287
|
-
- NodeGit.Config.prototype.refresh
|
1288
|
-
- NodeGit.Config.prototype.setBool
|
1289
|
-
- NodeGit.Config.prototype.setInt32
|
1290
|
-
- NodeGit.Config.prototype.setInt64
|
1291
|
-
- NodeGit.Diff.prototype.isSortedIcase
|
1292
|
-
- NodeGit.DiffStats.prototype.deletions
|
1293
|
-
- NodeGit.DiffStats.prototype.filesChanged
|
1294
|
-
- NodeGit.DiffStats.prototype.insertions
|
1295
|
-
- NodeGit.DiffStats.prototype.toBuf
|
1296
|
-
- NodeGit.Odb.hashfile
|
1297
|
-
- NodeGit.Odb.prototype.readPrefix
|
1298
|
-
- NodeGit.OidShorten.prototype.add
|
1299
|
-
- NodeGit.OidShorten.create
|
1300
|
-
- NodeGit.PathspecMatchList.prototype.diffEntry
|
1301
|
-
- NodeGit.PathspecMatchList.prototype.entry
|
1302
|
-
- NodeGit.PathspecMatchList.prototype.entrycount
|
1303
|
-
- NodeGit.PathspecMatchList.prototype.failedEntry
|
1304
|
-
- NodeGit.PathspecMatchList.prototype.failedEntryCount
|
1305
|
-
|
1306
|
-
##### Newly exposed types
|
1307
|
-
- NodeGit.DescribeFormatOptions
|
1308
|
-
- NodeGit.DiffStats
|
1309
|
-
- NodeGit.OidShorten
|
1310
|
-
- NodeGit.PathspecMatchList
|
1311
|
-
|
1312
|
-
#### Merged PRs into NodeGit
|
1313
|
-
- [Garbage collection: Free mostly everything automatically #1570](https://github.com/nodegit/nodegit/pull/1570)
|
1314
|
-
|
1315
|
-
|
1316
|
-
## <a name="v0-23-0" href="#v0-23-0">v0.23.0</a> [(2018-10-22)](https://github.com/nodegit/nodegit/releases/tag/v0.23.0)
|
1317
|
-
|
1318
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.22.2...v0.23.0)
|
1319
|
-
|
1320
|
-
#### Summary of changes
|
1321
|
-
- Added Node 10 support.
|
1322
|
-
- We no longer compile OpenSSL. Instead, we prefer the OpenSSL shipped with Node. In electron builds, we prefer the system openssl on linux, and we get prebuilt static libs from Conan.
|
1323
|
-
- Cleaned up some compiler warnings
|
1324
|
-
- Our http_parser dependency is now a submodule.
|
1325
|
-
- Updated some dependencies in npm to get rid of security vulnerabilities and warnings.
|
1326
|
-
- Exposed transfer progress callback for pushing.
|
1327
|
-
- Libssh2 is now preconfigured for both Mac OS and Windows
|
1328
|
-
|
1329
|
-
#### Merged PRs into NodeGit
|
1330
|
-
- [warn about node v10 incompatibility in readme #1534](https://github.com/nodegit/nodegit/pull/1534)
|
1331
|
-
- [Define error codes to fix compiler warnings about unused variables #1486](https://github.com/nodegit/nodegit/pull/1486)
|
1332
|
-
- [Include http_parser via submodule #1551](https://github.com/nodegit/nodegit/pull/1551)
|
1333
|
-
- [Update dependencies to get rid of security vulnerabilities #1547](https://github.com/nodegit/nodegit/pull/1547)
|
1334
|
-
- [add github issue template #1548](https://github.com/nodegit/nodegit/pull/1548)
|
1335
|
-
- [Enable git_push_transfer_progress - Help wanted #1500](https://github.com/nodegit/nodegit/pull/1500)
|
1336
|
-
- [Fixed createBranch API params #1552](https://github.com/nodegit/nodegit/pull/1552)
|
1337
|
-
- [Use curl-config to find curl #1555](https://github.com/nodegit/nodegit/pull/1555)
|
1338
|
-
- [Update readme #1554](https://github.com/nodegit/nodegit/pull/1554)
|
1339
|
-
- [Node 10 support #1545](https://github.com/nodegit/nodegit/pull/1545)
|
1340
|
-
- [Update dependencies #1519](https://github.com/nodegit/nodegit/pull/1519)
|
1341
|
-
- [Run submodule updates in sequence rather than parallel #1558](https://github.com/nodegit/nodegit/pull/1558)
|
1342
|
-
- [Fix Electron builds on win32 #1560](https://github.com/nodegit/nodegit/pull/1560)
|
1343
|
-
- [Use static `libssh2_config.h` on MacOS builds #1569](https://github.com/nodegit/nodegit/pull/1569)
|
1344
|
-
|
1345
|
-
|
1346
|
-
## <a name="v0-23-0-alpha.2" href="#v0-23-0-alpha.2">v0.23.0-alpha.2</a> [(2018-10-19)](https://github.com/nodegit/nodegit/releases/tag/v0.23.0-alpha.2)
|
1347
|
-
|
1348
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.23.0-alpha.1...v0.23.0-alpha.2)
|
1349
|
-
|
1350
|
-
#### Summary of changes
|
1351
|
-
On Mac OS Mojave, libssh2 configure failed to configure, because libssh2 always tries to configure against system libraries. The configure process uses links to determine that a OpenSSL is present. Since OSX and Windows no longer link against the system lib, we've prebuilt the configure steps for both environments. This should be stable when building NodeGit on Mojave.
|
1352
|
-
|
1353
|
-
#### Merged PRs into NodeGit
|
1354
|
-
- [Use static `libssh2_config.h` on MacOS builds #1569](https://github.com/nodegit/nodegit/pull/1569)
|
1355
|
-
|
1356
|
-
|
1357
|
-
## <a name="v0-23-0-alpha.1" href="#v0-23-0-alpha.1">v0.23.0-alpha.1</a> [(2018-10-01)](https://github.com/nodegit/nodegit/releases/tag/v0.23.0-alpha.1)
|
1358
|
-
|
1359
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.22.2...v0.23.0-alpha.1)
|
1360
|
-
|
1361
|
-
#### Summary of changes
|
1362
|
-
- Added Node 10 support.
|
1363
|
-
- We no longer compile OpenSSL. Instead, we prefer the OpenSSL shipped with Node. In electron builds, we prefer the system openssl on linux, and we get prebuilt static libs from Conan.
|
1364
|
-
- Cleaned up some compiler warnings
|
1365
|
-
- Our http_parser dependency is now a submodule.
|
1366
|
-
- Updated some dependencies in npm to get rid of security vulnerabilities and warnings.
|
1367
|
-
- Exposed transfer progress callback for pushing.
|
1368
|
-
|
1369
|
-
#### Merged PRs into NodeGit
|
1370
|
-
- [warn about node v10 incompatibility in readme #1534](https://github.com/nodegit/nodegit/pull/1534)
|
1371
|
-
- [Define error codes to fix compiler warnings about unused variables #1486](https://github.com/nodegit/nodegit/pull/1486)
|
1372
|
-
- [Include http_parser via submodule #1551](https://github.com/nodegit/nodegit/pull/1551)
|
1373
|
-
- [Update dependencies to get rid of security vulnerabilities #1547](https://github.com/nodegit/nodegit/pull/1547)
|
1374
|
-
- [add github issue template #1548](https://github.com/nodegit/nodegit/pull/1548)
|
1375
|
-
- [Enable git_push_transfer_progress - Help wanted #1500](https://github.com/nodegit/nodegit/pull/1500)
|
1376
|
-
- [Fixed createBranch API params #1552](https://github.com/nodegit/nodegit/pull/1552)
|
1377
|
-
- [Use curl-config to find curl #1555](https://github.com/nodegit/nodegit/pull/1555)
|
1378
|
-
- [Update readme #1554](https://github.com/nodegit/nodegit/pull/1554)
|
1379
|
-
- [Node 10 support #1545](https://github.com/nodegit/nodegit/pull/1545)
|
1380
|
-
- [Update dependencies #1519](https://github.com/nodegit/nodegit/pull/1519)
|
1381
|
-
- [Run submodule updates in sequence rather than parallel #1558](https://github.com/nodegit/nodegit/pull/1558)
|
1382
|
-
- [Fix Electron builds on win32 #1560](https://github.com/nodegit/nodegit/pull/1560)
|
1383
|
-
|
1384
|
-
|
1385
|
-
## <a name="v0-22-2" href="#v0-22-2">v0.22.2</a> [(2018-07-10)](https://github.com/nodegit/nodegit/releases/tag/v0.22.2)
|
1386
|
-
|
1387
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.22.1...v0.22.2)
|
1388
|
-
|
1389
|
-
#### Summary of changes
|
1390
|
-
- Bumped libgit2 to 0.27.3 to incorporate security patch. Details can be found here https://github.com/libgit2/libgit2/releases/tag/v0.27.3
|
1391
|
-
- Also includes changes made in 0.27.2. Details can be found here https://github.com/libgit2/libgit2/releases/tag/v0.27.2
|
1392
|
-
- Ensure optional params are respected as optional in `NodeGit.Merge.trees`
|
1393
|
-
|
1394
|
-
#### Merged PRs into NodeGit
|
1395
|
-
- [Fix argument handling in Git.Merge.trees #1507](https://github.com/nodegit/nodegit/pull/1507)
|
1396
|
-
|
1397
|
-
#### Included non-merged libgit2 PRs:
|
1398
|
-
- [Parallelize checkout_create_the_new for ntfs perf gains #4205](https://github.com/libgit2/libgit2/pull/4205)
|
1399
|
-
- [negotiate always fails via libcurl #4126](https://github.com/libgit2/libgit2/pull/4126)
|
1400
|
-
|
1401
|
-
#### Included merged libgit2 PRs:
|
1402
|
-
- [Bugfix release v0.27.2 #4632](https://github.com/libgit2/libgit2/pull/4632)
|
1403
|
-
- [Release v0.27.3 #4717](https://github.com/libgit2/libgit2/pull/4717)
|
1404
|
-
|
1405
|
-
|
1406
|
-
## <a name="v0-22-1" href="#v0-22-1">v0.22.1</a> [(2018-04-09)](https://github.com/nodegit/nodegit/releases/tag/v0.22.1)
|
1407
|
-
|
1408
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.22.0...v0.22.1)
|
1409
|
-
|
1410
|
-
#### Summary of changes
|
1411
|
-
Bumped libgit2 to 0.27.1 to address security flaw with submodule name validation (CVE-2018-11235, reported by Etienne Stalmans).
|
1412
|
-
Details can be found here https://github.com/libgit2/libgit2/releases/tag/v0.27.1
|
1413
|
-
|
1414
|
-
|
1415
|
-
## <a name="v0-22-0" href="#v0-22-0">v0.22.0</a> [(2018-04-09)](https://github.com/nodegit/nodegit/releases/tag/v0.22.0)
|
1416
|
-
|
1417
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.21.2...v0.22.0)
|
1418
|
-
|
1419
|
-
#### Summary of changes
|
1420
|
-
- Expose [Tag.listMatch](https://libgit2.github.com/libgit2/#v0.26.3/group/tag/git_tag_list_match)
|
1421
|
-
- Expose [Repo.prototype.createCommitBuffer](https://libgit2.github.com/libgit2/#v0.26.3/group/commit/git_commit_create_buffer)
|
1422
|
-
- Bump Libgt2 to 0.27.0. For more information about what was in this release. [Check upstream](https://github.com/libgit2/libgit2/releases/tag/v0.27.0).
|
1423
|
-
- Errors are now properly thrown from
|
1424
|
-
- `Attr.prototype.get`
|
1425
|
-
- `Blob.createFrombuffer`
|
1426
|
-
- `Blob.createFromworkdir`
|
1427
|
-
- `Reference.list`
|
1428
|
-
- `Remote.prototype.getFetchRefspecs`
|
1429
|
-
- `Remote.prototype.getPushRefspecs`
|
1430
|
-
- `Status.file`
|
1431
|
-
- WorkTree is now exposed
|
1432
|
-
- Static methods
|
1433
|
-
- `add`
|
1434
|
-
- `list`
|
1435
|
-
- `lookup`
|
1436
|
-
- `openFromRepository`
|
1437
|
-
- Instance methods
|
1438
|
-
- `isLocked`
|
1439
|
-
- `isPrunable`
|
1440
|
-
- `lock`
|
1441
|
-
- `prune`
|
1442
|
-
- `unlock`
|
1443
|
-
- `validate`
|
1444
|
-
- **BREAKING** Functions that are now async
|
1445
|
-
- `Attr.prototype.getMany`
|
1446
|
-
- `Tag.prototype.target`
|
1447
|
-
- `Treebuilder.prototype.Write`
|
1448
|
-
- **BREAKING** Diffs generated from `Diff.treeToIndex` and `Diff.treeToWorkdirWithIndex` conditionally support `Diff.OPTION.IGNORE_CASE`. Only on repositories where the index is case insensitive will the flag be set on the output diff. The flag itself is ignored when passed to `DiffOptions`.
|
1449
|
-
|
1450
|
-
#### Merged PRs into NodeGit
|
1451
|
-
- [Add JavaScript Tag.listMatch function for git_tag_list_match #1470](https://github.com/nodegit/nodegit/pull/1470)
|
1452
|
-
- [Expose error code in Status.file #1468](https://github.com/nodegit/nodegit/pull/1468)
|
1453
|
-
- [Travis documentation deploy fixes #1466](https://github.com/nodegit/nodegit/pull/1466)
|
1454
|
-
- [Bump to libgit2 v0.27.0 #1477](https://github.com/nodegit/nodegit/pull/1477)
|
1455
|
-
- [Add repo.createCommitBuffer #1481](https://github.com/nodegit/nodegit/pull/1481)
|
1456
|
-
|
1457
|
-
#### Included non-merged libgit2 PRs:
|
1458
|
-
- [Parallelize checkout_create_the_new for ntfs perf gains #4205](https://github.com/libgit2/libgit2/pull/4205)
|
1459
|
-
- [negotiate always fails via libcurl #4126](https://github.com/libgit2/libgit2/pull/4126)
|
1460
|
-
|
1461
|
-
|
1462
|
-
## <a name="v0-21-2" href="#v0-21-2">v0.21.2</a> [(2018-03-19)](https://github.com/nodegit/nodegit/releases/tag/v0.21.2)
|
1463
|
-
|
1464
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.21.1...v0.21.2)
|
1465
|
-
|
1466
|
-
#### Summary of changes
|
1467
|
-
- Drop support for node 7
|
1468
|
-
- Fixed an issue where fast-forward rebase would throw an error unexepctedly.
|
1469
|
-
- Expose git_commit_extract_signature
|
1470
|
-
- TreeEntry.prototype.path() should always return posix style separators
|
1471
|
-
- Expose git_config_open_ondisk
|
1472
|
-
- Expose git_config_find_global
|
1473
|
-
- Expose git_config_find_system
|
1474
|
-
- Expose git_config_find_xdg
|
1475
|
-
- Expose git_config_get_path
|
1476
|
-
|
1477
|
-
#### Merged PRs into NodeGit
|
1478
|
-
- [Fix typo in CHANGELOG.md #1455](https://github.com/nodegit/nodegit/pull/1455)
|
1479
|
-
- [Add two tests for Tag #1452](https://github.com/nodegit/nodegit/pull/1452)
|
1480
|
-
- [Handle fast-forward merges properly in repository.performRebase #1457](https://github.com/nodegit/nodegit/pull/1457)
|
1481
|
-
- [Enable git_commit_extract_signature #1458](https://github.com/nodegit/nodegit/pull/1458)
|
1482
|
-
- [removes 'only' from test #1460](https://github.com/nodegit/nodegit/pull/1460)
|
1483
|
-
- [Deploy documentation and make extended tests visible #1447](https://github.com/nodegit/nodegit/pull/1447)
|
1484
|
-
- [resolves #1433 TreeEntry#path should return posix path #1434](https://github.com/nodegit/nodegit/pull/1434)
|
1485
|
-
- [Exposed git_config_open_ondisk #1459](https://github.com/nodegit/nodegit/pull/1459)
|
1486
|
-
- [Expose git_config functions #1463](https://github.com/nodegit/nodegit/pull/1463)
|
1487
|
-
|
1488
|
-
|
1489
|
-
## <a name="v0-21-1" href="#v0-21-1">v0.21.1</a> [(2018-03-05)](https://github.com/nodegit/nodegit/releases/tag/v0.21.1)
|
1490
|
-
|
1491
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.21.0...v0.21.1)
|
1492
|
-
|
1493
|
-
#### Summary of changes
|
1494
|
-
- Fixed an issue where having html escape characters in the path portion of an ssh url always fails when performing remote actions.
|
1495
|
-
|
1496
|
-
#### Included non-merged libgit2 PRs:
|
1497
|
-
- [Unescape special characters in SSH repo paths #4557](https://github.com/libgit2/libgit2/pull/4557)
|
1498
|
-
|
1499
|
-
## <a name="v0-21-0" href="#v0-21-0">v0.21.0</a> [(2018-02-26)](https://github.com/nodegit/nodegit/releases/tag/v0.21.0)
|
1500
|
-
|
1501
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.20.3...v0.21.0)
|
1502
|
-
|
1503
|
-
#### Summary of changes to NodeGit:
|
1504
|
-
- [Generate default options for Revert.revert to prevent an exception #1404](https://github.com/nodegit/nodegit/pull/1404)
|
1505
|
-
- [fix issue with re-require()'ing native modules #1354](https://github.com/nodegit/nodegit/pull/1354)
|
1506
|
-
- [Expose JavaScript function name in a rejected promise #1393](https://github.com/nodegit/nodegit/pull/1393)
|
1507
|
-
- [Fix compiling with clang #1344](https://github.com/nodegit/nodegit/pull/1344)
|
1508
|
-
- [Fix typos #1415](https://github.com/nodegit/nodegit/pull/1415)
|
1509
|
-
- [build: add NetBSD support to opensslconf.h #1374](https://github.com/nodegit/nodegit/pull/1374)
|
1510
|
-
- [Fix example by forcing backslashes with path.posix #1346](https://github.com/nodegit/nodegit/pull/1346)
|
1511
|
-
- [Expose the Node.js GC when running `mocha `scripts #1258](https://github.com/nodegit/nodegit/pull/1258)
|
1512
|
-
- [Exposed filter_list; Fixed discard lines to use filters #1414](https://github.com/nodegit/nodegit/pull/1414)
|
1513
|
-
- [Add tests for AnnotatedCommit #1325](https://github.com/nodegit/nodegit/pull/1325)
|
1514
|
-
- [Adding docs for NodeGit #1350](https://github.com/nodegit/nodegit/pull/1350)
|
1515
|
-
- [Fix details-for-tree-entry.js to access fields instead of calling a function #1326](https://github.com/nodegit/nodegit/pull/1326)
|
1516
|
-
- [Add JavaScript version of `git_tag_peel()` #1269](https://github.com/nodegit/nodegit/pull/1269)
|
1517
|
-
- [Fixed documentation error #1417](https://github.com/nodegit/nodegit/pull/1417)
|
1518
|
-
- [Annotate Blame.file as async #1421](https://github.com/nodegit/nodegit/pull/1421)
|
1519
|
-
- [Add two missing tests to Commit #1422](https://github.com/nodegit/nodegit/pull/1422)
|
1520
|
-
- [CI: Update Node.js versions + some deps #1444](https://github.com/nodegit/nodegit/pull/1444)
|
1521
|
-
- [Expose fetch_options.custom_headers #1430](https://github.com/nodegit/nodegit/pull/1430)
|
1522
|
-
|
1523
|
-
## <a name="v0-20-3" href="#v0-20-3">v0.20.3</a> [(2017-10-18)](https://github.com/nodegit/nodegit/releases/tag/v0.20.3)
|
1524
|
-
|
1525
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.20.2...v0.20.3)
|
1526
|
-
|
1527
|
-
#### Summary of changes outside of libgit2 bump:
|
1528
|
-
- [Bumped libgit to libgit-next head #1387](https://github.com/nodegit/nodegit/pull/1387)
|
1529
|
-
- [Added a better normalizeOptions pattern for the submodule update routine #1388](https://github.com/nodegit/nodegit/pull/1388)
|
1530
|
-
- [Updated input docs to allow for git_push_update_reference_cb to generate #1386](https://github.com/nodegit/nodegit/pull/1386)
|
1531
|
-
- [Updated descriptors for git_index_find and git_index_find_prefix #1391](https://github.com/nodegit/nodegit/pull/1391)
|
1532
|
-
|
1533
|
-
#### Included merged libgit2 PRs:
|
1534
|
-
- [Fix template dir empty string #4273](https://github.com/libgit2/libgit2/pull/4273)
|
1535
|
-
- [travis: upgrade container to Ubuntu 14.04 #4211](https://github.com/libgit2/libgit2/pull/4211)
|
1536
|
-
- [merge: perform exact rename detection in linear time #4202](https://github.com/libgit2/libgit2/pull/4202)
|
1537
|
-
- [merge: fix potential free of uninitialized memory #4277](https://github.com/libgit2/libgit2/pull/4277)
|
1538
|
-
- [cmake: Permit disabling external http-parser #4278](https://github.com/libgit2/libgit2/pull/4278)
|
1539
|
-
- [Out of tree builds #4235](https://github.com/libgit2/libgit2/pull/4235)
|
1540
|
-
- [Convert port with htons() in p_getaddrinfo() #4280](https://github.com/libgit2/libgit2/pull/4280)
|
1541
|
-
- [tests: config: fix missing declaration causing error #4291](https://github.com/libgit2/libgit2/pull/4291)
|
1542
|
-
- [git_reset_*: pass parameters as const pointers #4287](https://github.com/libgit2/libgit2/pull/4287)
|
1543
|
-
- [signature: don't leave a dangling pointer to the strings on parse failure #4306](https://github.com/libgit2/libgit2/pull/4306)
|
1544
|
-
- [Patch ID calculation #4272](https://github.com/libgit2/libgit2/pull/4272)
|
1545
|
-
- [Configuration file fixes with includes #4250](https://github.com/libgit2/libgit2/pull/4250)
|
1546
|
-
- [win32: provide fast-path for retrying filesystem operations #4311](https://github.com/libgit2/libgit2/pull/4311)
|
1547
|
-
- [Build with patched libcurl #4317](https://github.com/libgit2/libgit2/pull/4317)
|
1548
|
-
- [tsort: remove idempotent conditional assignment #4314](https://github.com/libgit2/libgit2/pull/4314)
|
1549
|
-
- [tests: rebase::submodule: verify initialization method calls #4320](https://github.com/libgit2/libgit2/pull/4320)
|
1550
|
-
- [Remove unused 'sys/remote.h' header #4323](https://github.com/libgit2/libgit2/pull/4323)
|
1551
|
-
- [patch_generate: represent buffers as void pointers #4304](https://github.com/libgit2/libgit2/pull/4304)
|
1552
|
-
- [sha1_position: convert do-while to while #4326](https://github.com/libgit2/libgit2/pull/4326)
|
1553
|
-
- [sha1_lookup: drop sha1_entry_pos function #4327](https://github.com/libgit2/libgit2/pull/4327)
|
1554
|
-
- [oid: use memcmp in git_oid__hashcmp #4328](https://github.com/libgit2/libgit2/pull/4328)
|
1555
|
-
- [Docs: Fix inline comments for git_diff_hunk #4330](https://github.com/libgit2/libgit2/pull/4330)
|
1556
|
-
- [Split up CMakeLists.txt build instructions #4282](https://github.com/libgit2/libgit2/pull/4282)
|
1557
|
-
- [-Werror builds for Travis #4279](https://github.com/libgit2/libgit2/pull/4279)
|
1558
|
-
- [Submodules with bare repo #4305](https://github.com/libgit2/libgit2/pull/4305)
|
1559
|
-
- [Fix negative ignore rules with patterns #4296](https://github.com/libgit2/libgit2/pull/4296)
|
1560
|
-
- [README: Mention Guile-Git bindings. #4342](https://github.com/libgit2/libgit2/pull/4342)
|
1561
|
-
- [features.h: allow building without CMake-generated feature header #4346](https://github.com/libgit2/libgit2/pull/4346)
|
1562
|
-
- [Clear the remote_ref_name buffer in git_push_update_tips() #4344](https://github.com/libgit2/libgit2/pull/4344)
|
1563
|
-
- [Fix AppVeyor build failures due to CRTDBG linking issue #4347](https://github.com/libgit2/libgit2/pull/4347)
|
1564
|
-
- [diff: cleanup hash ctx in `git_diff_patchid` #4348](https://github.com/libgit2/libgit2/pull/4348)
|
1565
|
-
- [Reproducible builds #4334](https://github.com/libgit2/libgit2/pull/4334)
|
1566
|
-
- [Static linking for bundled deps #4339](https://github.com/libgit2/libgit2/pull/4339)
|
1567
|
-
- [Use SOCK_CLOEXEC when creating sockets #4364](https://github.com/libgit2/libgit2/pull/4364)
|
1568
|
-
- [Document that a commit is not a descendant of itself #4362](https://github.com/libgit2/libgit2/pull/4362)
|
1569
|
-
- [refs: do not use peeled OID if peeling to a tag #4367](https://github.com/libgit2/libgit2/pull/4367)
|
1570
|
-
- [remote: add typedef to normalize push_update_reference callback #4363](https://github.com/libgit2/libgit2/pull/4363)
|
1571
|
-
- [travis: add custom apt sources #4321](https://github.com/libgit2/libgit2/pull/4321)
|
1572
|
-
- [Fix Issue #4047 Check return codes and free objects #4370](https://github.com/libgit2/libgit2/pull/4370)
|
1573
|
-
- [Plug some leaks in curl's proxy handling #4359](https://github.com/libgit2/libgit2/pull/4359)
|
1574
|
-
- [Checkout typechange-only deltas #4369](https://github.com/libgit2/libgit2/pull/4369)
|
1575
|
-
- [tests: checkout::tree: verify status entrycount changes on chmod #4371](https://github.com/libgit2/libgit2/pull/4371)
|
1576
|
-
- [transports: smart: fix memory leak when skipping symbolic refs #4368](https://github.com/libgit2/libgit2/pull/4368)
|
1577
|
-
- [cmake: fix linking in Xcode with object libraries only #4372](https://github.com/libgit2/libgit2/pull/4372)
|
1578
|
-
- [cmake: use static dependencies when building static libgit2 #4356](https://github.com/libgit2/libgit2/pull/4356)
|
1579
|
-
|
1580
|
-
#### Included non-merged libgit2 PRs:
|
1581
|
-
- [Parallelize checkout_create_the_new for ntfs perf gains #4205](https://github.com/libgit2/libgit2/pull/4205)
|
1582
|
-
- [negotiate always fails via libcurl #4126](https://github.com/libgit2/libgit2/pull/4126)
|
1583
|
-
|
1584
|
-
|
1585
|
-
|
1586
|
-
## <a name="v0-20-2" href="#v0-20-2">v0.20.2</a> [(2017-09-13)](https://github.com/nodegit/nodegit/releases/tag/v0.20.2)
|
1587
|
-
|
1588
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.20.0...v0.20.2)
|
1589
|
-
|
1590
|
-
#### Summary of changes outside of libgit2 bump:
|
1591
|
-
- [Fixed an issue where large buffer allocations in filters (> 256MB) causes a segfault #1368](https://github.com/nodegit/nodegit/pull/1368)
|
1592
|
-
- [Fix git_tree_entry double free #1332](https://github.com/nodegit/nodegit/pull/1332)
|
1593
|
-
|
1594
|
-
## <a name="v0-20-0" href="#v0-20-0">v0.20.0</a> [(2017-08-16)](https://github.com/nodegit/nodegit/releases/tag/v0.20.0)
|
1595
|
-
|
1596
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.19.0...v0.20.0)
|
1597
|
-
|
1598
|
-
#### Summary of changes outside of libgit2 bump:
|
1599
|
-
- [BREAKING: Added blob methods and converted to async #1327](https://github.com/nodegit/nodegit/pull/1327)
|
1600
|
-
- [BREAKING: Convert sync methods to async methods #1348](https://github.com/nodegit/nodegit/pull/1348)
|
1601
|
-
- [Exposed libgit2 git_branch_remote_name method #1340](https://github.com/nodegit/nodegit/pull/1340)
|
1602
|
-
- [Adding git_filter support in nodegit #1331](https://github.com/nodegit/nodegit/pull/1331)
|
1603
|
-
- [Add CI build config for node stable version #1337](https://github.com/nodegit/nodegit/pull/1337)
|
1604
|
-
- [removed node v4 tests #1330](https://github.com/nodegit/nodegit/pull/1330)
|
1605
|
-
|
1606
|
-
#### Included merged libgit2 PRs:
|
1607
|
-
- [Include fixups #4288](https://github.com/libgit2/libgit2/pull/4288)
|
1608
|
-
- [Docs: Fix inline comments for git_diff_hunk #4330](https://github.com/libgit2/libgit2/pull/4330)
|
1609
|
-
- [oid: use memcmp in git_oid__hashcmp #4328](https://github.com/libgit2/libgit2/pull/4328)
|
1610
|
-
- [sha1_lookup: drop sha1_entry_pos function #4327](https://github.com/libgit2/libgit2/pull/4327)
|
1611
|
-
- [sha1_position: convert do-while to while #4326](https://github.com/libgit2/libgit2/pull/4326)
|
1612
|
-
- [patch_generate: represent buffers as void pointers #4304](https://github.com/libgit2/libgit2/pull/4304)
|
1613
|
-
- [Remove unused 'sys/remote.h' header #4323](https://github.com/libgit2/libgit2/pull/4323)
|
1614
|
-
- [tests: rebase::submodule: verify initialization method calls #4320](https://github.com/libgit2/libgit2/pull/4320)
|
1615
|
-
- [tests: rewrite rebase-submodule .gitmodule file #4275](https://github.com/libgit2/libgit2/pull/4275)
|
1616
|
-
- [tsort: remove idempotent conditional assignment #4314](https://github.com/libgit2/libgit2/pull/4314)
|
1617
|
-
- [Build with patched libcurl #4317](https://github.com/libgit2/libgit2/pull/4317)
|
1618
|
-
- [win32: provide fast-path for retrying filesystem operations #4311](https://github.com/libgit2/libgit2/pull/4311)
|
1619
|
-
- [Configuration file fixes with includes #4250](https://github.com/libgit2/libgit2/pull/4250)
|
1620
|
-
- [Patch ID calculation #4272](https://github.com/libgit2/libgit2/pull/4272)
|
1621
|
-
- [signature: don't leave a dangling pointer to the strings on parse failure #4306](https://github.com/libgit2/libgit2/pull/4306)
|
1622
|
-
- [git_reset_*: pass parameters as const pointers #4287](https://github.com/libgit2/libgit2/pull/4287)
|
1623
|
-
- [tests: config: fix missing declaration causing error #4291](https://github.com/libgit2/libgit2/pull/4291)
|
1624
|
-
- [Convert port with htons() in p_getaddrinfo() #4280](https://github.com/libgit2/libgit2/pull/4280)
|
1625
|
-
- [Out of tree builds #4235](https://github.com/libgit2/libgit2/pull/4235)
|
1626
|
-
- [cmake: Permit disabling external http-parser #4278](https://github.com/libgit2/libgit2/pull/4278)
|
1627
|
-
- [merge: fix potential free of uninitialized memory #4277](https://github.com/libgit2/libgit2/pull/4277)
|
1628
|
-
- [merge: perform exact rename detection in linear time #4202](https://github.com/libgit2/libgit2/pull/4202)
|
1629
|
-
- [travis: upgrade container to Ubuntu 14.04 #4211](https://github.com/libgit2/libgit2/pull/4211)
|
1630
|
-
- [Fix template dir empty string #4273](https://github.com/libgit2/libgit2/pull/4273)
|
1631
|
-
- [adding GIT_FILTER_VERSION to GIT_FILTER_INIT as part of convention #4267](https://github.com/libgit2/libgit2/pull/4267)
|
1632
|
-
- [travis: replace use of deprecated homebrew/dupes tap #4268](https://github.com/libgit2/libgit2/pull/4268)
|
1633
|
-
- [Test improvements #4269](https://github.com/libgit2/libgit2/pull/4269)
|
1634
|
-
- [Read prefix tests #4265](https://github.com/libgit2/libgit2/pull/4265)
|
1635
|
-
- [Allow creation of a configuration object in an in-memory repository #4263](https://github.com/libgit2/libgit2/pull/4263)
|
1636
|
-
- [travis: install openssl explicitly #4266](https://github.com/libgit2/libgit2/pull/4266)
|
1637
|
-
- [smart_protocol: fix parsing of server ACK responses #4261](https://github.com/libgit2/libgit2/pull/4261)
|
1638
|
-
- [odb_read_prefix: reset error in backends loop #4264](https://github.com/libgit2/libgit2/pull/4264)
|
1639
|
-
- [Update version number to 0.26 #4262](https://github.com/libgit2/libgit2/pull/4262)
|
1640
|
-
- [CHANGELOG: add various changes introduced since v0.25 #4254](https://github.com/libgit2/libgit2/pull/4254)
|
1641
|
-
- [Ensure packfiles with different contents have different names #4088](https://github.com/libgit2/libgit2/pull/4088)
|
1642
|
-
- [Update to forced checkout and untracked files #4260](https://github.com/libgit2/libgit2/pull/4260)
|
1643
|
-
- [settings: rename `GIT_OPT_ENABLE_SYNCHRONOUS_OBJECT_CREATION` #4259](https://github.com/libgit2/libgit2/pull/4259)
|
1644
|
-
- [Buffer growing cleanups #4255](https://github.com/libgit2/libgit2/pull/4255)
|
1645
|
-
- [Coverity fixes #4253](https://github.com/libgit2/libgit2/pull/4253)
|
1646
|
-
- [SHA1DC update #4258](https://github.com/libgit2/libgit2/pull/4258)
|
1647
|
-
- [Fix path computations for compressed index entries #4236](https://github.com/libgit2/libgit2/pull/4236)
|
1648
|
-
- [(Temporarily) disable UNC tests #4256](https://github.com/libgit2/libgit2/pull/4256)
|
1649
|
-
- [fix build with libressl #4251](https://github.com/libgit2/libgit2/pull/4251)
|
1650
|
-
- [Fix issue with directory glob ignore in subdirectories #4239](https://github.com/libgit2/libgit2/pull/4239)
|
1651
|
-
- [Submodule working directory #4243](https://github.com/libgit2/libgit2/pull/4243)
|
1652
|
-
- [Introduce home directory expansion function for config files, attribute files #4179](https://github.com/libgit2/libgit2/pull/4179)
|
1653
|
-
- [Fix proxy auto detect not utilizing callbacks #4097](https://github.com/libgit2/libgit2/pull/4097)
|
1654
|
-
- [git_repository_set_head: use tag name in reflog #4174](https://github.com/libgit2/libgit2/pull/4174)
|
1655
|
-
- [revparse: support open-ended ranges #4231](https://github.com/libgit2/libgit2/pull/4231)
|
1656
|
-
- [Fix GCC warnings #4240](https://github.com/libgit2/libgit2/pull/4240)
|
1657
|
-
- [Update README: VS -> VSTS #4238](https://github.com/libgit2/libgit2/pull/4238)
|
1658
|
-
- [tests: repo: fix repo discovery tests on overlayfs #4232](https://github.com/libgit2/libgit2/pull/4232)
|
1659
|
-
- [libssh2 shutdown #4229](https://github.com/libgit2/libgit2/pull/4229)
|
1660
|
-
- [WIP: squash some memleaks #4226](https://github.com/libgit2/libgit2/pull/4226)
|
1661
|
-
- [Verify object hashes #4197](https://github.com/libgit2/libgit2/pull/4197)
|
1662
|
-
- [transport: provide a getter for the proxy options #4206](https://github.com/libgit2/libgit2/pull/4206)
|
1663
|
-
- [Debian HTTPS feature test failure #4216](https://github.com/libgit2/libgit2/pull/4216)
|
1664
|
-
- [Do not free config when creating remote #4224](https://github.com/libgit2/libgit2/pull/4224)
|
1665
|
-
- [socket_stream: continue to next addrinfo on socket creation failure #4219](https://github.com/libgit2/libgit2/pull/4219)
|
1666
|
-
- [Honor read-only flag when writing to config backends #4217](https://github.com/libgit2/libgit2/pull/4217)
|
1667
|
-
- [diff_parse: free object instead of its pointer #4215](https://github.com/libgit2/libgit2/pull/4215)
|
1668
|
-
|
1669
|
-
#### Included non-merged libgit2 PRs:
|
1670
|
-
|
1671
|
-
- [Parallelize checkout_create_the_new for ntfs perf gains #4205](https://github.com/libgit2/libgit2/pull/4205)
|
1672
|
-
- [negotiate always fails via libcurl #4126](https://github.com/libgit2/libgit2/pull/4126)
|
1673
|
-
|
1674
|
-
|
1675
|
-
## <a name="v0-19-0" href="#v0-19-0">v0.19.0</a> [(2017-04-20)](https://github.com/nodegit/nodegit/releases/tag/v0.19.0)
|
1676
|
-
|
1677
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.18.0...v0.19.0)
|
1678
|
-
|
1679
|
-
#### Summary of changes outside of libgit2 bump:
|
1680
|
-
- You can now convert tree entries in blobs [PR #1272](https://github.com/nodegit/nodegit/pull/1272)
|
1681
|
-
|
1682
|
-
#### Included merged libgit2 PRs:
|
1683
|
-
|
1684
|
-
- [fileops: fix leaking fd in `mmap_ro_file` #4201](https://github.com/libgit2/libgit2/pull/4201)
|
1685
|
-
- [README: document our relation to changes in upstream #4198](https://github.com/libgit2/libgit2/pull/4198)
|
1686
|
-
- [filter: only close filter if it's been initialized correctly #4196](https://github.com/libgit2/libgit2/pull/4196)
|
1687
|
-
- [Fix building against OpenSSL v1.1 #4195](https://github.com/libgit2/libgit2/pull/4195)
|
1688
|
-
- [pkgconfig: fix handling of prefixes containing whitespaces #4193](https://github.com/libgit2/libgit2/pull/4193)
|
1689
|
-
- [Refactor some of the win32 POSIX emulation #4192](https://github.com/libgit2/libgit2/pull/4192)
|
1690
|
-
- [Correct non-existent file references in `odb.h` #4188](https://github.com/libgit2/libgit2/pull/4188)
|
1691
|
-
- [Coverity #4183](https://github.com/libgit2/libgit2/pull/4183)
|
1692
|
-
- [git_treebuilder_write_with_buffer refactorings #4182](https://github.com/libgit2/libgit2/pull/4182)
|
1693
|
-
- [Fix memory leaks #4180](https://github.com/libgit2/libgit2/pull/4180)
|
1694
|
-
- [sha1dc: perf improvements from upstream #4178](https://github.com/libgit2/libgit2/pull/4178)
|
1695
|
-
- [inet_pton: don't assume addr families don't exist #4176](https://github.com/libgit2/libgit2/pull/4176)
|
1696
|
-
- [git_futils: don't O_EXCL and O_TRUNC #4175](https://github.com/libgit2/libgit2/pull/4175)
|
1697
|
-
- [Fix the documentation for git_cred_acquire_cb #4172](https://github.com/libgit2/libgit2/pull/4172)
|
1698
|
-
- [Fix typo in remote.h API #4171](https://github.com/libgit2/libgit2/pull/4171)
|
1699
|
-
- [Fix resolving absolute symlinks (on at least Win32) #4169](https://github.com/libgit2/libgit2/pull/4169)
|
1700
|
-
- [Coverity fixes #4167](https://github.com/libgit2/libgit2/pull/4167)
|
1701
|
-
- [Remove `map_free` macros #4166](https://github.com/libgit2/libgit2/pull/4166)
|
1702
|
-
- [Worktree fixes #4163](https://github.com/libgit2/libgit2/pull/4163)
|
1703
|
-
- [merge_driver: fix const-correctness for source getters #4162](https://github.com/libgit2/libgit2/pull/4162)
|
1704
|
-
- [submodule: catch when submodule is not staged on update #4161](https://github.com/libgit2/libgit2/pull/4161)
|
1705
|
-
- [Diff fixes #4160](https://github.com/libgit2/libgit2/pull/4160)
|
1706
|
-
- [Skip uninteresting commits in revwalk timesort iterator #4157](https://github.com/libgit2/libgit2/pull/4157)
|
1707
|
-
- [git_futils_readbuffer: don't compute sha-1 #4156](https://github.com/libgit2/libgit2/pull/4156)
|
1708
|
-
- [Support namespaced references again #4154](https://github.com/libgit2/libgit2/pull/4154)
|
1709
|
-
- [rebase: ignore untracked files in submodules #4151](https://github.com/libgit2/libgit2/pull/4151)
|
1710
|
-
- [git_commit_create: freshen tree objects in commit #4150](https://github.com/libgit2/libgit2/pull/4150)
|
1711
|
-
- [cmake: only enable supported compiler warning flags #4148](https://github.com/libgit2/libgit2/pull/4148)
|
1712
|
-
- [winhttp: disambiguate error messages when sending requests #4146](https://github.com/libgit2/libgit2/pull/4146)
|
1713
|
-
- [tests: refs::create: fix memory leak #4145](https://github.com/libgit2/libgit2/pull/4145)
|
1714
|
-
- [Fix: make reflog include \"(merge)\" for merge commits #4143](https://github.com/libgit2/libgit2/pull/4143)
|
1715
|
-
- [Fix minor typos in CONVENTIONS.md #4142](https://github.com/libgit2/libgit2/pull/4142)
|
1716
|
-
- [Fix inet_pton tests triggering an assert in Haiku #4141](https://github.com/libgit2/libgit2/pull/4141)
|
1717
|
-
- [README: Mention how to run tests #4139](https://github.com/libgit2/libgit2/pull/4139)
|
1718
|
-
- [tests: Add create__symbolic_with_arbitrary_content #4138](https://github.com/libgit2/libgit2/pull/4138)
|
1719
|
-
- [appveyor: don't rewrite the system mingw #4137](https://github.com/libgit2/libgit2/pull/4137)
|
1720
|
-
- [Introduce (optional) SHA1 collision attack detection #4136](https://github.com/libgit2/libgit2/pull/4136)
|
1721
|
-
- [Provide error on gcc < 4.1 when THREADSAFE #4135](https://github.com/libgit2/libgit2/pull/4135)
|
1722
|
-
- [fix regression from #4092 #4133](https://github.com/libgit2/libgit2/pull/4133)
|
1723
|
-
- [Attrcache cleanups #4131](https://github.com/libgit2/libgit2/pull/4131)
|
1724
|
-
- [Improve clar messages #4130](https://github.com/libgit2/libgit2/pull/4130)
|
1725
|
-
- [Minor comment fix #4127](https://github.com/libgit2/libgit2/pull/4127)
|
1726
|
-
- [refdb: catch additional per-worktree refs #4124](https://github.com/libgit2/libgit2/pull/4124)
|
1727
|
-
- [Signature cleanups #4122](https://github.com/libgit2/libgit2/pull/4122)
|
1728
|
-
- [Changes to provide option to turn off/on ofs_delta #4115](https://github.com/libgit2/libgit2/pull/4115)
|
1729
|
-
- [khash cleanups #4092](https://github.com/libgit2/libgit2/pull/4092)
|
1730
|
-
- [fsync all the things #4030](https://github.com/libgit2/libgit2/pull/4030)
|
1731
|
-
- [Worktree implementation #3436](https://github.com/libgit2/libgit2/pull/3436)
|
1732
|
-
|
1733
|
-
#### Included non-merged libgit2 PRs:
|
1734
|
-
|
1735
|
-
- [Parallelize checkout_create_the_new for ntfs perf gains #4205](https://github.com/libgit2/libgit2/pull/4205)
|
1736
|
-
- [negotiate always fails via libcurl #4126](https://github.com/libgit2/libgit2/pull/4126)
|
1737
|
-
- [Fix proxy auto detect not utilizing callbacks #4097](https://github.com/libgit2/libgit2/pull/4097)
|
1738
|
-
|
1739
|
-
## <a name="v0-18-0" href="#v0-18-0">v0.18.0</a> [(2017-02-28)](https://github.com/nodegit/nodegit/releases/tag/v0.18.0)
|
1740
|
-
|
1741
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.17.0...v0.18.0)
|
1742
|
-
|
1743
|
-
### API Changes
|
1744
|
-
|
1745
|
-
- All callbacks that go to libgit2 now have an optional `waitForResult` flag that can be `true`/`false`. Defaults to false. When true it will not stop libgit2 from continuing on before the JS code is fully executed and resolved (in cases of a Promise). This is useful for progress callbacks (like fetching) where the bubbling up of the progress to JS doesn't really need the C/C++ code to wait for the JS code to fully handle the event before continuing. This can have serious performance implications for many callbacks that can be fired quite frequently.
|
1746
|
-
- `given_opts` in `Revert.revert` are now optional
|
1747
|
-
- `checkout_opts` in `Reset.fromAnnotated` and `Reset.reset` are now optional
|
1748
|
-
- `Reset.fromAnnotated` is now async
|
1749
|
-
- `message` on `Stash.save` is now optional
|
1750
|
-
- Added `processMergeMessageCallback` on `Repository#mergeBranches` to allow for custom merge messages
|
1751
|
-
- Add `beforeFinishFn` to `Repository#rebaseBranches` and `Repository#continueRebase`. This is called before the invocation of `finish()`. If the callback returns a promise, `finish()` will be called when the promise resolves. The `beforeFinishFn` will be called with an object that has on it:
|
1752
|
-
- `ontoName` The name of the branch that we rebased onto
|
1753
|
-
- `ontoSha` The sha that we rebased onto
|
1754
|
-
- `originalHeadName` The name of the branch that we rebased
|
1755
|
-
- `originalHeadSha` The sha of the branch that was rebased
|
1756
|
-
- `rewitten` which is an array of sha pairs that contain which contain what the commit sha was before the rebase and what the commit sha is after the rebase
|
1757
|
-
|
1758
|
-
### Summary of Changes from bumping libgit2 to 43275f5
|
1759
|
-
|
1760
|
-
[PR #1123](https://github.com/nodegit/nodegit/pull/1223) bumped libgit2 which brought in many changes and bug fixes.
|
1761
|
-
|
1762
|
-
#### Included merged libgit2 PRs:
|
1763
|
-
|
1764
|
-
- [Use a shared buffer in calls of git_treebuilder_write to avoid heap contention #3892](https://github.com/libgit2/libgit2/pull/3892)
|
1765
|
-
- [WinHTTP: set proper error messages when SSL fails #4050](https://github.com/libgit2/libgit2/pull/4050)
|
1766
|
-
- [Clang analyzer run #4051](https://github.com/libgit2/libgit2/pull/4051)
|
1767
|
-
- [Extend packfile in increments of page_size. #4053](https://github.com/libgit2/libgit2/pull/4053)
|
1768
|
-
- [Fix general example memory leaks #4078](https://github.com/libgit2/libgit2/pull/4078)
|
1769
|
-
- [WIP: some coverity & compiler warning fixes #4086](https://github.com/libgit2/libgit2/pull/4086)
|
1770
|
-
- [Fix a few recent warnings #4087](https://github.com/libgit2/libgit2/pull/4087)
|
1771
|
-
- [Fix uninitialized variable warning #4095](https://github.com/libgit2/libgit2/pull/4095)
|
1772
|
-
- [Update docs for git_oid_fromstrn and p #4096](https://github.com/libgit2/libgit2/pull/4096)
|
1773
|
-
- [Fix digest credentials for proxy in windows #4104](https://github.com/libgit2/libgit2/pull/4104)
|
1774
|
-
- [Vector reverse overflow #4105](https://github.com/libgit2/libgit2/pull/4105)
|
1775
|
-
- [Flag given_opts in git_revert as optional #4108](https://github.com/libgit2/libgit2/pull/4108)
|
1776
|
-
- [Flag checkout_opts in git_reset as optional #4109](https://github.com/libgit2/libgit2/pull/4109)
|
1777
|
-
- [dirname with DOS prefixes #4111](https://github.com/libgit2/libgit2/pull/4111)
|
1778
|
-
- [Add support for lowercase proxy environment variables #4112](https://github.com/libgit2/libgit2/pull/4112)
|
1779
|
-
- [Flag options in git_stash_apply and git_stash_pop as being optional #4117](https://github.com/libgit2/libgit2/pull/4117)
|
1780
|
-
- [rename detection: don't try to detect submodule renames #4119](https://github.com/libgit2/libgit2/pull/4119)
|
1781
|
-
- [tests: fix permissions on testrepo.git index file #4121](https://github.com/libgit2/libgit2/pull/4121)
|
1782
|
-
|
1783
|
-
#### Included non-merged libgit2 PRs:
|
1784
|
-
|
1785
|
-
- [negotiate always fails via libcurl #4126](https://github.com/libgit2/libgit2/pull/4126)
|
1786
|
-
- [Fix proxy auto detect not utilizing callbacks #4097](https://github.com/libgit2/libgit2/pull/4097)
|
1787
|
-
|
1788
|
-
### Summary of Changes to NodeGit outside of libgit2 bump
|
1789
|
-
|
1790
|
-
- Don't overwrite C++ files for things that haven't changed [PR #1091](https://github.com/nodegit/nodegit/pull/1091)
|
1791
|
-
- Add the option to "fire and forget" callbacks so libgit2 doesn't wait for JS to finish before proceeding [PR #1208](https://github.com/nodegit/nodegit/pull/1208)
|
1792
|
-
- Send back the error code from libgit2 when a call fails [PR #1209](https://github.com/nodegit/nodegit/pull/1209)
|
1793
|
-
- Initialize pointers to null [PR #1210](https://github.com/nodegit/nodegit/pull/1210)
|
1794
|
-
- Replace Gitter with Slack [PR #1212](https://github.com/nodegit/nodegit/pull/1212)
|
1795
|
-
- Make `given_opts` in `Revert.revert` optional [PR #1213](https://github.com/nodegit/nodegit/pull/1213)
|
1796
|
-
- Make `Reset.fromAnnotated` async and `checkout_opts` optional [PR #1214](https://github.com/nodegit/nodegit/pull/1214)
|
1797
|
-
- Make `message` on `Stash.save` optional [PR #1215](https://github.com/nodegit/nodegit/pull/1215)
|
1798
|
-
- Add `Remote.ls` to NodeGit [PR #1218](https://github.com/nodegit/nodegit/pull/1218)
|
1799
|
-
- Add `processMergeMessageCallback` to `Repository#mergeBranches` to allow for custom merge messages [PR #1219](https://github.com/nodegit/nodegit/pull/1219)
|
1800
|
-
- Bump libgit2 to 43275f5 [PR #1223](https://github.com/nodegit/nodegit/pull/1223) from srajko/bump-libgit
|
1801
|
-
- Provide rebase details on finish [PR #1224](https://github.com/nodegit/nodegit/pull/1224)
|
1802
|
-
- Use wider int to calculate throttle window [PR #1232](https://github.com/nodegit/nodegit/pull/1232)
|
1803
|
-
- Update comment to reflect the correct path for generated code output [PR #1236](https://github.com/nodegit/nodegit/pull/1236)
|
1804
|
-
- Remove nwjs example from the docs [PR #1238](https://github.com/nodegit/nodegit/pull/1238)
|
1805
|
-
- Remove `sudo` requirement from linux 32-bit builds [PR #1241](https://github.com/nodegit/nodegit/pull/1241)
|
1806
|
-
|
1807
|
-
## <a name="v0-17-0" href="#v0-17-0">v0.17.0</a> [(2017-01-06)](https://github.com/nodegit/nodegit/releases/tag/v0.17.0)
|
1808
|
-
|
1809
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.16.0...v0.17.0)
|
1810
|
-
|
1811
|
-
### Targeted Platform Changes
|
1812
|
-
|
1813
|
-
In this release we had added support for Node v7 and latest Electron. We have removed support for Node v0.12 and v5.
|
1814
|
-
|
1815
|
-
We are also deprecating nw.js support since it is currently broken, no one in the current team uses it and we would not be able to currently support nw.js in an effective manner with a good user experience.
|
1816
|
-
|
1817
|
-
### Now building against shared libcurl lib
|
1818
|
-
|
1819
|
-
For proxy support we now use libcurl for HTTP/HTTPS transport which should have no noticeable change in NodeGit remote operations but if changes are noticed this is worth mentioning as a potential source.
|
1820
|
-
|
1821
|
-
### Memory leak fixes and stability increases
|
1822
|
-
|
1823
|
-
Many PR's were made to fix memory leaks as they were found so memory usage should go down in this version for long running scripts. Additionally, when performing operations with callbacks (transfer progress, credentials, etc...) there was a small chance for a segfault when NodeGit would schedule the callback to go into JavaScript. This is now fixed.
|
1824
|
-
|
1825
|
-
### Fixes to the build
|
1826
|
-
|
1827
|
-
Many users, especially on windows, were experiencing errors during the build. The build still isn't perfect but a lot of the bugs were fixed.
|
1828
|
-
|
1829
|
-
### Bump libgit2 to 0bf0526
|
1830
|
-
|
1831
|
-
The majority of changes to NodeGit v17 were in libgit2. The API breaking changes that are known are:
|
1832
|
-
|
1833
|
-
- `RevWalk` is returning different results [libgit2 PR #3921](https://github.com/libgit2/libgit2/pull/3921)
|
1834
|
-
- Changes in error messages returned [libgit2 PR #4049](https://github.com/libgit2/libgit2/pull/4049)
|
1835
|
-
|
1836
|
-
Summary of changes that were brought in:
|
1837
|
-
|
1838
|
-
https://github.com/nodegit/nodegit/pull/1187#issuecomment-277760323
|
1839
|
-
|
1840
|
-
### Changes to NodeGit outside of libgit2 bump
|
1841
|
-
|
1842
|
-
- Define GIT_SSH_MEMORY_CREDENTIALS for libgit2 [PR #949](https://github.com/nodegit/nodegit/pull/949)
|
1843
|
-
- Add "Path" to ssh variable names in tests for clarity [PR #1135](https://github.com/nodegit/nodegit/pull/1135)
|
1844
|
-
- Fix revwalk memory leaks [PR #1137](https://github.com/nodegit/nodegit/pull/1137)
|
1845
|
-
- Fix tree entry leaks [PR #1138](https://github.com/nodegit/nodegit/pull/1138)
|
1846
|
-
- Fix typo in postinstall script [PR #1141](https://github.com/nodegit/nodegit/pull/1141)
|
1847
|
-
- Fix windows exception handling in build [PR #1143](https://github.com/nodegit/nodegit/pull/1143)
|
1848
|
-
- Fix CI failures on node 0.12 [PR #1144](https://github.com/nodegit/nodegit/pull/1144)
|
1849
|
-
- Fix postinstall script crash when install location has spaces in its path [PR #1148](https://github.com/nodegit/nodegit/pull/1148)
|
1850
|
-
- Update 0.13 changelog [PR #1151](https://github.com/nodegit/nodegit/pull/1151)
|
1851
|
-
- Minor documentation fix in Checkout.index [PR #1164](https://github.com/nodegit/nodegit/pull/1164)
|
1852
|
-
- FreeBSD also uses struct timespec st_mtim [PR #1165](https://github.com/nodegit/nodegit/pull/1165)
|
1853
|
-
- README.md needs to show where to get Slack invitation [PR #1170](https://github.com/nodegit/nodegit/pull/1170)
|
1854
|
-
- Add @async tag to `Tree#getEntry` [PR #1178](https://github.com/nodegit/nodegit/pull/1178)
|
1855
|
-
- Fix incorrect anchor link in TESTING.md [PR #1179](https://github.com/nodegit/nodegit/pull/1179)
|
1856
|
-
- Added tests for Tag [PR #1180](https://github.com/nodegit/nodegit/pull/1180)
|
1857
|
-
- Added tests for Branch [PR #1181](https://github.com/nodegit/nodegit/pull/1181)
|
1858
|
-
- Escape the spaces in dir for shell command [PR #1186](https://github.com/nodegit/nodegit/pull/1186)
|
1859
|
-
- Bump libgit to 0bf0526 [PR #1187](https://github.com/nodegit/nodegit/pull/1187)
|
1860
|
-
- Checkout's tree* functions do not support Oid as a parameter [PR #1190](https://github.com/nodegit/nodegit/pull/1190)
|
1861
|
-
- Build against shared library for libcurl [PR #1195](https://github.com/nodegit/nodegit/pull/1195)
|
1862
|
-
- Move libuv calls to correct thread [PR #1197](https://github.com/nodegit/nodegit/pull/1197)
|
1863
|
-
- Update `Repository#createBranch` docs [PR #1198](https://github.com/nodegit/nodegit/pull/1198)
|
1864
|
-
- Remove Node v0.12 and v5 [PR #1199](https://github.com/nodegit/nodegit/pull/1199)
|
1865
|
-
- Specify acceptable types for `lookup` and `dwim` in Reference [PR #1203](https://github.com/nodegit/nodegit/pull/1203)
|
1866
|
-
- Build for Node 7.4.0 [PR #1204](https://github.com/nodegit/nodegit/pull/1204)
|
1867
|
-
- Write the index to a repository directly in merge-cleanly.js examples [PR #1205](https://github.com/nodegit/nodegit/pull/1205)
|
1868
|
-
|
1869
|
-
## <a name="v0-16-0" href="#v0-16-0">v0.16.0</a> [(2016-09-15)](https://github.com/nodegit/nodegit/releases/tag/v0.16.0)
|
1870
|
-
|
1871
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.15.1...v0.16.0)
|
1872
|
-
|
1873
|
-
- Bump libssh2 to 1.7.0 [PR #1071](https://github.com/nodegit/nodegit/pull1071)
|
1874
|
-
- Js cleanup [PR #1074](https://github.com/nodegit/nodegit/pull1074)
|
1875
|
-
- Expose merge options and diff flags [PR #1076](https://github.com/nodegit/nodegit/pull1076)
|
1876
|
-
- Fix Tree#entryByName function and add test [PR #1079](https://github.com/nodegit/nodegit/pull1079)
|
1877
|
-
- Add isSubmodule() method [PR #1080](https://github.com/nodegit/nodegit/pull1080)
|
1878
|
-
- Fix two typos in the documentation for Commit#parents [PR #1081](https://github.com/nodegit/nodegit/pull1081)
|
1879
|
-
- Memory management: duplicate time [PR #1090](https://github.com/nodegit/nodegit/pull1090)
|
1880
|
-
- Preempt nan to fix deprecated calls to Get/SetHiddenValue [PR #1106](https://github.com/nodegit/nodegit/pull1106)
|
1881
|
-
- Try re-enabling node >6.2 [PR #1107](https://github.com/nodegit/nodegit/pull1107)
|
1882
|
-
- Bump openssl to 1.0.2h (same as node 6.3.1) [PR #1108](https://github.com/nodegit/nodegit/pull1108)
|
1883
|
-
- Don't run postbuild when we detect electron install [PR #1111](https://github.com/nodegit/nodegit/pull1111)
|
1884
|
-
- Added instructions for CircleCI users [PR #1113](https://github.com/nodegit/nodegit/pull1113)
|
1885
|
-
- Fix up electron and nw.js docs [PR #1114](https://github.com/nodegit/nodegit/pull1114)
|
1886
|
-
- Patch libssh2 to work with vs2015 [PR #1125](https://github.com/nodegit/nodegit/pull1125)
|
1887
|
-
- Fix CI [PR #1126](https://github.com/nodegit/nodegit/pull1126)
|
1888
|
-
|
1889
|
-
|
1890
|
-
## <a name="v0-15-1" href="#v0-15-1">v0.15.1</a> [(2016-06-20)](https://github.com/nodegit/nodegit/releases/tag/v0.15.1)
|
1891
|
-
|
1892
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.15.0...v0.15.1)
|
1893
|
-
|
1894
|
-
- Fix postinstall breaking build if it fails.
|
1895
|
-
|
1896
|
-
## <a name="v0-14-1" href="#v0-14-1">v0.14.1</a> [(2016-06-20)](https://github.com/nodegit/nodegit/releases/tag/v0.14.1)
|
1897
|
-
|
1898
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.14.0...v0.14.1)
|
1899
|
-
|
1900
|
-
- Fix postinstall breaking build if it fails.
|
1901
|
-
|
1902
|
-
## <a name="v0-15-0" href="#v0-15-0">v0.15.0</a> [(2016-06-20)](https://github.com/nodegit/nodegit/releases/tag/v0.15.0)
|
1903
|
-
|
1904
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.14.0...v0.15.0)
|
1905
|
-
|
1906
|
-
- Update to libgit2 @ 37dba1a [PR #1041](https://github.com/nodegit/nodegit/pull/1041)
|
1907
|
-
|
1908
|
-
This updates NodeGit to use the latest `HEAD` version of libgit2. The plan for staying on the official tagged releases of libgit2 is that they will get a maintenance branch and not-breaking API fixes will be backported to them. The first branch of this sort is `maint/0.14`. Going forward new releases of NodeGit will follow closely to the `master` branch of libgit2.
|
1909
|
-
|
1910
|
-
Summary of changes that were brought in:
|
1911
|
-
|
1912
|
-
https://github.com/libgit2/libgit2/commit/37dba1a739b5ee6c45dc9f3c0bd1f7f7a18f13f7
|
1913
|
-
-------
|
1914
|
-
|
1915
|
-
### Changes or improvements
|
1916
|
-
|
1917
|
-
* `NodeGit.FetchOptions`, and `NodeGit.PushOptions` now have a `proxyOpts` field that accepts a `NodeGit.ProxyOptions` object that allows NodeGit to use a proxy for all remote communication
|
1918
|
-
|
1919
|
-
* `NodeGit.MergeOptions` has a `defaultDriver` field that lets the caller change the driver used to when both sides of a merge have changed
|
1920
|
-
|
1921
|
-
### API additions
|
1922
|
-
|
1923
|
-
* `Commit.createWithSignature` allows the caller to create a signed commit. There are no tests for this currently so it's labelled experimental.
|
1924
|
-
|
1925
|
-
* `Blob`, `Commit`, `Tag`, and `Tree` all have a new prototype `dup` method on them to make a low-level copy of the libgit2 object if needed.
|
1926
|
-
|
1927
|
-
* `Odb#expandIds` is exposed which takes in a list of short ids and expands them in-place to the full id of the object in the database
|
1928
|
-
|
1929
|
-
## <a name="v0-14-0" href="#v0-14-0">v0.14.0</a> [(2016-06-20)](https://github.com/nodegit/nodegit/releases/tag/v0.14.0)
|
1930
|
-
|
1931
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.13.2...v0.14.0)
|
1932
|
-
|
1933
|
-
- Improve lifecycle scripts and install process [PR #1055](https://github.com/nodegit/nodegit/pull/1055)
|
1934
|
-
- Fix example code [PR #1058](https://github.com/nodegit/nodegit/pull/1058)
|
1935
|
-
|
1936
|
-
## <a name="v0-13-2" href="#v0-13-2">v0.13.2</a> [(2016-06-09)](https://github.com/nodegit/nodegit/releases/tag/v0.13.2)
|
1937
|
-
|
1938
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.13.1...v0.13.2)
|
1939
|
-
|
1940
|
-
- Stop `RevWalk#walk` from swallowing errors in the callback [PR #1047](https://github.com/nodegit/nodegit/pull/1047)
|
1941
|
-
- Stop swallowing errors in the install script [PR #1048](https://github.com/nodegit/nodegit/pull/1048)
|
1942
|
-
- Fix initializing submodules when installing from npm [PR #1050](https://github.com/nodegit/nodegit/pull/1050)
|
1943
|
-
|
1944
|
-
## <a name="v0-13-1" href="#v0-13-1">v0.13.1</a> [(2016-06-03)](https://github.com/nodegit/nodegit/releases/tag/v0.13.1)
|
1945
|
-
|
1946
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.13.0...v0.13.1)
|
1947
|
-
|
1948
|
-
## Added
|
1949
|
-
|
1950
|
-
- `Repository#discardLines` is now a thing [PR #1021](https://github.com/nodegit/nodegit/pull/1021)
|
1951
|
-
|
1952
|
-
## Modified
|
1953
|
-
|
1954
|
-
- Async methods now use a custom threadpool to prevent thread-locking the event loop [PR #1019](https://github.com/nodegit/nodegit/pull/1019)
|
1955
|
-
|
1956
|
-
## Bug fixes
|
1957
|
-
|
1958
|
-
- Fix building NodeGit from NPM [PR #1026](https://github.com/nodegit/nodegit/pull/1026)
|
1959
|
-
- Plug a memory leak in `RevWalk.fastWalk` [PR #1030](https://github.com/nodegit/nodegit/pull/1030)
|
1960
|
-
- Plug a memory leak with `Oid` [PR #1033](https://github.com/nodegit/nodegit/pull/1033)
|
1961
|
-
- Fixed some underlying libgit2 objects getting freed incorrectly [PR #1036](https://github.com/nodegit/nodegit/pull/1036)
|
1962
|
-
|
1963
|
-
## <a name="v0-13-0" href="#v0-13-0">v0.13.0</a> [(2016-05-04)](https://github.com/nodegit/nodegit/releases/tag/v0.13.0)
|
1964
|
-
|
1965
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.12.2...v0.13.0)
|
1966
|
-
|
1967
|
-
## Summary
|
1968
|
-
|
1969
|
-
This is a big update! Lots of work was done to bring NodeGit up to the latest stable libgit2 version (v0.24.1), to use babel in the library, to make it more stable, remove memory leaks, squash bugs and in general just improve the library for all. Make sure to see all of the API changes below (there are a lot).
|
1970
|
-
|
1971
|
-
## Node support
|
1972
|
-
|
1973
|
-
We have added Node 6 as a supported platform! Going forward we aim to have 1:1 support for versions of Node that are either current or LTS. That means that v0.12 will not be supported soon so if you're on that please upgrade to at least Node v4. Also Node v5 will *NOT* be LTS so when Node stops supporting that in the coming months we will as well. You can read more about the current Node upgrade plan [here](https://nodejs.org/en/blog/release/v6.0.0/).
|
1974
|
-
|
1975
|
-
## API Changes
|
1976
|
-
-------
|
1977
|
-
|
1978
|
-
### Modified
|
1979
|
-
|
1980
|
-
- `Index#add`, `Index#addByPath`, `Index#clear`, `Index#conflictAdd`, `Index#conflictCleanup`, `Index#conflictGet`, `Index#conflictRemove`, `Index.open`, `Index#read`, `Index#readTree`, `Index#remove`, `Index#removeByPath`, `Index#removeDirectory`, `Index#read`, `Index#write`, `Index#writeTree`, and `Index#writeTreeTo` are all now asynchronous functions [PR #971](https://github.com/nodegit/nodegit/pull/971)
|
1981
|
-
- Made `ancestoryEntry`, `outEntry` and `theirEntry` optional parameters on `Index#conflictAdd` [PR #997](https://github.com/nodegit/nodegit/pull/997)
|
1982
|
-
- `Repository#refreshIndex` will return an Index object back that has the latest data loaded off of disk [PR #986](https://github.com/nodegit/nodegit/pull/986)
|
1983
|
-
- `Commit.create` is now asynchronous [PR #1022](https://github.com/nodegit/nodegit/pull/1022)
|
1984
|
-
- `Remote.create` is now asynchronous [PR #990](https://github.com/nodegit/nodegit/pull/990)
|
1985
|
-
|
1986
|
-
### Added
|
1987
|
-
|
1988
|
-
- `Diff#merge` will combine a diff into itself [PR #1000](https://github.com/nodegit/nodegit/pull/1000)
|
1989
|
-
- `ReflogEntry#committer`, `ReflogEntry#idNew`, `ReflogEntry#idOld`, and `ReflogEntry#message` have been added
|
1990
|
-
[PR #1013](https://github.com/nodegit/nodegit/pull/1013)
|
1991
|
-
|
1992
|
-
### Removed
|
1993
|
-
|
1994
|
-
- `Repository#openIndex` [PR #989](https://github.com/nodegit/nodegit/pull/989), use `Repository#index` or `Repository#refreshIndex` instead
|
1995
|
-
- `Reflog#entryCommitter`, `Reflog#entryIdNew`, `Reflog#entryIdOld`, and `Reflog#entryMessage` have been moved to be under `ReflogEntry`
|
1996
|
-
[PR #1013](https://github.com/nodegit/nodegit/pull/1013)
|
1997
|
-
|
1998
|
-
### Bug fixes
|
1999
|
-
|
2000
|
-
- `Branch.name` works now [PR #991](https://github.com/nodegit/nodegit/pull/991)
|
2001
|
-
- Fixed a crash with callbacks from libgit2 [PR #944](https://github.com/nodegit/nodegit/pull/944)
|
2002
|
-
- Fixed a crash in `Tree#entryByName` [PR #998](https://github.com/nodegit/nodegit/pull/998)
|
2003
|
-
- More memory leaks have been plugged [PR #1005](https://github.com/nodegit/nodegit/pull/1005), [PR #1006](https://github.com/nodegit/nodegit/pull/1006), [PR #1014](https://github.com/nodegit/nodegit/pull/1014), and [PR #1015](https://github.com/nodegit/nodegit/pull/1015)
|
2004
|
-
- `Commit#getDiffWithOptions` now actually passes the options correctly [PR #1008](https://github.com/nodegit/nodegit/pull/1008)
|
2005
|
-
|
2006
|
-
## Upgraded to libgit2 v0.24.1 [PR #1010](https://github.com/nodegit/nodegit/pull/1010)
|
2007
|
-
-------
|
2008
|
-
|
2009
|
-
### Changes or improvements
|
2010
|
-
|
2011
|
-
- Custom merge drivers can now be registered, which allows callers to
|
2012
|
-
configure callbacks to honor `merge=driver` configuration in
|
2013
|
-
`.gitattributes`.
|
2014
|
-
|
2015
|
-
- Custom filters can now be registered with wildcard attributes, for
|
2016
|
-
example `filter=*`. Consumers should examine the attributes parameter
|
2017
|
-
of the `check` function for details.
|
2018
|
-
|
2019
|
-
- Symlinks are now followed when locking a file, which can be
|
2020
|
-
necessary when multiple worktrees share a base repository.
|
2021
|
-
|
2022
|
-
- You can now set your own user-agent to be sent for HTTP requests by
|
2023
|
-
using the `Libgit2.OPT.SET_USER_AGENT` with `Libgit2.opts()`.
|
2024
|
-
|
2025
|
-
- You can set custom HTTP header fields to be sent along with requests
|
2026
|
-
by passing them in the fetch and push options.
|
2027
|
-
|
2028
|
-
- Tree objects are now assumed to be sorted. If a tree is not
|
2029
|
-
correctly formed, it will give bad results. This is the git approach
|
2030
|
-
and cuts a significant amount of time when reading the trees.
|
2031
|
-
|
2032
|
-
- Filter registration is now protected against concurrent
|
2033
|
-
registration.
|
2034
|
-
|
2035
|
-
- Filenames which are not valid on Windows in an index no longer cause
|
2036
|
-
to fail to parse it on that OS.
|
2037
|
-
|
2038
|
-
- Rebases can now be performed purely in-memory, without touching the
|
2039
|
-
repository's workdir.
|
2040
|
-
|
2041
|
-
- When adding objects to the index, or when creating new tree or commit
|
2042
|
-
objects, the inputs are validated to ensure that the dependent objects
|
2043
|
-
exist and are of the correct type. This object validation can be
|
2044
|
-
disabled with the `Libgit2.OPT.ENABLE_STRICT_OBJECT_CREATION` option.
|
2045
|
-
|
2046
|
-
- The WinHTTP transport's handling of bad credentials now behaves like
|
2047
|
-
the others, asking for credentials again.
|
2048
|
-
|
2049
|
-
### API additions
|
2050
|
-
|
2051
|
-
- `Blob.createFromStream()` and
|
2052
|
-
`Blob.createFromStreamCommit` allow you to create a blob by
|
2053
|
-
writing into a stream. Useful when you do not know the final size or
|
2054
|
-
want to copy the contents from another stream.
|
2055
|
-
|
2056
|
-
- `Config#lock` has been added, which allow for
|
2057
|
-
transactional/atomic complex updates to the configuration, removing
|
2058
|
-
the opportunity for concurrent operations and not committing any
|
2059
|
-
changes until the unlock.
|
2060
|
-
|
2061
|
-
- `DiffOptions` added a new callback `progress_cb` to report on the
|
2062
|
-
progress of the diff as files are being compared. The documentation of
|
2063
|
-
the existing callback `notify_cb` was updated to reflect that it only
|
2064
|
-
gets called when new deltas are added to the diff.
|
2065
|
-
|
2066
|
-
- `FetchOptions` and `PushOptions` have gained a `customHeaders`
|
2067
|
-
field to set the extra HTTP header fields to send.
|
2068
|
-
|
2069
|
-
- `Commit#headerField` allows you to look up a specific header
|
2070
|
-
field in a commit.
|
2071
|
-
|
2072
|
-
### Breaking API changes
|
2073
|
-
|
2074
|
-
- `MergeOptions` now provides a `defaultDriver` that can be used
|
2075
|
-
to provide the name of a merge driver to be used to handle files changed
|
2076
|
-
during a merge.
|
2077
|
-
|
2078
|
-
- The `Merge.TREE_FLAG` is now `Merge.FLAG`. Subsequently,
|
2079
|
-
`treeFlags` field of the `MergeOptions` structure is now named `flags`.
|
2080
|
-
|
2081
|
-
- The `Merge.FILE_FLAGS` enum is now `Merge.FILE_FLAG` for
|
2082
|
-
consistency with other enum type names.
|
2083
|
-
|
2084
|
-
- `Cert` descendent types now have a proper `parent` member
|
2085
|
-
|
2086
|
-
- It is the responsibility of the refdb backend to decide what to do
|
2087
|
-
with the reflog on ref deletion. The file-based backend must delete
|
2088
|
-
it, a database-backed one may wish to archive it.
|
2089
|
-
|
2090
|
-
- `Index#add` and `Index#conflictAdd` will now use the case
|
2091
|
-
as provided by the caller on case insensitive systems. Previous
|
2092
|
-
versions would keep the case as it existed in the index. This does
|
2093
|
-
not affect the higher-level `Index#addByPath` or
|
2094
|
-
`Index#addFromBuffer` functions.
|
2095
|
-
|
2096
|
-
- The `Config.LEVEL` enum has gained a higher-priority value
|
2097
|
-
`PROGRAMDATA` which represent a rough Windows equivalent
|
2098
|
-
to the system level configuration.
|
2099
|
-
|
2100
|
-
- `RebaseOptions` now has a `mergeOptions` field.
|
2101
|
-
|
2102
|
-
- The index no longer performs locking itself. This is not something
|
2103
|
-
users of the library should have been relying on as it's not part of
|
2104
|
-
the concurrency guarantees.
|
2105
|
-
|
2106
|
-
- `Remote#connect()` now takes a `customHeaders` argument to set
|
2107
|
-
the extra HTTP header fields to send.
|
2108
|
-
|
2109
|
-
- `Tree.entryFilemode`, `Tree.entryFilemodeRaw`, `Tree.entryId`, `Tree.entryName`,
|
2110
|
-
`Tree.entryToObject`, and `Tree.entryType` have all been moved to the `TreeEntry` prototype.
|
2111
|
-
Additionally, the `TreeEntry` fields have been removed in lieu of the corresponding functions to return
|
2112
|
-
the data.
|
2113
|
-
|
2114
|
-
## <a name="v0-12-2" href="#v0-12-2">v0.12.2</a> [(2016-04-07)](https://github.com/nodegit/nodegit/releases/tag/v0.12.2)
|
2115
|
-
|
2116
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.12.1...v0.12.2)
|
2117
|
-
|
2118
|
-
## Added
|
2119
|
-
|
2120
|
-
- We now provide 32-bit binaries for linux [PR #980](https://github.com/nodegit/nodegit/pull/980)
|
2121
|
-
|
2122
|
-
## Bug fixes
|
2123
|
-
|
2124
|
-
- Added memory clean up for references [PR #977](https://github.com/nodegit/nodegit/pull/977) and remotes [PR #981](https://github.com/nodegit/nodegit/pull/981)
|
2125
|
-
|
2126
|
-
## <a name="v0-12-1" href="#v0-12-1">v0.12.1</a> [(2016-03-30)](https://github.com/nodegit/nodegit/releases/tag/v0.12.1)
|
2127
|
-
|
2128
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.12.0...v0.12.1)
|
2129
|
-
|
2130
|
-
## Bug fixes
|
2131
|
-
|
2132
|
-
- Fixed post install script dying on windows [PR #978](https://github.com/nodegit/nodegit/pull/978)
|
2133
|
-
|
2134
|
-
## <a name="v0-12-0" href="#v0-12-0">v0.12.0</a> [(2016-03-28)](https://github.com/nodegit/nodegit/releases/tag/v0.12.0)
|
2135
|
-
|
2136
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.11.9...v0.12.0)
|
2137
|
-
|
2138
|
-
## API changes
|
2139
|
-
- `Ignore`
|
2140
|
-
- Made `Ignore.pathIsIgnored` async [PR #970](https://github.com/nodegit/nodegit/pull/970)
|
2141
|
-
|
2142
|
-
## Bug fixes
|
2143
|
-
|
2144
|
-
- Added an error message when trying to install NodeGit without a required version of libstdc++ [PR #972](https://github.com/nodegit/nodegit/pull/972)
|
2145
|
-
- Fix a crash when grabbing content out of a buffer that has unicode [PR #966](https://github.com/nodegit/nodegit/pull/966)
|
2146
|
-
- Added some plumbing for better memory management [PR #958](https://github.com/nodegit/nodegit/pull/958)
|
2147
|
-
- Fix `checkoutOptions` in `Stash#apply` [PR #956](https://github.com/nodegit/nodegit/pull/956)
|
2148
|
-
- Fixed install when there is a space in the username on windows [PR #951](https://github.com/nodegit/nodegit/pull/951)
|
2149
|
-
- Bump to nan@2.2.0 [PR #952](https://github.com/nodegit/nodegit/pull/952)
|
2150
|
-
|
2151
|
-
## <a name="v0-11-9" href="#v0-11-9">v0.11.9</a> [(2016-03-09)](https://github.com/nodegit/nodegit/releases/tag/v0.11.9)
|
2152
|
-
|
2153
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.11.8...v0.11.9)
|
2154
|
-
|
2155
|
-
- Fixed crash when calculating diff via `ConvenientPatch` [PR #945](https://github.com/nodegit/nodegit/pull/945)
|
2156
|
-
|
2157
|
-
## <a name="v0-11-8" href="#v0-11-8">v0.11.8</a> [(2016-03-07)](https://github.com/nodegit/nodegit/releases/tag/v0.11.8)
|
2158
|
-
|
2159
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.11.7...v0.11.8)
|
2160
|
-
|
2161
|
-
- Removed callback throttling due to segmentation faults. Will be implemented later. [PR #943](https://github.com/nodegit/nodegit/pull/943)
|
2162
|
-
|
2163
|
-
## <a name="v0-11-7" href="#v0-11-7">v0.11.7</a> [(2016-03-07)](https://github.com/nodegit/nodegit/releases/tag/v0.11.7)
|
2164
|
-
|
2165
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.11.6...v0.11.7)
|
2166
|
-
|
2167
|
-
- Added `Repository#mergeheadForeach` [PR #937](https://github.com/nodegit/nodegit/pull/937)
|
2168
|
-
- Improved speed of all callbacks dramatically [PR #932](https://github.com/nodegit/nodegit/pull/932)
|
2169
|
-
- Fixed `Merge.merge` docs to show it takes in an `AnnotatedCommit` and not a `Commit` [PR #935](https://github.com/nodegit/nodegit/pull/935)
|
2170
|
-
- Fixed unicode in `Diff.blobToBuffer` getting corrupted [PR #935](https://github.com/nodegit/nodegit/pull/935)
|
2171
|
-
- Fixed fetching/pulling to bitbucket in versions > v5.6 of node [PR #942](https://github.com/nodegit/nodegit/pull/942)
|
2172
|
-
|
2173
|
-
## <a name="v0-11-6" href="#v0-11-6">v0.11.6</a> [(2016-03-01)](https://github.com/nodegit/nodegit/releases/tag/v0.11.6)
|
2174
|
-
|
2175
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.11.5...v0.11.6)
|
2176
|
-
|
2177
|
-
- Added `Repository#checkoutRef` [PR #891](https://github.com/nodegit/nodegit/pull/891)
|
2178
|
-
- `Repository#createCommitOnHead` no longer dies if the repo is empty [PR #927](https://github.com/nodegit/nodegit/pull/927)
|
2179
|
-
- Fixed memory leak in `Patch#convenientFromDiff` [PR #930](https://github.com/nodegit/nodegit/pull/930)
|
2180
|
-
- Generated files now have a header comment indicating that they are generated [PR #924](https://github.com/nodegit/nodegit/pull/924)
|
2181
|
-
- Fixed http parsing errors in Node 5.6 [PR #931](https://github.com/nodegit/nodegit/pull/931)
|
2182
|
-
- Fixed `Tree#walk` not returning the correct entries on `end` [PR #929](https://github.com/nodegit/nodegit/pull/929)
|
2183
|
-
|
2184
|
-
## <a name="v0-11-5" href="#v0-11-5">v0.11.5</a> [(2016-02-25)](https://github.com/nodegit/nodegit/releases/tag/v0.11.5)
|
2185
|
-
|
2186
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.11.4...v0.11.5)
|
2187
|
-
|
2188
|
-
- Fixed crash when calculating a diff [PR #922](https://github.com/nodegit/nodegit/pull/922)
|
2189
|
-
- Fixed an issue with return values getting randomly corrupted [PR #923](https://github.com/nodegit/nodegit/pull/923))
|
2190
|
-
|
2191
|
-
## <a name="v0-11-4" href="#v0-11-4">v0.11.4</a> [(2016-02-24)](https://github.com/nodegit/nodegit/releases/tag/v0.11.4)
|
2192
|
-
|
2193
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.11.3...v0.11.4)
|
2194
|
-
|
2195
|
-
- Fixed callback out values in callbacks from C++. This affects any NodeGit call that is passed a callback as an option [PR #921](https://github.com/nodegit/nodegit/pull/921)
|
2196
|
-
- Fixed an issue with building the debug version of NodeGit on windows [PR #918](https://github.com/nodegit/nodegit/pull/918)
|
2197
|
-
|
2198
|
-
## <a name="v0-11-3" href="#v0-11-3">v0.11.3</a> [(2016-02-22)](https://github.com/nodegit/nodegit/releases/tag/v0.11.3)
|
2199
|
-
|
2200
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.11.2...v0.11.3)
|
2201
|
-
|
2202
|
-
- Fixed an issue where initializing NodeGit would sometimes seg fault. Also fixed an error when fetching concurrently [PR #912](https://github.com/nodegit/nodegit/pull/912)
|
2203
|
-
|
2204
|
-
## <a name="v0-11-2" href="#v0-11-2">v0.11.2</a> [(2016-02-18)](https://github.com/nodegit/nodegit/releases/tag/v0.11.2)
|
2205
|
-
|
2206
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.11.1...v0.11.2)
|
2207
|
-
|
2208
|
-
- Fixed an issue where when staging lines if the index is locked NodeGit just nuked it [PR #906](https://github.com/nodegit/nodegit/pull/906)
|
2209
|
-
- Fixed diff calculation when staging lines/hunks [PR #906](https://github.com/nodegit/nodegit/pull/906)
|
2210
|
-
- Fixed seg-fault in linux that happens when getting the diff of very small files [PR #908](https://github.com/nodegit/nodegit/pull/908)
|
2211
|
-
- Fixed `RevWalk#fastWalk` dying when an error happens in libgit2 [PR #909](https://github.com/nodegit/nodegit/pull/909)
|
2212
|
-
|
2213
|
-
## <a name="v0-11-1" href="#v0-11-1">v0.11.1</a> [(2016-02-09)](https://github.com/nodegit/nodegit/releases/tag/v0.11.1)
|
2214
|
-
|
2215
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.11.0...v0.11.1)
|
2216
|
-
|
2217
|
-
- Numerous fixes and perf boosts to file history [PR #900](https://github.com/nodegit/nodegit/pull/900)[PR #896](https://github.com/nodegit/nodegit/pull/896)
|
2218
|
-
- Several doc fixes [PR #899](https://github.com/nodegit/nodegit/pull/899)[PR #897](https://github.com/nodegit/nodegit/pull/897)
|
2219
|
-
|
2220
|
-
## <a name="v0-11-0" href="#v0-11-0">v0.11.0</a> [(2016-02-04)](https://github.com/nodegit/nodegit/releases/tag/v0.11.0)
|
2221
|
-
|
2222
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.10.0...v0.11.0)
|
2223
|
-
|
2224
|
-
- Change `Revert.commit` and `Revert.revert` to by async. [PR #887](https://github.com/nodegit/nodegit/pull/887)
|
2225
|
-
- Added `RevWalk#fileHistoryWalk` for a faster way to retrieve history for a specific file. [PR #889](https://github.com/nodegit/nodegit/pull/889)
|
2226
|
-
|
2227
|
-
## <a name="v0-10-0" href="#v0-10-0">v0.10.0</a> [(2016-02-01)](https://github.com/nodegit/nodegit/releases/tag/v0.10.0)
|
2228
|
-
|
2229
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.9.0...v0.10.0)
|
2230
|
-
|
2231
|
-
- Clean mutexes are part of GC. No longer leaves processes running after the script ends [PR #880](https://github.com/nodegit/nodegit/pull/880)
|
2232
|
-
- Increased the performance of `ConvenientPatch` by an order of magnitude [PR #883](https://github.com/nodegit/nodegit/pull/883)
|
2233
|
-
|
2234
|
-
# API changes
|
2235
|
-
- `ConvenientPatch`
|
2236
|
-
- `ConvenientPatch` does not have a `patch` or a `delta` property associated with it, if you were using the `delta`, please just use prototype methods `oldFile`, `newFile`, and `Status`, which are stripped directly from the `delta`.
|
2237
|
-
- `ConvenientPatch#hunks` returns a promise with an array of `ConvenientHunks`.
|
2238
|
-
- `ConvenientHunk`
|
2239
|
-
- `ConvenientHunk` does not have an exposed diffHunk associated with it, but does have the same members as diffHunk:
|
2240
|
-
- `size()` : number of lines in the hunk
|
2241
|
-
- `oldStart()` : old starting position
|
2242
|
-
- `oldLines()` : number of lines in old file
|
2243
|
-
- `newStart()` : new starting position
|
2244
|
-
- `newLines()` : number of lines in new file
|
2245
|
-
- `headerLen()` : length of header
|
2246
|
-
- `header()` : returns the header of the hunk
|
2247
|
-
- `lines()` : returns a promise containing `DiffLines`, not `ConvenientLines`.
|
2248
|
-
- `DiffLine`
|
2249
|
-
- `DiffLine` now contains the members `rawContent()` and `content()`.
|
2250
|
-
- `rawContent()` contains the unformatted content of the line. This is no longer a string from the line to the end of the file.
|
2251
|
-
- `content()` contains the utf8 formatted content of the line.
|
2252
|
-
|
2253
|
-
## <a name="v0-9-0" href="#v0-9-0">v0.9.0</a> [(2016-01-21)](https://github.com/nodegit/nodegit/releases/tag/v0.9.0)
|
2254
|
-
|
2255
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.8.0...v0.9.0)
|
2256
|
-
|
2257
|
-
- Thread safe fix to stop crashing on releasing mutexes [PR #876](https://github.com/nodegit/nodegit/pull/876)
|
2258
|
-
- `Submodule#setIgnore`, `Submodule#setUpdate`, and `Submodule#setUrl` are now all async. `Submodule#status` and `Submodule#location` are now available [PR #867](https://github.com/nodegit/nodegit/pull/867) and [PR #870](https://github.com/nodegit/nodegit/pull/870)
|
2259
|
-
- `Remote#defaultBranch` is now available [PR #872](https://github.com/nodegit/nodegit/pull/872)
|
2260
|
-
- `Repository#mergeBranches` now takes in a `MergeOptions` parameter [PR #873](https://github.com/nodegit/nodegit/pull/873)
|
2261
|
-
- Remove a NodeGit specific hack to make `Index#addAll` faster since that is fixed in libgit2 [PR #875](https://github.com/nodegit/nodegit/pull/875))
|
2262
|
-
|
2263
|
-
## <a name="v0-8-0" href="#v0-8-0">v0.8.0</a> [(2016-01-15)](https://github.com/nodegit/nodegit/releases/tag/v0.8.0)
|
2264
|
-
|
2265
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.7.0...0.8.0)
|
2266
|
-
|
2267
|
-
- Thread safe locking has been added and currently is defaulted to off. Use `NodeGit.enableThreadSafety()` to turn on
|
2268
|
-
- NodeGit no longer requires a specific Promise object from the `nodegit-promise` library to be passed in. You can now use whatever you want!
|
2269
|
-
- `Repository#stageFilemode` now can accept an array of strings for files to update
|
2270
|
-
- `Submodule#addToIndex`, `Submodule#addFinalize`, `Submodule#init`, `Submodule#open`, `Submodule#sync`, and `Submodule#update` are now all async methodss
|
2271
|
-
|
2272
|
-
## <a name="v0-7-0" href="#v0-7-0">v0.7.0</a> [(2016-01-08)](https://github.com/nodegit/nodegit/releases/tag/v0.7.0)
|
2273
|
-
|
2274
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.6.3...0.7.0)
|
2275
|
-
|
2276
|
-
- Bumped openssl to 1.0.2e to fix issues with prebuilts on linux platforms
|
2277
|
-
- Fixed a bug with GIT_ITER_OVER breaking rebase and other iterative methods
|
2278
|
-
- Make GraphDescendentOf asynchronous
|
2279
|
-
- Fixed line length of utf8 stringss
|
2280
|
-
|
2281
|
-
## <a name="v0-6-3" href="#v0-6-3">v0.6.3</a> [(2015-12-16)](https://github.com/nodegit/nodegit/releases/tag/v0.6.3)
|
2282
|
-
|
2283
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.6.2...0.6.3)
|
2284
|
-
|
2285
|
-
- Fixed a bug where manually building for vanilla node would fail without explicitly
|
2286
|
-
setting the target
|
2287
|
-
|
2288
|
-
## <a name="v0-6-2" href="#v0-6-2">v0.6.2</a> [(2015-12-16)](https://github.com/nodegit/nodegit/releases/tag/v0.6.2)
|
2289
|
-
|
2290
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.6.1...0.6.2)
|
2291
|
-
|
2292
|
-
- Fixed a bug where manually building on windows would fail (if unable to download a prebuilt binary)
|
2293
|
-
|
2294
|
-
## <a name="v0-6-1" href="#v0-6-1">v0.6.1</a> [(2015-12-14)](https://github.com/nodegit/nodegit/releases/tag/v0.6.1)
|
2295
|
-
|
2296
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.6.0...0.6.1)
|
2297
|
-
|
2298
|
-
- Fixed Treebuilder.create to have an optional source
|
2299
|
-
- Added Repository.getSubmoduleNames
|
2300
|
-
- Added Submodule.Foreach
|
2301
|
-
|
2302
|
-
## <a name="v0-6-0" href="#v0-6-0">v0.6.0</a> [(2015-12-08)](https://github.com/nodegit/nodegit/releases/tag/v0.6.0)
|
2303
|
-
|
2304
|
-
- Added file mode staging
|
2305
|
-
- Added a fast rev walk to do the rev walk in C++ and bubble the result up to JS
|
2306
|
-
- Updated to latest libgit2
|
2307
|
-
- Updated to latest openssl
|
2308
|
-
- Updated to latest nodegit-promise
|
2309
|
-
- Removed c++11 dependency
|
2310
|
-
- Fixed weirdness in lifecycle scripts
|
2311
|
-
- Added downloading prebuilt binaries for electron
|
2312
|
-
|
2313
|
-
## <a name="v0-4-1" href="#v0-4-1">v0.4.1</a> [(2015-06-02)](https://github.com/nodegit/nodegit/tree/0.4.1)
|
2314
|
-
|
2315
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.4.0...0.4.1)
|
2316
|
-
|
2317
|
-
**Closed issues:**
|
2318
|
-
|
2319
|
-
- Error: Module did not self-register [\#593](https://github.com/nodegit/nodegit/issues/593)
|
2320
|
-
|
2321
|
-
- A guide on how to create a new branch, switch to it and delete it. [\#588](https://github.com/nodegit/nodegit/issues/588)
|
2322
|
-
|
2323
|
-
- A way to get "gone" branches [\#583](https://github.com/nodegit/nodegit/issues/583)
|
2324
|
-
|
2325
|
-
- Missing documentation pages for BranchIterator and NodeIterator [\#581](https://github.com/nodegit/nodegit/issues/581)
|
2326
|
-
|
2327
|
-
- ELIFECYCLE error on `npm rebuild` [\#578](https://github.com/nodegit/nodegit/issues/578)
|
2328
|
-
|
2329
|
-
- npm rebuild fails \(lifecycleScripts/clean should not delete lifecycleScripts!\) [\#576](https://github.com/nodegit/nodegit/issues/576)
|
2330
|
-
|
2331
|
-
- Unable to compile and install v0.4.0 on Windows [\#575](https://github.com/nodegit/nodegit/issues/575)
|
2332
|
-
|
2333
|
-
- Doesn't work with Electron [\#574](https://github.com/nodegit/nodegit/issues/574)
|
2334
|
-
|
2335
|
-
- Doesn't work with io.js 2.x [\#573](https://github.com/nodegit/nodegit/issues/573)
|
2336
|
-
|
2337
|
-
- Getting an exception during a fetchAll in defaultSignature in repository.js [\#572](https://github.com/nodegit/nodegit/issues/572)
|
2338
|
-
|
2339
|
-
- tree\_entry path function not working when calling getEntry with a path including subdir [\#570](https://github.com/nodegit/nodegit/issues/570)
|
2340
|
-
|
2341
|
-
- Build is broken on windows [\#565](https://github.com/nodegit/nodegit/issues/565)
|
2342
|
-
|
2343
|
-
- Cloning git sub modules using "nodegit" npm module [\#560](https://github.com/nodegit/nodegit/issues/560)
|
2344
|
-
|
2345
|
-
- How to get remote latest commit? [\#559](https://github.com/nodegit/nodegit/issues/559)
|
2346
|
-
|
2347
|
-
- npm install fails for nw.js [\#558](https://github.com/nodegit/nodegit/issues/558)
|
2348
|
-
|
2349
|
-
- nodegit and nw.js [\#557](https://github.com/nodegit/nodegit/issues/557)
|
2350
|
-
|
2351
|
-
**Merged pull requests:**
|
2352
|
-
|
2353
|
-
- Cherrypick tests [\#595](https://github.com/nodegit/nodegit/pull/595) ([jdgarcia](https://github.com/jdgarcia))
|
2354
|
-
|
2355
|
-
- Fix for issue \#591. TreeEntry.path\(\) throws when TreeEntry came from Tree.entries\(\) [\#592](https://github.com/nodegit/nodegit/pull/592) ([tomruggs](https://github.com/tomruggs))
|
2356
|
-
|
2357
|
-
- Standard merge [\#589](https://github.com/nodegit/nodegit/pull/589) ([jdgarcia](https://github.com/jdgarcia))
|
2358
|
-
|
2359
|
-
- Add `git\_index\_conflict\_get` and test [\#586](https://github.com/nodegit/nodegit/pull/586) ([johnhaley81](https://github.com/johnhaley81))
|
2360
|
-
|
2361
|
-
- Bump nan [\#584](https://github.com/nodegit/nodegit/pull/584) ([johnhaley81](https://github.com/johnhaley81))
|
2362
|
-
|
2363
|
-
- Fix CI false positives [\#582](https://github.com/nodegit/nodegit/pull/582) ([johnhaley81](https://github.com/johnhaley81))
|
2364
|
-
|
2365
|
-
- Added NodeGit.Checkout.index [\#579](https://github.com/nodegit/nodegit/pull/579) ([jdgarcia](https://github.com/jdgarcia))
|
2366
|
-
|
2367
|
-
- Check for existence to avoid throwing an error when there is no default signature [\#577](https://github.com/nodegit/nodegit/pull/577) ([tomruggs](https://github.com/tomruggs))
|
2368
|
-
|
2369
|
-
- Fix path function in tree\_entry \(fix for issue \#570\) [\#571](https://github.com/nodegit/nodegit/pull/571) ([jfremy](https://github.com/jfremy))
|
2370
|
-
|
2371
|
-
- Fix Rebase issues [\#568](https://github.com/nodegit/nodegit/pull/568) ([jdgarcia](https://github.com/jdgarcia))
|
2372
|
-
|
2373
|
-
- Fix build issues with 0.4.0 [\#566](https://github.com/nodegit/nodegit/pull/566) ([maxkorp](https://github.com/maxkorp))
|
2374
|
-
|
2375
|
-
- stop cleaning on post-install [\#562](https://github.com/nodegit/nodegit/pull/562) ([maxkorp](https://github.com/maxkorp))
|
2376
|
-
|
2377
|
-
## <a name="v0-4-0" href="#v0-4-0">v0.4.0</a> [(2015-05-07)](https://github.com/nodegit/nodegit/tree/v0.4.0)
|
2378
|
-
|
2379
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.3.3...v0.4.0)
|
2380
|
-
|
2381
|
-
**Closed issues:**
|
2382
|
-
|
2383
|
-
- Error installing nodegit as dependency of an atom-shell app [\#556](https://github.com/nodegit/nodegit/issues/556)
|
2384
|
-
|
2385
|
-
- New version of nan is breaking compile [\#554](https://github.com/nodegit/nodegit/issues/554)
|
2386
|
-
|
2387
|
-
- Install error from openssl [\#551](https://github.com/nodegit/nodegit/issues/551)
|
2388
|
-
|
2389
|
-
- How to get Tag instance by tag\_name? [\#543](https://github.com/nodegit/nodegit/issues/543)
|
2390
|
-
|
2391
|
-
- ELIFECYCLE Error on install [\#540](https://github.com/nodegit/nodegit/issues/540)
|
2392
|
-
|
2393
|
-
- Remote.delete returns -3 [\#539](https://github.com/nodegit/nodegit/issues/539)
|
2394
|
-
|
2395
|
-
- Repository.init should accept boolean value for is\_bare [\#538](https://github.com/nodegit/nodegit/issues/538)
|
2396
|
-
|
2397
|
-
- getStatus hangs [\#537](https://github.com/nodegit/nodegit/issues/537)
|
2398
|
-
|
2399
|
-
- Unable to compile or install with npm install nodegit [\#536](https://github.com/nodegit/nodegit/issues/536)
|
2400
|
-
|
2401
|
-
- `options` not reusable, nodegit destroys it [\#533](https://github.com/nodegit/nodegit/issues/533)
|
2402
|
-
|
2403
|
-
- 'Error: 'directory' exists and is not an empty directory' \(but it doesn't exist\) [\#530](https://github.com/nodegit/nodegit/issues/530)
|
2404
|
-
|
2405
|
-
- hey !:-\) problem with Branch.iteratorNew \(support\) [\#528](https://github.com/nodegit/nodegit/issues/528)
|
2406
|
-
|
2407
|
-
- hey !:-\) problem with Branch.iteratorNew [\#527](https://github.com/nodegit/nodegit/issues/527)
|
2408
|
-
|
2409
|
-
- hey !:-\) problem with Branch.iteratorNew [\#526](https://github.com/nodegit/nodegit/issues/526)
|
2410
|
-
|
2411
|
-
- hey !:-\) problem with Branch.iteratorNew [\#525](https://github.com/nodegit/nodegit/issues/525)
|
2412
|
-
|
2413
|
-
- Error: Reference 'refs/remotes/user/foo/HEAD' not found [\#523](https://github.com/nodegit/nodegit/issues/523)
|
2414
|
-
|
2415
|
-
- Path issues windows [\#522](https://github.com/nodegit/nodegit/issues/522)
|
2416
|
-
|
2417
|
-
- Issues on scientific linux 6.6 [\#521](https://github.com/nodegit/nodegit/issues/521)
|
2418
|
-
|
2419
|
-
- It's looking for node-typ under `/Users/johnh/.node-gyp` [\#518](https://github.com/nodegit/nodegit/issues/518)
|
2420
|
-
|
2421
|
-
- Not working with iojs [\#516](https://github.com/nodegit/nodegit/issues/516)
|
2422
|
-
|
2423
|
-
- Cred.sshKeyNew not working: Too many redirects or authentication replays [\#511](https://github.com/nodegit/nodegit/issues/511)
|
2424
|
-
|
2425
|
-
- Open a Repo from a subfolder [\#509](https://github.com/nodegit/nodegit/issues/509)
|
2426
|
-
|
2427
|
-
- Create git-like CLI [\#508](https://github.com/nodegit/nodegit/issues/508)
|
2428
|
-
|
2429
|
-
- Cannot create an instance of Packbuilder [\#507](https://github.com/nodegit/nodegit/issues/507)
|
2430
|
-
|
2431
|
-
- Cannot find module '../build/Debug/nodegit' [\#506](https://github.com/nodegit/nodegit/issues/506)
|
2432
|
-
|
2433
|
-
- Bug with oid implicit cast inside C++ [\#501](https://github.com/nodegit/nodegit/issues/501)
|
2434
|
-
|
2435
|
-
- Failed to `require` on Ubuntu 12.04LTS [\#493](https://github.com/nodegit/nodegit/issues/493)
|
2436
|
-
|
2437
|
-
- Enable `git\_config` [\#449](https://github.com/nodegit/nodegit/issues/449)
|
2438
|
-
|
2439
|
-
- Pull example doesn't fully update the index [\#389](https://github.com/nodegit/nodegit/issues/389)
|
2440
|
-
|
2441
|
-
**Merged pull requests:**
|
2442
|
-
|
2443
|
-
- There is an incompatibility with NaN 1.8.x, keeping 1.7.x for now. [\#552](https://github.com/nodegit/nodegit/pull/552) ([wiggzz](https://github.com/wiggzz))
|
2444
|
-
|
2445
|
-
- A wrapper for git\_diff\_blob\_to\_buffer [\#550](https://github.com/nodegit/nodegit/pull/550) ([bleathem](https://github.com/bleathem))
|
2446
|
-
|
2447
|
-
- Update to 0.4.0 [\#548](https://github.com/nodegit/nodegit/pull/548) ([tbranyen](https://github.com/tbranyen))
|
2448
|
-
|
2449
|
-
- Removed the superflous "line" argument [\#547](https://github.com/nodegit/nodegit/pull/547) ([bleathem](https://github.com/bleathem))
|
2450
|
-
|
2451
|
-
- This fixes polling sync promises in callbacks. [\#546](https://github.com/nodegit/nodegit/pull/546) ([johnhaley81](https://github.com/johnhaley81))
|
2452
|
-
|
2453
|
-
- Add get/set config string methods and tests [\#545](https://github.com/nodegit/nodegit/pull/545) ([johnhaley81](https://github.com/johnhaley81))
|
2454
|
-
|
2455
|
-
- Make `Remote.delete` async and return error messages correctly [\#544](https://github.com/nodegit/nodegit/pull/544) ([johnhaley81](https://github.com/johnhaley81))
|
2456
|
-
|
2457
|
-
- Bump "nodegit-promise" version [\#542](https://github.com/nodegit/nodegit/pull/542) ([johnhaley81](https://github.com/johnhaley81))
|
2458
|
-
|
2459
|
-
- Introduced a new ConvenientLine class to wrap the lines returned from ConvenientHunk. [\#541](https://github.com/nodegit/nodegit/pull/541) ([bleathem](https://github.com/bleathem))
|
2460
|
-
|
2461
|
-
- Fix some things missed by the generating scripts [\#535](https://github.com/nodegit/nodegit/pull/535) ([johnhaley81](https://github.com/johnhaley81))
|
2462
|
-
|
2463
|
-
- Attempt remove the delete keyword [\#534](https://github.com/nodegit/nodegit/pull/534) ([tbranyen](https://github.com/tbranyen))
|
2464
|
-
|
2465
|
-
- Fix freeing a `GitOid` that was passed as a string [\#531](https://github.com/nodegit/nodegit/pull/531) ([johnhaley81](https://github.com/johnhaley81))
|
2466
|
-
|
2467
|
-
- fix typo: "byes" [\#529](https://github.com/nodegit/nodegit/pull/529) ([rutsky](https://github.com/rutsky))
|
2468
|
-
|
2469
|
-
- Add convenience methods to status file [\#524](https://github.com/nodegit/nodegit/pull/524) ([maxkorp](https://github.com/maxkorp))
|
2470
|
-
|
2471
|
-
- Lots of complaints of missing build/Debug/nodegit [\#520](https://github.com/nodegit/nodegit/pull/520) ([tbranyen](https://github.com/tbranyen))
|
2472
|
-
|
2473
|
-
- Add `Graph.aheadBehind` and tests [\#517](https://github.com/nodegit/nodegit/pull/517) ([johnhaley81](https://github.com/johnhaley81))
|
2474
|
-
|
2475
|
-
- Update to use libgit2 v0.22.2 [\#515](https://github.com/nodegit/nodegit/pull/515) ([johnhaley81](https://github.com/johnhaley81))
|
2476
|
-
|
2477
|
-
- Add `Repository.prototype.fetchheadForeach` and tests [\#514](https://github.com/nodegit/nodegit/pull/514) ([johnhaley81](https://github.com/johnhaley81))
|
2478
|
-
|
2479
|
-
- Converted create methods to be synchronous [\#513](https://github.com/nodegit/nodegit/pull/513) ([tbranyen](https://github.com/tbranyen))
|
2480
|
-
|
2481
|
-
- Fix atom-shell build on windows [\#512](https://github.com/nodegit/nodegit/pull/512) ([johnhaley81](https://github.com/johnhaley81))
|
2482
|
-
|
2483
|
-
- Update Checkout and Merge [\#505](https://github.com/nodegit/nodegit/pull/505) ([orderedlist](https://github.com/orderedlist))
|
2484
|
-
|
2485
|
-
- Add note tests [\#504](https://github.com/nodegit/nodegit/pull/504) ([tbranyen](https://github.com/tbranyen))
|
2486
|
-
|
2487
|
-
- Revert "Guide navigation is currently confusing" [\#503](https://github.com/nodegit/nodegit/pull/503) ([thgaskell](https://github.com/thgaskell))
|
2488
|
-
|
2489
|
-
- Improve coverage [\#502](https://github.com/nodegit/nodegit/pull/502) ([tbranyen](https://github.com/tbranyen))
|
2490
|
-
|
2491
|
-
- Adds in CPP code coverage and joined JS [\#499](https://github.com/nodegit/nodegit/pull/499) ([tbranyen](https://github.com/tbranyen))
|
2492
|
-
|
2493
|
-
- Add twitter username to README.md [\#498](https://github.com/nodegit/nodegit/pull/498) ([johnhaley81](https://github.com/johnhaley81))
|
2494
|
-
|
2495
|
-
- Fix symbolic reference handling in getReferences [\#496](https://github.com/nodegit/nodegit/pull/496) ([billt2006](https://github.com/billt2006))
|
2496
|
-
|
2497
|
-
- Enable `git\_stash\_foreach` [\#495](https://github.com/nodegit/nodegit/pull/495) ([johnhaley81](https://github.com/johnhaley81))
|
2498
|
-
|
2499
|
-
- Guide navigation is currently confusing [\#494](https://github.com/nodegit/nodegit/pull/494) ([tbranyen](https://github.com/tbranyen))
|
2500
|
-
|
2501
|
-
- Fix gitter badge for npm [\#492](https://github.com/nodegit/nodegit/pull/492) ([billt2006](https://github.com/billt2006))
|
2502
|
-
|
2503
|
-
- Add automatically generated change log file. [\#465](https://github.com/nodegit/nodegit/pull/465) ([skywinder](https://github.com/skywinder))
|
2504
|
-
|
2505
|
-
## <a name="v0-3-3" href="#v0-3-3">v0.3.3</a> [(2015-03-16)](https://github.com/nodegit/nodegit/tree/v0.3.3)
|
2506
|
-
|
2507
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.3.2...v0.3.3)
|
2508
|
-
|
2509
|
-
**Merged pull requests:**
|
2510
|
-
|
2511
|
-
- Download all dev dependencies before build [\#491](https://github.com/nodegit/nodegit/pull/491) ([johnhaley81](https://github.com/johnhaley81))
|
2512
|
-
|
2513
|
-
## <a name="v0-3-2" href="#v0-3-2">v0.3.2</a> [(2015-03-16)](https://github.com/nodegit/nodegit/tree/v0.3.2)
|
2514
|
-
|
2515
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.3.1...v0.3.2)
|
2516
|
-
|
2517
|
-
**Closed issues:**
|
2518
|
-
|
2519
|
-
- Amazon S3 CDN link is broken [\#482](https://github.com/nodegit/nodegit/issues/482)
|
2520
|
-
|
2521
|
-
**Merged pull requests:**
|
2522
|
-
|
2523
|
-
- Confirm builder exists before building [\#490](https://github.com/nodegit/nodegit/pull/490) ([johnhaley81](https://github.com/johnhaley81))
|
2524
|
-
|
2525
|
-
## <a name="v0-3-1" href="#v0-3-1">v0.3.1</a> [(2015-03-14)](https://github.com/nodegit/nodegit/tree/v0.3.1)
|
2526
|
-
|
2527
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.3.0...v0.3.1)
|
2528
|
-
|
2529
|
-
**Merged pull requests:**
|
2530
|
-
|
2531
|
-
- Revert node-pre-gyp to install not build [\#486](https://github.com/nodegit/nodegit/pull/486) ([tbranyen](https://github.com/tbranyen))
|
2532
|
-
|
2533
|
-
## <a name="v0-3-0" href="#v0-3-0">v0.3.0</a> [(2015-03-13)](https://github.com/nodegit/nodegit/tree/v0.3.0)
|
2534
|
-
|
2535
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.2.7...v0.3.0)
|
2536
|
-
|
2537
|
-
**Closed issues:**
|
2538
|
-
|
2539
|
-
- Push [\#463](https://github.com/nodegit/nodegit/issues/463)
|
2540
|
-
|
2541
|
-
- Suppress astyle errors [\#459](https://github.com/nodegit/nodegit/issues/459)
|
2542
|
-
|
2543
|
-
- io.js support [\#447](https://github.com/nodegit/nodegit/issues/447)
|
2544
|
-
|
2545
|
-
- Meteor: icon fonts not working \(Resource interpreted as Font but transferred with MIME type text/html\) [\#443](https://github.com/nodegit/nodegit/issues/443)
|
2546
|
-
|
2547
|
-
- AnnotatedCommit.x listing as Annotated.commitX [\#437](https://github.com/nodegit/nodegit/issues/437)
|
2548
|
-
|
2549
|
-
- fetchAll\(\) fails unless a default signature is available [\#431](https://github.com/nodegit/nodegit/issues/431)
|
2550
|
-
|
2551
|
-
- Question: Is there a certificateCheck option available for pushing to a remote repository? [\#420](https://github.com/nodegit/nodegit/issues/420)
|
2552
|
-
|
2553
|
-
- Repository.open returns empty object [\#412](https://github.com/nodegit/nodegit/issues/412)
|
2554
|
-
|
2555
|
-
- Missing documentation for Tree.walk\(\) [\#411](https://github.com/nodegit/nodegit/issues/411)
|
2556
|
-
|
2557
|
-
- comparing from 0.1.4 to 0.2.0 [\#410](https://github.com/nodegit/nodegit/issues/410)
|
2558
|
-
|
2559
|
-
- Potential example issue in add-and-commit.js L45-48 [\#409](https://github.com/nodegit/nodegit/issues/409)
|
2560
|
-
|
2561
|
-
- failed to install on ubuntu 14.04 [\#408](https://github.com/nodegit/nodegit/issues/408)
|
2562
|
-
|
2563
|
-
- Return promises instead of nesting them [\#407](https://github.com/nodegit/nodegit/issues/407)
|
2564
|
-
|
2565
|
-
- segfault when cloning from private BitBucket repo [\#406](https://github.com/nodegit/nodegit/issues/406)
|
2566
|
-
|
2567
|
-
- Subtrees + custom error handling [\#400](https://github.com/nodegit/nodegit/issues/400)
|
2568
|
-
|
2569
|
-
- How to use nodegit in atom shell ..... [\#393](https://github.com/nodegit/nodegit/issues/393)
|
2570
|
-
|
2571
|
-
- Cannot create a new branch [\#391](https://github.com/nodegit/nodegit/issues/391)
|
2572
|
-
|
2573
|
-
- Remove fixappveyor from clone tests [\#385](https://github.com/nodegit/nodegit/issues/385)
|
2574
|
-
|
2575
|
-
- Commit isn't working [\#381](https://github.com/nodegit/nodegit/issues/381)
|
2576
|
-
|
2577
|
-
- Rename combyne folder to templates [\#378](https://github.com/nodegit/nodegit/issues/378)
|
2578
|
-
|
2579
|
-
- Cloning SSH repos seem to fail [\#372](https://github.com/nodegit/nodegit/issues/372)
|
2580
|
-
|
2581
|
-
- Commit.getDiff is backwards? [\#368](https://github.com/nodegit/nodegit/issues/368)
|
2582
|
-
|
2583
|
-
- List all files in repo \(git ls-tree\) [\#365](https://github.com/nodegit/nodegit/issues/365)
|
2584
|
-
|
2585
|
-
- Checking out a branch [\#361](https://github.com/nodegit/nodegit/issues/361)
|
2586
|
-
|
2587
|
-
- nodegit no longer builds in nwjs [\#360](https://github.com/nodegit/nodegit/issues/360)
|
2588
|
-
|
2589
|
-
- Module install/build fails on Heroku [\#332](https://github.com/nodegit/nodegit/issues/332)
|
2590
|
-
|
2591
|
-
- 2 Step Authentication [\#323](https://github.com/nodegit/nodegit/issues/323)
|
2592
|
-
|
2593
|
-
**Merged pull requests:**
|
2594
|
-
|
2595
|
-
- Rename `Annotated` to `AnnotatedCommit` [\#485](https://github.com/nodegit/nodegit/pull/485) ([johnhaley81](https://github.com/johnhaley81))
|
2596
|
-
|
2597
|
-
- Bump version to 0.3.0 [\#484](https://github.com/nodegit/nodegit/pull/484) ([johnhaley81](https://github.com/johnhaley81))
|
2598
|
-
|
2599
|
-
- Remove unneeded connect call from push example [\#483](https://github.com/nodegit/nodegit/pull/483) ([johnhaley81](https://github.com/johnhaley81))
|
2600
|
-
|
2601
|
-
- Update push example [\#481](https://github.com/nodegit/nodegit/pull/481) ([billt2006](https://github.com/billt2006))
|
2602
|
-
|
2603
|
-
- Fix trailing space in atom-shell windows install [\#480](https://github.com/nodegit/nodegit/pull/480) ([johnhaley81](https://github.com/johnhaley81))
|
2604
|
-
|
2605
|
-
- Fix atom-shell install on windows [\#479](https://github.com/nodegit/nodegit/pull/479) ([johnhaley81](https://github.com/johnhaley81))
|
2606
|
-
|
2607
|
-
- Updated API documentation link to work with NPM's markdown renderer. [\#477](https://github.com/nodegit/nodegit/pull/477) ([hughfdjackson](https://github.com/hughfdjackson))
|
2608
|
-
|
2609
|
-
- Add option to `fetch` to prune the remote afterwards [\#476](https://github.com/nodegit/nodegit/pull/476) ([johnhaley81](https://github.com/johnhaley81))
|
2610
|
-
|
2611
|
-
- Make index.addAll use status to increase performance [\#475](https://github.com/nodegit/nodegit/pull/475) ([maxkorp](https://github.com/maxkorp))
|
2612
|
-
|
2613
|
-
- Add defaults to `Remote.prototype.push` [\#474](https://github.com/nodegit/nodegit/pull/474) ([johnhaley81](https://github.com/johnhaley81))
|
2614
|
-
|
2615
|
-
- Fix `createCommitOnHead` [\#473](https://github.com/nodegit/nodegit/pull/473) ([johnhaley81](https://github.com/johnhaley81))
|
2616
|
-
|
2617
|
-
- Move guides around to remove subindexes [\#472](https://github.com/nodegit/nodegit/pull/472) ([orderedlist](https://github.com/orderedlist))
|
2618
|
-
|
2619
|
-
- Put `Remote.Push` on the remote prototype [\#470](https://github.com/nodegit/nodegit/pull/470) ([johnhaley81](https://github.com/johnhaley81))
|
2620
|
-
|
2621
|
-
- Change Repository.prototype.setHead to be asynchronous [\#469](https://github.com/nodegit/nodegit/pull/469) ([jrbalsano](https://github.com/jrbalsano))
|
2622
|
-
|
2623
|
-
- Test in Node 0.12 and io.js [\#468](https://github.com/nodegit/nodegit/pull/468) ([tbranyen](https://github.com/tbranyen))
|
2624
|
-
|
2625
|
-
- Add checkoutBranch convenience method [\#466](https://github.com/nodegit/nodegit/pull/466) ([johnhaley81](https://github.com/johnhaley81))
|
2626
|
-
|
2627
|
-
- Don't assign enums to \_\_proto\_\_ [\#464](https://github.com/nodegit/nodegit/pull/464) ([orderedlist](https://github.com/orderedlist))
|
2628
|
-
|
2629
|
-
- Fix push example [\#462](https://github.com/nodegit/nodegit/pull/462) ([johnhaley81](https://github.com/johnhaley81))
|
2630
|
-
|
2631
|
-
- Adds support for strarray in structs [\#461](https://github.com/nodegit/nodegit/pull/461) ([orderedlist](https://github.com/orderedlist))
|
2632
|
-
|
2633
|
-
- supress astyle warnings [\#460](https://github.com/nodegit/nodegit/pull/460) ([maxkorp](https://github.com/maxkorp))
|
2634
|
-
|
2635
|
-
- Template proto functions [\#458](https://github.com/nodegit/nodegit/pull/458) ([maxkorp](https://github.com/maxkorp))
|
2636
|
-
|
2637
|
-
- Remote push [\#457](https://github.com/nodegit/nodegit/pull/457) ([mattyclarkson](https://github.com/mattyclarkson))
|
2638
|
-
|
2639
|
-
- Include missing lib files in nodegit.js template [\#455](https://github.com/nodegit/nodegit/pull/455) ([orderedlist](https://github.com/orderedlist))
|
2640
|
-
|
2641
|
-
- StrArray memory fix [\#454](https://github.com/nodegit/nodegit/pull/454) ([mattyclarkson](https://github.com/mattyclarkson))
|
2642
|
-
|
2643
|
-
- Better cloning with NodeGit [\#453](https://github.com/nodegit/nodegit/pull/453) ([tbranyen](https://github.com/tbranyen))
|
2644
|
-
|
2645
|
-
- Add Diff.prototype.findSimilar [\#452](https://github.com/nodegit/nodegit/pull/452) ([orderedlist](https://github.com/orderedlist))
|
2646
|
-
|
2647
|
-
- Str array converter fix [\#451](https://github.com/nodegit/nodegit/pull/451) ([mattyclarkson](https://github.com/mattyclarkson))
|
2648
|
-
|
2649
|
-
- Default signature always returns valid signature [\#450](https://github.com/nodegit/nodegit/pull/450) ([johnhaley81](https://github.com/johnhaley81))
|
2650
|
-
|
2651
|
-
- Status.byIndex and StatusEntry [\#448](https://github.com/nodegit/nodegit/pull/448) ([orderedlist](https://github.com/orderedlist))
|
2652
|
-
|
2653
|
-
- Upgrade to nan 1.7.0 [\#446](https://github.com/nodegit/nodegit/pull/446) ([orderedlist](https://github.com/orderedlist))
|
2654
|
-
|
2655
|
-
- Added in an HTTP url for test [\#445](https://github.com/nodegit/nodegit/pull/445) ([tbranyen](https://github.com/tbranyen))
|
2656
|
-
|
2657
|
-
- Add examples [\#442](https://github.com/nodegit/nodegit/pull/442) ([johnhaley81](https://github.com/johnhaley81))
|
2658
|
-
|
2659
|
-
- hide callback payloads from javascript [\#441](https://github.com/nodegit/nodegit/pull/441) ([maxkorp](https://github.com/maxkorp))
|
2660
|
-
|
2661
|
-
- Fix transfer callback stats [\#440](https://github.com/nodegit/nodegit/pull/440) ([johnhaley81](https://github.com/johnhaley81))
|
2662
|
-
|
2663
|
-
- Automatically free repositories post clone [\#434](https://github.com/nodegit/nodegit/pull/434) ([tbranyen](https://github.com/tbranyen))
|
2664
|
-
|
2665
|
-
- Skip transfer progress test until it's fixed [\#433](https://github.com/nodegit/nodegit/pull/433) ([johnhaley81](https://github.com/johnhaley81))
|
2666
|
-
|
2667
|
-
- Change environment to default for upgraded service [\#428](https://github.com/nodegit/nodegit/pull/428) ([maxkorp](https://github.com/maxkorp))
|
2668
|
-
|
2669
|
-
- Make the `git\_remote\_push` function async [\#427](https://github.com/nodegit/nodegit/pull/427) ([johnhaley81](https://github.com/johnhaley81))
|
2670
|
-
|
2671
|
-
- Attempt to fix Windows file locking bug [\#425](https://github.com/nodegit/nodegit/pull/425) ([tbranyen](https://github.com/tbranyen))
|
2672
|
-
|
2673
|
-
- Fix seg faults [\#424](https://github.com/nodegit/nodegit/pull/424) ([johnhaley81](https://github.com/johnhaley81))
|
2674
|
-
|
2675
|
-
- Clean up the persisting of props [\#423](https://github.com/nodegit/nodegit/pull/423) ([johnhaley81](https://github.com/johnhaley81))
|
2676
|
-
|
2677
|
-
- Fix indexEntry construction and blobFromBuffer [\#422](https://github.com/nodegit/nodegit/pull/422) ([orderedlist](https://github.com/orderedlist))
|
2678
|
-
|
2679
|
-
- Allow for saving of props to an object [\#421](https://github.com/nodegit/nodegit/pull/421) ([johnhaley81](https://github.com/johnhaley81))
|
2680
|
-
|
2681
|
-
- Fixes segfault issue recorded in \#406 [\#419](https://github.com/nodegit/nodegit/pull/419) ([tbranyen](https://github.com/tbranyen))
|
2682
|
-
|
2683
|
-
- Update jsdoc and ignore some methods [\#418](https://github.com/nodegit/nodegit/pull/418) ([orderedlist](https://github.com/orderedlist))
|
2684
|
-
|
2685
|
-
- Converting Examples to Guides [\#417](https://github.com/nodegit/nodegit/pull/417) ([tbranyen](https://github.com/tbranyen))
|
2686
|
-
|
2687
|
-
- Fix callbacks with just return value and single payload [\#416](https://github.com/nodegit/nodegit/pull/416) ([johnhaley81](https://github.com/johnhaley81))
|
2688
|
-
|
2689
|
-
- Add `git\_reset` and `git\_reset\_default` [\#415](https://github.com/nodegit/nodegit/pull/415) ([johnhaley81](https://github.com/johnhaley81))
|
2690
|
-
|
2691
|
-
- Enable `git\_index\_remove\_all` and `git\_index\_update\_all` [\#414](https://github.com/nodegit/nodegit/pull/414) ([johnhaley81](https://github.com/johnhaley81))
|
2692
|
-
|
2693
|
-
- Added code for `git\_strarray` and enabled `git\_index\_add\_all` [\#413](https://github.com/nodegit/nodegit/pull/413) ([johnhaley81](https://github.com/johnhaley81))
|
2694
|
-
|
2695
|
-
- Tree Entry getBlob\(\) should also support the callback pattern. [\#405](https://github.com/nodegit/nodegit/pull/405) ([jeffwilcox](https://github.com/jeffwilcox))
|
2696
|
-
|
2697
|
-
- Adds in git\_checkout\_tree [\#402](https://github.com/nodegit/nodegit/pull/402) ([tbranyen](https://github.com/tbranyen))
|
2698
|
-
|
2699
|
-
- Made changes to the README [\#399](https://github.com/nodegit/nodegit/pull/399) ([tbranyen](https://github.com/tbranyen))
|
2700
|
-
|
2701
|
-
- Expose gc so all tests run in CI [\#398](https://github.com/nodegit/nodegit/pull/398) ([tbranyen](https://github.com/tbranyen))
|
2702
|
-
|
2703
|
-
- One more dependency update [\#397](https://github.com/nodegit/nodegit/pull/397) ([maxkorp](https://github.com/maxkorp))
|
2704
|
-
|
2705
|
-
- Update moar dependencies. [\#396](https://github.com/nodegit/nodegit/pull/396) ([maxkorp](https://github.com/maxkorp))
|
2706
|
-
|
2707
|
-
- Updated most dependencies to latest versions [\#394](https://github.com/nodegit/nodegit/pull/394) ([johnhaley81](https://github.com/johnhaley81))
|
2708
|
-
|
2709
|
-
- Index diffing [\#392](https://github.com/nodegit/nodegit/pull/392) ([orderedlist](https://github.com/orderedlist))
|
2710
|
-
|
2711
|
-
- Update to libgit2 v0.22.1 [\#390](https://github.com/nodegit/nodegit/pull/390) ([johnhaley81](https://github.com/johnhaley81))
|
2712
|
-
|
2713
|
-
- Fix test issues [\#388](https://github.com/nodegit/nodegit/pull/388) ([maxkorp](https://github.com/maxkorp))
|
2714
|
-
|
2715
|
-
- Fix building when a space is in the path [\#387](https://github.com/nodegit/nodegit/pull/387) ([billt2006](https://github.com/billt2006))
|
2716
|
-
|
2717
|
-
- General maintenance [\#386](https://github.com/nodegit/nodegit/pull/386) ([maxkorp](https://github.com/maxkorp))
|
2718
|
-
|
2719
|
-
- Add 2 convenience methods to revwalk [\#384](https://github.com/nodegit/nodegit/pull/384) ([maxkorp](https://github.com/maxkorp))
|
2720
|
-
|
2721
|
-
- Make all cred generators sync. [\#377](https://github.com/nodegit/nodegit/pull/377) ([maxkorp](https://github.com/maxkorp))
|
2722
|
-
|
2723
|
-
- Status and StatusList [\#374](https://github.com/nodegit/nodegit/pull/374) ([orderedlist](https://github.com/orderedlist))
|
2724
|
-
|
2725
|
-
- Fix the package scripts [\#373](https://github.com/nodegit/nodegit/pull/373) ([maxkorp](https://github.com/maxkorp))
|
2726
|
-
|
2727
|
-
- Removes Node 0.11 testing completely [\#371](https://github.com/nodegit/nodegit/pull/371) ([tbranyen](https://github.com/tbranyen))
|
2728
|
-
|
2729
|
-
- Allow null trees on Diff.treeToTree [\#370](https://github.com/nodegit/nodegit/pull/370) ([orderedlist](https://github.com/orderedlist))
|
2730
|
-
|
2731
|
-
- Atom shell support [\#369](https://github.com/nodegit/nodegit/pull/369) ([maxkorp](https://github.com/maxkorp))
|
2732
|
-
|
2733
|
-
- `Checkout.head` initializes options if none are passed [\#367](https://github.com/nodegit/nodegit/pull/367) ([johnhaley81](https://github.com/johnhaley81))
|
2734
|
-
|
2735
|
-
- INCLUDE\_UNTRACKED option not working for diffs [\#366](https://github.com/nodegit/nodegit/pull/366) ([kmctown](https://github.com/kmctown))
|
2736
|
-
|
2737
|
-
- Updated fs-extra to 0.15.0 [\#363](https://github.com/nodegit/nodegit/pull/363) ([johnhaley81](https://github.com/johnhaley81))
|
2738
|
-
|
2739
|
-
- Make remote\#download async [\#326](https://github.com/nodegit/nodegit/pull/326) ([tbranyen](https://github.com/tbranyen))
|
2740
|
-
|
2741
|
-
- Enable transfer progress [\#325](https://github.com/nodegit/nodegit/pull/325) ([tbranyen](https://github.com/tbranyen))
|
2742
|
-
|
2743
|
-
## <a name="v0-2-7" href="#v0-2-7">v0.2.7</a> [(2015-01-21)](https://github.com/nodegit/nodegit/tree/v0.2.7)
|
2744
|
-
|
2745
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.2.6...v0.2.7)
|
2746
|
-
|
2747
|
-
## <a name="v0-2-6" href="#v0-2-6">v0.2.6</a> [(2015-01-20)](https://github.com/nodegit/nodegit/tree/v0.2.6)
|
2748
|
-
|
2749
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.2.5...v0.2.6)
|
2750
|
-
|
2751
|
-
**Merged pull requests:**
|
2752
|
-
|
2753
|
-
- \[WIP\] Added in some diff functions from libgit2 [\#348](https://github.com/nodegit/nodegit/pull/348) ([johnhaley81](https://github.com/johnhaley81))
|
2754
|
-
|
2755
|
-
## <a name="v0-2-5" href="#v0-2-5">v0.2.5</a> [(2015-01-20)](https://github.com/nodegit/nodegit/tree/v0.2.5)
|
2756
|
-
|
2757
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.2.4...v0.2.5)
|
2758
|
-
|
2759
|
-
**Closed issues:**
|
2760
|
-
|
2761
|
-
- Lookup a non existent commit crashes the process. [\#353](https://github.com/nodegit/nodegit/issues/353)
|
2762
|
-
|
2763
|
-
- Why node-git uses 90% rotated hexagon? [\#344](https://github.com/nodegit/nodegit/issues/344)
|
2764
|
-
|
2765
|
-
- Needed pull example or help with code [\#341](https://github.com/nodegit/nodegit/issues/341)
|
2766
|
-
|
2767
|
-
- Can't require nodegit without building it explicitly [\#340](https://github.com/nodegit/nodegit/issues/340)
|
2768
|
-
|
2769
|
-
- Tracking down bugs [\#331](https://github.com/nodegit/nodegit/issues/331)
|
2770
|
-
|
2771
|
-
- Document possible values of CloneOptions [\#330](https://github.com/nodegit/nodegit/issues/330)
|
2772
|
-
|
2773
|
-
- Require generating error [\#329](https://github.com/nodegit/nodegit/issues/329)
|
2774
|
-
|
2775
|
-
- Failed getting Banner [\#328](https://github.com/nodegit/nodegit/issues/328)
|
2776
|
-
|
2777
|
-
- Documentation broken [\#327](https://github.com/nodegit/nodegit/issues/327)
|
2778
|
-
|
2779
|
-
- Fetch doesn't seem to work with https urls. [\#322](https://github.com/nodegit/nodegit/issues/322)
|
2780
|
-
|
2781
|
-
**Merged pull requests:**
|
2782
|
-
|
2783
|
-
- Refactor installation and publication [\#359](https://github.com/nodegit/nodegit/pull/359) ([maxkorp](https://github.com/maxkorp))
|
2784
|
-
|
2785
|
-
- Lint examples [\#358](https://github.com/nodegit/nodegit/pull/358) ([maxkorp](https://github.com/maxkorp))
|
2786
|
-
|
2787
|
-
- Commit.getParents working with merge commits [\#357](https://github.com/nodegit/nodegit/pull/357) ([bjornarg](https://github.com/bjornarg))
|
2788
|
-
|
2789
|
-
- Fixed a typo in the debug build instruction. [\#356](https://github.com/nodegit/nodegit/pull/356) ([mcollina](https://github.com/mcollina))
|
2790
|
-
|
2791
|
-
- \[WIP\] Attempt at fixing appveyor [\#352](https://github.com/nodegit/nodegit/pull/352) ([johnhaley81](https://github.com/johnhaley81))
|
2792
|
-
|
2793
|
-
- Updated to nan 1.5.0 and fixed build errors [\#351](https://github.com/nodegit/nodegit/pull/351) ([johnhaley81](https://github.com/johnhaley81))
|
2794
|
-
|
2795
|
-
- Added debug build instructions. [\#349](https://github.com/nodegit/nodegit/pull/349) ([mcollina](https://github.com/mcollina))
|
2796
|
-
|
2797
|
-
- Added checkout head method and tests [\#347](https://github.com/nodegit/nodegit/pull/347) ([johnhaley81](https://github.com/johnhaley81))
|
2798
|
-
|
2799
|
-
- bump devDependencies [\#346](https://github.com/nodegit/nodegit/pull/346) ([PeterDaveHello](https://github.com/PeterDaveHello))
|
2800
|
-
|
2801
|
-
- Update dependency node-pre-gyp to ~0.6 [\#345](https://github.com/nodegit/nodegit/pull/345) ([PeterDaveHello](https://github.com/PeterDaveHello))
|
2802
|
-
|
2803
|
-
- Update dependency fs-extra to ~0.14.0 [\#343](https://github.com/nodegit/nodegit/pull/343) ([PeterDaveHello](https://github.com/PeterDaveHello))
|
2804
|
-
|
2805
|
-
- Add Dependency badge in readme [\#342](https://github.com/nodegit/nodegit/pull/342) ([PeterDaveHello](https://github.com/PeterDaveHello))
|
2806
|
-
|
2807
|
-
- Fixed promise chain on install [\#339](https://github.com/nodegit/nodegit/pull/339) ([johnhaley81](https://github.com/johnhaley81))
|
2808
|
-
|
2809
|
-
- Do not double free during callbacks. [\#338](https://github.com/nodegit/nodegit/pull/338) ([mcollina](https://github.com/mcollina))
|
2810
|
-
|
2811
|
-
- Use svg instead of png to get better image quality [\#337](https://github.com/nodegit/nodegit/pull/337) ([PeterDaveHello](https://github.com/PeterDaveHello))
|
2812
|
-
|
2813
|
-
- Update to libgit 0.21.4 [\#336](https://github.com/nodegit/nodegit/pull/336) ([johnhaley81](https://github.com/johnhaley81))
|
2814
|
-
|
2815
|
-
- Fix issue 333 [\#334](https://github.com/nodegit/nodegit/pull/334) ([johnhaley81](https://github.com/johnhaley81))
|
2816
|
-
|
2817
|
-
- Update appveyor.yml to remove project id [\#324](https://github.com/nodegit/nodegit/pull/324) ([vladikoff](https://github.com/vladikoff))
|
2818
|
-
|
2819
|
-
- moving some deps to devdeps [\#320](https://github.com/nodegit/nodegit/pull/320) ([maxkorp](https://github.com/maxkorp))
|
2820
|
-
|
2821
|
-
## <a name="v0-2-4" href="#v0-2-4">v0.2.4</a> [(2014-12-05)](https://github.com/nodegit/nodegit/tree/v0.2.4)
|
2822
|
-
|
2823
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.2.3...v0.2.4)
|
2824
|
-
|
2825
|
-
**Closed issues:**
|
2826
|
-
|
2827
|
-
- Fetch does not really fetch [\#314](https://github.com/nodegit/nodegit/issues/314)
|
2828
|
-
|
2829
|
-
- Generate Missing Tests - Unable [\#313](https://github.com/nodegit/nodegit/issues/313)
|
2830
|
-
|
2831
|
-
- Unable to get reference for HEAD [\#311](https://github.com/nodegit/nodegit/issues/311)
|
2832
|
-
|
2833
|
-
- nodegit.Signature.now broken [\#306](https://github.com/nodegit/nodegit/issues/306)
|
2834
|
-
|
2835
|
-
- current branch [\#305](https://github.com/nodegit/nodegit/issues/305)
|
2836
|
-
|
2837
|
-
- Module fails to load [\#299](https://github.com/nodegit/nodegit/issues/299)
|
2838
|
-
|
2839
|
-
- How to list all tags? [\#298](https://github.com/nodegit/nodegit/issues/298)
|
2840
|
-
|
2841
|
-
- Building for ARM [\#292](https://github.com/nodegit/nodegit/issues/292)
|
2842
|
-
|
2843
|
-
- Next release checklist [\#256](https://github.com/nodegit/nodegit/issues/256)
|
2844
|
-
|
2845
|
-
**Merged pull requests:**
|
2846
|
-
|
2847
|
-
- Fixed fetch to be async and use callbacks [\#319](https://github.com/nodegit/nodegit/pull/319) ([johnhaley81](https://github.com/johnhaley81))
|
2848
|
-
|
2849
|
-
- Make contributing.md generic and add testing.md [\#318](https://github.com/nodegit/nodegit/pull/318) ([maxkorp](https://github.com/maxkorp))
|
2850
|
-
|
2851
|
-
- Fix repo init ext [\#317](https://github.com/nodegit/nodegit/pull/317) ([maxkorp](https://github.com/maxkorp))
|
2852
|
-
|
2853
|
-
- Fix 313 generate scripts [\#315](https://github.com/nodegit/nodegit/pull/315) ([xinUmbralis](https://github.com/xinUmbralis))
|
2854
|
-
|
2855
|
-
- Fix \#311 [\#312](https://github.com/nodegit/nodegit/pull/312) ([johnhaley81](https://github.com/johnhaley81))
|
2856
|
-
|
2857
|
-
- Fix publishing [\#310](https://github.com/nodegit/nodegit/pull/310) ([maxkorp](https://github.com/maxkorp))
|
2858
|
-
|
2859
|
-
- detect node-webkit and build with nw-gyp [\#309](https://github.com/nodegit/nodegit/pull/309) ([maxkorp](https://github.com/maxkorp))
|
2860
|
-
|
2861
|
-
- fix signature.now and add signature tests [\#308](https://github.com/nodegit/nodegit/pull/308) ([maxkorp](https://github.com/maxkorp))
|
2862
|
-
|
2863
|
-
- move nodegit.js to a template to remove idefs dependency [\#303](https://github.com/nodegit/nodegit/pull/303) ([maxkorp](https://github.com/maxkorp))
|
2864
|
-
|
2865
|
-
- Fixed tag list and added a test for it [\#300](https://github.com/nodegit/nodegit/pull/300) ([johnhaley81](https://github.com/johnhaley81))
|
2866
|
-
|
2867
|
-
- Convenience methods [\#297](https://github.com/nodegit/nodegit/pull/297) ([johnhaley81](https://github.com/johnhaley81))
|
2868
|
-
|
2869
|
-
- Clean up the contents of the generate folder [\#296](https://github.com/nodegit/nodegit/pull/296) ([maxkorp](https://github.com/maxkorp))
|
2870
|
-
|
2871
|
-
- Styling [\#295](https://github.com/nodegit/nodegit/pull/295) ([maxkorp](https://github.com/maxkorp))
|
2872
|
-
|
2873
|
-
## <a name="v0-2-3" href="#v0-2-3">v0.2.3</a> [(2014-11-25)](https://github.com/nodegit/nodegit/tree/v0.2.3)
|
2874
|
-
|
2875
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.2.2...v0.2.3)
|
2876
|
-
|
2877
|
-
## <a name="v0-2-2" href="#v0-2-2">v0.2.2</a> [(2014-11-25)](https://github.com/nodegit/nodegit/tree/v0.2.2)
|
2878
|
-
|
2879
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.2.1...v0.2.2)
|
2880
|
-
|
2881
|
-
**Merged pull requests:**
|
2882
|
-
|
2883
|
-
- Moved some dependencies around to help the generate not fail [\#294](https://github.com/nodegit/nodegit/pull/294) ([johnhaley81](https://github.com/johnhaley81))
|
2884
|
-
|
2885
|
-
## <a name="v0-2-1" href="#v0-2-1">v0.2.1</a> [(2014-11-25)](https://github.com/nodegit/nodegit/tree/v0.2.1)
|
2886
|
-
|
2887
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.2.0...v0.2.1)
|
2888
|
-
|
2889
|
-
**Merged pull requests:**
|
2890
|
-
|
2891
|
-
- Rewrite installer [\#293](https://github.com/nodegit/nodegit/pull/293) ([johnhaley81](https://github.com/johnhaley81))
|
2892
|
-
|
2893
|
-
## <a name="v0-2-0" href="#v0-2-0">v0.2.0</a> [(2014-11-25)](https://github.com/nodegit/nodegit/tree/v0.2.0)
|
2894
|
-
|
2895
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.1.4...v0.2.0)
|
2896
|
-
|
2897
|
-
**Closed issues:**
|
2898
|
-
|
2899
|
-
- Find some way to automatically generate a list of missing tests. [\#272](https://github.com/nodegit/nodegit/issues/272)
|
2900
|
-
|
2901
|
-
- libgit2 creation methods have name collisions with internal V8 functions [\#271](https://github.com/nodegit/nodegit/issues/271)
|
2902
|
-
|
2903
|
-
- Enums are still being manually assigned in javascript [\#268](https://github.com/nodegit/nodegit/issues/268)
|
2904
|
-
|
2905
|
-
- We're using too many promise libraries [\#264](https://github.com/nodegit/nodegit/issues/264)
|
2906
|
-
|
2907
|
-
- unable to resolve symbolic references [\#262](https://github.com/nodegit/nodegit/issues/262)
|
2908
|
-
|
2909
|
-
- nodegit installation falls back when Python install dir contains spaces [\#261](https://github.com/nodegit/nodegit/issues/261)
|
2910
|
-
|
2911
|
-
- Probe features [\#245](https://github.com/nodegit/nodegit/issues/245)
|
2912
|
-
|
2913
|
-
- require\('path'\).Repo.open\(...\) returns {} [\#241](https://github.com/nodegit/nodegit/issues/241)
|
2914
|
-
|
2915
|
-
- RevWalk malloc error [\#239](https://github.com/nodegit/nodegit/issues/239)
|
2916
|
-
|
2917
|
-
- OS X tests in Travis-CI [\#237](https://github.com/nodegit/nodegit/issues/237)
|
2918
|
-
|
2919
|
-
- Fix RevWalk tests [\#236](https://github.com/nodegit/nodegit/issues/236)
|
2920
|
-
|
2921
|
-
- Simple clone fails. [\#231](https://github.com/nodegit/nodegit/issues/231)
|
2922
|
-
|
2923
|
-
- Create templates for remaining src and include files [\#230](https://github.com/nodegit/nodegit/issues/230)
|
2924
|
-
|
2925
|
-
- Error: SSL is not supported by this copy of libgit2. [\#228](https://github.com/nodegit/nodegit/issues/228)
|
2926
|
-
|
2927
|
-
- error while install nodegit latest version 0.1.4 [\#225](https://github.com/nodegit/nodegit/issues/225)
|
2928
|
-
|
2929
|
-
- error while install nodegit latest version 0.1.4 [\#224](https://github.com/nodegit/nodegit/issues/224)
|
2930
|
-
|
2931
|
-
- Did getReferences dissapear? [\#223](https://github.com/nodegit/nodegit/issues/223)
|
2932
|
-
|
2933
|
-
- Again for \#147 [\#218](https://github.com/nodegit/nodegit/issues/218)
|
2934
|
-
|
2935
|
-
- Update documentation on nodegit.org [\#217](https://github.com/nodegit/nodegit/issues/217)
|
2936
|
-
|
2937
|
-
- Stable = bump to 1.0 [\#215](https://github.com/nodegit/nodegit/issues/215)
|
2938
|
-
|
2939
|
-
- Example on nodegit.com homepage is invalid [\#211](https://github.com/nodegit/nodegit/issues/211)
|
2940
|
-
|
2941
|
-
- tree.diffWorkDir deprecated? [\#209](https://github.com/nodegit/nodegit/issues/209)
|
2942
|
-
|
2943
|
-
- Abort on getRemotes [\#201](https://github.com/nodegit/nodegit/issues/201)
|
2944
|
-
|
2945
|
-
- Generic Logging/Tracing mechanism [\#199](https://github.com/nodegit/nodegit/issues/199)
|
2946
|
-
|
2947
|
-
- Repo\#openIndex missing [\#197](https://github.com/nodegit/nodegit/issues/197)
|
2948
|
-
|
2949
|
-
- Documentation on http://www.nodegit.org/ out of date [\#196](https://github.com/nodegit/nodegit/issues/196)
|
2950
|
-
|
2951
|
-
- Remove extern "C" with 0.21 bump [\#193](https://github.com/nodegit/nodegit/issues/193)
|
2952
|
-
|
2953
|
-
- CloneOptions documentation lacking [\#192](https://github.com/nodegit/nodegit/issues/192)
|
2954
|
-
|
2955
|
-
- Webpage examples are not up to date [\#190](https://github.com/nodegit/nodegit/issues/190)
|
2956
|
-
|
2957
|
-
- Automatically generate structs from types array [\#187](https://github.com/nodegit/nodegit/issues/187)
|
2958
|
-
|
2959
|
-
- Error: connect ETIMEDOUT during install [\#179](https://github.com/nodegit/nodegit/issues/179)
|
2960
|
-
|
2961
|
-
- TODO [\#177](https://github.com/nodegit/nodegit/issues/177)
|
2962
|
-
|
2963
|
-
- Notes [\#176](https://github.com/nodegit/nodegit/issues/176)
|
2964
|
-
|
2965
|
-
- Integration improvements. [\#171](https://github.com/nodegit/nodegit/issues/171)
|
2966
|
-
|
2967
|
-
**Merged pull requests:**
|
2968
|
-
|
2969
|
-
- add history.md and update readme [\#291](https://github.com/nodegit/nodegit/pull/291) ([maxkorp](https://github.com/maxkorp))
|
2970
|
-
|
2971
|
-
- Added tests for commit [\#290](https://github.com/nodegit/nodegit/pull/290) ([nkt](https://github.com/nkt))
|
2972
|
-
|
2973
|
-
- Added editor config [\#289](https://github.com/nodegit/nodegit/pull/289) ([nkt](https://github.com/nkt))
|
2974
|
-
|
2975
|
-
- \[WIP\] Push example [\#288](https://github.com/nodegit/nodegit/pull/288) ([johnhaley81](https://github.com/johnhaley81))
|
2976
|
-
|
2977
|
-
- \[WIP\] Better installation flow [\#287](https://github.com/nodegit/nodegit/pull/287) ([tbranyen](https://github.com/tbranyen))
|
2978
|
-
|
2979
|
-
- Merge methods and tests and examples [\#286](https://github.com/nodegit/nodegit/pull/286) ([maxkorp](https://github.com/maxkorp))
|
2980
|
-
|
2981
|
-
- Add details-for-tree-entry [\#285](https://github.com/nodegit/nodegit/pull/285) ([johnhaley81](https://github.com/johnhaley81))
|
2982
|
-
|
2983
|
-
- Add repo init example [\#284](https://github.com/nodegit/nodegit/pull/284) ([maxkorp](https://github.com/maxkorp))
|
2984
|
-
|
2985
|
-
- update add-and-commit example to include new paths [\#283](https://github.com/nodegit/nodegit/pull/283) ([maxkorp](https://github.com/maxkorp))
|
2986
|
-
|
2987
|
-
- General cleanup [\#282](https://github.com/nodegit/nodegit/pull/282) ([maxkorp](https://github.com/maxkorp))
|
2988
|
-
|
2989
|
-
- Added osx for testing on Travis [\#281](https://github.com/nodegit/nodegit/pull/281) ([johnhaley81](https://github.com/johnhaley81))
|
2990
|
-
|
2991
|
-
- Added " around python path to help fix issues with spaces in path [\#280](https://github.com/nodegit/nodegit/pull/280) ([johnhaley81](https://github.com/johnhaley81))
|
2992
|
-
|
2993
|
-
- Tests for branch class [\#279](https://github.com/nodegit/nodegit/pull/279) ([johnhaley81](https://github.com/johnhaley81))
|
2994
|
-
|
2995
|
-
- Exposes the NodeGit Promise implementation [\#278](https://github.com/nodegit/nodegit/pull/278) ([tbranyen](https://github.com/tbranyen))
|
2996
|
-
|
2997
|
-
- \[WIP\] Update examples [\#276](https://github.com/nodegit/nodegit/pull/276) ([johnhaley81](https://github.com/johnhaley81))
|
2998
|
-
|
2999
|
-
- Added script to generate missing tests [\#274](https://github.com/nodegit/nodegit/pull/274) ([johnhaley81](https://github.com/johnhaley81))
|
3000
|
-
|
3001
|
-
- Rename new [\#273](https://github.com/nodegit/nodegit/pull/273) ([maxkorp](https://github.com/maxkorp))
|
3002
|
-
|
3003
|
-
- MSBUILD doesn't allow an array of size 0 [\#270](https://github.com/nodegit/nodegit/pull/270) ([johnhaley81](https://github.com/johnhaley81))
|
3004
|
-
|
3005
|
-
- \[WIP\] generate enum definitions [\#269](https://github.com/nodegit/nodegit/pull/269) ([maxkorp](https://github.com/maxkorp))
|
3006
|
-
|
3007
|
-
- add Refs.nameToId and test [\#267](https://github.com/nodegit/nodegit/pull/267) ([maxkorp](https://github.com/maxkorp))
|
3008
|
-
|
3009
|
-
- voidcheck string pointers and reenable attr test [\#266](https://github.com/nodegit/nodegit/pull/266) ([maxkorp](https://github.com/maxkorp))
|
3010
|
-
|
3011
|
-
- require --documentation flag to include text in idefs [\#265](https://github.com/nodegit/nodegit/pull/265) ([maxkorp](https://github.com/maxkorp))
|
3012
|
-
|
3013
|
-
- Added ability for callbacks to poll promises for fulfillment value [\#260](https://github.com/nodegit/nodegit/pull/260) ([johnhaley81](https://github.com/johnhaley81))
|
3014
|
-
|
3015
|
-
- Generate nodegit from libgit2 docs and refactor descriptor [\#259](https://github.com/nodegit/nodegit/pull/259) ([johnhaley81](https://github.com/johnhaley81))
|
3016
|
-
|
3017
|
-
- Fix revwalk tests [\#258](https://github.com/nodegit/nodegit/pull/258) ([maxkorp](https://github.com/maxkorp))
|
3018
|
-
|
3019
|
-
- Bump to latest libgit2 [\#257](https://github.com/nodegit/nodegit/pull/257) ([tbranyen](https://github.com/tbranyen))
|
3020
|
-
|
3021
|
-
- Use Start-Process to start pageant.exe [\#254](https://github.com/nodegit/nodegit/pull/254) ([FeodorFitsner](https://github.com/FeodorFitsner))
|
3022
|
-
|
3023
|
-
- Adds in a broken unit test for \#109 [\#252](https://github.com/nodegit/nodegit/pull/252) ([tbranyen](https://github.com/tbranyen))
|
3024
|
-
|
3025
|
-
- Added more git\_cred methods [\#251](https://github.com/nodegit/nodegit/pull/251) ([johnhaley81](https://github.com/johnhaley81))
|
3026
|
-
|
3027
|
-
- Refactor classes [\#250](https://github.com/nodegit/nodegit/pull/250) ([maxkorp](https://github.com/maxkorp))
|
3028
|
-
|
3029
|
-
- Update Readme, to improve example code [\#248](https://github.com/nodegit/nodegit/pull/248) ([nmn](https://github.com/nmn))
|
3030
|
-
|
3031
|
-
- \[TEST\] Appveyor agent [\#247](https://github.com/nodegit/nodegit/pull/247) ([tbranyen](https://github.com/tbranyen))
|
3032
|
-
|
3033
|
-
- Refactor classes [\#246](https://github.com/nodegit/nodegit/pull/246) ([maxkorp](https://github.com/maxkorp))
|
3034
|
-
|
3035
|
-
- Buf methods [\#244](https://github.com/nodegit/nodegit/pull/244) ([tbranyen](https://github.com/tbranyen))
|
3036
|
-
|
3037
|
-
- Branch methods [\#243](https://github.com/nodegit/nodegit/pull/243) ([tbranyen](https://github.com/tbranyen))
|
3038
|
-
|
3039
|
-
- Blame methods [\#242](https://github.com/nodegit/nodegit/pull/242) ([tbranyen](https://github.com/tbranyen))
|
3040
|
-
|
3041
|
-
- Add revwalk.hide and revwalk.simplifyFirstParent [\#235](https://github.com/nodegit/nodegit/pull/235) ([tbranyen](https://github.com/tbranyen))
|
3042
|
-
|
3043
|
-
- Add revwalk.hide and revwalk.simplifyFirstParent [\#234](https://github.com/nodegit/nodegit/pull/234) ([orderedlist](https://github.com/orderedlist))
|
3044
|
-
|
3045
|
-
- Moved wrapper/copy out of include/src [\#233](https://github.com/nodegit/nodegit/pull/233) ([johnhaley81](https://github.com/johnhaley81))
|
3046
|
-
|
3047
|
-
- Removed ejs dependency [\#232](https://github.com/nodegit/nodegit/pull/232) ([johnhaley81](https://github.com/johnhaley81))
|
3048
|
-
|
3049
|
-
- Bump to latest libgit2 [\#229](https://github.com/nodegit/nodegit/pull/229) ([tbranyen](https://github.com/tbranyen))
|
3050
|
-
|
3051
|
-
- WIP: Refactor source generation templates from EJS to Combyne [\#227](https://github.com/nodegit/nodegit/pull/227) ([tbranyen](https://github.com/tbranyen))
|
3052
|
-
|
3053
|
-
- Test fixes [\#226](https://github.com/nodegit/nodegit/pull/226) ([johnhaley81](https://github.com/johnhaley81))
|
3054
|
-
|
3055
|
-
- Added new methods in checkout and repository [\#207](https://github.com/nodegit/nodegit/pull/207) ([tbranyen](https://github.com/tbranyen))
|
3056
|
-
|
3057
|
-
- Added additional remote methods [\#206](https://github.com/nodegit/nodegit/pull/206) ([tbranyen](https://github.com/tbranyen))
|
3058
|
-
|
3059
|
-
- Added git\_remote\_url and git\_remote\_load [\#205](https://github.com/nodegit/nodegit/pull/205) ([tbranyen](https://github.com/tbranyen))
|
3060
|
-
|
3061
|
-
- Add in remote listing support and test [\#204](https://github.com/nodegit/nodegit/pull/204) ([tbranyen](https://github.com/tbranyen))
|
3062
|
-
|
3063
|
-
- Attr methods [\#203](https://github.com/nodegit/nodegit/pull/203) ([tbranyen](https://github.com/tbranyen))
|
3064
|
-
|
3065
|
-
- Support latest libgit2 v0.21.0 [\#200](https://github.com/nodegit/nodegit/pull/200) ([tbranyen](https://github.com/tbranyen))
|
3066
|
-
|
3067
|
-
- Add Repo.openIndex [\#198](https://github.com/nodegit/nodegit/pull/198) ([tbranyen](https://github.com/tbranyen))
|
3068
|
-
|
3069
|
-
- Clone methods [\#195](https://github.com/nodegit/nodegit/pull/195) ([tbranyen](https://github.com/tbranyen))
|
3070
|
-
|
3071
|
-
- Remove all unused vendor directories [\#194](https://github.com/nodegit/nodegit/pull/194) ([tbranyen](https://github.com/tbranyen))
|
3072
|
-
|
3073
|
-
- \[WIP\] Mocha integration [\#189](https://github.com/nodegit/nodegit/pull/189) ([tbranyen](https://github.com/tbranyen))
|
3074
|
-
|
3075
|
-
- Auto gen structs [\#188](https://github.com/nodegit/nodegit/pull/188) ([tbranyen](https://github.com/tbranyen))
|
3076
|
-
|
3077
|
-
- Add in support for repository init ext [\#186](https://github.com/nodegit/nodegit/pull/186) ([tbranyen](https://github.com/tbranyen))
|
3078
|
-
|
3079
|
-
- moved libgit2 gyp to separate dir [\#184](https://github.com/nodegit/nodegit/pull/184) ([deepak1556](https://github.com/deepak1556))
|
3080
|
-
|
3081
|
-
- Remove all generated source code. [\#181](https://github.com/nodegit/nodegit/pull/181) ([tbranyen](https://github.com/tbranyen))
|
3082
|
-
|
3083
|
-
- Better installation flow for developing. [\#180](https://github.com/nodegit/nodegit/pull/180) ([tbranyen](https://github.com/tbranyen))
|
3084
|
-
|
3085
|
-
## <a name="v0-1-4" href="#v0-1-4">v0.1.4</a> [(2014-06-13)](https://github.com/nodegit/nodegit/tree/v0.1.4)
|
3086
|
-
|
3087
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.1.3...v0.1.4)
|
3088
|
-
|
3089
|
-
**Closed issues:**
|
3090
|
-
|
3091
|
-
- Redis Backend [\#173](https://github.com/nodegit/nodegit/issues/173)
|
3092
|
-
|
3093
|
-
- using "Branch" object results in "undefined" error =\> branch.cc missing from binding.gyp? [\#166](https://github.com/nodegit/nodegit/issues/166)
|
3094
|
-
|
3095
|
-
- Windows: Failure on install [\#158](https://github.com/nodegit/nodegit/issues/158)
|
3096
|
-
|
3097
|
-
- Can't install v0.1.2 under OSX [\#155](https://github.com/nodegit/nodegit/issues/155)
|
3098
|
-
|
3099
|
-
**Merged pull requests:**
|
3100
|
-
|
3101
|
-
- \[WIP\] Prebuilt binaries. [\#178](https://github.com/nodegit/nodegit/pull/178) ([tbranyen](https://github.com/tbranyen))
|
3102
|
-
|
3103
|
-
- NodeJS v0.11.13 compatibility [\#175](https://github.com/nodegit/nodegit/pull/175) ([3y3](https://github.com/3y3))
|
3104
|
-
|
3105
|
-
- Fixed: "ReferenceError: error is not defined" [\#169](https://github.com/nodegit/nodegit/pull/169) ([danyshaanan](https://github.com/danyshaanan))
|
3106
|
-
|
3107
|
-
## <a name="v0-1-3" href="#v0-1-3">v0.1.3</a> [(2014-05-02)](https://github.com/nodegit/nodegit/tree/v0.1.3)
|
3108
|
-
|
3109
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.1.2...v0.1.3)
|
3110
|
-
|
3111
|
-
**Merged pull requests:**
|
3112
|
-
|
3113
|
-
- Fix erroneous OS detection for installation in OS X. [\#156](https://github.com/nodegit/nodegit/pull/156) ([tbranyen](https://github.com/tbranyen))
|
3114
|
-
|
3115
|
-
## <a name="v0-1-2" href="#v0-1-2">v0.1.2</a> [(2014-05-02)](https://github.com/nodegit/nodegit/tree/v0.1.2)
|
3116
|
-
|
3117
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.1.1...v0.1.2)
|
3118
|
-
|
3119
|
-
**Closed issues:**
|
3120
|
-
|
3121
|
-
- gyp ERR cannot find -lgit2 [\#150](https://github.com/nodegit/nodegit/issues/150)
|
3122
|
-
|
3123
|
-
- Read file from git server [\#145](https://github.com/nodegit/nodegit/issues/145)
|
3124
|
-
|
3125
|
-
- "emulate git log" example error [\#144](https://github.com/nodegit/nodegit/issues/144)
|
3126
|
-
|
3127
|
-
- repo.workdir\(\) crashes \(SIGSEGV\) on a bare repo [\#128](https://github.com/nodegit/nodegit/issues/128)
|
3128
|
-
|
3129
|
-
- How to create Branch using the API? [\#124](https://github.com/nodegit/nodegit/issues/124)
|
3130
|
-
|
3131
|
-
- 'npm run-script gen && npm install' on Ubuntu 13.04 [\#122](https://github.com/nodegit/nodegit/issues/122)
|
3132
|
-
|
3133
|
-
- Error while installing Nodegit 0.1.0 [\#120](https://github.com/nodegit/nodegit/issues/120)
|
3134
|
-
|
3135
|
-
- Question: How would I implement the equivalent of `git status`? [\#117](https://github.com/nodegit/nodegit/issues/117)
|
3136
|
-
|
3137
|
-
- Sync versions of all the methods [\#115](https://github.com/nodegit/nodegit/issues/115)
|
3138
|
-
|
3139
|
-
- Tick version \# [\#107](https://github.com/nodegit/nodegit/issues/107)
|
3140
|
-
|
3141
|
-
- Windows support [\#71](https://github.com/nodegit/nodegit/issues/71)
|
3142
|
-
|
3143
|
-
- Create test for history with merge commits [\#64](https://github.com/nodegit/nodegit/issues/64)
|
3144
|
-
|
3145
|
-
**Merged pull requests:**
|
3146
|
-
|
3147
|
-
- Fixed OSX Directions [\#143](https://github.com/nodegit/nodegit/pull/143) ([nickpoorman](https://github.com/nickpoorman))
|
3148
|
-
|
3149
|
-
- Add ubuntu lib dependencies to the readme [\#141](https://github.com/nodegit/nodegit/pull/141) ([bigthyme](https://github.com/bigthyme))
|
3150
|
-
|
3151
|
-
- WIP New installer. [\#140](https://github.com/nodegit/nodegit/pull/140) ([tbranyen](https://github.com/tbranyen))
|
3152
|
-
|
3153
|
-
## <a name="v0-1-1" href="#v0-1-1">v0.1.1</a> [(2014-03-23)](https://github.com/nodegit/nodegit/tree/v0.1.1)
|
3154
|
-
|
3155
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.1.0...v0.1.1)
|
3156
|
-
|
3157
|
-
**Closed issues:**
|
3158
|
-
|
3159
|
-
- Misleading Readme [\#138](https://github.com/nodegit/nodegit/issues/138)
|
3160
|
-
|
3161
|
-
- Cannot find module './build/Debug/nodegit' [\#137](https://github.com/nodegit/nodegit/issues/137)
|
3162
|
-
|
3163
|
-
- Support for Node 0.11+ [\#134](https://github.com/nodegit/nodegit/issues/134)
|
3164
|
-
|
3165
|
-
- installer cant seem to find python [\#126](https://github.com/nodegit/nodegit/issues/126)
|
3166
|
-
|
3167
|
-
- Cannot build when parent directory contains space\(s\) [\#123](https://github.com/nodegit/nodegit/issues/123)
|
3168
|
-
|
3169
|
-
- question: how cvv8 is used? [\#118](https://github.com/nodegit/nodegit/issues/118)
|
3170
|
-
|
3171
|
-
- question: gen.js does not generate wrapper.h and wrapper.cc [\#116](https://github.com/nodegit/nodegit/issues/116)
|
3172
|
-
|
3173
|
-
- tree.diffIndex: pointer being freed was not allocated [\#112](https://github.com/nodegit/nodegit/issues/112)
|
3174
|
-
|
3175
|
-
- Use as a dependency of another node project? [\#110](https://github.com/nodegit/nodegit/issues/110)
|
3176
|
-
|
3177
|
-
- Segmentation faults with concurrent access? [\#104](https://github.com/nodegit/nodegit/issues/104)
|
3178
|
-
|
3179
|
-
- tree.diffWorkDir [\#101](https://github.com/nodegit/nodegit/issues/101)
|
3180
|
-
|
3181
|
-
- getReference passes unexpected object into callback [\#98](https://github.com/nodegit/nodegit/issues/98)
|
3182
|
-
|
3183
|
-
- index.removeByPath stops execution [\#97](https://github.com/nodegit/nodegit/issues/97)
|
3184
|
-
|
3185
|
-
- Missing example: commit to a local repo \(i.e. git add, git commit\) [\#96](https://github.com/nodegit/nodegit/issues/96)
|
3186
|
-
|
3187
|
-
- Get contents of index entry? [\#94](https://github.com/nodegit/nodegit/issues/94)
|
3188
|
-
|
3189
|
-
- Failure to Build nodegit at Commit 0aa9a3c120 on OS X 10.6.8 [\#92](https://github.com/nodegit/nodegit/issues/92)
|
3190
|
-
|
3191
|
-
- TypeError: Cannot call method 'clone' of undefined [\#91](https://github.com/nodegit/nodegit/issues/91)
|
3192
|
-
|
3193
|
-
- missing cstring [\#88](https://github.com/nodegit/nodegit/issues/88)
|
3194
|
-
|
3195
|
-
- Installing fails - can't find vendor/libgit2/build [\#80](https://github.com/nodegit/nodegit/issues/80)
|
3196
|
-
|
3197
|
-
- Improving JavaScript API [\#73](https://github.com/nodegit/nodegit/issues/73)
|
3198
|
-
|
3199
|
-
- Using code-generation to generate [\#70](https://github.com/nodegit/nodegit/issues/70)
|
3200
|
-
|
3201
|
-
**Merged pull requests:**
|
3202
|
-
|
3203
|
-
- Fix and improve testing. [\#139](https://github.com/nodegit/nodegit/pull/139) ([tbranyen](https://github.com/tbranyen))
|
3204
|
-
|
3205
|
-
- Support for Node 0.11+ [\#135](https://github.com/nodegit/nodegit/pull/135) ([pierreinglebert](https://github.com/pierreinglebert))
|
3206
|
-
|
3207
|
-
- Added git\_diff\_delta\_dup to git\_diff\_get\_patch to fix a memory issue whe... [\#113](https://github.com/nodegit/nodegit/pull/113) ([kmctown](https://github.com/kmctown))
|
3208
|
-
|
3209
|
-
- Try requiring build/Debug/nodegit if build/Release/nodegit wasn't found. [\#108](https://github.com/nodegit/nodegit/pull/108) ([papandreou](https://github.com/papandreou))
|
3210
|
-
|
3211
|
-
- Updated v0.18.0.json to make the index and DiffOptions arguments in Inde... [\#106](https://github.com/nodegit/nodegit/pull/106) ([kmctown](https://github.com/kmctown))
|
3212
|
-
|
3213
|
-
- Duplicate git\_error struct before passing it on [\#105](https://github.com/nodegit/nodegit/pull/105) ([papandreou](https://github.com/papandreou))
|
3214
|
-
|
3215
|
-
- Changed v0.18.0.json so diffWorkDir DiffOptions argument is optional. Ad... [\#103](https://github.com/nodegit/nodegit/pull/103) ([kmctown](https://github.com/kmctown))
|
3216
|
-
|
3217
|
-
- Reviewd and fixed examples [\#102](https://github.com/nodegit/nodegit/pull/102) ([micha149](https://github.com/micha149))
|
3218
|
-
|
3219
|
-
- cmake 2.8 is required to build nodegit [\#100](https://github.com/nodegit/nodegit/pull/100) ([dcolens](https://github.com/dcolens))
|
3220
|
-
|
3221
|
-
- new add-and-commit.js and remove-and-commit.js examples [\#99](https://github.com/nodegit/nodegit/pull/99) ([dcolens](https://github.com/dcolens))
|
3222
|
-
|
3223
|
-
- Add missing fields to index entry [\#95](https://github.com/nodegit/nodegit/pull/95) ([papandreou](https://github.com/papandreou))
|
3224
|
-
|
3225
|
-
- Made the tests pass and making each test self-contained [\#90](https://github.com/nodegit/nodegit/pull/90) ([FrozenCow](https://github.com/FrozenCow))
|
3226
|
-
|
3227
|
-
- Fixed compile error: memcpy not defined [\#89](https://github.com/nodegit/nodegit/pull/89) ([FrozenCow](https://github.com/FrozenCow))
|
3228
|
-
|
3229
|
-
- Add system dependencies for OSX install [\#82](https://github.com/nodegit/nodegit/pull/82) ([philschatz](https://github.com/philschatz))
|
3230
|
-
|
3231
|
-
## <a name="v0-1-0" href="#v0-1-0">v0.1.0</a> [(2013-09-07)](https://github.com/nodegit/nodegit/tree/v0.1.0)
|
3232
|
-
|
3233
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.0.79...v0.1.0)
|
3234
|
-
|
3235
|
-
**Closed issues:**
|
3236
|
-
|
3237
|
-
- The api in README is incorrect [\#87](https://github.com/nodegit/nodegit/issues/87)
|
3238
|
-
|
3239
|
-
- message\_encoding in documentation for Repo.createCommit [\#86](https://github.com/nodegit/nodegit/issues/86)
|
3240
|
-
|
3241
|
-
- How to retrieve blob with binary content? [\#83](https://github.com/nodegit/nodegit/issues/83)
|
3242
|
-
|
3243
|
-
- Incorrect commit oid's when aggregated from commit.history\(\) [\#81](https://github.com/nodegit/nodegit/issues/81)
|
3244
|
-
|
3245
|
-
- How do you list branches in repo? [\#76](https://github.com/nodegit/nodegit/issues/76)
|
3246
|
-
|
3247
|
-
- License? [\#74](https://github.com/nodegit/nodegit/issues/74)
|
3248
|
-
|
3249
|
-
- Nested walks scatter memory and cause SEGFAULTS [\#72](https://github.com/nodegit/nodegit/issues/72)
|
3250
|
-
|
3251
|
-
- feature request: Provide fileMode / getType method on tree entries [\#67](https://github.com/nodegit/nodegit/issues/67)
|
3252
|
-
|
3253
|
-
- Document DiffList [\#66](https://github.com/nodegit/nodegit/issues/66)
|
3254
|
-
|
3255
|
-
- Procedure for moving development to nodegit/nodegit [\#55](https://github.com/nodegit/nodegit/issues/55)
|
3256
|
-
|
3257
|
-
- Cannot install on OSX [\#49](https://github.com/nodegit/nodegit/issues/49)
|
3258
|
-
|
3259
|
-
**Merged pull requests:**
|
3260
|
-
|
3261
|
-
- Codegen [\#79](https://github.com/nodegit/nodegit/pull/79) ([nkallen](https://github.com/nkallen))
|
3262
|
-
|
3263
|
-
- Updated LICENSE to MIT [\#75](https://github.com/nodegit/nodegit/pull/75) ([tbranyen](https://github.com/tbranyen))
|
3264
|
-
|
3265
|
-
## <a name="v0-0-79" href="#v0-0-79">v0.0.79</a> [(2013-04-05)](https://github.com/nodegit/nodegit/tree/v0.0.79)
|
3266
|
-
|
3267
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.0.778...v0.0.79)
|
3268
|
-
|
3269
|
-
**Closed issues:**
|
3270
|
-
|
3271
|
-
- Clarify commit.history documentation [\#63](https://github.com/nodegit/nodegit/issues/63)
|
3272
|
-
|
3273
|
-
- Python error on installing nodegit 0.0.77 [\#59](https://github.com/nodegit/nodegit/issues/59)
|
3274
|
-
|
3275
|
-
## <a name="v0-0-778" href="#v0-0-778">v0.0.778</a> [(2013-03-26)](https://github.com/nodegit/nodegit/tree/v0.0.778)
|
3276
|
-
|
3277
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.0.77...v0.0.778)
|
3278
|
-
|
3279
|
-
**Merged pull requests:**
|
3280
|
-
|
3281
|
-
- See issue \#59 [\#60](https://github.com/nodegit/nodegit/pull/60) ([dctr](https://github.com/dctr))
|
3282
|
-
|
3283
|
-
## <a name="v0-0-77" href="#v0-0-77">v0.0.77</a> [(2013-03-24)](https://github.com/nodegit/nodegit/tree/v0.0.77)
|
3284
|
-
|
3285
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.0.76...v0.0.77)
|
3286
|
-
|
3287
|
-
## <a name="v0-0-76" href="#v0-0-76">v0.0.76</a> [(2013-03-24)](https://github.com/nodegit/nodegit/tree/v0.0.76)
|
3288
|
-
|
3289
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.0.75...v0.0.76)
|
3290
|
-
|
3291
|
-
## <a name="v0-0-75" href="#v0-0-75">v0.0.75</a> [(2013-03-24)](https://github.com/nodegit/nodegit/tree/v0.0.75)
|
3292
|
-
|
3293
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.0.74...v0.0.75)
|
3294
|
-
|
3295
|
-
**Closed issues:**
|
3296
|
-
|
3297
|
-
- incomplete error reporting [\#57](https://github.com/nodegit/nodegit/issues/57)
|
3298
|
-
|
3299
|
-
- Segmentation Fault in raw-commit.js [\#56](https://github.com/nodegit/nodegit/issues/56)
|
3300
|
-
|
3301
|
-
- Another Mac OSX install fail [\#53](https://github.com/nodegit/nodegit/issues/53)
|
3302
|
-
|
3303
|
-
- unit tests broken in travis-ci [\#52](https://github.com/nodegit/nodegit/issues/52)
|
3304
|
-
|
3305
|
-
- "Image not found" with require\("nodegit"\) on Mac OS X [\#51](https://github.com/nodegit/nodegit/issues/51)
|
3306
|
-
|
3307
|
-
- Cannot Compile on 0.8.\* [\#47](https://github.com/nodegit/nodegit/issues/47)
|
3308
|
-
|
3309
|
-
- No suitable image found. [\#46](https://github.com/nodegit/nodegit/issues/46)
|
3310
|
-
|
3311
|
-
- Fails to require module on latest node version [\#43](https://github.com/nodegit/nodegit/issues/43)
|
3312
|
-
|
3313
|
-
- Compilation error node 0.6.1 [\#32](https://github.com/nodegit/nodegit/issues/32)
|
3314
|
-
|
3315
|
-
- commit.history work like slice [\#17](https://github.com/nodegit/nodegit/issues/17)
|
3316
|
-
|
3317
|
-
- Sync and Async methods [\#16](https://github.com/nodegit/nodegit/issues/16)
|
3318
|
-
|
3319
|
-
- Comment all code methods [\#1](https://github.com/nodegit/nodegit/issues/1)
|
3320
|
-
|
3321
|
-
## <a name="v0-0-74" href="#v0-0-74">v0.0.74</a> [(2013-03-21)](https://github.com/nodegit/nodegit/tree/v0.0.74)
|
3322
|
-
|
3323
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.0.73...v0.0.74)
|
3324
|
-
|
3325
|
-
## <a name="v0-0-73" href="#v0-0-73">v0.0.73</a> [(2013-03-21)](https://github.com/nodegit/nodegit/tree/v0.0.73)
|
3326
|
-
|
3327
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.0.72...v0.0.73)
|
3328
|
-
|
3329
|
-
**Closed issues:**
|
3330
|
-
|
3331
|
-
- pass through python flag to node-gyp [\#54](https://github.com/nodegit/nodegit/issues/54)
|
3332
|
-
|
3333
|
-
- update package.json [\#28](https://github.com/nodegit/nodegit/issues/28)
|
3334
|
-
|
3335
|
-
- Rewrite Notes [\#27](https://github.com/nodegit/nodegit/issues/27)
|
3336
|
-
|
3337
|
-
- Tree each method is synchronous [\#15](https://github.com/nodegit/nodegit/issues/15)
|
3338
|
-
|
3339
|
-
## <a name="v0-0-72" href="#v0-0-72">v0.0.72</a> [(2013-03-06)](https://github.com/nodegit/nodegit/tree/v0.0.72)
|
3340
|
-
|
3341
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.0.71...v0.0.72)
|
3342
|
-
|
3343
|
-
## <a name="v0-0-71" href="#v0-0-71">v0.0.71</a> [(2013-03-06)](https://github.com/nodegit/nodegit/tree/v0.0.71)
|
3344
|
-
|
3345
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.0.6...v0.0.71)
|
3346
|
-
|
3347
|
-
**Closed issues:**
|
3348
|
-
|
3349
|
-
- Unable to load shared library [\#39](https://github.com/nodegit/nodegit/issues/39)
|
3350
|
-
|
3351
|
-
- Expand Convenience Unit Tests [\#38](https://github.com/nodegit/nodegit/issues/38)
|
3352
|
-
|
3353
|
-
- repo has no method 'branch' [\#35](https://github.com/nodegit/nodegit/issues/35)
|
3354
|
-
|
3355
|
-
- update for node 0.5.9 [\#29](https://github.com/nodegit/nodegit/issues/29)
|
3356
|
-
|
3357
|
-
**Merged pull requests:**
|
3358
|
-
|
3359
|
-
- Converted from eio\_custom to uv\_queue\_work [\#48](https://github.com/nodegit/nodegit/pull/48) ([faceleg](https://github.com/faceleg))
|
3360
|
-
|
3361
|
-
- Fix Load-Order Bug [\#44](https://github.com/nodegit/nodegit/pull/44) ([fatlotus](https://github.com/fatlotus))
|
3362
|
-
|
3363
|
-
- Update documented commands needed to run tests [\#42](https://github.com/nodegit/nodegit/pull/42) ([shama](https://github.com/shama))
|
3364
|
-
|
3365
|
-
- Fix typo in README.md [\#41](https://github.com/nodegit/nodegit/pull/41) ([Skomski](https://github.com/Skomski))
|
3366
|
-
|
3367
|
-
- Issue 35: repo has no method 'branch' [\#40](https://github.com/nodegit/nodegit/pull/40) ([cholin](https://github.com/cholin))
|
3368
|
-
|
3369
|
-
- Refactor [\#37](https://github.com/nodegit/nodegit/pull/37) ([mmalecki](https://github.com/mmalecki))
|
3370
|
-
|
3371
|
-
## <a name="v0-0-6" href="#v0-0-6">v0.0.6</a> [(2011-12-19)](https://github.com/nodegit/nodegit/tree/v0.0.6)
|
3372
|
-
|
3373
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.0.4...v0.0.6)
|
3374
|
-
|
3375
|
-
**Closed issues:**
|
3376
|
-
|
3377
|
-
- commit event with undefined commit [\#26](https://github.com/nodegit/nodegit/issues/26)
|
3378
|
-
|
3379
|
-
- Convenience methods are not convenience! [\#24](https://github.com/nodegit/nodegit/issues/24)
|
3380
|
-
|
3381
|
-
**Merged pull requests:**
|
3382
|
-
|
3383
|
-
- Node 0.6x fixes [\#34](https://github.com/nodegit/nodegit/pull/34) ([moneal](https://github.com/moneal))
|
3384
|
-
|
3385
|
-
## <a name="v0-0-4" href="#v0-0-4">v0.0.4</a> [(2011-05-14)](https://github.com/nodegit/nodegit/tree/v0.0.4)
|
3386
|
-
|
3387
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.0.3...v0.0.4)
|
3388
|
-
|
3389
|
-
**Closed issues:**
|
3390
|
-
|
3391
|
-
- repo.branch fails on empty repo [\#22](https://github.com/nodegit/nodegit/issues/22)
|
3392
|
-
|
3393
|
-
- example/convenience-repo.js errors [\#21](https://github.com/nodegit/nodegit/issues/21)
|
3394
|
-
|
3395
|
-
- Branch history each method is asynchronous [\#11](https://github.com/nodegit/nodegit/issues/11)
|
3396
|
-
|
3397
|
-
## <a name="v0-0-3" href="#v0-0-3">v0.0.3</a> [(2011-04-13)](https://github.com/nodegit/nodegit/tree/v0.0.3)
|
3398
|
-
|
3399
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.0.2...v0.0.3)
|
3400
|
-
|
3401
|
-
**Closed issues:**
|
3402
|
-
|
3403
|
-
- error handling [\#18](https://github.com/nodegit/nodegit/issues/18)
|
3404
|
-
|
3405
|
-
- Windows link issue [\#12](https://github.com/nodegit/nodegit/issues/12)
|
3406
|
-
|
3407
|
-
## <a name="v0-0-2" href="#v0-0-2">v0.0.2</a> [(2011-03-14)](https://github.com/nodegit/nodegit/tree/v0.0.2)
|
3408
|
-
|
3409
|
-
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.0.1...v0.0.2)
|
3410
|
-
|
3411
|
-
## <a name="v0-0-1" href="#v0-0-1">v0.0.1</a> [(2011-03-10)](https://github.com/nodegit/nodegit/tree/v0.0.1)
|
3412
|
-
|
3413
|
-
|
3414
|
-
|
3415
|
-
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
|