pj-nodegit 0.27.0 → 0.28.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1738) hide show
  1. package/.github/workflows/tests.yml +83 -15
  2. package/binding.gyp +23 -15
  3. package/dist/blob.js +0 -22
  4. package/dist/config.js +24 -0
  5. package/dist/credential.js +1 -1
  6. package/dist/deprecated/structs/ApplyOptions.js +5 -0
  7. package/dist/deprecated/structs/BlameOptions.js +8 -0
  8. package/dist/deprecated/structs/BlobFilterOptions.js +5 -0
  9. package/dist/deprecated/structs/CheckoutOptions.js +10 -0
  10. package/dist/deprecated/structs/CherrypickOptions.js +7 -0
  11. package/dist/deprecated/structs/CloneOptions.js +8 -0
  12. package/dist/deprecated/structs/DescribeFormatOptions.js +6 -0
  13. package/dist/deprecated/structs/DescribeOptions.js +8 -0
  14. package/dist/deprecated/structs/DiffFindOptions.js +10 -0
  15. package/dist/deprecated/structs/DiffOptions.js +10 -0
  16. package/dist/deprecated/structs/FetchOptions.js +9 -0
  17. package/dist/deprecated/structs/MergeFileInput.js +6 -0
  18. package/dist/deprecated/structs/MergeFileOptions.js +7 -0
  19. package/dist/deprecated/structs/MergeOptions.js +10 -0
  20. package/dist/deprecated/structs/ProxyOptions.js +5 -0
  21. package/dist/deprecated/structs/PushOptions.js +7 -0
  22. package/dist/deprecated/structs/RebaseOptions.js +8 -0
  23. package/dist/deprecated/structs/RemoteCreateOptions.js +5 -0
  24. package/dist/deprecated/structs/RepositoryInitOptions.js +6 -0
  25. package/dist/deprecated/structs/RevertOptions.js +7 -0
  26. package/dist/deprecated/structs/StashApplyOptions.js +6 -0
  27. package/dist/deprecated/structs/StatusOptions.js +6 -0
  28. package/dist/deprecated/structs/SubmoduleUpdateOptions.js +7 -0
  29. package/dist/diff.js +0 -46
  30. package/dist/enums.js +20 -6
  31. package/dist/filter_registry.js +0 -3
  32. package/dist/libgit2.js +2 -2
  33. package/dist/merge.js +0 -6
  34. package/dist/nodegit.js +253 -13
  35. package/dist/rebase.js +11 -53
  36. package/dist/remote.js +0 -204
  37. package/dist/repository.js +1 -4
  38. package/dist/reset.js +0 -25
  39. package/dist/revparse.js +19 -0
  40. package/dist/stash.js +0 -44
  41. package/dist/status.js +1 -3
  42. package/dist/submodule.js +0 -38
  43. package/include/annotated_commit.h +62 -22
  44. package/include/apply.h +56 -8
  45. package/include/apply_options.h +70 -71
  46. package/include/async_baton.h +65 -84
  47. package/include/async_worker.h +91 -0
  48. package/include/attr.h +37 -12
  49. package/include/blame.h +40 -14
  50. package/include/blame_hunk.h +18 -6
  51. package/include/blame_options.h +26 -44
  52. package/include/blob.h +106 -38
  53. package/include/blob_filter_options.h +27 -23
  54. package/include/branch.h +117 -41
  55. package/include/branch_iterator.h +18 -6
  56. package/include/buf.h +18 -6
  57. package/include/callback_wrapper.h +12 -17
  58. package/include/cert.h +18 -6
  59. package/include/cert_hostkey.h +21 -6
  60. package/include/cert_x509.h +18 -6
  61. package/include/checkout.h +48 -16
  62. package/include/checkout_options.h +110 -176
  63. package/include/checkout_perfdata.h +18 -6
  64. package/include/cherrypick.h +37 -12
  65. package/include/cherrypick_options.h +26 -32
  66. package/include/cleanup_handle.h +21 -0
  67. package/include/clone.h +26 -8
  68. package/include/clone_options.h +26 -50
  69. package/include/commit.h +161 -58
  70. package/include/config.h +227 -82
  71. package/include/config_entry.h +18 -6
  72. package/include/config_iterator.h +51 -18
  73. package/include/configmap.h +18 -6
  74. package/include/configurable_class_wrapper.h +59 -0
  75. package/include/context.h +90 -0
  76. package/include/convenient_hunk.h +19 -5
  77. package/include/convenient_patch.h +20 -5
  78. package/include/credential.h +40 -14
  79. package/include/describe_format_options.h +26 -30
  80. package/include/describe_options.h +26 -38
  81. package/include/describe_result.h +18 -6
  82. package/include/diff.h +190 -70
  83. package/include/diff_binary.h +18 -6
  84. package/include/diff_binary_file.h +18 -6
  85. package/include/diff_delta.h +18 -6
  86. package/include/diff_file.h +18 -6
  87. package/include/diff_find_options.h +26 -42
  88. package/include/diff_hunk.h +18 -6
  89. package/include/diff_line.h +18 -6
  90. package/include/diff_options.h +82 -120
  91. package/include/diff_patchid_options.h +27 -19
  92. package/include/diff_perfdata.h +18 -6
  93. package/include/diff_stats.h +29 -10
  94. package/include/error.h +18 -6
  95. package/include/fetch.h +15 -4
  96. package/include/fetch_options.h +26 -45
  97. package/include/filter.h +115 -142
  98. package/include/filter_list.h +62 -22
  99. package/include/filter_registry.h +24 -11
  100. package/include/filter_source.h +29 -10
  101. package/include/graph.h +37 -12
  102. package/include/hashsig.h +40 -14
  103. package/include/ignore.h +26 -8
  104. package/include/index.h +282 -99
  105. package/include/index_conflict_iterator.h +29 -10
  106. package/include/index_entry.h +74 -43
  107. package/include/index_iterator.h +29 -10
  108. package/include/index_name_entry.h +40 -14
  109. package/include/index_reuc_entry.h +62 -22
  110. package/include/index_time.h +59 -32
  111. package/include/indexer_progress.h +18 -6
  112. package/include/libgit2.h +15 -4
  113. package/include/lock_master.h +146 -165
  114. package/include/mailmap.h +84 -30
  115. package/include/merge.h +103 -36
  116. package/include/merge_file_input.h +26 -34
  117. package/include/merge_file_options.h +26 -42
  118. package/include/merge_file_result.h +18 -6
  119. package/include/merge_options.h +26 -46
  120. package/include/nodegit.h +0 -4
  121. package/include/nodegit_wrapper.h +35 -6
  122. package/include/note.h +117 -41
  123. package/include/note_iterator.h +18 -6
  124. package/include/object.h +84 -30
  125. package/include/odb.h +95 -34
  126. package/include/odb_object.h +18 -6
  127. package/include/oid.h +18 -6
  128. package/include/oid_shorten.h +18 -6
  129. package/include/oidarray.h +18 -6
  130. package/include/packbuilder.h +62 -22
  131. package/include/patch.h +77 -27
  132. package/include/path.h +15 -4
  133. package/include/pathspec.h +62 -22
  134. package/include/pathspec_match_list.h +18 -6
  135. package/include/promise_completion.h +7 -11
  136. package/include/proxy.h +15 -4
  137. package/include/proxy_options.h +85 -94
  138. package/include/push_options.h +26 -37
  139. package/include/push_update.h +18 -6
  140. package/include/rebase.h +73 -26
  141. package/include/rebase_operation.h +18 -6
  142. package/include/rebase_options.h +55 -76
  143. package/include/refdb.h +29 -10
  144. package/include/reference.h +175 -63
  145. package/include/reflog.h +40 -14
  146. package/include/reflog_entry.h +18 -6
  147. package/include/refspec.h +29 -10
  148. package/include/remote.h +280 -91
  149. package/include/remote_callbacks.h +201 -186
  150. package/include/remote_create_options.h +27 -35
  151. package/include/remote_head.h +18 -6
  152. package/include/repository.h +324 -105
  153. package/include/repository_init_options.h +26 -46
  154. package/include/reset.h +48 -16
  155. package/include/revert.h +37 -12
  156. package/include/revert_options.h +26 -32
  157. package/include/revparse.h +26 -8
  158. package/include/revspec.h +86 -0
  159. package/include/revwalk.h +62 -22
  160. package/include/signature.h +40 -14
  161. package/include/stash.h +81 -27
  162. package/include/stash_apply_options.h +49 -57
  163. package/include/status.h +70 -22
  164. package/include/status_entry.h +18 -6
  165. package/include/status_list.h +29 -10
  166. package/include/status_options.h +26 -31
  167. package/include/str_array_converter.h +2 -0
  168. package/include/strarray.h +19 -7
  169. package/include/submodule.h +216 -77
  170. package/include/submodule_update_options.h +26 -32
  171. package/include/tag.h +153 -55
  172. package/include/thread_pool.h +56 -51
  173. package/include/time.h +18 -6
  174. package/include/trace.h +15 -4
  175. package/include/tracker_wrap.h +76 -0
  176. package/include/transaction.h +29 -10
  177. package/include/transport.h +18 -6
  178. package/include/tree.h +73 -26
  179. package/include/tree_entry.h +29 -10
  180. package/include/tree_update.h +27 -32
  181. package/include/treebuilder.h +40 -14
  182. package/include/v8_helpers.h +10 -0
  183. package/include/worker_pool.h +180 -0
  184. package/include/worktree.h +119 -22
  185. package/include/worktree_add_options.h +33 -33
  186. package/include/worktree_prune_options.h +33 -33
  187. package/include/wrapper.h +2 -3
  188. package/include/writestream.h +18 -6
  189. package/lifecycleScripts/install.js +7 -1
  190. package/package.json +8 -9
  191. package/src/annotated_commit.cc +250 -258
  192. package/src/apply.cc +215 -108
  193. package/src/apply_options.cc +183 -218
  194. package/src/async_baton.cc +76 -2
  195. package/src/async_worker.cc +43 -0
  196. package/src/attr.cc +127 -147
  197. package/src/blame.cc +149 -154
  198. package/src/blame_hunk.cc +43 -43
  199. package/src/blame_options.cc +128 -164
  200. package/src/blob.cc +496 -517
  201. package/src/blob_filter_options.cc +49 -65
  202. package/src/branch.cc +577 -557
  203. package/src/branch_iterator.cc +6 -6
  204. package/src/buf.cc +35 -35
  205. package/src/cert.cc +10 -10
  206. package/src/cert_hostkey.cc +78 -30
  207. package/src/cert_x509.cc +20 -20
  208. package/src/checkout.cc +196 -205
  209. package/src/checkout_options.cc +435 -674
  210. package/src/checkout_perfdata.cc +18 -18
  211. package/src/cherrypick.cc +142 -150
  212. package/src/cherrypick_options.cc +83 -119
  213. package/src/cleanup_handle.cc +6 -0
  214. package/src/clone.cc +74 -75
  215. package/src/clone_options.cc +108 -194
  216. package/src/commit.cc +856 -910
  217. package/src/config.cc +997 -1034
  218. package/src/config_entry.cc +20 -20
  219. package/src/config_iterator.cc +173 -182
  220. package/src/configmap.cc +19 -19
  221. package/src/context.cc +84 -0
  222. package/src/convenient_hunk.cc +48 -22
  223. package/src/convenient_patch.cc +65 -35
  224. package/src/credential.cc +153 -161
  225. package/src/describe_format_options.cc +74 -104
  226. package/src/describe_options.cc +96 -134
  227. package/src/describe_result.cc +6 -6
  228. package/src/diff.cc +911 -920
  229. package/src/diff_binary.cc +20 -20
  230. package/src/diff_binary_file.cc +23 -23
  231. package/src/diff_delta.cc +32 -32
  232. package/src/diff_file.cc +32 -32
  233. package/src/diff_find_options.cc +104 -140
  234. package/src/diff_hunk.cc +31 -31
  235. package/src/diff_line.cc +35 -35
  236. package/src/diff_options.cc +310 -384
  237. package/src/diff_patchid_options.cc +37 -49
  238. package/src/diff_perfdata.cc +14 -14
  239. package/src/diff_stats.cc +77 -80
  240. package/src/error.cc +30 -30
  241. package/src/fetch.cc +2 -2
  242. package/src/fetch_options.cc +142 -181
  243. package/src/filter.cc +336 -495
  244. package/src/filter_list.cc +239 -260
  245. package/src/filter_registry.cc +77 -26
  246. package/src/filter_source.cc +65 -48
  247. package/src/graph.cc +127 -125
  248. package/src/hashsig.cc +120 -128
  249. package/src/ignore.cc +65 -70
  250. package/src/index.cc +1216 -1250
  251. package/src/index_conflict_iterator.cc +71 -72
  252. package/src/index_entry.cc +308 -96
  253. package/src/index_iterator.cc +65 -66
  254. package/src/index_name_entry.cc +132 -144
  255. package/src/index_reuc_entry.cc +258 -276
  256. package/src/index_time.cc +121 -45
  257. package/src/indexer_progress.cc +34 -34
  258. package/src/libgit2.cc +23 -23
  259. package/src/lock_master.cc +190 -197
  260. package/src/mailmap.cc +329 -349
  261. package/src/merge.cc +591 -595
  262. package/src/merge_file_input.cc +88 -128
  263. package/src/merge_file_options.cc +113 -169
  264. package/src/merge_file_result.cc +30 -30
  265. package/src/merge_options.cc +118 -166
  266. package/src/nodegit.cc +158 -229
  267. package/src/nodegit_wrapper.cc +71 -8
  268. package/src/note.cc +527 -552
  269. package/src/note_iterator.cc +6 -6
  270. package/src/object.cc +380 -386
  271. package/src/odb.cc +391 -408
  272. package/src/odb_object.cc +28 -28
  273. package/src/oid.cc +59 -59
  274. package/src/oid_shorten.cc +17 -17
  275. package/src/oidarray.cc +15 -15
  276. package/src/packbuilder.cc +250 -254
  277. package/src/patch.cc +418 -347
  278. package/src/path.cc +7 -7
  279. package/src/pathspec.cc +229 -249
  280. package/src/pathspec_match_list.cc +34 -34
  281. package/src/promise_completion.cc +32 -15
  282. package/src/proxy.cc +2 -2
  283. package/src/proxy_options.cc +203 -254
  284. package/src/push_options.cc +119 -146
  285. package/src/push_update.cc +26 -26
  286. package/src/rebase.cc +370 -378
  287. package/src/rebase_operation.cc +20 -20
  288. package/src/rebase_options.cc +172 -242
  289. package/src/refdb.cc +64 -65
  290. package/src/reference.cc +973 -962
  291. package/src/reference_counter.cc +2 -2
  292. package/src/reflog.cc +138 -142
  293. package/src/reflog_entry.cc +30 -30
  294. package/src/refspec.cc +98 -101
  295. package/src/remote.cc +1592 -1456
  296. package/src/remote_callbacks.cc +671 -544
  297. package/src/remote_create_options.cc +91 -140
  298. package/src/remote_head.cc +30 -30
  299. package/src/repository.cc +3248 -1216
  300. package/src/repository_init_options.cc +138 -208
  301. package/src/reset.cc +185 -204
  302. package/src/revert.cc +142 -152
  303. package/src/revert_options.cc +83 -119
  304. package/src/revparse.cc +62 -65
  305. package/src/revspec.cc +130 -0
  306. package/src/revwalk.cc +255 -201
  307. package/src/signature.cc +139 -141
  308. package/src/stash.cc +294 -312
  309. package/src/stash_apply_options.cc +133 -179
  310. package/src/status.cc +199 -197
  311. package/src/status_entry.cc +20 -20
  312. package/src/status_list.cc +85 -85
  313. package/src/status_options.cc +96 -111
  314. package/src/str_array_converter.cc +16 -0
  315. package/src/strarray.cc +20 -20
  316. package/src/submodule.cc +990 -1036
  317. package/src/submodule_update_options.cc +83 -119
  318. package/src/tag.cc +772 -763
  319. package/src/thread_pool.cc +748 -87
  320. package/src/time.cc +19 -19
  321. package/src/trace.cc +2 -2
  322. package/src/tracker_wrap.cc +238 -0
  323. package/src/transaction.cc +89 -90
  324. package/src/transport.cc +6 -6
  325. package/src/tree.cc +349 -346
  326. package/src/tree_entry.cc +87 -88
  327. package/src/tree_update.cc +83 -117
  328. package/src/treebuilder.cc +137 -141
  329. package/src/v8_helpers.cc +19 -0
  330. package/src/worktree.cc +539 -328
  331. package/src/worktree_add_options.cc +59 -51
  332. package/src/worktree_prune_options.cc +59 -51
  333. package/src/wrapper.cc +10 -10
  334. package/src/writestream.cc +6 -6
  335. package/utils/README.md +1 -13
  336. package/utils/acquireOpenSSL.js +196 -62
  337. package/utils/build-openssl.bat +13 -0
  338. package/utils/execPromise.js +9 -2
  339. package/utils/getElectronOpenSSLRoot.js +10 -0
  340. package/vendor/libgit2/.gitattributes +1 -0
  341. package/vendor/libgit2/.github/workflows/codeql.yml +36 -0
  342. package/vendor/libgit2/.github/workflows/main.yml +98 -34
  343. package/vendor/libgit2/.github/workflows/nightly.yml +292 -0
  344. package/vendor/libgit2/CMakeLists.txt +6 -6
  345. package/vendor/libgit2/README.md +29 -5
  346. package/vendor/libgit2/{azure-pipelines → ci}/build.sh +12 -1
  347. package/vendor/libgit2/{azure-pipelines → ci}/coverity.sh +0 -0
  348. package/vendor/libgit2/{azure-pipelines → ci}/docker/bionic +4 -1
  349. package/vendor/libgit2/{azure-pipelines → ci}/docker/docurium +2 -1
  350. package/vendor/libgit2/{azure-pipelines → ci}/docker/entrypoint.sh +0 -0
  351. package/vendor/libgit2/{azure-pipelines → ci}/docker/focal +5 -4
  352. package/vendor/libgit2/{azure-pipelines → ci}/docker/xenial +2 -1
  353. package/vendor/libgit2/{azure-pipelines → ci}/getcontainer.sh +17 -11
  354. package/vendor/libgit2/{azure-pipelines → ci}/setup-mingw.sh +0 -0
  355. package/vendor/libgit2/{azure-pipelines → ci}/setup-osx.sh +0 -0
  356. package/vendor/libgit2/{azure-pipelines → ci}/test.sh +0 -0
  357. package/vendor/libgit2/deps/chromium-zlib/CMakeLists.txt +101 -0
  358. package/vendor/libgit2/deps/ntlmclient/CMakeLists.txt +1 -0
  359. package/vendor/libgit2/deps/ntlmclient/compat.h +0 -27
  360. package/vendor/libgit2/deps/ntlmclient/crypt_openssl.c +1 -1
  361. package/vendor/libgit2/deps/ntlmclient/ntlm.c +5 -5
  362. package/vendor/libgit2/deps/ntlmclient/util.c +15 -1
  363. package/vendor/libgit2/deps/ntlmclient/util.h +2 -1
  364. package/vendor/libgit2/deps/pcre/LICENCE +93 -0
  365. package/vendor/libgit2/deps/pcre/pcre.h +2 -2
  366. package/vendor/libgit2/deps/pcre/pcre_compile.c +29 -17
  367. package/vendor/libgit2/deps/pcre/pcre_jit_compile.c +4 -4
  368. package/vendor/libgit2/deps/pcre/pcreposix.c +2 -3
  369. package/vendor/libgit2/examples/blame.c +1 -1
  370. package/vendor/libgit2/examples/checkout.c +1 -1
  371. package/vendor/libgit2/examples/common.h +1 -1
  372. package/vendor/libgit2/examples/general.c +0 -5
  373. package/vendor/libgit2/examples/log.c +3 -3
  374. package/vendor/libgit2/examples/rev-list.c +1 -1
  375. package/vendor/libgit2/examples/rev-parse.c +3 -3
  376. package/vendor/libgit2/examples/tag.c +2 -2
  377. package/vendor/libgit2/fuzzers/commit_graph_fuzzer.c +80 -0
  378. package/vendor/libgit2/fuzzers/corpora/commit_graph/005682ce1cb5b20c20fccf4be5dbd47ca399e53e +0 -0
  379. package/vendor/libgit2/fuzzers/corpora/commit_graph/00574fc29fd1323e93d18d625cde80d3ea20e8cc +0 -0
  380. package/vendor/libgit2/fuzzers/corpora/commit_graph/00916ec21ddbd3c622bde6e4dc824250176b9e88 +0 -0
  381. package/vendor/libgit2/fuzzers/corpora/commit_graph/00b6dde4b8d5e68a5ec40d88c39134cf2f1f8bc3 +0 -0
  382. package/vendor/libgit2/fuzzers/corpora/commit_graph/020f0e77e42d8b3810019050f4c5ceadd205b37c +0 -0
  383. package/vendor/libgit2/fuzzers/corpora/commit_graph/02739c05abc1715fac1ce995b532e482abc8d4dc +0 -0
  384. package/vendor/libgit2/fuzzers/corpora/commit_graph/02a276faa5dc8c7df5b82a57ab6cd195a13e4ae0 +0 -0
  385. package/vendor/libgit2/fuzzers/corpora/commit_graph/02de15987d68a97db3d9fd964cfd785bcbd54d3a +0 -0
  386. package/vendor/libgit2/fuzzers/corpora/commit_graph/02e106f97a91b1d3aef4dd2d31368ae5077bd42b +0 -0
  387. package/vendor/libgit2/fuzzers/corpora/commit_graph/038555bcb4cc2daf764840f79ebce4023bdb7670 +0 -0
  388. package/vendor/libgit2/fuzzers/corpora/commit_graph/04c159a04b0732e04ac4c59ed3356860af8dffce +0 -0
  389. package/vendor/libgit2/fuzzers/corpora/commit_graph/0560ec993882ffbd8d46dcab0ed430089c4f2aa1 +0 -0
  390. package/vendor/libgit2/fuzzers/corpora/commit_graph/059b3aab3fde6b4c9404aff83fed638596f594bb +0 -0
  391. package/vendor/libgit2/fuzzers/corpora/commit_graph/06168e726aa0260f520165be4ea0c88244831049 +0 -0
  392. package/vendor/libgit2/fuzzers/corpora/commit_graph/066d1ec700a526b97009cedd0305b6a47242faba +0 -0
  393. package/vendor/libgit2/fuzzers/corpora/commit_graph/086a5f8cbfa9f058b5c938a6eb724c9e4c5f84f3 +0 -0
  394. package/vendor/libgit2/fuzzers/corpora/commit_graph/089313c698f3e351433e9a45af2ace1d85b9673e +0 -0
  395. package/vendor/libgit2/fuzzers/corpora/commit_graph/092eb973a771fa14cf0b567d65bd2c99130f543e +0 -0
  396. package/vendor/libgit2/fuzzers/corpora/commit_graph/094b8cd1aa3e40b1f9ff83680892d52e246df0f8 +0 -0
  397. package/vendor/libgit2/fuzzers/corpora/commit_graph/0ce990c9c2ec121b8c78ba2bdf84679e04c0bdae +0 -0
  398. package/vendor/libgit2/fuzzers/corpora/commit_graph/0dd0770c34fcf6b1f13219450190616d344db021 +0 -0
  399. package/vendor/libgit2/fuzzers/corpora/commit_graph/0e2b2e6a32733b8a625bc7e812e2ea508d69a5e4 +0 -0
  400. package/vendor/libgit2/fuzzers/corpora/commit_graph/0e8d0bd07c543d708aecaca377106492b7a74fa3 +0 -0
  401. package/vendor/libgit2/fuzzers/corpora/commit_graph/0f0d16e1b8c8671dbe1074115c1d86aa9b359e7e +0 -0
  402. package/vendor/libgit2/fuzzers/corpora/commit_graph/102ef78036de5a30927e7f751377b05441c41a08 +0 -0
  403. package/vendor/libgit2/fuzzers/corpora/commit_graph/10494e7cc9cb8dff289c431d7560bcee0d1b14ed +0 -0
  404. package/vendor/libgit2/fuzzers/corpora/commit_graph/107b11d86381345f50aa19b8485477a870ff399f +0 -0
  405. package/vendor/libgit2/fuzzers/corpora/commit_graph/10bb37e18fb3c0897dabacf9c464b4d324007dc3 +0 -0
  406. package/vendor/libgit2/fuzzers/corpora/commit_graph/10ee715f64b08549c3e8261204276694728eb841 +0 -0
  407. package/vendor/libgit2/fuzzers/corpora/commit_graph/123e4eeb7a731f48d06e336b4d29af717f8b6550 +0 -0
  408. package/vendor/libgit2/fuzzers/corpora/commit_graph/125a228afb923970e0a6d4412f7257ba998594a1 +0 -0
  409. package/vendor/libgit2/fuzzers/corpora/commit_graph/130d96c16fba06dcbe7e2a661ab959a3274a4bd9 +0 -0
  410. package/vendor/libgit2/fuzzers/corpora/commit_graph/131c5a2fec55cb0d63f7dc055d6fad5f3dc3c974 +0 -0
  411. package/vendor/libgit2/fuzzers/corpora/commit_graph/13e562d61acb3aa36260a819a00b07ff16450335 +0 -0
  412. package/vendor/libgit2/fuzzers/corpora/commit_graph/1414e6e8ab6bad1b5c51fed807c514a9d6575e66 +0 -0
  413. package/vendor/libgit2/fuzzers/corpora/commit_graph/1432d191846ae2d0e381813efcfacff2f1dba0e4 +0 -0
  414. package/vendor/libgit2/fuzzers/corpora/commit_graph/14a84cdc6f8d432be4cd3d3eafce92ae385e472f +0 -0
  415. package/vendor/libgit2/fuzzers/corpora/commit_graph/14e3e735dba88791f2cadd6e0dc5d662a104a6d7 +0 -0
  416. package/vendor/libgit2/fuzzers/corpora/commit_graph/1574abb020203103ea629d677edd21c967fc0f4c +0 -0
  417. package/vendor/libgit2/fuzzers/corpora/commit_graph/169cc492ba94948a6206765436881a1a0c601780 +0 -0
  418. package/vendor/libgit2/fuzzers/corpora/commit_graph/16a2130c1d75129f3bae3bf8f2c2de41fb3533c0 +0 -0
  419. package/vendor/libgit2/fuzzers/corpora/commit_graph/16ba602eadfc9a3f74c0845394eda0de42b61571 +0 -0
  420. package/vendor/libgit2/fuzzers/corpora/commit_graph/17555fb2dfc444d171ba686667d72e388bd6c041 +0 -0
  421. package/vendor/libgit2/fuzzers/corpora/commit_graph/1a10450d99c1e53d9b7f97b8014cb7fc01906ef2 +0 -0
  422. package/vendor/libgit2/fuzzers/corpora/commit_graph/1af670b5515231fc04b2be9038ee30a7e066b09b +0 -0
  423. package/vendor/libgit2/fuzzers/corpora/commit_graph/1b72cfa68259e3f3b3802906902a0a29368f86b5 +0 -0
  424. package/vendor/libgit2/fuzzers/corpora/commit_graph/1c62ac5d632aa9e449a4335b675941107d8825ae +0 -0
  425. package/vendor/libgit2/fuzzers/corpora/commit_graph/1d95b5db2f802011b33d10212a66fbe40827dfd4 +0 -0
  426. package/vendor/libgit2/fuzzers/corpora/commit_graph/1e068537ce1211a325aab42ae1263a109131c9f9 +0 -0
  427. package/vendor/libgit2/fuzzers/corpora/commit_graph/1e9c882c9d33304a5791ef6c98eee65e142bd7fd +0 -0
  428. package/vendor/libgit2/fuzzers/corpora/commit_graph/1f54935df929403a29e77591c97f767d94871aea +0 -0
  429. package/vendor/libgit2/fuzzers/corpora/commit_graph/206015659641771bb0d668728c2fdc4209e65dda +0 -0
  430. package/vendor/libgit2/fuzzers/corpora/commit_graph/2096493a2bcc2d15b7ae5bf3112fe49c39976ad8 +0 -0
  431. package/vendor/libgit2/fuzzers/corpora/commit_graph/209b74e08abe8c787b7c5ba81e51cb69c57ecded +0 -0
  432. package/vendor/libgit2/fuzzers/corpora/commit_graph/21137876575fbca357fc0c96db1de73c6737e1ae +0 -0
  433. package/vendor/libgit2/fuzzers/corpora/commit_graph/2143d9db9802f076c72a71184cd9d0cb4581e9e7 +0 -0
  434. package/vendor/libgit2/fuzzers/corpora/commit_graph/21a52a5282145407d951ac73c2ff27876783899d +0 -0
  435. package/vendor/libgit2/fuzzers/corpora/commit_graph/21d5c8c8ac3a09bcba5388c472df32795986a5cb +1 -0
  436. package/vendor/libgit2/fuzzers/corpora/commit_graph/22170d1110a1c18009b7feb21a470681f55e85fb +0 -0
  437. package/vendor/libgit2/fuzzers/corpora/commit_graph/22f55dff94785f24252d7a070f713840f59b0870 +0 -0
  438. package/vendor/libgit2/fuzzers/corpora/commit_graph/23d10ee9694e1c66bedc7060990f19a2ac3eaee3 +0 -0
  439. package/vendor/libgit2/fuzzers/corpora/commit_graph/2435430ca19502c3b0ec4987508d4a8fbdbc898c +0 -0
  440. package/vendor/libgit2/fuzzers/corpora/commit_graph/244d2ea0c5c3117000b599cfab37680ba8f04513 +0 -0
  441. package/vendor/libgit2/fuzzers/corpora/commit_graph/248bf94143d150da2459cfdca099c30c6daff00a +0 -0
  442. package/vendor/libgit2/fuzzers/corpora/commit_graph/25bc53498129bb3717671f00c355d2637a91c86a +0 -0
  443. package/vendor/libgit2/fuzzers/corpora/commit_graph/2614f60da2d7e291501397238366d27513bff773 +0 -0
  444. package/vendor/libgit2/fuzzers/corpora/commit_graph/2651b3d5a8b4616b1faa81dabe27ab2712a27561 +0 -0
  445. package/vendor/libgit2/fuzzers/corpora/commit_graph/270257a2872b33dd13c4fd466cbc1ae67d613f9b +0 -0
  446. package/vendor/libgit2/fuzzers/corpora/commit_graph/2830c6244c74656f6c5649c8226953905a582a38 +0 -0
  447. package/vendor/libgit2/fuzzers/corpora/commit_graph/2889a85c07c20551ff0b97fc640e3c91b33aa4a1 +0 -0
  448. package/vendor/libgit2/fuzzers/corpora/commit_graph/295ce43fdd56def8948d1ba2bfa7fdf0c47b5318 +0 -0
  449. package/vendor/libgit2/fuzzers/corpora/commit_graph/296cbb94c4e68ab86972a174405308ee34d0c40f +0 -0
  450. package/vendor/libgit2/fuzzers/corpora/commit_graph/2975adf222cad108ec90d8225fd655e30e3bf253 +0 -0
  451. package/vendor/libgit2/fuzzers/corpora/commit_graph/29f5d27760c9254ab4db661a6cd0323dd11c34ca +0 -0
  452. package/vendor/libgit2/fuzzers/corpora/commit_graph/2a359fb09eaad968e57d353453908027645873d1 +0 -0
  453. package/vendor/libgit2/fuzzers/corpora/commit_graph/2a6b65a8d6c28febaa081d220a4433f8366d02bc +0 -0
  454. package/vendor/libgit2/fuzzers/corpora/commit_graph/2b14dcade4d0919b0a17830fe353738015f492a6 +0 -0
  455. package/vendor/libgit2/fuzzers/corpora/commit_graph/2b298a13abbd9829e965424a1486baa13d4166c4 +0 -0
  456. package/vendor/libgit2/fuzzers/corpora/commit_graph/2b44d8cd8e70e25172b4c740ebe38ef411c965b3 +0 -0
  457. package/vendor/libgit2/fuzzers/corpora/commit_graph/2b590c4e61fdfcf21c017b29440747a1894b1534 +0 -0
  458. package/vendor/libgit2/fuzzers/corpora/commit_graph/2becb18a971ae30e1a8f6680982fd7305708caa0 +0 -0
  459. package/vendor/libgit2/fuzzers/corpora/commit_graph/2bf78b02099a1fe4ce50d065254e843ca55e280f +0 -0
  460. package/vendor/libgit2/fuzzers/corpora/commit_graph/2c1541ecd01aa7b9e99bccfe9804198b3e79f118 +0 -0
  461. package/vendor/libgit2/fuzzers/corpora/commit_graph/2c6798057af5894c27631ff63e845fe1e4bdc9ee +0 -0
  462. package/vendor/libgit2/fuzzers/corpora/commit_graph/2cf7eb7fe489e5acd64df755e820c871784c2ba1 +0 -0
  463. package/vendor/libgit2/fuzzers/corpora/commit_graph/2d49ba35ca404baa0d593925f36a81ce53943c8d +0 -0
  464. package/vendor/libgit2/fuzzers/corpora/commit_graph/2d507d42ca43ffc2f3c8892826e1db74144ec096 +0 -0
  465. package/vendor/libgit2/fuzzers/corpora/commit_graph/2e4da693e3e336d2b1a40311a7ccf94def035b6b +0 -0
  466. package/vendor/libgit2/fuzzers/corpora/commit_graph/2e71ff86128b5618f0f067c407a76ff645ae2019 +0 -0
  467. package/vendor/libgit2/fuzzers/corpora/commit_graph/2eb777c6d7e6ee9bd7a44e37372595043aad596b +0 -0
  468. package/vendor/libgit2/fuzzers/corpora/commit_graph/2ec3ebffba165b9dd49e755a9e77e23aed796628 +0 -0
  469. package/vendor/libgit2/fuzzers/corpora/commit_graph/302703e3b0d74219868aca39ee7593944c0b2400 +0 -0
  470. package/vendor/libgit2/fuzzers/corpora/commit_graph/3048c6908dc3176707fa8bcb0196824e3358357a +0 -0
  471. package/vendor/libgit2/fuzzers/corpora/commit_graph/30616cb39d3ad6060324fada03709d611ad28d5c +0 -0
  472. package/vendor/libgit2/fuzzers/corpora/commit_graph/306beadd9b3135a00037323760eb5377c88a403e +0 -0
  473. package/vendor/libgit2/fuzzers/corpora/commit_graph/31464a6fbad023923a7e4700fc11564e811bcbd2 +0 -0
  474. package/vendor/libgit2/fuzzers/corpora/commit_graph/317f4bcfecf066961ef1982d551cd14e63c9f008 +0 -0
  475. package/vendor/libgit2/fuzzers/corpora/commit_graph/31b2248faaabbec69a06098c8cb0f69c5d0aa208 +0 -0
  476. package/vendor/libgit2/fuzzers/corpora/commit_graph/31d1c3d1147385d58dbe6f82898a5523320fbcac +0 -0
  477. package/vendor/libgit2/fuzzers/corpora/commit_graph/32c9bc1616a78a230a3724abc02150db1cc40aa0 +0 -0
  478. package/vendor/libgit2/fuzzers/corpora/commit_graph/331e2866416b091252f0299e98d32cfb29237029 +0 -0
  479. package/vendor/libgit2/fuzzers/corpora/commit_graph/331eb3876dd2f3f0bd51f380ac431d86d6e3bb5e +0 -0
  480. package/vendor/libgit2/fuzzers/corpora/commit_graph/346bd6eaeadeafcb840ff9441614b309330db63e +0 -0
  481. package/vendor/libgit2/fuzzers/corpora/commit_graph/349931f447981f21476481448576e805c093a25b +0 -0
  482. package/vendor/libgit2/fuzzers/corpora/commit_graph/34a2da1e9adaac1b4be1d40b1ece81fe00643d49 +0 -0
  483. package/vendor/libgit2/fuzzers/corpora/commit_graph/34bb8f475e7384a8a39618fd15fdc5fb1b12c1a1 +0 -0
  484. package/vendor/libgit2/fuzzers/corpora/commit_graph/351a036c6eb95db9364706b861f7e75ad26194e8 +0 -0
  485. package/vendor/libgit2/fuzzers/corpora/commit_graph/355452c1da8e7689d816d67cdde040b5df7eabd7 +0 -0
  486. package/vendor/libgit2/fuzzers/corpora/commit_graph/35c157ad2b100b4f334cddcf3dea6ef2d85462be +0 -0
  487. package/vendor/libgit2/fuzzers/corpora/commit_graph/36a81a45eabfcf53e1ae0361aa234791e2fdb750 +0 -0
  488. package/vendor/libgit2/fuzzers/corpora/commit_graph/36ee20f6dbeb3a34e91eafbbe2e379f9ac6cfa43 +0 -0
  489. package/vendor/libgit2/fuzzers/corpora/commit_graph/377627c19bcac6adc880202048a9eac07b5417d4 +0 -0
  490. package/vendor/libgit2/fuzzers/corpora/commit_graph/38747e7c8bec2f9c923739d50ba54ff88ba6503f +0 -0
  491. package/vendor/libgit2/fuzzers/corpora/commit_graph/3945843a6fab2ec71030f09b237c125b97cd3ea5 +0 -0
  492. package/vendor/libgit2/fuzzers/corpora/commit_graph/396321d39b82ffaccbc64115117df7e822b0f515 +0 -0
  493. package/vendor/libgit2/fuzzers/corpora/commit_graph/396e78eb9b54e2cefb52cd76a22137c8abd6cbcf +0 -0
  494. package/vendor/libgit2/fuzzers/corpora/commit_graph/39c1ab66035adc104cd06a6d98b77668172d21af +0 -0
  495. package/vendor/libgit2/fuzzers/corpora/commit_graph/3a1078c35f5401ce09b5ba921fc348dde37530bb +0 -0
  496. package/vendor/libgit2/fuzzers/corpora/commit_graph/3aa3d8f40392d1c863d23799b8ec0aedc7191302 +0 -0
  497. package/vendor/libgit2/fuzzers/corpora/commit_graph/3b08c505601271cb92345ec7f0ff0b28daf90a9c +0 -0
  498. package/vendor/libgit2/fuzzers/corpora/commit_graph/3b41702587be45f678b36823ad2f7e5002337dc4 +0 -0
  499. package/vendor/libgit2/fuzzers/corpora/commit_graph/3b69108cc919aba0248f9b864d4e71c5f6d1931e +0 -0
  500. package/vendor/libgit2/fuzzers/corpora/commit_graph/3b90507501bb3bcfe0094f9c92cc2869f1a7dda5 +0 -0
  501. package/vendor/libgit2/fuzzers/corpora/commit_graph/3bc7fe44c3a1464dd35a4d22b482f46cdeda0405 +0 -0
  502. package/vendor/libgit2/fuzzers/corpora/commit_graph/3ce99994986efb6df3f3568423e0077b53c7ef78 +0 -0
  503. package/vendor/libgit2/fuzzers/corpora/commit_graph/3d6cb3ba21181c9f0ab08b2608eab773f36773f2 +0 -0
  504. package/vendor/libgit2/fuzzers/corpora/commit_graph/3d8ec41450b943d5dea73fb1e393960b03d7c3b9 +0 -0
  505. package/vendor/libgit2/fuzzers/corpora/commit_graph/3e29e8baaac0f6c7e4cf3d5adca2ab3a2c491ac7 +0 -0
  506. package/vendor/libgit2/fuzzers/corpora/commit_graph/3e9469b3c68ba334671aacda7a7669b0e97b74d6 +0 -0
  507. package/vendor/libgit2/fuzzers/corpora/commit_graph/3eeda3bfa7abef69911c94520c009a08c49b9942 +0 -0
  508. package/vendor/libgit2/fuzzers/corpora/commit_graph/3f0f5021016451b57f673d0603cd9e4830c2198d +0 -0
  509. package/vendor/libgit2/fuzzers/corpora/commit_graph/3f46540fbd94bf0337c1d0d7437ec992a3568f09 +0 -0
  510. package/vendor/libgit2/fuzzers/corpora/commit_graph/402d9c25d5833d42630882ab5c57833266bef785 +0 -0
  511. package/vendor/libgit2/fuzzers/corpora/commit_graph/4048bb3c26d67c345630ff9e86db551a3add6549 +0 -0
  512. package/vendor/libgit2/fuzzers/corpora/commit_graph/40792f23c1281842dab671e8b213fc408d1ec39f +0 -0
  513. package/vendor/libgit2/fuzzers/corpora/commit_graph/41cd0b5d9a9540947b7b1841a55e4c11bd4346a2 +0 -0
  514. package/vendor/libgit2/fuzzers/corpora/commit_graph/41d86e5ea3df4a0de60d42aeb16e2a5599aedeae +0 -0
  515. package/vendor/libgit2/fuzzers/corpora/commit_graph/42b4e5430b2b1b17a361067fb9dd33ab74e52232 +0 -0
  516. package/vendor/libgit2/fuzzers/corpora/commit_graph/42ef1c9d234b90acaf1651d930fc52d5f8f158f2 +0 -0
  517. package/vendor/libgit2/fuzzers/corpora/commit_graph/4570c8ff26d7f31afe73b3d9a35a29bc1274d68a +0 -0
  518. package/vendor/libgit2/fuzzers/corpora/commit_graph/45cf4751a5929930a7c30ec10134434b9ee13c3d +0 -0
  519. package/vendor/libgit2/fuzzers/corpora/commit_graph/46e9d351dd5bb71f7d4d8f15b3fad312c781452e +0 -0
  520. package/vendor/libgit2/fuzzers/corpora/commit_graph/472421633b984556b96bc20f1fcf7a98c25736f3 +0 -0
  521. package/vendor/libgit2/fuzzers/corpora/commit_graph/47f35b91699caee098cacdde0161ffab21bdfc57 +0 -0
  522. package/vendor/libgit2/fuzzers/corpora/commit_graph/48b9da327218f9409287687a43b7eead4789a588 +0 -0
  523. package/vendor/libgit2/fuzzers/corpora/commit_graph/48d14fca326d5d591d18d34c2821a457277819a2 +0 -0
  524. package/vendor/libgit2/fuzzers/corpora/commit_graph/48f3a33e2a027f5735d0a333ec4acd5a2aa57118 +0 -0
  525. package/vendor/libgit2/fuzzers/corpora/commit_graph/49e0eee24eab094a9c62f6b37b6ba01f8aece4e4 +0 -0
  526. package/vendor/libgit2/fuzzers/corpora/commit_graph/4b45bcb707d2a0bc23b415e9bc3d7eb1f7f0e188 +0 -0
  527. package/vendor/libgit2/fuzzers/corpora/commit_graph/4c428300fe4866fe81cff02ad4bc14b6848f7f73 +0 -0
  528. package/vendor/libgit2/fuzzers/corpora/commit_graph/4d69c567df2e858c5f248b3fc8e4a9c04f02481c +0 -0
  529. package/vendor/libgit2/fuzzers/corpora/commit_graph/4d88b6c9b513d5db2e07313a39b43d112d3d4562 +0 -0
  530. package/vendor/libgit2/fuzzers/corpora/commit_graph/4da73370cf854ef8bd08c7f79b92a187cdbff278 +0 -0
  531. package/vendor/libgit2/fuzzers/corpora/commit_graph/4e4b2827351bbfd414b718052a8f950a9e3eb7ee +0 -0
  532. package/vendor/libgit2/fuzzers/corpora/commit_graph/4ed43f7d3c0305461edcbc86f62e0c6ad56df01e +0 -0
  533. package/vendor/libgit2/fuzzers/corpora/commit_graph/4f011529809e88205421fa8ce39dcc025293bcb8 +0 -0
  534. package/vendor/libgit2/fuzzers/corpora/commit_graph/4f1928b6376369ab6acf8a282284366cc3bf71ef +0 -0
  535. package/vendor/libgit2/fuzzers/corpora/commit_graph/4f669eca3416c44f0d003ef2720d03e697e2230e +0 -0
  536. package/vendor/libgit2/fuzzers/corpora/commit_graph/4f750f24ecb5080bea2845061cfd3ce4529d30ee +0 -0
  537. package/vendor/libgit2/fuzzers/corpora/commit_graph/4fab9bb2bacf562e65f4a8681c429e6ea92aaed7 +0 -0
  538. package/vendor/libgit2/fuzzers/corpora/commit_graph/4fd757c7251c17413b3005fb38aee0fd029d89ec +0 -0
  539. package/vendor/libgit2/fuzzers/corpora/commit_graph/506092de91dcf93254cdd5ad9e02a953a38099ea +0 -0
  540. package/vendor/libgit2/fuzzers/corpora/commit_graph/50e934fb52d9bc5cd2a531adced1cad7f102a112 +0 -0
  541. package/vendor/libgit2/fuzzers/corpora/commit_graph/512e49a9e789656964988950009e6534907e6317 +0 -0
  542. package/vendor/libgit2/fuzzers/corpora/commit_graph/51404149f1ea30ee6959fafe81a52acabed97e9e +0 -0
  543. package/vendor/libgit2/fuzzers/corpora/commit_graph/5150f8a67399ee16178a2b08198cf91a90c0e53e +0 -0
  544. package/vendor/libgit2/fuzzers/corpora/commit_graph/51a1fd23dfe5a8062cd4601d235509247f3bc2dc +0 -0
  545. package/vendor/libgit2/fuzzers/corpora/commit_graph/51a963486f041a60c422f0dd6da3b69c52f12fb7 +0 -0
  546. package/vendor/libgit2/fuzzers/corpora/commit_graph/51fbf57a2a35ec33164838fa254fe605a3c868e9 +0 -0
  547. package/vendor/libgit2/fuzzers/corpora/commit_graph/53068b9f9cb54bb52d076e9602ccd55f169ef39a +0 -0
  548. package/vendor/libgit2/fuzzers/corpora/commit_graph/5314619e15fa5ee67df44481b8213a53786d39c5 +0 -0
  549. package/vendor/libgit2/fuzzers/corpora/commit_graph/533f5f00275968129846522fe01e2819746272eb +0 -0
  550. package/vendor/libgit2/fuzzers/corpora/commit_graph/53a62799135c282435a17e032deda03eaf9daf0f +0 -0
  551. package/vendor/libgit2/fuzzers/corpora/commit_graph/53c9d5cd849977e523d92dd2d639e9b0e721be50 +0 -0
  552. package/vendor/libgit2/fuzzers/corpora/commit_graph/54767a0bb3b96d39f5b2004ce3f274465f1a927e +0 -0
  553. package/vendor/libgit2/fuzzers/corpora/commit_graph/548de37dbe6a3829b73d976996ec9838cf608554 +0 -0
  554. package/vendor/libgit2/fuzzers/corpora/commit_graph/5522cefa54b798ea4aba8ef2a42ad248a7fb02ee +0 -0
  555. package/vendor/libgit2/fuzzers/corpora/commit_graph/554fab3eef5d8709f06d1d4319efe5c0c437421b +0 -0
  556. package/vendor/libgit2/fuzzers/corpora/commit_graph/567fe73919dae39b0bcb78b03d655643a71714a8 +0 -0
  557. package/vendor/libgit2/fuzzers/corpora/commit_graph/5717a281aa722ee4a32dfa1cc72fc5d6081f6755 +0 -0
  558. package/vendor/libgit2/fuzzers/corpora/commit_graph/577d814e0be43df9321c5b27119c398bd00a00c5 +0 -0
  559. package/vendor/libgit2/fuzzers/corpora/commit_graph/58680611707c6188f9f067f8747b699cd2fe82d3 +0 -0
  560. package/vendor/libgit2/fuzzers/corpora/commit_graph/5915b7f91dd43ec37a4718061c90cbec2686b916 +0 -0
  561. package/vendor/libgit2/fuzzers/corpora/commit_graph/599516e368ff621dd06d8450837350f4e9558c38 +0 -0
  562. package/vendor/libgit2/fuzzers/corpora/commit_graph/5a2d01d141e4d523e718c30e20cb07c3ad98f33d +0 -0
  563. package/vendor/libgit2/fuzzers/corpora/commit_graph/5a9803ef8cd88d1e8f1d6e5920b8afd170cafb11 +0 -0
  564. package/vendor/libgit2/fuzzers/corpora/commit_graph/5ba93c9db0cff93f52b521d7420e43f6eda2784f +0 -0
  565. package/vendor/libgit2/fuzzers/corpora/commit_graph/5bf0ca772092e6fa34b6822f61a1b1c3d7f2c6e3 +0 -0
  566. package/vendor/libgit2/fuzzers/corpora/commit_graph/5cfbfb3e12b629dc9f74baf0a8741345ec288795 +0 -0
  567. package/vendor/libgit2/fuzzers/corpora/commit_graph/5d8cc97b739c39820b761b6551d34dd647da6816 +0 -0
  568. package/vendor/libgit2/fuzzers/corpora/commit_graph/5dcbb3e1c2fc9a191dd3f3443b86f6bc38c39e37 +0 -0
  569. package/vendor/libgit2/fuzzers/corpora/commit_graph/5ec17d081aef9872f746e88ad8b03553719f9c36 +0 -0
  570. package/vendor/libgit2/fuzzers/corpora/commit_graph/5f88e3ba60c11be25c47a842763d8870d23cc7f2 +0 -0
  571. package/vendor/libgit2/fuzzers/corpora/commit_graph/6045e4d2bf85013c78a32e71b014ba3d4a4b7c61 +0 -0
  572. package/vendor/libgit2/fuzzers/corpora/commit_graph/615c7ba7ffbce955ffd964682e2a0f7ef3c767e4 +0 -0
  573. package/vendor/libgit2/fuzzers/corpora/commit_graph/6189f29cbbe88ac6cb32fdefecda1bd6194332a6 +0 -0
  574. package/vendor/libgit2/fuzzers/corpora/commit_graph/627224cb8484c62992dcbc4cdebdbfa48a3c021a +0 -0
  575. package/vendor/libgit2/fuzzers/corpora/commit_graph/629fff0962d298a7283a3d1e1d1b940dfef9b315 +0 -0
  576. package/vendor/libgit2/fuzzers/corpora/commit_graph/6322594cff2a99d0abb1139e6a43b06df76d539a +0 -0
  577. package/vendor/libgit2/fuzzers/corpora/commit_graph/63de5e8e042222d53bf05640c87da376aefb76cc +0 -0
  578. package/vendor/libgit2/fuzzers/corpora/commit_graph/647dbb1d05fe0fab685bfe126bd9ac3a12b6bccf +0 -0
  579. package/vendor/libgit2/fuzzers/corpora/commit_graph/647e5e265d8d1079784fc2a3da25f7ba58126acd +0 -0
  580. package/vendor/libgit2/fuzzers/corpora/commit_graph/653bd480dfd1e5f4bdca702aba3dfd8da0c204b7 +0 -0
  581. package/vendor/libgit2/fuzzers/corpora/commit_graph/65485740a465377213c80fa68028727f281299fb +0 -0
  582. package/vendor/libgit2/fuzzers/corpora/commit_graph/6551f8c8c3028006d0cc4997943df8a86ee3f598 +0 -0
  583. package/vendor/libgit2/fuzzers/corpora/commit_graph/67799e79d33883510f85ae9705ab3932862128a2 +0 -0
  584. package/vendor/libgit2/fuzzers/corpora/commit_graph/67b475481e5a21351b49789874adbc988aefd64c +0 -0
  585. package/vendor/libgit2/fuzzers/corpora/commit_graph/67e5a649967dee002d1c181e079748c404e29767 +0 -0
  586. package/vendor/libgit2/fuzzers/corpora/commit_graph/687424a4a31a66a78d1637c680c9c10746741007 +0 -0
  587. package/vendor/libgit2/fuzzers/corpora/commit_graph/68fa6dd52832657cb8dd7e1485d6fbafd4e93903 +0 -0
  588. package/vendor/libgit2/fuzzers/corpora/commit_graph/691696af1c042115f4d9f9b8e24f7b8c06ed189b +0 -0
  589. package/vendor/libgit2/fuzzers/corpora/commit_graph/6a80152f9b1afa3a3080bf3f6aa48e84c2e18497 +0 -0
  590. package/vendor/libgit2/fuzzers/corpora/commit_graph/6af27e4cf4c7bcce128a5949ee27fc73ab2cc71e +0 -0
  591. package/vendor/libgit2/fuzzers/corpora/commit_graph/6afd8f82d5639b774de0dfd418ae85322f4168dd +0 -0
  592. package/vendor/libgit2/fuzzers/corpora/commit_graph/6c64a9e26e0e1480bb5e60b7044ca6ce17104a80 +0 -0
  593. package/vendor/libgit2/fuzzers/corpora/commit_graph/6c850c17db130ca0152f7c75562fa191f7ef89de +0 -0
  594. package/vendor/libgit2/fuzzers/corpora/commit_graph/6c9afe4527371a2baf33c5e220e4ca21a3207f94 +0 -0
  595. package/vendor/libgit2/fuzzers/corpora/commit_graph/6ce3d40b0225923a7f4123a919b1c5d70841fad7 +0 -0
  596. package/vendor/libgit2/fuzzers/corpora/commit_graph/6cfd064aa6197813eb18f38df967ae4cdba9c6da +0 -0
  597. package/vendor/libgit2/fuzzers/corpora/commit_graph/6e6675676c53bcddc870e06605d2432e3429f224 +0 -0
  598. package/vendor/libgit2/fuzzers/corpora/commit_graph/6e6e82579b7abae2b43d90448d3f2ead4dfcba78 +0 -0
  599. package/vendor/libgit2/fuzzers/corpora/commit_graph/6f13d23c75a562eddefafe85e208e602832294e2 +0 -0
  600. package/vendor/libgit2/fuzzers/corpora/commit_graph/6fed59b0472927f5d2396d0ee4d7fd13579377ce +0 -0
  601. package/vendor/libgit2/fuzzers/corpora/commit_graph/71f7724196f9f8fcfe3ee0161a84893bb9c4ab11 +0 -0
  602. package/vendor/libgit2/fuzzers/corpora/commit_graph/7335ecb1d41e713bf3909adf5802b90e22bc1581 +0 -0
  603. package/vendor/libgit2/fuzzers/corpora/commit_graph/73afaa73175f461e1d19d5138e055c1649926dfe +0 -0
  604. package/vendor/libgit2/fuzzers/corpora/commit_graph/73e2fcb45c4df90d19091056b235e7a317631a62 +0 -0
  605. package/vendor/libgit2/fuzzers/corpora/commit_graph/741cb2d5ae11b0a9e0608b58ec7284d75129a1f2 +0 -0
  606. package/vendor/libgit2/fuzzers/corpora/commit_graph/7431bb0097a9bb52e1ceaaa8674a13cd3486a387 +0 -0
  607. package/vendor/libgit2/fuzzers/corpora/commit_graph/7455b805995d0c96ac12f8a1c1264caaffcfac1c +0 -0
  608. package/vendor/libgit2/fuzzers/corpora/commit_graph/74e39b8a82fc06f9ed8f83ea30545ddf6df66811 +0 -0
  609. package/vendor/libgit2/fuzzers/corpora/commit_graph/75d51e413d3e916560dc0c2ee5092d2f4972aec1 +0 -0
  610. package/vendor/libgit2/fuzzers/corpora/commit_graph/75e068964ea6beb7310a154d763de74a70071f48 +0 -0
  611. package/vendor/libgit2/fuzzers/corpora/commit_graph/763bf498dd847bd2b4af7b611199619bd428bea6 +0 -0
  612. package/vendor/libgit2/fuzzers/corpora/commit_graph/77064ae04581a3c6d2a77158ef1a0b1e60db414a +0 -0
  613. package/vendor/libgit2/fuzzers/corpora/commit_graph/783bb14d68021061f592601607f40fe232ad17c4 +0 -0
  614. package/vendor/libgit2/fuzzers/corpora/commit_graph/7862814cb684310b54ef920b35403515efaba13c +0 -0
  615. package/vendor/libgit2/fuzzers/corpora/commit_graph/791fd85b6ffb2429e9fa5ba29eebdce214ad88c7 +0 -0
  616. package/vendor/libgit2/fuzzers/corpora/commit_graph/79396d4f6142a53e26e14aa6ccb4afb4fd8fc580 +0 -0
  617. package/vendor/libgit2/fuzzers/corpora/commit_graph/79661b8e529e2182d5c612faba9f26e32a122b78 +0 -0
  618. package/vendor/libgit2/fuzzers/corpora/commit_graph/7969143acb3334bffac46c6dfd96362c81644191 +0 -0
  619. package/vendor/libgit2/fuzzers/corpora/commit_graph/79d84866dc8c067508c02516b65c0e48cf689b56 +0 -0
  620. package/vendor/libgit2/fuzzers/corpora/commit_graph/7b61f8f4a96e309bbe64ed82637fc81492a9652f +0 -0
  621. package/vendor/libgit2/fuzzers/corpora/commit_graph/7b8123f973edfb0f3cab027c0cd6b8efc7b11d6b +0 -0
  622. package/vendor/libgit2/fuzzers/corpora/commit_graph/7b8dd3093efba07f7a4d3bab4b90b8f6e4f28bfb +0 -0
  623. package/vendor/libgit2/fuzzers/corpora/commit_graph/7cc771aab0f3be7730881a46d952ae0a06958201 +0 -0
  624. package/vendor/libgit2/fuzzers/corpora/commit_graph/7d177f4207de78d50df2493a3bc07f2cd578b363 +0 -0
  625. package/vendor/libgit2/fuzzers/corpora/commit_graph/7d2df075f3e73ea9809c31586c37ece0f568b7fa +0 -0
  626. package/vendor/libgit2/fuzzers/corpora/commit_graph/7d386e68e4c733a1fb11c0117f379fb4b9955fbb +1 -0
  627. package/vendor/libgit2/fuzzers/corpora/commit_graph/7e4260830352479d29310bd6e1022e19a68ffe76 +0 -0
  628. package/vendor/libgit2/fuzzers/corpora/commit_graph/7e4dfdae52be18cf95555c2eb1f54af7f69c6dde +0 -0
  629. package/vendor/libgit2/fuzzers/corpora/commit_graph/7eafedf7e7f20e86ecdf9ba51febf8492bdbc1f1 +0 -0
  630. package/vendor/libgit2/fuzzers/corpora/commit_graph/7ef1829a378d66b1dd70a767729127a0dc5edcae +0 -0
  631. package/vendor/libgit2/fuzzers/corpora/commit_graph/80b7d2b9d7e8c8fd7ae239b8d307b592f97ee000 +0 -0
  632. package/vendor/libgit2/fuzzers/corpora/commit_graph/810f577ff5c1af7807a26226af912687558158cd +0 -0
  633. package/vendor/libgit2/fuzzers/corpora/commit_graph/81603f1fe8d8e29005418d0fc9a9b33972366038 +0 -0
  634. package/vendor/libgit2/fuzzers/corpora/commit_graph/81c8b4d6884f954935fa4a8e828c4637db04b61a +0 -0
  635. package/vendor/libgit2/fuzzers/corpora/commit_graph/8226846e9b092561f85cc2956ab89d8cc1ae61e0 +0 -0
  636. package/vendor/libgit2/fuzzers/corpora/commit_graph/825cfceea434e2392cce161356e3cb5f81ec2b3a +0 -0
  637. package/vendor/libgit2/fuzzers/corpora/commit_graph/82603febce83d95adf68b85cabf15d43ca0c4ee9 +0 -0
  638. package/vendor/libgit2/fuzzers/corpora/commit_graph/827f0826cc4156e19b4c4938bec74e38de62fe9c +0 -0
  639. package/vendor/libgit2/fuzzers/corpora/commit_graph/8486397ff8d1156249676c19b419a7758ff53f9a +0 -0
  640. package/vendor/libgit2/fuzzers/corpora/commit_graph/84d99ee359bec1b8ee0f59e9bd96f1da062030b7 +0 -0
  641. package/vendor/libgit2/fuzzers/corpora/commit_graph/84e629bc7416039f1feb81fa9168d7c1ee3141c2 +0 -0
  642. package/vendor/libgit2/fuzzers/corpora/commit_graph/84e885752179076fb38739ca7bc4345716bee56a +0 -0
  643. package/vendor/libgit2/fuzzers/corpora/commit_graph/859ef05494c8070057810b5c20df00fc81f81cf5 +0 -0
  644. package/vendor/libgit2/fuzzers/corpora/commit_graph/859fe592f33abc1d959c0e73ecd6cd4bffe23a97 +0 -0
  645. package/vendor/libgit2/fuzzers/corpora/commit_graph/860da5e8a468805b76a44b9ac99b4575be16ea15 +0 -0
  646. package/vendor/libgit2/fuzzers/corpora/commit_graph/865e415745cead02a826f058a5ee49099bdf9562 +0 -0
  647. package/vendor/libgit2/fuzzers/corpora/commit_graph/878bfce051a9c7462847d4e99b7e926dc821b7b8 +0 -0
  648. package/vendor/libgit2/fuzzers/corpora/commit_graph/880492e4dc7259577c227bb4f075d7165e875c29 +0 -0
  649. package/vendor/libgit2/fuzzers/corpora/commit_graph/88b7de1bd1c96454a1350286d115c0ee368511f9 +0 -0
  650. package/vendor/libgit2/fuzzers/corpora/commit_graph/896268e4a5775b7ce33923ac6daeb0810420c55b +0 -0
  651. package/vendor/libgit2/fuzzers/corpora/commit_graph/8978f8da89f9652878edabad164f5513ef508f27 +0 -0
  652. package/vendor/libgit2/fuzzers/corpora/commit_graph/89a6525b7db0e6ec211a484efd2880abef928d4e +0 -0
  653. package/vendor/libgit2/fuzzers/corpora/commit_graph/8ae86cba2bba6664fc5eb97be8e9777b8825d823 +0 -0
  654. package/vendor/libgit2/fuzzers/corpora/commit_graph/8b845fbd2aa14e4f83c4dbc8b4b0b54d06482acd +0 -0
  655. package/vendor/libgit2/fuzzers/corpora/commit_graph/8c4121e6ce5956cfa408b980f16d276f456374dc +0 -0
  656. package/vendor/libgit2/fuzzers/corpora/commit_graph/8cb6a5b8ab41e3d27668d5735b5c09ff1f2eab65 +0 -0
  657. package/vendor/libgit2/fuzzers/corpora/commit_graph/8d80a70ffd362a89b88663e27f11e8ab69b70c1b +0 -0
  658. package/vendor/libgit2/fuzzers/corpora/commit_graph/8db603c1720b3680047f831f2ea9862567a7cdc4 +0 -0
  659. package/vendor/libgit2/fuzzers/corpora/commit_graph/8dd40b2d27c7dd4b986c35d87f826da287c09c4c +0 -0
  660. package/vendor/libgit2/fuzzers/corpora/commit_graph/8e9d6e6408e5f708a1924e8370e687e2c202a4c4 +0 -0
  661. package/vendor/libgit2/fuzzers/corpora/commit_graph/8f2dff1a30ee28e5985cb9379828aea5658d5849 +0 -0
  662. package/vendor/libgit2/fuzzers/corpora/commit_graph/8f7d18cdd6e605b85784ada14571fd5e5a184f2a +0 -0
  663. package/vendor/libgit2/fuzzers/corpora/commit_graph/903ae52f0ac9af8348038b12f9259741b0de42f1 +0 -0
  664. package/vendor/libgit2/fuzzers/corpora/commit_graph/9119e331f59e9337d419739c324f49d1bd62c8bf +0 -0
  665. package/vendor/libgit2/fuzzers/corpora/commit_graph/91d54d03b0917314ea1d67a70690df9247dd08d2 +0 -0
  666. package/vendor/libgit2/fuzzers/corpora/commit_graph/922da3b96725bfd0e3f6ce119f1e2249d53f9086 +0 -0
  667. package/vendor/libgit2/fuzzers/corpora/commit_graph/9277561e0524cccba2f851970b0d88ec4f4d3f5e +0 -0
  668. package/vendor/libgit2/fuzzers/corpora/commit_graph/92a4d571804026b7bbe957396185e079e756b894 +0 -0
  669. package/vendor/libgit2/fuzzers/corpora/commit_graph/931224cc80168fd362a360d99bab813ed7bbf8ce +0 -0
  670. package/vendor/libgit2/fuzzers/corpora/commit_graph/936ea5dad3bf023c552aa0bbeea8f7f66a11612c +0 -0
  671. package/vendor/libgit2/fuzzers/corpora/commit_graph/93aa4e0b1864933dce0abc0df69fe3d261f117f2 +0 -0
  672. package/vendor/libgit2/fuzzers/corpora/commit_graph/93d5b084965cf1b09085c4079a972e25207b3659 +0 -0
  673. package/vendor/libgit2/fuzzers/corpora/commit_graph/9443fd3468bcc0bc3ff8dfe765225f045ab43d0a +0 -0
  674. package/vendor/libgit2/fuzzers/corpora/commit_graph/9624c26cefb5804b7906147d262e81ee4000b6d6 +0 -0
  675. package/vendor/libgit2/fuzzers/corpora/commit_graph/9890933a73f39208627bd36e2fe88a6d54343a74 +0 -0
  676. package/vendor/libgit2/fuzzers/corpora/commit_graph/989dad0448e79af10040d5080f74eba2b8a401ba +0 -0
  677. package/vendor/libgit2/fuzzers/corpora/commit_graph/98ed4808b4a8da66a91fcea1be63be6371a7c7ac +0 -0
  678. package/vendor/libgit2/fuzzers/corpora/commit_graph/9928e516b85e22fbad58d562d3b7e814d9ce812d +0 -0
  679. package/vendor/libgit2/fuzzers/corpora/commit_graph/994c7cc5599252b5628d89cd0ba4b5574d32bf00 +0 -0
  680. package/vendor/libgit2/fuzzers/corpora/commit_graph/99c8557c2a02ea030de42869af42c1f7c77114db +0 -0
  681. package/vendor/libgit2/fuzzers/corpora/commit_graph/9a14c867272f102b84efdba73662d318c3e51cfe +0 -0
  682. package/vendor/libgit2/fuzzers/corpora/commit_graph/9a6f158c176d4a1982d541be2bc27a8afba4ea57 +0 -0
  683. package/vendor/libgit2/fuzzers/corpora/commit_graph/9aa4af603192823a2fdc53d95ed36896bc3309b2 +0 -0
  684. package/vendor/libgit2/fuzzers/corpora/commit_graph/9b40c2190123cec66af3b37212f6c567869efda3 +0 -0
  685. package/vendor/libgit2/fuzzers/corpora/commit_graph/9b6268c11d78c35db5164f1346905e602b6a49fe +0 -0
  686. package/vendor/libgit2/fuzzers/corpora/commit_graph/9c6883ba5cedb7d711b12733d66ef1a1156dd0af +0 -0
  687. package/vendor/libgit2/fuzzers/corpora/commit_graph/9c85c90f44b454ce0d52882c447f5ecb8d303634 +0 -0
  688. package/vendor/libgit2/fuzzers/corpora/commit_graph/9cb7a2e89ec636da3fd41ecc49ebe25e5344e2c6 +0 -0
  689. package/vendor/libgit2/fuzzers/corpora/commit_graph/9d912dc5a3497e4b5b40b37202fc0ffbf5263666 +0 -0
  690. package/vendor/libgit2/fuzzers/corpora/commit_graph/9dcbafe8c5345194ee0ce7eb4f6efaeb55543626 +0 -0
  691. package/vendor/libgit2/fuzzers/corpora/commit_graph/9f4b0f3d2d25e6405ba6093f24d0605327711573 +0 -0
  692. package/vendor/libgit2/fuzzers/corpora/commit_graph/a047bf683239fa208dbac09424b105820ac23f43 +0 -0
  693. package/vendor/libgit2/fuzzers/corpora/commit_graph/a1379dcd89ef5e73eabbfcc395113e3636e0ae09 +0 -0
  694. package/vendor/libgit2/fuzzers/corpora/commit_graph/a38c7ef56adabd0916abac514154b1f362d40434 +0 -0
  695. package/vendor/libgit2/fuzzers/corpora/commit_graph/a38ec6ad4a8466b4feb88e67b16524e8f3feac64 +0 -0
  696. package/vendor/libgit2/fuzzers/corpora/commit_graph/a3fdea21020268b3b2409c1115d50697d9ae8f8c +0 -0
  697. package/vendor/libgit2/fuzzers/corpora/commit_graph/a45f1987a444b2c27e90fc1477e8b0815f75383f +0 -0
  698. package/vendor/libgit2/fuzzers/corpora/commit_graph/a4682958fb7029384c0a01a4a1356ac6f2f44fe1 +0 -0
  699. package/vendor/libgit2/fuzzers/corpora/commit_graph/a4de41561725960d6f48f210a4fb74d527f7b0c2 +0 -0
  700. package/vendor/libgit2/fuzzers/corpora/commit_graph/a5935f34435ecdd6587ad4f77b20d479d3387dbe +0 -0
  701. package/vendor/libgit2/fuzzers/corpora/commit_graph/a5b394beb2b1d463ad80924a8c8c70584bf5c629 +0 -0
  702. package/vendor/libgit2/fuzzers/corpora/commit_graph/a62bc806f8c98ba7986243c2185a0548a8dd57ef +0 -0
  703. package/vendor/libgit2/fuzzers/corpora/commit_graph/a7013e97948893e0118c686c06e332cc611bea7e +0 -0
  704. package/vendor/libgit2/fuzzers/corpora/commit_graph/a74f5df8c7f25c37c15c0f74ed50019d17338225 +0 -0
  705. package/vendor/libgit2/fuzzers/corpora/commit_graph/a7ab3559fb3da3f027e67091116253f3bdfd7828 +0 -0
  706. package/vendor/libgit2/fuzzers/corpora/commit_graph/a845c8258a02022d447ea9249788b345f5504648 +0 -0
  707. package/vendor/libgit2/fuzzers/corpora/commit_graph/a8d3e026e2393587eb170afb32e94ff0e1f8a8be +0 -0
  708. package/vendor/libgit2/fuzzers/corpora/commit_graph/a8d547e41ee21e163e65cf0a186d469dfa50ec19 +0 -0
  709. package/vendor/libgit2/fuzzers/corpora/commit_graph/a8fa22521dd6813e595cc0a9586ee71fff305fe2 +0 -0
  710. package/vendor/libgit2/fuzzers/corpora/commit_graph/a9969442d585d9a53259c71c73b095701280eac5 +0 -0
  711. package/vendor/libgit2/fuzzers/corpora/commit_graph/a99789d0ce2d7b937aaa8afa3cfc0f4ccd7be95f +0 -0
  712. package/vendor/libgit2/fuzzers/corpora/commit_graph/aaca30ee3ab38edfa2b061fcbcbca0c0ea657f15 +0 -0
  713. package/vendor/libgit2/fuzzers/corpora/commit_graph/aacdec3f05e98eb6eedddb9c6edb968e1a63c551 +0 -0
  714. package/vendor/libgit2/fuzzers/corpora/commit_graph/aadd85127241b94a41d02d9e9699e3e9773de1c9 +0 -0
  715. package/vendor/libgit2/fuzzers/corpora/commit_graph/ab8ad126702803d21dbafc85713bbee7f25f36e5 +0 -0
  716. package/vendor/libgit2/fuzzers/corpora/commit_graph/ac26f9afd599ff6f33396c2e02130654f3e2390c +0 -0
  717. package/vendor/libgit2/fuzzers/corpora/commit_graph/ac8b129e4756fda0c50c9dd0eb13e34c7b41ce8e +1 -0
  718. package/vendor/libgit2/fuzzers/corpora/commit_graph/aceaf3b72c2627dd3dd065974b854150681c093f +0 -0
  719. package/vendor/libgit2/fuzzers/corpora/commit_graph/ad1fcdc3bf806392e754a902eba9edd3b344c31f +0 -0
  720. package/vendor/libgit2/fuzzers/corpora/commit_graph/ad8c80e532482f9dfbfbb7c0d447f1f4e592bf72 +0 -0
  721. package/vendor/libgit2/fuzzers/corpora/commit_graph/add92b71bf897da2f71f691e6abcb6d02cb8e99f +0 -0
  722. package/vendor/libgit2/fuzzers/corpora/commit_graph/aeb8ccf6d82be9236c9e689e1580d043bd701eb0 +0 -0
  723. package/vendor/libgit2/fuzzers/corpora/commit_graph/af1a827aedbf674fff2bdeb5589554eec62787ab +0 -0
  724. package/vendor/libgit2/fuzzers/corpora/commit_graph/afaab9a75414d231176ad4582b6f8d81b5dbedb3 +0 -0
  725. package/vendor/libgit2/fuzzers/corpora/commit_graph/afc12c4ebed1f3ab962d7dcef110b5328b1e24c3 +0 -0
  726. package/vendor/libgit2/fuzzers/corpora/commit_graph/b0044f3744cf019658d668a33f8d1e53ef8bd6ce +0 -0
  727. package/vendor/libgit2/fuzzers/corpora/commit_graph/b06adc81a4e1cdcda3786970ca07ed9dee0b6401 +0 -0
  728. package/vendor/libgit2/fuzzers/corpora/commit_graph/b139802a1cc90fd5b86cae044c221361892c688d +0 -0
  729. package/vendor/libgit2/fuzzers/corpora/commit_graph/b1b8f251542db01bdb01be3b6d5b117b07db1834 +0 -0
  730. package/vendor/libgit2/fuzzers/corpora/commit_graph/b1b9af93f84ed6861b9c0ade39980e89ef828c8f +0 -0
  731. package/vendor/libgit2/fuzzers/corpora/commit_graph/b2eae68035cafd4077f6a4c3e4e961fdc1e8122b +0 -0
  732. package/vendor/libgit2/fuzzers/corpora/commit_graph/b32897a6aedaa8c5a6e656dd808bafabc4ee5608 +0 -0
  733. package/vendor/libgit2/fuzzers/corpora/commit_graph/b376e4fc517297f92ac1713803ae3b60d5ebbe43 +0 -0
  734. package/vendor/libgit2/fuzzers/corpora/commit_graph/b3fd100b139cfbffaad68aacf7d462861e9dca35 +0 -0
  735. package/vendor/libgit2/fuzzers/corpora/commit_graph/b40808ca955faab4829811bced1cccb2ab58ea58 +0 -0
  736. package/vendor/libgit2/fuzzers/corpora/commit_graph/b43daf9f87a514bce74af3e5a39284c69c4e7011 +0 -0
  737. package/vendor/libgit2/fuzzers/corpora/commit_graph/b477da07f3e5796ff4a98c8a5bdb0e4a634954bf +0 -0
  738. package/vendor/libgit2/fuzzers/corpora/commit_graph/b4a2ef09cf59ca5ccf810a6f001cce710cc02f6b +0 -0
  739. package/vendor/libgit2/fuzzers/corpora/commit_graph/b4b75e588cb83430c502a34ec3dcfaf774a00359 +0 -0
  740. package/vendor/libgit2/fuzzers/corpora/commit_graph/b4ce98acd2b288b6cfc00461e2e15e0f8004030c +0 -0
  741. package/vendor/libgit2/fuzzers/corpora/commit_graph/b75563f30f7e4fb369d2449b723ee8b282d03eff +0 -0
  742. package/vendor/libgit2/fuzzers/corpora/commit_graph/b7a0a820afa7057081de186728d0d887131d9314 +0 -0
  743. package/vendor/libgit2/fuzzers/corpora/commit_graph/b7e880446146c735a3f820fb93969c8c172c2fb5 +0 -0
  744. package/vendor/libgit2/fuzzers/corpora/commit_graph/b833073d3006e7cbac03c494603a9b75e7b2a723 +0 -0
  745. package/vendor/libgit2/fuzzers/corpora/commit_graph/b89459c1fb6fc918db4c81a32a75ee66217f9ab8 +0 -0
  746. package/vendor/libgit2/fuzzers/corpora/commit_graph/b8aab6c9b2c706f8df0ff695ff94969171f9c807 +0 -0
  747. package/vendor/libgit2/fuzzers/corpora/commit_graph/b9751182a36acb79b77585e1e379857a530e95c8 +0 -0
  748. package/vendor/libgit2/fuzzers/corpora/commit_graph/b9ddb239b5a2c1348d972ec70a08507c35ba4432 +0 -0
  749. package/vendor/libgit2/fuzzers/corpora/commit_graph/ba8f573256a0fbb95c5626f399ebc3ef50bbd826 +0 -0
  750. package/vendor/libgit2/fuzzers/corpora/commit_graph/bc165749042d5425c5d6d4e29b17769a2315a80d +0 -0
  751. package/vendor/libgit2/fuzzers/corpora/commit_graph/bc910bd349319e1ed44d7c7266e3ac99cc29ecc6 +0 -0
  752. package/vendor/libgit2/fuzzers/corpora/commit_graph/bc97b1d4f57eb7770bc3983e2d57c8c01b21d29e +0 -0
  753. package/vendor/libgit2/fuzzers/corpora/commit_graph/bd06f768e35ded4437cb88e2bc0ddd0bea3fa84c +0 -0
  754. package/vendor/libgit2/fuzzers/corpora/commit_graph/bd702faff9725a7a1957fd0f85cc52799f37b682 +0 -0
  755. package/vendor/libgit2/fuzzers/corpora/commit_graph/bee4464861e1cae3cfdd5fbcb340efbf02e8d8ca +0 -0
  756. package/vendor/libgit2/fuzzers/corpora/commit_graph/bf7ad994b098ec85d62683a16e067635e21a8af5 +0 -0
  757. package/vendor/libgit2/fuzzers/corpora/commit_graph/c054fc89ed72101dec861668ff1738ef85b728b9 +0 -0
  758. package/vendor/libgit2/fuzzers/corpora/commit_graph/c06752415ac037fefe5172dc7245cd7c49ca7fca +0 -0
  759. package/vendor/libgit2/fuzzers/corpora/commit_graph/c0c8b54354d172a0be751e3e9b80be961bb15ddb +0 -0
  760. package/vendor/libgit2/fuzzers/corpora/commit_graph/c0e7ca9b5b4d0e72d23d7dc9e9d1f2463a17a20d +0 -0
  761. package/vendor/libgit2/fuzzers/corpora/commit_graph/c13576a29c98bee02aa47f646f5f170f9b7d83f9 +0 -0
  762. package/vendor/libgit2/fuzzers/corpora/commit_graph/c14edf1d34f40b3cc74772c81ebe5d72172cc662 +0 -0
  763. package/vendor/libgit2/fuzzers/corpora/commit_graph/c2789364cb35d111f08f924d0d7550ea9785c61e +0 -0
  764. package/vendor/libgit2/fuzzers/corpora/commit_graph/c2d8b07acb13e43a89b6c4afb3ecb9817dd4a8e9 +0 -0
  765. package/vendor/libgit2/fuzzers/corpora/commit_graph/c36ed796c1bf839668db8fc3475a2ffb32ad8ceb +0 -0
  766. package/vendor/libgit2/fuzzers/corpora/commit_graph/c41ec9dd94427423e4704721e7f21eae0c44ef20 +0 -0
  767. package/vendor/libgit2/fuzzers/corpora/commit_graph/c42c544fa9dbb1264b39bf920b40985384db1d16 +0 -0
  768. package/vendor/libgit2/fuzzers/corpora/commit_graph/c45ec3f594abc15de0a8cc3ad748ba23cb34ec64 +0 -0
  769. package/vendor/libgit2/fuzzers/corpora/commit_graph/c49004d980961f288616a4eb9ebf68123fd68ffa +0 -0
  770. package/vendor/libgit2/fuzzers/corpora/commit_graph/c4c3c3c8df24adf505127627b3090116de78d9a6 +0 -0
  771. package/vendor/libgit2/fuzzers/corpora/commit_graph/c5c1921293af4a5953cb386092694042715fcfb3 +0 -0
  772. package/vendor/libgit2/fuzzers/corpora/commit_graph/c615caad21cd8a754fcb2008420234c5511c62b7 +0 -0
  773. package/vendor/libgit2/fuzzers/corpora/commit_graph/c6a9ee3f8fdc42566c4799db3912a83c8c438d7f +0 -0
  774. package/vendor/libgit2/fuzzers/corpora/commit_graph/c6b661e976282051285b913b3728383f36103ef8 +0 -0
  775. package/vendor/libgit2/fuzzers/corpora/commit_graph/c716ba47f810c238fe7bda1fbdc7b1ccc34e9848 +1 -0
  776. package/vendor/libgit2/fuzzers/corpora/commit_graph/c85b2fa4421302e2fa333a9e33d59a882aa04f4f +0 -0
  777. package/vendor/libgit2/fuzzers/corpora/commit_graph/c871d135f2d3117b326688355bc0fa6f26d56cd6 +0 -0
  778. package/vendor/libgit2/fuzzers/corpora/commit_graph/c915b02265a27d185a8b028305f082ddb3ebd704 +0 -0
  779. package/vendor/libgit2/fuzzers/corpora/commit_graph/c952d38b3e642db4795d7f954b85f4f6d2a041aa +0 -0
  780. package/vendor/libgit2/fuzzers/corpora/commit_graph/c98ee52065736c4172f6ee0c31977bf1b560d685 +0 -0
  781. package/vendor/libgit2/fuzzers/corpora/commit_graph/c99b183a2cd0dd8a4c1a141cc6eebb0311501fa5 +1 -0
  782. package/vendor/libgit2/fuzzers/corpora/commit_graph/ca0cd26baff2f2c0759e619800ebbe7314d2bb95 +0 -0
  783. package/vendor/libgit2/fuzzers/corpora/commit_graph/ca3e0d745c35d7cceb0f6e3f8a709eb658b7e5a8 +0 -0
  784. package/vendor/libgit2/fuzzers/corpora/commit_graph/cac667320e99e93a796bb89842de4675735eb4a4 +0 -0
  785. package/vendor/libgit2/fuzzers/corpora/commit_graph/cb41b00e9db33a07e27b3ee05d3bbecaf853b963 +0 -0
  786. package/vendor/libgit2/fuzzers/corpora/commit_graph/cbdbd3f320eee627097778f15b9fb2c1dc2bd15f +0 -0
  787. package/vendor/libgit2/fuzzers/corpora/commit_graph/cc7f114000c83abb2ab17f0deab6dcfc2acde7f5 +0 -0
  788. package/vendor/libgit2/fuzzers/corpora/commit_graph/cc9bb93a6b7a1362a15f04898845dbe1447ec382 +0 -0
  789. package/vendor/libgit2/fuzzers/corpora/commit_graph/cce7355f826bbcf3955394596d358abc7df6fe6f +0 -0
  790. package/vendor/libgit2/fuzzers/corpora/commit_graph/cceff2878a558166fb5bf2a0354c1be31dcc4e21 +0 -0
  791. package/vendor/libgit2/fuzzers/corpora/commit_graph/cd96909f3ded7aa54bb2ffd2f2f47f8acc6f99e2 +0 -0
  792. package/vendor/libgit2/fuzzers/corpora/commit_graph/cee9f69d7d1a227833fba127a529ea2a10341da3 +0 -0
  793. package/vendor/libgit2/fuzzers/corpora/commit_graph/d064f27a3109afde629165432f78f389da73ff07 +0 -0
  794. package/vendor/libgit2/fuzzers/corpora/commit_graph/d07e3094f02b0c0e3bab370684c2d8c5634224d5 +0 -0
  795. package/vendor/libgit2/fuzzers/corpora/commit_graph/d0ba3413d5706de17de64824d78233d48c6efbec +0 -0
  796. package/vendor/libgit2/fuzzers/corpora/commit_graph/d136511364a74973b009f2be9b021d4122f71a6c +0 -0
  797. package/vendor/libgit2/fuzzers/corpora/commit_graph/d1d215c40bcc8dd4ce02b0c0621e90b183b40b3e +0 -0
  798. package/vendor/libgit2/fuzzers/corpora/commit_graph/d1e35b137b2027b61def408f3f3c8cf9bcab274e +0 -0
  799. package/vendor/libgit2/fuzzers/corpora/commit_graph/d349d137e57fb1a60ab8babd20e2acedc7a9042e +0 -0
  800. package/vendor/libgit2/fuzzers/corpora/commit_graph/d3714ec4d3acc6262295b0fc99c6ba699f5bfe65 +0 -0
  801. package/vendor/libgit2/fuzzers/corpora/commit_graph/d419df696512216074f1c6b17ea1dfc81c0e6e20 +0 -0
  802. package/vendor/libgit2/fuzzers/corpora/commit_graph/d49ad4fdafac251ceec32481826228c1698360aa +0 -0
  803. package/vendor/libgit2/fuzzers/corpora/commit_graph/d4f85ba549c87ccaba59971a25da7e07b57c9f4e +0 -0
  804. package/vendor/libgit2/fuzzers/corpora/commit_graph/d51ade0715bcea7decee2a045934599a10c1b07a +0 -0
  805. package/vendor/libgit2/fuzzers/corpora/commit_graph/d5447fb72c97462a3f47c8b2d55deb0afaa225f8 +0 -0
  806. package/vendor/libgit2/fuzzers/corpora/commit_graph/d6611a91c29291872ed2932455cb15ddb3801323 +0 -0
  807. package/vendor/libgit2/fuzzers/corpora/commit_graph/d676f5e7efd6de6f2e1773231479471d2bba7261 +0 -0
  808. package/vendor/libgit2/fuzzers/corpora/commit_graph/d6a21eaa08a957d8f428192e193c2508fca2c218 +0 -0
  809. package/vendor/libgit2/fuzzers/corpora/commit_graph/d778052a29539344a9e3144e262e68df9628ebde +0 -0
  810. package/vendor/libgit2/fuzzers/corpora/commit_graph/d884f6944adfff7cb41728062bf91cac5cdacfc9 +0 -0
  811. package/vendor/libgit2/fuzzers/corpora/commit_graph/d89aae18d8e320bbae55eaae6a0514d7e005a883 +0 -0
  812. package/vendor/libgit2/fuzzers/corpora/commit_graph/d926fde818c63f7b34f38c9f018bc833bc0bf7e1 +0 -0
  813. package/vendor/libgit2/fuzzers/corpora/commit_graph/d9d542d7c56774143cb6362e5a63739055469349 +0 -0
  814. package/vendor/libgit2/fuzzers/corpora/commit_graph/da99bc9ce5b831f132dfb2eb11b8537e5cccfcd4 +0 -0
  815. package/vendor/libgit2/fuzzers/corpora/commit_graph/dabff2729fa69ab507fb00b7392aee1262056a29 +0 -0
  816. package/vendor/libgit2/fuzzers/corpora/commit_graph/dac4f4b91e33847bcedf7c66ef6e4ad0181e8ad8 +0 -0
  817. package/vendor/libgit2/fuzzers/corpora/commit_graph/db10ff6d01c7a66aa1823b9f99193590ddce99c6 +0 -0
  818. package/vendor/libgit2/fuzzers/corpora/commit_graph/dbbda2208fa688a5275dda0d304630db01ca081d +0 -0
  819. package/vendor/libgit2/fuzzers/corpora/commit_graph/dc47c5037be68a2747ff8a9fa450e1078a5ac5a5 +0 -0
  820. package/vendor/libgit2/fuzzers/corpora/commit_graph/dc760f136b123e38677aec72853e3365f08010fc +0 -0
  821. package/vendor/libgit2/fuzzers/corpora/commit_graph/dca41b901bf1612d4197e6a450366a00ac036ec3 +0 -0
  822. package/vendor/libgit2/fuzzers/corpora/commit_graph/dca62f21fce50d1c8c51b82e0d7eeedc6746e652 +0 -0
  823. package/vendor/libgit2/fuzzers/corpora/commit_graph/dcc7e6c444f95b10d634b1137413824e2cd68f62 +0 -0
  824. package/vendor/libgit2/fuzzers/corpora/commit_graph/dcf4b6addda69040f792c9b860ade2af0b77a14c +0 -0
  825. package/vendor/libgit2/fuzzers/corpora/commit_graph/dd6178166ac1eed82d132fea491bcda0d953227c +0 -0
  826. package/vendor/libgit2/fuzzers/corpora/commit_graph/ddbd5d3074323ccd7cd70bf5de5a2f30de977d99 +0 -0
  827. package/vendor/libgit2/fuzzers/corpora/commit_graph/ddd8ec5632bf1b8153d03a4537d3d76517c497d5 +0 -0
  828. package/vendor/libgit2/fuzzers/corpora/commit_graph/de7a56f36e10d7b9ff43160b1cea3e76b24386d1 +0 -0
  829. package/vendor/libgit2/fuzzers/corpora/commit_graph/defa60aa46ea5a47c09b6962b4e4296ef1bcad92 +0 -0
  830. package/vendor/libgit2/fuzzers/corpora/commit_graph/e0ae419425207832518d66c0ef35d11cbdc20361 +0 -0
  831. package/vendor/libgit2/fuzzers/corpora/commit_graph/e0f519accbf15bc57a1bf1d7cc46d2a0b07a67f5 +0 -0
  832. package/vendor/libgit2/fuzzers/corpora/commit_graph/e128eff8ca7572d9bb0bfc84f64d79c52afc2c67 +0 -0
  833. package/vendor/libgit2/fuzzers/corpora/commit_graph/e17fdc21ae03243bd1d31bb6301b4187cab6fe47 +0 -0
  834. package/vendor/libgit2/fuzzers/corpora/commit_graph/e340ace35a2db7f89d6aa21cc1300766a74be4e1 +0 -0
  835. package/vendor/libgit2/fuzzers/corpora/commit_graph/e36dfc11bcaab1e42df13924a2d7da024684db2e +0 -0
  836. package/vendor/libgit2/fuzzers/corpora/commit_graph/e39e0c87ac5ce0b78c89ae2df84226baba666372 +0 -0
  837. package/vendor/libgit2/fuzzers/corpora/commit_graph/e46b4666c6bfcd6f589ec3617a48cce9c968e833 +0 -0
  838. package/vendor/libgit2/fuzzers/corpora/commit_graph/e57219555e11f9221d3166d5029ed2ad92300608 +0 -0
  839. package/vendor/libgit2/fuzzers/corpora/commit_graph/e58ce590c2454e7ebe18e0a31a943b0b754fbd13 +0 -0
  840. package/vendor/libgit2/fuzzers/corpora/commit_graph/e595f8fef5c8014cb0867978c6580301078ca0d9 +0 -0
  841. package/vendor/libgit2/fuzzers/corpora/commit_graph/e5b76398f60628e879328d7009b9fa89feea14cb +0 -0
  842. package/vendor/libgit2/fuzzers/corpora/commit_graph/e5cec0217eea93b18a59d76b0aed6b46b13fa6a9 +0 -0
  843. package/vendor/libgit2/fuzzers/corpora/commit_graph/e637b4e0b47d0d6cd870502e6a2d6a53bf917f73 +0 -0
  844. package/vendor/libgit2/fuzzers/corpora/commit_graph/e7a6cb6e5a1552837fdbee9025fc48a9373f8564 +0 -0
  845. package/vendor/libgit2/fuzzers/corpora/commit_graph/e7f57c48016e1180c9af95acd34470881f10bd06 +0 -0
  846. package/vendor/libgit2/fuzzers/corpora/commit_graph/e8253c668bfe37df5c5ada3226860cee74fb33a2 +0 -0
  847. package/vendor/libgit2/fuzzers/corpora/commit_graph/e8f9981443c34ece02bca3c66130f3429d7b3375 +0 -0
  848. package/vendor/libgit2/fuzzers/corpora/commit_graph/e91ed5416bbcd1b03803197b99c08f42c9869139 +0 -0
  849. package/vendor/libgit2/fuzzers/corpora/commit_graph/e94201cfa88df7b198abd3abae9007a6780b52a7 +0 -0
  850. package/vendor/libgit2/fuzzers/corpora/commit_graph/e967bbd6a0d251ae62c9c38b784271d707f792c0 +0 -0
  851. package/vendor/libgit2/fuzzers/corpora/commit_graph/ea01737ceed783b3e0f66d9d0c409cb496c1d526 +0 -0
  852. package/vendor/libgit2/fuzzers/corpora/commit_graph/ea40f7879a58d1e52a46404c761f76a949e14a31 +0 -0
  853. package/vendor/libgit2/fuzzers/corpora/commit_graph/ea5ad04a54f95963baea1f47845847626e08dd55 +0 -0
  854. package/vendor/libgit2/fuzzers/corpora/commit_graph/ea608a401f54b0ca70e42b897f0c8ce6efdbc0ef +0 -0
  855. package/vendor/libgit2/fuzzers/corpora/commit_graph/eb8700d6b3728e6e70c2a0fe504543771639f2b6 +0 -0
  856. package/vendor/libgit2/fuzzers/corpora/commit_graph/ec1f271b04c322353865f4819153d46df7def873 +0 -0
  857. package/vendor/libgit2/fuzzers/corpora/commit_graph/ee215536e7f0cfbd07b53dd65c5af9a604a01830 +0 -0
  858. package/vendor/libgit2/fuzzers/corpora/commit_graph/ee4d4393d7d79b755f85ef5bf8f6e3d743bfa258 +0 -0
  859. package/vendor/libgit2/fuzzers/corpora/commit_graph/ee8099331b2c392e7e036ffcd4a9b36ec2c2082d +0 -0
  860. package/vendor/libgit2/fuzzers/corpora/commit_graph/eede9da76db25513f8347f972e170102831de91a +0 -0
  861. package/vendor/libgit2/fuzzers/corpora/commit_graph/ef707cdeaa9548b6c820f769c1d8ad607b3c4514 +0 -0
  862. package/vendor/libgit2/fuzzers/corpora/commit_graph/ef98609d8196dc158365dfcbbc47e3d1699c50c2 +0 -0
  863. package/vendor/libgit2/fuzzers/corpora/commit_graph/efa38b4269f978f3714b44b501831bea678244e0 +0 -0
  864. package/vendor/libgit2/fuzzers/corpora/commit_graph/efba428e29811d233720ccaaf41966a309312a29 +0 -0
  865. package/vendor/libgit2/fuzzers/corpora/commit_graph/efd514f056d8d83498b4724249c4623560e0390d +0 -0
  866. package/vendor/libgit2/fuzzers/corpora/commit_graph/f00e449ba67ef15e7f29df1e6948c28155d72baa +0 -0
  867. package/vendor/libgit2/fuzzers/corpora/commit_graph/f0a83929d588466051dced6eae0c387db307d646 +0 -0
  868. package/vendor/libgit2/fuzzers/corpora/commit_graph/f0e53b72e5d69467e7c014474028ea734f4fcb26 +0 -0
  869. package/vendor/libgit2/fuzzers/corpora/commit_graph/f186265b3f10f4383f4174e9fb74f0a0cdfa3fca +0 -0
  870. package/vendor/libgit2/fuzzers/corpora/commit_graph/f18932fcce5a9db5d6c8f59d622eabc25e255e12 +0 -0
  871. package/vendor/libgit2/fuzzers/corpora/commit_graph/f2ea163bddb95d67597e2a747779ebf4651cb2a9 +0 -0
  872. package/vendor/libgit2/fuzzers/corpora/commit_graph/f2f7d48a6d86143ecb4969808d634163576065b1 +0 -0
  873. package/vendor/libgit2/fuzzers/corpora/commit_graph/f34a833faf2b0dcbae8aaad142c76c7c7e534e99 +0 -0
  874. package/vendor/libgit2/fuzzers/corpora/commit_graph/f5c044ce01645c069334698fb8c4750e44835912 +0 -0
  875. package/vendor/libgit2/fuzzers/corpora/commit_graph/f680112645c2502f0612e9d017bbb50cb28affbf +0 -0
  876. package/vendor/libgit2/fuzzers/corpora/commit_graph/f6b778d1b34415a7715905f54968c8b6eb057912 +0 -0
  877. package/vendor/libgit2/fuzzers/corpora/commit_graph/f6ca6a62dc885c6b2a4b40c4aa1a7cb8118e30bb +0 -0
  878. package/vendor/libgit2/fuzzers/corpora/commit_graph/f733a8770c23fde182d2fef7e0d96e67244274d5 +0 -0
  879. package/vendor/libgit2/fuzzers/corpora/commit_graph/f8529ddf17d4505c0932c3d40abe33cbfd8c6f22 +0 -0
  880. package/vendor/libgit2/fuzzers/corpora/commit_graph/f96f8419a3fc3719ae86d64e1147e7b7f66a2470 +0 -0
  881. package/vendor/libgit2/fuzzers/corpora/commit_graph/fae241a6c87af37781a3b49e534b7ddb6636eda8 +0 -0
  882. package/vendor/libgit2/fuzzers/corpora/commit_graph/faf8817a04b77c6a976ab0a3d1e905f79bb7f799 +0 -0
  883. package/vendor/libgit2/fuzzers/corpora/commit_graph/fb3e769019fb25d384d4be9d38e4cbce00a6adbc +0 -0
  884. package/vendor/libgit2/fuzzers/corpora/commit_graph/fb9b4b2a46f1c65076340a7bd03b076eb101b760 +0 -0
  885. package/vendor/libgit2/fuzzers/corpora/commit_graph/fca9b0a398832c9ba02cdc811f625b97d5beb18e +0 -0
  886. package/vendor/libgit2/fuzzers/corpora/commit_graph/fcb1b42c706e61245d5e86f708be777ae63f2772 +0 -0
  887. package/vendor/libgit2/fuzzers/corpora/commit_graph/fd6c463e7c30b0e51198c0d1ebbea25f20145e3f +0 -0
  888. package/vendor/libgit2/fuzzers/corpora/commit_graph/fdcbaa49097ad120c6d7709b29d5b65b8cf8e719 +0 -0
  889. package/vendor/libgit2/fuzzers/corpora/commit_graph/fe46775b28a2923b8770b44381552a8a1560d875 +0 -0
  890. package/vendor/libgit2/fuzzers/corpora/commit_graph/ff04441135ef3308fec2687cf688069c6df8aa31 +0 -0
  891. package/vendor/libgit2/fuzzers/corpora/midx/037cbbe0dc03807dd9d9e8629f1712d7df34ee18 +0 -0
  892. package/vendor/libgit2/fuzzers/corpora/midx/039ee34fef8f323ed618a10abc0109df123d0cb5 +0 -0
  893. package/vendor/libgit2/fuzzers/corpora/midx/054ee2c82bdb6a170106eb5d35f21bde2119d584 +1 -0
  894. package/vendor/libgit2/fuzzers/corpora/midx/055ca4cbc961ebf5fd5c922b4f73880d3fbfe39d +0 -0
  895. package/vendor/libgit2/fuzzers/corpora/midx/05c4e5eb1b97bc9b6973921fcb30d4c5e2eb79e4 +0 -0
  896. package/vendor/libgit2/fuzzers/corpora/midx/0672eeda541a191cfc68d521a3c7ac0aac4057a6 +0 -0
  897. package/vendor/libgit2/fuzzers/corpora/midx/06a58d1bd5562a668ebf01ef297fd774e0e587a6 +0 -0
  898. package/vendor/libgit2/fuzzers/corpora/midx/06bf7c2461ae1049030f31b83ae76babfcc20c83 +0 -0
  899. package/vendor/libgit2/fuzzers/corpora/midx/06c2db67ea65758d971346bfd6beaa61ed12f22c +0 -0
  900. package/vendor/libgit2/fuzzers/corpora/midx/07f88eefaf12609b7370fe78b82be2955f1b41fd +0 -0
  901. package/vendor/libgit2/fuzzers/corpora/midx/08495c5f3828a56c167de870d385c46ffdce03c5 +0 -0
  902. package/vendor/libgit2/fuzzers/corpora/midx/08ec8594e5b35fb9e8e0726584f720154f0b2b5d +0 -0
  903. package/vendor/libgit2/fuzzers/corpora/midx/0903e378a493c596298074d6bff8de7f9ac25aa7 +1 -0
  904. package/vendor/libgit2/fuzzers/corpora/midx/09144a846f90f894049ef8a0ed0cc7ab4588dc6c +1 -0
  905. package/vendor/libgit2/fuzzers/corpora/midx/09b40dd618373bfe4d3f2838f686a70f645e640b +0 -0
  906. package/vendor/libgit2/fuzzers/corpora/midx/0a00ef44d234c18d365ec41724dbf4f21b09d0c5 +0 -0
  907. package/vendor/libgit2/fuzzers/corpora/midx/0a94e9f4a9b8cf56d52a9e3e7f2fa9a0a5c80d30 +0 -0
  908. package/vendor/libgit2/fuzzers/corpora/midx/0b35a123104b7872a7f15a710a23ef3594ace04d +0 -0
  909. package/vendor/libgit2/fuzzers/corpora/midx/0c3d7e6be32c014ea873440b0f095961d391af1a +0 -0
  910. package/vendor/libgit2/fuzzers/corpora/midx/0c65de477b89afc312a7e89cde06f8a17f65bd54 +0 -0
  911. package/vendor/libgit2/fuzzers/corpora/midx/0c81d0f368e979d2a0eb4598cbf1c9283936ba0c +0 -0
  912. package/vendor/libgit2/fuzzers/corpora/midx/0c95a44ae995070a5279a2991c36de2251081460 +0 -0
  913. package/vendor/libgit2/fuzzers/corpora/midx/0de38e2cb13167df7d5a882570633596f64bc4f4 +0 -0
  914. package/vendor/libgit2/fuzzers/corpora/midx/0de96aa193045315457ade63c2614610c503db9e +0 -0
  915. package/vendor/libgit2/fuzzers/corpora/midx/0e02deca2b16d71f8637933bd56dc8592ed9fdff +1 -0
  916. package/vendor/libgit2/fuzzers/corpora/midx/0e44fc9176fe2c1bae4209369da5bc057f54b2d2 +0 -0
  917. package/vendor/libgit2/fuzzers/corpora/midx/0f6c5fc9b6a68835364bbef8937560ee5a481938 +1 -0
  918. package/vendor/libgit2/fuzzers/corpora/midx/10d542d5c7da060a5f0664e21478a0d598e29844 +0 -0
  919. package/vendor/libgit2/fuzzers/corpora/midx/118735f7786ae6b4c2f6b36314ab1f2cafe9c3c8 +1 -0
  920. package/vendor/libgit2/fuzzers/corpora/midx/119b58eb353aa344264005016297fb911510ea0d +0 -0
  921. package/vendor/libgit2/fuzzers/corpora/midx/127626832c30d6d94bb29384c0fde7ac6bca75ec +0 -0
  922. package/vendor/libgit2/fuzzers/corpora/midx/1284f1a162588d4de87ca17149474644a0863b27 +0 -0
  923. package/vendor/libgit2/fuzzers/corpora/midx/1458599f19f1a967c787562bf8ec3e67677da9c8 +0 -0
  924. package/vendor/libgit2/fuzzers/corpora/midx/14ba6c1ddd05b22c6f2eae5f894721cd3efcbb16 +0 -0
  925. package/vendor/libgit2/fuzzers/corpora/midx/158cdc0a5aa005f167a8588d0beed9eee4aa36f2 +0 -0
  926. package/vendor/libgit2/fuzzers/corpora/midx/15dafc6fa800327f694b5eb2fc4ebf007be9c117 +0 -0
  927. package/vendor/libgit2/fuzzers/corpora/midx/1613ed4b2e909871f8897fd6354ff80a4ac12f87 +0 -0
  928. package/vendor/libgit2/fuzzers/corpora/midx/16daf4cb967bb47cf4566e9be7d96d3125bd2e12 +0 -0
  929. package/vendor/libgit2/fuzzers/corpora/midx/177783dce78efee878f6d6020fd87ab107bb11a1 +0 -0
  930. package/vendor/libgit2/fuzzers/corpora/midx/17a5090400a1fedc45070e4b530a26f320a89097 +0 -0
  931. package/vendor/libgit2/fuzzers/corpora/midx/17dea5cfa498f4d54384289a1daed0d15a85e7cc +0 -0
  932. package/vendor/libgit2/fuzzers/corpora/midx/17e76ae5b54316679981113f52c27edc87dbcdea +0 -0
  933. package/vendor/libgit2/fuzzers/corpora/midx/191ed5e9334693c53fc843f692dbc3c2c63e8241 +0 -0
  934. package/vendor/libgit2/fuzzers/corpora/midx/196a0ba4edb5bbfd66c1cda669abf0496573cf0e +0 -0
  935. package/vendor/libgit2/fuzzers/corpora/midx/19742b6cee79fa5bf9b27dcbe367c82d0a399904 +0 -0
  936. package/vendor/libgit2/fuzzers/corpora/midx/1a21d7581d3b0a8d67934d48e91d45bd818836e8 +0 -0
  937. package/vendor/libgit2/fuzzers/corpora/midx/1b2f96c5d75c7ca09b1012be4e6c3a7b248ed924 +0 -0
  938. package/vendor/libgit2/fuzzers/corpora/midx/1b604ff0683d0e23dc7945431f6514ba30d6ca0d +0 -0
  939. package/vendor/libgit2/fuzzers/corpora/midx/1b771dd5bd3ae2b1c42c4efe6c896c83b88a4f91 +0 -0
  940. package/vendor/libgit2/fuzzers/corpora/midx/1b793a4ee73fa8bf423da70fca5f39ef32a8d288 +0 -0
  941. package/vendor/libgit2/fuzzers/corpora/midx/1c9599ce00978780519272be279f508c402e3268 +1 -0
  942. package/vendor/libgit2/fuzzers/corpora/midx/1cc0068f9f63b12dc8fdd38f9ebfb96c42664e95 +0 -0
  943. package/vendor/libgit2/fuzzers/corpora/midx/1de6e1f5579da6e5c40f4ee23ac62e29e4f90541 +0 -0
  944. package/vendor/libgit2/fuzzers/corpora/midx/1eec93083260ebfab5f4c6d13119cf27c374b7e9 +0 -0
  945. package/vendor/libgit2/fuzzers/corpora/midx/1f0f574addd363d1fed131289f301c5c033aaa8f +0 -0
  946. package/vendor/libgit2/fuzzers/corpora/midx/1f3e85cffdb545c1ba7c8bbe1ca18ec13e341038 +0 -0
  947. package/vendor/libgit2/fuzzers/corpora/midx/1f6a66a92d5f083a73a82280a0a1ae0800e56ae5 +0 -0
  948. package/vendor/libgit2/fuzzers/corpora/midx/208e422322052efcdaeb1a09bbf06c5f476b8efc +0 -0
  949. package/vendor/libgit2/fuzzers/corpora/midx/22d75b2c3937957b14eded621b638283ce7fe1fe +0 -0
  950. package/vendor/libgit2/fuzzers/corpora/midx/22f90ff68166a409acf8f89bf60a31ad2c64ab37 +0 -0
  951. package/vendor/libgit2/fuzzers/corpora/midx/236ebad449d432b039d6ace1f250ef1fa2aa364d +0 -0
  952. package/vendor/libgit2/fuzzers/corpora/midx/252a4e4bf7fb21792ec2f305fd88fa7c9168505f +0 -0
  953. package/vendor/libgit2/fuzzers/corpora/midx/259e1faf7b7f12250062d36ded1193a9dbcae0f5 +0 -0
  954. package/vendor/libgit2/fuzzers/corpora/midx/25ad3dfb655ab4c853d0d277872310d9579c8e83 +0 -0
  955. package/vendor/libgit2/fuzzers/corpora/midx/26210f5b8fdbf81b312feea48659ec6e2e083c0b +0 -0
  956. package/vendor/libgit2/fuzzers/corpora/midx/263a2a0915be36d8cb2bc30774e37e0344262347 +0 -0
  957. package/vendor/libgit2/fuzzers/corpora/midx/2679bfbc2f4f7c10a304245da4e156e235377b63 +0 -0
  958. package/vendor/libgit2/fuzzers/corpora/midx/270b7b567a63dd94bb2a90448bbbc2e2bbc4a261 +0 -0
  959. package/vendor/libgit2/fuzzers/corpora/midx/271cd5c5e254a293d115588ee130040ef26b59e8 +0 -0
  960. package/vendor/libgit2/fuzzers/corpora/midx/27839a8035b48f8c19ab073808a03a95b6a90cc3 +0 -0
  961. package/vendor/libgit2/fuzzers/corpora/midx/2810c385c9285cbdb65bcdab5175999fe547cbad +0 -0
  962. package/vendor/libgit2/fuzzers/corpora/midx/28afaf4ab4b092ccf987661e58009f96126bba63 +0 -0
  963. package/vendor/libgit2/fuzzers/corpora/midx/29f842e86a891cff9f0b44c8aec19f7e23a47000 +0 -0
  964. package/vendor/libgit2/fuzzers/corpora/midx/2aa2549f617f19402d1feac61d4ca1af3545cc8a +0 -0
  965. package/vendor/libgit2/fuzzers/corpora/midx/2b73c2902eda6da41321493601003b29c3445713 +0 -0
  966. package/vendor/libgit2/fuzzers/corpora/midx/2bcec1274c5e7b2d7a581d851c016ef5b553fabe +0 -0
  967. package/vendor/libgit2/fuzzers/corpora/midx/2dd9a328b6d4e29e42684347be5c4b7cd7dc1a66 +0 -0
  968. package/vendor/libgit2/fuzzers/corpora/midx/2ddc17ee7ee89bb7dbc673328d5f3e55c76e686e +0 -0
  969. package/vendor/libgit2/fuzzers/corpora/midx/2f71d5e99dc93618ed99fdb7c244a8f5e4a7eb4a +0 -0
  970. package/vendor/libgit2/fuzzers/corpora/midx/2f7cd0154d71a83e7b104670b2a77fbd285ffde2 +0 -0
  971. package/vendor/libgit2/fuzzers/corpora/midx/2f9d40ef790f5213234e95d123dce942b2d1d389 +0 -0
  972. package/vendor/libgit2/fuzzers/corpora/midx/31577bacbca7017308d2a0c9ebfdd4fce513bbe4 +0 -0
  973. package/vendor/libgit2/fuzzers/corpora/midx/3278f1bab88b80597d0066812d49f8bd3c7b1dcf +0 -0
  974. package/vendor/libgit2/fuzzers/corpora/midx/328160cae6235605ff70951a2f6ac669ba7bb397 +0 -0
  975. package/vendor/libgit2/fuzzers/corpora/midx/337ed1bf91701a4c8926840259077e55938c6efc +0 -0
  976. package/vendor/libgit2/fuzzers/corpora/midx/33a97d83ff7a774797b1751ea4bffbb4a22c58d9 +0 -0
  977. package/vendor/libgit2/fuzzers/corpora/midx/341021da9516401cf364ed2b7dfdda346db04f2f +0 -0
  978. package/vendor/libgit2/fuzzers/corpora/midx/341773a439cdecc58f55fb205ac584cd93ffe0f2 +1 -0
  979. package/vendor/libgit2/fuzzers/corpora/midx/366091157510e40bca08fc2102b9018ccf4697de +0 -0
  980. package/vendor/libgit2/fuzzers/corpora/midx/37096157e2f9f2ec8e0b97b21d335bd653f3edbd +0 -0
  981. package/vendor/libgit2/fuzzers/corpora/midx/373a74b8613d09babcb567f91047e7b556a8de90 +0 -0
  982. package/vendor/libgit2/fuzzers/corpora/midx/3748b07ee7bec7bdd202ee14222cefca182417d1 +0 -0
  983. package/vendor/libgit2/fuzzers/corpora/midx/38b7906b9f956dca01dc92d0a901388ec1cbc8b1 +0 -0
  984. package/vendor/libgit2/fuzzers/corpora/midx/38ddf3424559f1a6e7687eff8469a358184b833b +1 -0
  985. package/vendor/libgit2/fuzzers/corpora/midx/38e31d0a7dcc3835ce1a4afeeda8446fb3d7ed73 +0 -0
  986. package/vendor/libgit2/fuzzers/corpora/midx/3955ec4497b226391ef9eb40f38af6dee4fa26b7 +0 -0
  987. package/vendor/libgit2/fuzzers/corpora/midx/3b6b424342133feb0f587f22bcd8f21595c004e5 +0 -0
  988. package/vendor/libgit2/fuzzers/corpora/midx/3bb71f41200e0ebf8d19532e7d6e384c48aa2d03 +0 -0
  989. package/vendor/libgit2/fuzzers/corpora/midx/3c5a6063797aba9ffe5ea9903bbfcf87193652d3 +0 -0
  990. package/vendor/libgit2/fuzzers/corpora/midx/3dfb9927d959f2462f6944a32d080b60a265abfe +0 -0
  991. package/vendor/libgit2/fuzzers/corpora/midx/3e19242a63ec92a0c3f7138ebbc31bfe7cbd40cd +0 -0
  992. package/vendor/libgit2/fuzzers/corpora/midx/3ec53ce4ea1f41f040a3c2beed929572af95dd43 +0 -0
  993. package/vendor/libgit2/fuzzers/corpora/midx/3f0762fdf49a58c0d8fd6683964a85caddee391b +0 -0
  994. package/vendor/libgit2/fuzzers/corpora/midx/3f71ae863c4e9bac98e49a554b8ec4d78b17492d +1 -0
  995. package/vendor/libgit2/fuzzers/corpora/midx/3f9df30bfb66a28fbe6f1951ef7ae4ca9f19fdf2 +0 -0
  996. package/vendor/libgit2/fuzzers/corpora/midx/3fabb14670c008c22094c1d7cd7b1e23b4c48b3d +0 -0
  997. package/vendor/libgit2/fuzzers/corpora/midx/408fba9c66c5d1deb31e4c69f1dd0677844dbc1b +0 -0
  998. package/vendor/libgit2/fuzzers/corpora/midx/40ca8645081087e950ad61bccf8d43450366356e +0 -0
  999. package/vendor/libgit2/fuzzers/corpora/midx/412faec949b9d04498de939561664ee559a583a7 +1 -0
  1000. package/vendor/libgit2/fuzzers/corpora/midx/4148bd5336f89e73b2a5416c67d491c0ec4a2b7d +0 -0
  1001. package/vendor/libgit2/fuzzers/corpora/midx/41933e61fa20fbe2b190f9ae7ceae4a4b1220021 +0 -0
  1002. package/vendor/libgit2/fuzzers/corpora/midx/423d90f3fc7ddc146095ec5a4b4f455aa876b69b +0 -0
  1003. package/vendor/libgit2/fuzzers/corpora/midx/42a6c52249aa12cfef1db1bf302a483a01c972f3 +0 -0
  1004. package/vendor/libgit2/fuzzers/corpora/midx/42a82726f0e70da9b87b6c52bc1b3415576025f2 +0 -0
  1005. package/vendor/libgit2/fuzzers/corpora/midx/4458e19f99e38c61ad9792b0b3bf8ac79f8236f1 +1 -0
  1006. package/vendor/libgit2/fuzzers/corpora/midx/44a4411a8d6ed67ee3ea61d91d2afafe89295b0f +0 -0
  1007. package/vendor/libgit2/fuzzers/corpora/midx/44e04754d1b6c0c045e05509dd7033d19a926b10 +0 -0
  1008. package/vendor/libgit2/fuzzers/corpora/midx/45259e9f0a2cc7739a94eccaafb37c1570f73884 +0 -0
  1009. package/vendor/libgit2/fuzzers/corpora/midx/46c0d7e952200cabc08b9cd776a9f6759f4208c3 +0 -0
  1010. package/vendor/libgit2/fuzzers/corpora/midx/46deac8631633ea3c32005124e20a2bc2bbabade +0 -0
  1011. package/vendor/libgit2/fuzzers/corpora/midx/46e7edf6e9d6cbcdabde3b48f1c4efd93be40348 +0 -0
  1012. package/vendor/libgit2/fuzzers/corpora/midx/46fe9556c28c94f7321baa2519a3cbeabbd54d09 +0 -0
  1013. package/vendor/libgit2/fuzzers/corpora/midx/49223681729e73b48b26a2262e4a66b2ba00e176 +0 -0
  1014. package/vendor/libgit2/fuzzers/corpora/midx/499e61b689f6cc7e4efb0631684739c2a6f97c7d +0 -0
  1015. package/vendor/libgit2/fuzzers/corpora/midx/4a06ad8c4d717bd048a7a1315a3d609d70f0162d +0 -0
  1016. package/vendor/libgit2/fuzzers/corpora/midx/4adb7d4791a4c6370478dff2eb987d715554bf09 +0 -0
  1017. package/vendor/libgit2/fuzzers/corpora/midx/4b01c479cdc9b750a31d5e7ac5004309222d218d +0 -0
  1018. package/vendor/libgit2/fuzzers/corpora/midx/4bce7460a6becba6d26984bb438d7d3aa4e4fc56 +0 -0
  1019. package/vendor/libgit2/fuzzers/corpora/midx/4cc96483b6800dda296f00887b12a35154115090 +0 -0
  1020. package/vendor/libgit2/fuzzers/corpora/midx/4f3aa59bae0619c9a06b631d9cb7767591810ab0 +0 -0
  1021. package/vendor/libgit2/fuzzers/corpora/midx/501840d963cedd2945018de59e0202444d7ebf4b +0 -0
  1022. package/vendor/libgit2/fuzzers/corpora/midx/50479958c030d1addceb1ca8c27f24447e555e65 +0 -0
  1023. package/vendor/libgit2/fuzzers/corpora/midx/508ba8ef164a809f739834a39d690e700101a7a1 +0 -0
  1024. package/vendor/libgit2/fuzzers/corpora/midx/521d345313812e54bc6c944485e19dbb39a87768 +0 -0
  1025. package/vendor/libgit2/fuzzers/corpora/midx/5369d74ac157f85b597c1b28bbd6768105e9327b +0 -0
  1026. package/vendor/libgit2/fuzzers/corpora/midx/53997b0146ff49bfe464be203b130a67ea93fd26 +0 -0
  1027. package/vendor/libgit2/fuzzers/corpora/midx/560ea8bd7d11b00e0d21631b6d9ec7e63f0a5286 +0 -0
  1028. package/vendor/libgit2/fuzzers/corpora/midx/5682ebc6878e247ce9bc636d34ada6ad338fcaf0 +0 -0
  1029. package/vendor/libgit2/fuzzers/corpora/midx/5762abb5234edd913754b69e1ab03274c711ee68 +0 -0
  1030. package/vendor/libgit2/fuzzers/corpora/midx/579406f055070559bda3c6120107feb3e637c481 +2 -0
  1031. package/vendor/libgit2/fuzzers/corpora/midx/5837d16af4a9c1f2616467cc4aa9ec8836e05c58 +0 -0
  1032. package/vendor/libgit2/fuzzers/corpora/midx/58901e865fe20b9fa136cca4b253d3ae73c2b78e +0 -0
  1033. package/vendor/libgit2/fuzzers/corpora/midx/58a87098a14572e46b53c87340083f999d8fcfc2 +0 -0
  1034. package/vendor/libgit2/fuzzers/corpora/midx/59ae139a21448e0eb7371ddc6ef57f0c9dfe9c85 +0 -0
  1035. package/vendor/libgit2/fuzzers/corpora/midx/5a7e81419f895168c555ac9b4e75a1ad4f04b34a +0 -0
  1036. package/vendor/libgit2/fuzzers/corpora/midx/5b848c1f56a150d64020e9b0bb398a286dca4096 +0 -0
  1037. package/vendor/libgit2/fuzzers/corpora/midx/5bd311bd846336149b2815666052fdb7e8bf2ea6 +0 -0
  1038. package/vendor/libgit2/fuzzers/corpora/midx/5ce77eb98473a2e01d04909939edf7aabef5762c +0 -0
  1039. package/vendor/libgit2/fuzzers/corpora/midx/5e5cd5819811507ac69bd8abad27433ccd6b7521 +0 -0
  1040. package/vendor/libgit2/fuzzers/corpora/midx/5ea114ae3dbb140364000c416152b0f32ce3de23 +0 -0
  1041. package/vendor/libgit2/fuzzers/corpora/midx/5f181bb0a79603c84534a9b8e37ecdeb1d2aeeb5 +1 -0
  1042. package/vendor/libgit2/fuzzers/corpora/midx/5f428ce1169e28353cedb8be3e2f6edd0ef354e4 +0 -0
  1043. package/vendor/libgit2/fuzzers/corpora/midx/5f9bc7729dc331e3c4d8e52df0688abad6d4aee8 +0 -0
  1044. package/vendor/libgit2/fuzzers/corpora/midx/619527e1d650cd1c26e9bc61e424c9fdc04b17b9 +0 -0
  1045. package/vendor/libgit2/fuzzers/corpora/midx/625d3676de25188865e05db2a3933c38508406fc +0 -0
  1046. package/vendor/libgit2/fuzzers/corpora/midx/6368569cfde7fbe369a0ee4695fa4d5a7d7887a6 +0 -0
  1047. package/vendor/libgit2/fuzzers/corpora/midx/6388fe4d630064ea1ea33aa85381d9c82e328e95 +0 -0
  1048. package/vendor/libgit2/fuzzers/corpora/midx/64cff4e110f0bcb3ea833c1afda6e27a57dac0bc +0 -0
  1049. package/vendor/libgit2/fuzzers/corpora/midx/66449b87ce47b681c6326f337bebf03366a0ee99 +0 -0
  1050. package/vendor/libgit2/fuzzers/corpora/midx/66ae3584497a1823a955c33e5bc53f7434c13e49 +0 -0
  1051. package/vendor/libgit2/fuzzers/corpora/midx/66e238a6ad70fb30c82171ff1b73ea71b4379355 +0 -0
  1052. package/vendor/libgit2/fuzzers/corpora/midx/66f345dc060ac5a1fe8bcf0828102d072deb1111 +0 -0
  1053. package/vendor/libgit2/fuzzers/corpora/midx/66f839146ef46deed25fd2cd169a4f1a2a3533fa +0 -0
  1054. package/vendor/libgit2/fuzzers/corpora/midx/671720ee2b7ba45920b41b8016eb5206b88168ee +0 -0
  1055. package/vendor/libgit2/fuzzers/corpora/midx/679c7140ad60ed32aeb7ee464499dd52b0fc212f +0 -0
  1056. package/vendor/libgit2/fuzzers/corpora/midx/67c5e6ce7bb47cefe54d749374f3288a2c915936 +0 -0
  1057. package/vendor/libgit2/fuzzers/corpora/midx/69592399b45f2f83e0cc823c5f0e3865ac3fa611 +0 -0
  1058. package/vendor/libgit2/fuzzers/corpora/midx/6abf97508f0ed808b7fe0d9bb2439981153badd2 +0 -0
  1059. package/vendor/libgit2/fuzzers/corpora/midx/6b2dfb51b35b78680cb02ff54e06f0c983c04866 +0 -0
  1060. package/vendor/libgit2/fuzzers/corpora/midx/6bbf6ab605fedd41ed6c7581ec9f87c75403e9c3 +0 -0
  1061. package/vendor/libgit2/fuzzers/corpora/midx/6c0656104902e1323f3a19c46df7cffecae94f1c +0 -0
  1062. package/vendor/libgit2/fuzzers/corpora/midx/6c0ce8006b3ebd8202e61fe5f4cc2285248bd1ba +0 -0
  1063. package/vendor/libgit2/fuzzers/corpora/midx/6cc635e6dd4e430ed4fb68a9f5add38aa02ae14f +0 -0
  1064. package/vendor/libgit2/fuzzers/corpora/midx/6d1b281d7bdd9887e53505fd5d040731db18ba48 +0 -0
  1065. package/vendor/libgit2/fuzzers/corpora/midx/6d5c35f9d87253b2fbe383bfde3775a9f737da12 +1 -0
  1066. package/vendor/libgit2/fuzzers/corpora/midx/6d95355018cadedd97bed65c45a44a7ff6f065f7 +0 -0
  1067. package/vendor/libgit2/fuzzers/corpora/midx/6dd70e887ab94db3327d9aaa0335914a1f4986b7 +0 -0
  1068. package/vendor/libgit2/fuzzers/corpora/midx/6ed51a953a8b6671de417406e340d8d0a211aa12 +0 -0
  1069. package/vendor/libgit2/fuzzers/corpora/midx/6f911f19652a4457c93ef92b594bc1dc2ca900f8 +0 -0
  1070. package/vendor/libgit2/fuzzers/corpora/midx/6fa76cbaeb3cf0417c7a372132167bcd737db66b +0 -0
  1071. package/vendor/libgit2/fuzzers/corpora/midx/71f66d3f7da318d69681a22ebbceb1a2bb290658 +0 -0
  1072. package/vendor/libgit2/fuzzers/corpora/midx/7227a2dc335af13e7225536c49969f46a800750a +1 -0
  1073. package/vendor/libgit2/fuzzers/corpora/midx/72fce27bbccf582f2023f5e168853251e576592a +0 -0
  1074. package/vendor/libgit2/fuzzers/corpora/midx/738e5543ae005a6de85dfcd960eb8e3e6faa8947 +0 -0
  1075. package/vendor/libgit2/fuzzers/corpora/midx/739d9c8868445202305d0a4e5766df1c68932688 +0 -0
  1076. package/vendor/libgit2/fuzzers/corpora/midx/7438b07314917c84d348e7d9629e3712190c7da7 +0 -0
  1077. package/vendor/libgit2/fuzzers/corpora/midx/7490f00d660f5d8dedfa606cca241bd07be86a4f +0 -0
  1078. package/vendor/libgit2/fuzzers/corpora/midx/75c64e8b61af41b28516c2c0fe902362d55a24f3 +0 -0
  1079. package/vendor/libgit2/fuzzers/corpora/midx/75e94b59a41e7f086b6f7ab3bca801251744ae3d +0 -0
  1080. package/vendor/libgit2/fuzzers/corpora/midx/7612ceb3a989f97a7bb19f57c7f9c61366953642 +0 -0
  1081. package/vendor/libgit2/fuzzers/corpora/midx/76ac2328e1c979bca648b4082b8bfe6f2e2e73ea +0 -0
  1082. package/vendor/libgit2/fuzzers/corpora/midx/76f296039ba4d666c9147ad234d43b55050808e3 +0 -0
  1083. package/vendor/libgit2/fuzzers/corpora/midx/777f248eea53e3dd2b726e1e0de5eeda43b6d323 +1 -0
  1084. package/vendor/libgit2/fuzzers/corpora/midx/792fcd0075bd8031a98a68ce04d6a9f23feef7b4 +0 -0
  1085. package/vendor/libgit2/fuzzers/corpora/midx/7a936c3e69013b2c71dcb72f0eccd99c93367533 +0 -0
  1086. package/vendor/libgit2/fuzzers/corpora/midx/7b30d0cd07108f2e45ce1a3fab3f971b25dcf5cd +0 -0
  1087. package/vendor/libgit2/fuzzers/corpora/midx/7b87f367b5fa3bf29bae19031814e5d0120a15ba +0 -0
  1088. package/vendor/libgit2/fuzzers/corpora/midx/7c12e4bca60858eae13c47a66e54cd9e96a50909 +0 -0
  1089. package/vendor/libgit2/fuzzers/corpora/midx/7c59f95e649b3be6344f4f835afd0d9a894c1144 +0 -0
  1090. package/vendor/libgit2/fuzzers/corpora/midx/7dcb6494c3614a8690dc496309f90e0f23634c37 +0 -0
  1091. package/vendor/libgit2/fuzzers/corpora/midx/7e64b86827ea98f0a4eb54736c460a59b0c30420 +0 -0
  1092. package/vendor/libgit2/fuzzers/corpora/midx/8125d9eaa09b3d2283fea73223866cb36877c4a4 +0 -0
  1093. package/vendor/libgit2/fuzzers/corpora/midx/81c7fc514fa9a07b5b87b94cf9c00df2b1325a74 +0 -0
  1094. package/vendor/libgit2/fuzzers/corpora/midx/81f9df0493052d980ca13918637bc6ce565615b3 +0 -0
  1095. package/vendor/libgit2/fuzzers/corpora/midx/82556b9345134dd689cb9d0d08d3dc8459454181 +0 -0
  1096. package/vendor/libgit2/fuzzers/corpora/midx/82d35a7a6ffb333b02d0d597e88ffdd481237a8b +0 -0
  1097. package/vendor/libgit2/fuzzers/corpora/midx/82e931da372a2c69c0f10274342173c2be091f1c +0 -0
  1098. package/vendor/libgit2/fuzzers/corpora/midx/83e2b53f22afe8f7ee21d30fae2619ad0d6a71e3 +0 -0
  1099. package/vendor/libgit2/fuzzers/corpora/midx/83f4d70189dbc0d3aaf5025977c53d4d34fc5893 +0 -0
  1100. package/vendor/libgit2/fuzzers/corpora/midx/85e17cceba7850be893afdc04c8233bea1ef6e72 +0 -0
  1101. package/vendor/libgit2/fuzzers/corpora/midx/874d4abdcd7db751eb930928231669afe90589f5 +0 -0
  1102. package/vendor/libgit2/fuzzers/corpora/midx/87894ec663568153d7837f49b80f6d2e99818bd7 +0 -0
  1103. package/vendor/libgit2/fuzzers/corpora/midx/88052b76108b4ede342f3dd87bb6835b2f71ea83 +0 -0
  1104. package/vendor/libgit2/fuzzers/corpora/midx/884c54256c0ec2cf1c5fa08a0b3d9c2fea021300 +0 -0
  1105. package/vendor/libgit2/fuzzers/corpora/midx/8858f36373db5fd6b805a768af55c21019c664b2 +0 -0
  1106. package/vendor/libgit2/fuzzers/corpora/midx/88fe8b6767c1bd32308208b22e0b00697e5eddf7 +0 -0
  1107. package/vendor/libgit2/fuzzers/corpora/midx/898cac1610f2f2fb67eb092cd053f0006c3070e3 +0 -0
  1108. package/vendor/libgit2/fuzzers/corpora/midx/89d0f5573ae1b524e7e9bdb1fb54ea4ce99e3ef0 +0 -0
  1109. package/vendor/libgit2/fuzzers/corpora/midx/8a55300e400efd56be5e12258ebf575c4f3b55ed +0 -0
  1110. package/vendor/libgit2/fuzzers/corpora/midx/8bf7b464aaa2c2b536aa1d76a1297c19155f5603 +1 -0
  1111. package/vendor/libgit2/fuzzers/corpora/midx/8c05e8ef26302a79c89670ad3aa4e8d0bc921923 +0 -0
  1112. package/vendor/libgit2/fuzzers/corpora/midx/8c15f5a268ded9663197d66e8d7d4098e0ae9bf5 +0 -0
  1113. package/vendor/libgit2/fuzzers/corpora/midx/8ca9e85a9e628f0016ea4e6413945b3830730c24 +0 -0
  1114. package/vendor/libgit2/fuzzers/corpora/midx/8e74126a239927900a8f655c813a4b230191a5ba +0 -0
  1115. package/vendor/libgit2/fuzzers/corpora/midx/8ee63e791c004427dd033b468b2ed7446ee6e2e0 +0 -0
  1116. package/vendor/libgit2/fuzzers/corpora/midx/9028113aa78b649e13ff259027a4e450d469e5da +0 -0
  1117. package/vendor/libgit2/fuzzers/corpora/midx/90db2115b8262ebecbefbe8f0a07c451e39bca07 +0 -0
  1118. package/vendor/libgit2/fuzzers/corpora/midx/923f28a4d1917e20ee0736b90695c2123c0c987c +0 -0
  1119. package/vendor/libgit2/fuzzers/corpora/midx/92a5c74e0506d65d1a12686496452870367b169a +0 -0
  1120. package/vendor/libgit2/fuzzers/corpora/midx/92dcf94eb2f92b4e1a232eab3b3f808f4236f118 +0 -0
  1121. package/vendor/libgit2/fuzzers/corpora/midx/9414502aedbef5e307897683625418dd4ac575ac +0 -0
  1122. package/vendor/libgit2/fuzzers/corpora/midx/9422e25bec5fec9f84603a85673b54b1a5e77a40 +0 -0
  1123. package/vendor/libgit2/fuzzers/corpora/midx/943754e865888063e0684aec838222522390d43e +0 -0
  1124. package/vendor/libgit2/fuzzers/corpora/midx/943e067806ae069afbc029ea7a612410e5395687 +0 -0
  1125. package/vendor/libgit2/fuzzers/corpora/midx/9547646cc1a5d260df099b00ea7ee2b95567aee1 +0 -0
  1126. package/vendor/libgit2/fuzzers/corpora/midx/968f7027ec9fbf75a519069ea5189e85a81448b2 +0 -0
  1127. package/vendor/libgit2/fuzzers/corpora/midx/9691046a2f8b31319a6fdfde0506c9a72aed839a +0 -0
  1128. package/vendor/libgit2/fuzzers/corpora/midx/96a8cd5c33986cc26cc00eb2de627149f5259e33 +0 -0
  1129. package/vendor/libgit2/fuzzers/corpora/midx/972466bbc33d2d7d7c21be21c7594b51e78675c5 +0 -0
  1130. package/vendor/libgit2/fuzzers/corpora/midx/980f21a3609762154030f7cf0fe98a892d20f220 +0 -0
  1131. package/vendor/libgit2/fuzzers/corpora/midx/9865f12189ef977418d8410fceebb6830c74d820 +0 -0
  1132. package/vendor/libgit2/fuzzers/corpora/midx/98a1096d609545083878d5126743bbc5985786a9 +0 -0
  1133. package/vendor/libgit2/fuzzers/corpora/midx/98c3b6bbf5dc19bc4aad894087277a36d7c79669 +0 -0
  1134. package/vendor/libgit2/fuzzers/corpora/midx/98f9cd44400b592f809596004125267acf848435 +0 -0
  1135. package/vendor/libgit2/fuzzers/corpora/midx/9a97260f04ecfe0918499ede95cf4bcb3dbc2b51 +0 -0
  1136. package/vendor/libgit2/fuzzers/corpora/midx/9ba0dba2ca4405d04113086309882dac6182e6b8 +0 -0
  1137. package/vendor/libgit2/fuzzers/corpora/midx/9c329ee4b02f2d26ee1a399c873b0452aedca3c0 +0 -0
  1138. package/vendor/libgit2/fuzzers/corpora/midx/9e8e638837e202d83ff606a22dd0e310150fa260 +0 -0
  1139. package/vendor/libgit2/fuzzers/corpora/midx/9ee03d17e070df72547e423a412da0b6a60ad565 +0 -0
  1140. package/vendor/libgit2/fuzzers/corpora/midx/9fad6bd2b07d65e607039bb2bcda0816410cf983 +0 -0
  1141. package/vendor/libgit2/fuzzers/corpora/midx/9fcbd21f4dd194a623d832422384a1519742f0bb +0 -0
  1142. package/vendor/libgit2/fuzzers/corpora/midx/a019fb7f17aa36a9743c530e1f11d5613b8b1158 +0 -0
  1143. package/vendor/libgit2/fuzzers/corpora/midx/a0b8c6ef20198377b19f59e41f08f4cf2107f460 +0 -0
  1144. package/vendor/libgit2/fuzzers/corpora/midx/a14079a3e8cbc2112da4fa747ef20cdfd580e068 +0 -0
  1145. package/vendor/libgit2/fuzzers/corpora/midx/a14d61ba0c609665d37e6c6da929cb53c5b70545 +0 -0
  1146. package/vendor/libgit2/fuzzers/corpora/midx/a15cf2a13e408cb76af0091a0c286af7ffce58e1 +0 -0
  1147. package/vendor/libgit2/fuzzers/corpora/midx/a1ddedbdd05eac99b8b31322635771cd9c999f8a +0 -0
  1148. package/vendor/libgit2/fuzzers/corpora/midx/a235661c3f8b0174a1658e9c435a69577c49256a +0 -0
  1149. package/vendor/libgit2/fuzzers/corpora/midx/a261397a4db5ac196c72d73ba6999e9fd4fc5c1f +0 -0
  1150. package/vendor/libgit2/fuzzers/corpora/midx/a3a803fd6a56d31269717983bbdf2fceebb626c3 +0 -0
  1151. package/vendor/libgit2/fuzzers/corpora/midx/a3d5b0b21d977e8f94d401250de1bbd4fa1d0ee0 +0 -0
  1152. package/vendor/libgit2/fuzzers/corpora/midx/a42f2900ca519bd15b8d6f507449d1a07de2ef75 +0 -0
  1153. package/vendor/libgit2/fuzzers/corpora/midx/a4884775b414eaf9643224564f3be405519cf99a +0 -0
  1154. package/vendor/libgit2/fuzzers/corpora/midx/a48da63e9a5709c24cb66f598a7a964cbc7ccfc7 +0 -0
  1155. package/vendor/libgit2/fuzzers/corpora/midx/a5789fd83dff18079ea7ba41c999f57bee4db41b +0 -0
  1156. package/vendor/libgit2/fuzzers/corpora/midx/a5bb1c60191742df4a91afb622e9b22a2f0b7765 +0 -0
  1157. package/vendor/libgit2/fuzzers/corpora/midx/a5fdfade1cef5e7e494dd6e3791bca5a663d7012 +0 -0
  1158. package/vendor/libgit2/fuzzers/corpora/midx/a6c66f79f5aaf2c1a26ff16754fe1a8c22627e0c +0 -0
  1159. package/vendor/libgit2/fuzzers/corpora/midx/a7478a05a1fc04a9e035be5593bfb6a281ec460f +0 -0
  1160. package/vendor/libgit2/fuzzers/corpora/midx/a75193dd600661d2b417d4e29b23faa7d721c214 +0 -0
  1161. package/vendor/libgit2/fuzzers/corpora/midx/a7ccae74c641ffcdda0042e6c04438d5b32c4cf3 +0 -0
  1162. package/vendor/libgit2/fuzzers/corpora/midx/a94aa5881abdea5374775b8155812121673f89c3 +0 -0
  1163. package/vendor/libgit2/fuzzers/corpora/midx/a98d794f0f24be7a36917826121fc14a24120893 +1 -0
  1164. package/vendor/libgit2/fuzzers/corpora/midx/a993077e321bc4e1831bb5a8ac7511d90d32ae27 +0 -0
  1165. package/vendor/libgit2/fuzzers/corpora/midx/aa3bc67656945e43f9342d3aaaef247584d96cfa +0 -0
  1166. package/vendor/libgit2/fuzzers/corpora/midx/ab111c4d72e3d6796e3d7391e9f35b4e6fefc04a +0 -0
  1167. package/vendor/libgit2/fuzzers/corpora/midx/ab248c42f77952d5d17d6f5203adaa5925c05c64 +0 -0
  1168. package/vendor/libgit2/fuzzers/corpora/midx/ab8451fadf805e5087837d9f6d91ef7eb6fa5edb +0 -0
  1169. package/vendor/libgit2/fuzzers/corpora/midx/abbee3b37aff879b1cef47390001b89b0f6ebc0a +0 -0
  1170. package/vendor/libgit2/fuzzers/corpora/midx/ac15b23f03af8be6dbbb3bbb8d3877a1f9e074a3 +0 -0
  1171. package/vendor/libgit2/fuzzers/corpora/midx/ac47bda12269c06d773f5f3c6517f78513a54a08 +0 -0
  1172. package/vendor/libgit2/fuzzers/corpora/midx/ad1f4fb57f481a00a9bb231517a3155ef0d0877f +0 -0
  1173. package/vendor/libgit2/fuzzers/corpora/midx/ad25e7ffabedd94833d2529886af4d459529ec9d +0 -0
  1174. package/vendor/libgit2/fuzzers/corpora/midx/ad796ebb423f58187806c4a7ee7b787394353ce6 +0 -0
  1175. package/vendor/libgit2/fuzzers/corpora/midx/adc83b19e793491b1c6ea0fd8b46cd9f32e592fc +1 -0
  1176. package/vendor/libgit2/fuzzers/corpora/midx/ae14b80f26f5cee2d85d5154c2cef1eefafa8cc9 +0 -0
  1177. package/vendor/libgit2/fuzzers/corpora/midx/ae3ba892de543801b3c1dfbce370eb2c80a6fb27 +0 -0
  1178. package/vendor/libgit2/fuzzers/corpora/midx/aecc0c7f08810803da234e26e7c6fa7a9f1c0593 +0 -0
  1179. package/vendor/libgit2/fuzzers/corpora/midx/aed2e85d5d39d25e738a34f30a722680bde30368 +0 -0
  1180. package/vendor/libgit2/fuzzers/corpora/midx/b00a75de1987c6f549bf73a63e8f23a2de6641b3 +0 -0
  1181. package/vendor/libgit2/fuzzers/corpora/midx/b02e9f951ce9f10a8eb80f1fc61cd3d2832dd7f4 +0 -0
  1182. package/vendor/libgit2/fuzzers/corpora/midx/b04aff8ab2e133d45bf44565bd4bf9e33b795a97 +0 -0
  1183. package/vendor/libgit2/fuzzers/corpora/midx/b12097ed83db761f7bb79411a59e2474de9b1199 +0 -0
  1184. package/vendor/libgit2/fuzzers/corpora/midx/b1beb2f462b4cb30a09d534b9f49f2e08d76363c +1 -0
  1185. package/vendor/libgit2/fuzzers/corpora/midx/b201733b6165f4544578bd6aad3f55aeafd9a194 +0 -0
  1186. package/vendor/libgit2/fuzzers/corpora/midx/b2699f25c21ffe453dcce20e31b3093e0f9b2abf +1 -0
  1187. package/vendor/libgit2/fuzzers/corpora/midx/b34a5760a1036f909e0243cd857fcef65e40d752 +0 -0
  1188. package/vendor/libgit2/fuzzers/corpora/midx/b3fdacd639073cc1954bcb1f31046d094e2d2296 +0 -0
  1189. package/vendor/libgit2/fuzzers/corpora/midx/b40a6dbe32c8e6a9b777331e7fd97f0d94ceca1c +0 -0
  1190. package/vendor/libgit2/fuzzers/corpora/midx/b52ff2010f22ae6758cde5d529fd19de2a7d5fc5 +0 -0
  1191. package/vendor/libgit2/fuzzers/corpora/midx/b53a7a2afd9dfc55c328b4e06a36882c53126e95 +0 -0
  1192. package/vendor/libgit2/fuzzers/corpora/midx/b548ae8a77a62b7f375b8b48e7184ceed59bc8f8 +0 -0
  1193. package/vendor/libgit2/fuzzers/corpora/midx/b66eaf0b689495cc7c194ab1fca7d36ae9da9758 +0 -0
  1194. package/vendor/libgit2/fuzzers/corpora/midx/b680bf23da22b8b7e77d847169fe9b6968d79e8b +1 -0
  1195. package/vendor/libgit2/fuzzers/corpora/midx/b70d6e7d230fb1393b8f665adcd5658cad7059fe +0 -0
  1196. package/vendor/libgit2/fuzzers/corpora/midx/b87a59f78adb3ef18b0176a8e7fe7e90c2ab4ef7 +0 -0
  1197. package/vendor/libgit2/fuzzers/corpora/midx/b88c5233090e859e923acbdfa9b168f95d7fc14b +0 -0
  1198. package/vendor/libgit2/fuzzers/corpora/midx/ba1923ea69eec8fe765e8d1222eccb928ca6c3c2 +0 -0
  1199. package/vendor/libgit2/fuzzers/corpora/midx/ba4d695c1eb02c702bd99a3db27838c7ba617d79 +0 -0
  1200. package/vendor/libgit2/fuzzers/corpora/midx/ba7e4f999dc22d223c7f75db36646bfa05848572 +0 -0
  1201. package/vendor/libgit2/fuzzers/corpora/midx/bc5f0cd338d1d17a230378390aa810bc7b103cda +0 -0
  1202. package/vendor/libgit2/fuzzers/corpora/midx/bcbb4cf10018a177dd9a6c642d887e0de3d8e522 +0 -0
  1203. package/vendor/libgit2/fuzzers/corpora/midx/bcfeb114df6d5c6e0c85cbe1081631bc321ff65b +0 -0
  1204. package/vendor/libgit2/fuzzers/corpora/midx/bd582237a9293e2a53d8222722a69e7d215822bf +0 -0
  1205. package/vendor/libgit2/fuzzers/corpora/midx/bdc83a415da40f74825379203538a2e4d27cffa7 +0 -0
  1206. package/vendor/libgit2/fuzzers/corpora/midx/be160536594c87dc07554a71c7d24cd1d718aecc +0 -0
  1207. package/vendor/libgit2/fuzzers/corpora/midx/be8f3c744a23f67fb316a39609ca11ddac025b58 +0 -0
  1208. package/vendor/libgit2/fuzzers/corpora/midx/bf873b027b48f3fd7b727473c832486d99ddb196 +0 -0
  1209. package/vendor/libgit2/fuzzers/corpora/midx/bf8e20ef6b79131ef9bab8c9c1bb7dbecbead6a5 +0 -0
  1210. package/vendor/libgit2/fuzzers/corpora/midx/bf90507b8f7c7eebb89edeaabf6a432d86e7df4a +0 -0
  1211. package/vendor/libgit2/fuzzers/corpora/midx/bfa7a5ce666899fb3e2a7216dbf59886da672658 +0 -0
  1212. package/vendor/libgit2/fuzzers/corpora/midx/bfeaa454d8db33efabba88f146bee6c803369ba0 +0 -0
  1213. package/vendor/libgit2/fuzzers/corpora/midx/c0388910e8d88dcd2e65848ba2cef465caa6b258 +0 -0
  1214. package/vendor/libgit2/fuzzers/corpora/midx/c0db293f75bb44668bcbb79286ebed87df141a85 +0 -0
  1215. package/vendor/libgit2/fuzzers/corpora/midx/c1234da1441255244aba15ecad2a4fa7fd47115e +0 -0
  1216. package/vendor/libgit2/fuzzers/corpora/midx/c2206ac3c289a759ee0e9d0d31cc336f0802f7bc +1 -0
  1217. package/vendor/libgit2/fuzzers/corpora/midx/c22340ab36e5cff088a58272f63cf69e54a1a9f4 +0 -0
  1218. package/vendor/libgit2/fuzzers/corpora/midx/c242c9336c4c22b316e0e56d616b2d45b3318ca4 +0 -0
  1219. package/vendor/libgit2/fuzzers/corpora/midx/c25a51d8dfaf58d5b609729bb156a80e3b0d892f +0 -0
  1220. package/vendor/libgit2/fuzzers/corpora/midx/c3419450240d06982b0d828911b188a903355216 +0 -0
  1221. package/vendor/libgit2/fuzzers/corpora/midx/c36ea7651f76ae817d8d60cae580e47638741372 +0 -0
  1222. package/vendor/libgit2/fuzzers/corpora/midx/c42300c021bfd35702f564e917839503922cbe9a +0 -0
  1223. package/vendor/libgit2/fuzzers/corpora/midx/c45d82ddade99ef857b563e435f2efe89e58b0be +0 -0
  1224. package/vendor/libgit2/fuzzers/corpora/midx/c4d1e9187de1e13353b3beb3c1ab16dd62cda571 +0 -0
  1225. package/vendor/libgit2/fuzzers/corpora/midx/c4e98278a25011c54734494d4534a97489cf4c24 +0 -0
  1226. package/vendor/libgit2/fuzzers/corpora/midx/c4f996ab08f56ce2e9fec7a0428ded510dd6a04a +0 -0
  1227. package/vendor/libgit2/fuzzers/corpora/midx/c544850a7325e7226583895204f99de730525803 +0 -0
  1228. package/vendor/libgit2/fuzzers/corpora/midx/c56629528d5bebdb94f85522caf0f36bbcb19106 +0 -0
  1229. package/vendor/libgit2/fuzzers/corpora/midx/c5c75b58883ccf41b20b140740e2ce763c6086cd +0 -0
  1230. package/vendor/libgit2/fuzzers/corpora/midx/c62da85dca0d4dfb1d7af5d0520eb74993a1e3b0 +0 -0
  1231. package/vendor/libgit2/fuzzers/corpora/midx/c6379aaaecd282b8ed6d0b4291d0d9fdc763160a +0 -0
  1232. package/vendor/libgit2/fuzzers/corpora/midx/c6431921184e3edf4fd3e47384c69654cdac0189 +0 -0
  1233. package/vendor/libgit2/fuzzers/corpora/midx/c6f2ca17c6d313a35676cbacd094eb40fd74b23e +0 -0
  1234. package/vendor/libgit2/fuzzers/corpora/midx/c83e04d58e04fccac37b9dd313eab72011fe8ea1 +0 -0
  1235. package/vendor/libgit2/fuzzers/corpora/midx/c88dc350b98a5c5ae0503683318c1f30443906a8 +1 -0
  1236. package/vendor/libgit2/fuzzers/corpora/midx/c89ee2e9e30a474b5f9532ec61d7aad78377baa0 +0 -0
  1237. package/vendor/libgit2/fuzzers/corpora/midx/c921be4abeb44d1ff07f76f632a16e86526bc4be +0 -0
  1238. package/vendor/libgit2/fuzzers/corpora/midx/c98bdc0431aaece1e8a721aff0ea511cfb8062a6 +0 -0
  1239. package/vendor/libgit2/fuzzers/corpora/midx/c9c456fd3e35a942ef4ab756e04e725cf1f71167 +0 -0
  1240. package/vendor/libgit2/fuzzers/corpora/midx/cd1f1a31b79af77e1e764102942ba7a79dcd24cf +0 -0
  1241. package/vendor/libgit2/fuzzers/corpora/midx/cd57e5904254c2278e9ecf28ed7414d7aed8eef1 +0 -0
  1242. package/vendor/libgit2/fuzzers/corpora/midx/cd665cdc2bd6a26eb68c9af6d1728a7d4f6eb309 +0 -0
  1243. package/vendor/libgit2/fuzzers/corpora/midx/ce72111c4314b22c4c7824bc8ea340ebd6d3fa84 +0 -0
  1244. package/vendor/libgit2/fuzzers/corpora/midx/ceacc7ace2f4be962b0db2eeeea3fe6a00ca9dd6 +0 -0
  1245. package/vendor/libgit2/fuzzers/corpora/midx/cf40769d8b4fcbac1b10ced2e0c3c1294f23fcdd +0 -0
  1246. package/vendor/libgit2/fuzzers/corpora/midx/d120111a77a3e3d1d504a04bbfc5f53effa14eb0 +0 -0
  1247. package/vendor/libgit2/fuzzers/corpora/midx/d1ce81240a32aec2de1b0d779aa29a62c36f291f +0 -0
  1248. package/vendor/libgit2/fuzzers/corpora/midx/d21869b290cd2b448e7b8103dced97e62fefffcc +0 -0
  1249. package/vendor/libgit2/fuzzers/corpora/midx/d2bffcd01e87ce9860007b244ff1e79ecd3d4d0f +0 -0
  1250. package/vendor/libgit2/fuzzers/corpora/midx/d2d668b6e28fca83da5146021879c2b006406fa4 +0 -0
  1251. package/vendor/libgit2/fuzzers/corpora/midx/d37abe0d299b8ad1e90f5b7af302c24f411a7ed1 +0 -0
  1252. package/vendor/libgit2/fuzzers/corpora/midx/d3d689a12ab3808313d5ba0044e8c67ecb4337e4 +0 -0
  1253. package/vendor/libgit2/fuzzers/corpora/midx/d48eb559213edf05aa2850a14194885ae2086ba4 +0 -0
  1254. package/vendor/libgit2/fuzzers/corpora/midx/d490f365693e49ebdeaf658b3f549311a399c6a8 +0 -0
  1255. package/vendor/libgit2/fuzzers/corpora/midx/d54821b652a8611c486bedd8645081d3a4b1c8d1 +0 -0
  1256. package/vendor/libgit2/fuzzers/corpora/midx/d5586a91f9a879e8a67ec7b09a48038909918ad9 +0 -0
  1257. package/vendor/libgit2/fuzzers/corpora/midx/d696362920a2fad8e280293e8d1c92b18c87e4ae +0 -0
  1258. package/vendor/libgit2/fuzzers/corpora/midx/d6b546a2b1bc1c8f80028e4be10c45a06014b32d +0 -0
  1259. package/vendor/libgit2/fuzzers/corpora/midx/d7f04cbca92b2122e0f437ed4dd8fd1782d40f7f +0 -0
  1260. package/vendor/libgit2/fuzzers/corpora/midx/d81944a0c1ed56d11129533d9a3d0d038113d53d +0 -0
  1261. package/vendor/libgit2/fuzzers/corpora/midx/d8524e83ea63c9b365c2e93af75a8100a08b1b69 +0 -0
  1262. package/vendor/libgit2/fuzzers/corpora/midx/d8d9a2d06763cf6feb433cef92a80ef14baab31a +0 -0
  1263. package/vendor/libgit2/fuzzers/corpora/midx/d917fbd641cc40786246387456a636899d56b5a6 +0 -0
  1264. package/vendor/libgit2/fuzzers/corpora/midx/d99f9ec8b504029457185ac03ea8ba21c2611737 +0 -0
  1265. package/vendor/libgit2/fuzzers/corpora/midx/d9c9c90c1bbc55beb81875838e9067c473d0fa92 +0 -0
  1266. package/vendor/libgit2/fuzzers/corpora/midx/d9e908317a6ef08a7528924672836a550d34cb5f +0 -0
  1267. package/vendor/libgit2/fuzzers/corpora/midx/d9ef71deb57fa6f40e027be2c84fa37d288e1cc5 +0 -0
  1268. package/vendor/libgit2/fuzzers/corpora/midx/da8841b9d04382d62d4aeb3fde4dc78466f31543 +0 -0
  1269. package/vendor/libgit2/fuzzers/corpora/midx/db3fbb74c9c9c4185f91eca85f14c3d2c3d9f487 +0 -0
  1270. package/vendor/libgit2/fuzzers/corpora/midx/db7a31de22258d4dc17d44a27d9340946e9c9ee9 +0 -0
  1271. package/vendor/libgit2/fuzzers/corpora/midx/dbbe57fc653930b4ff43f168565ba84ef25f60c2 +0 -0
  1272. package/vendor/libgit2/fuzzers/corpora/midx/dbe74c0d9e7b62c1fd87d5e3ea73ee04f0337154 +0 -0
  1273. package/vendor/libgit2/fuzzers/corpora/midx/dbebf36a6b91568ac059142c3ca3211226da12a8 +0 -0
  1274. package/vendor/libgit2/fuzzers/corpora/midx/ddacbb379242b31a00d62fdff5777dffc1e899c2 +0 -0
  1275. package/vendor/libgit2/fuzzers/corpora/midx/decd2cd9cef352610ac9e5cc461df1829543f9f0 +3 -0
  1276. package/vendor/libgit2/fuzzers/corpora/midx/deeae69363db06972798b296a0c5c99e02cb2b4c +0 -0
  1277. package/vendor/libgit2/fuzzers/corpora/midx/e03e105323e6e7b2af90ad876b5c547af90d8f6b +0 -0
  1278. package/vendor/libgit2/fuzzers/corpora/midx/e3133215848c9cde428338c9d51424c8a81b96f5 +0 -0
  1279. package/vendor/libgit2/fuzzers/corpora/midx/e32a25f0347b0e95d4bea16c27a1f374847683bd +0 -0
  1280. package/vendor/libgit2/fuzzers/corpora/midx/e45ce97522194abcdd7ff9beb931e20b86c97a79 +0 -0
  1281. package/vendor/libgit2/fuzzers/corpora/midx/e484023d50fc1036e46a437053b965c527700d42 +0 -0
  1282. package/vendor/libgit2/fuzzers/corpora/midx/e4e60e77fe3a050940d0afcc7dbab7ef06b04ba3 +0 -0
  1283. package/vendor/libgit2/fuzzers/corpora/midx/e51629784092d9cf811ea1bd894297f062ed7ec4 +0 -0
  1284. package/vendor/libgit2/fuzzers/corpora/midx/e5a7e837029178b3fb6a26d77ea4574ffeaa219d +0 -0
  1285. package/vendor/libgit2/fuzzers/corpora/midx/e5c616e9efdd9c80181f9210d0e3a81c08fe9b4d +0 -0
  1286. package/vendor/libgit2/fuzzers/corpora/midx/e5e6e84e2c7770537c744bcfdbe8303afe39ef92 +0 -0
  1287. package/vendor/libgit2/fuzzers/corpora/midx/e5fb20928feec1ee3114597317edc0e06c413749 +0 -0
  1288. package/vendor/libgit2/fuzzers/corpora/midx/e789319791fe704e5a8ffd7cb570c8d2722ac35f +0 -0
  1289. package/vendor/libgit2/fuzzers/corpora/midx/e9fdb9f08f225b4231f01dda9c7b61e7b78bf7d3 +0 -0
  1290. package/vendor/libgit2/fuzzers/corpora/midx/ea6780324dca9a06db28598dfb590436d846d99f +0 -0
  1291. package/vendor/libgit2/fuzzers/corpora/midx/ea6afcc92b8a6c9e14cc053d351909ad5b0a3fdf +0 -0
  1292. package/vendor/libgit2/fuzzers/corpora/midx/ea8c569029c0cacc4ae75e95b2f4e84abb6867f4 +0 -0
  1293. package/vendor/libgit2/fuzzers/corpora/midx/eb3e80c3ea9cfe9e08b2eef117aaa522a51a619c +0 -0
  1294. package/vendor/libgit2/fuzzers/corpora/midx/ec55b30741fe8fffeec584176c8d20f6a679cfa1 +0 -0
  1295. package/vendor/libgit2/fuzzers/corpora/midx/ed0724a6c3804a3ab20a980b5ca48671689a602f +0 -0
  1296. package/vendor/libgit2/fuzzers/corpora/midx/edeb545d1cf852dc9582fa764010fe844a5e3515 +0 -0
  1297. package/vendor/libgit2/fuzzers/corpora/midx/ee70b920de91f1be6b4448070ee2d1bd9e08286d +0 -0
  1298. package/vendor/libgit2/fuzzers/corpora/midx/ef004af4e947d25b4d1d1dd16502260d4c7a99cd +0 -0
  1299. package/vendor/libgit2/fuzzers/corpora/midx/f009d226503b73aed0f1fd952ef8725433d158be +0 -0
  1300. package/vendor/libgit2/fuzzers/corpora/midx/f0a821dffe21afd357932febaf6e8ee331f53197 +0 -0
  1301. package/vendor/libgit2/fuzzers/corpora/midx/f101a2fe93dfaaed1c596022b4e509cf3a591c8a +0 -0
  1302. package/vendor/libgit2/fuzzers/corpora/midx/f1101f71657385174f8cb920026a761404b4395d +0 -0
  1303. package/vendor/libgit2/fuzzers/corpora/midx/f138c84e42d3cc61a219c4be9db791750f0541c8 +1 -0
  1304. package/vendor/libgit2/fuzzers/corpora/midx/f1da273522bfff4a4971b4ffc31e365f60fdbbfe +0 -0
  1305. package/vendor/libgit2/fuzzers/corpora/midx/f2fe69d30ec47e78a9e92f1423698a52270672b2 +0 -0
  1306. package/vendor/libgit2/fuzzers/corpora/midx/f368bb6f633587a7bb271de7e20695f178c89686 +0 -0
  1307. package/vendor/libgit2/fuzzers/corpora/midx/f38ced5a16edaceb5f527ebc35e7870f42586c90 +0 -0
  1308. package/vendor/libgit2/fuzzers/corpora/midx/f404371362ae68ffb2837ce1766346ebb645d173 +0 -0
  1309. package/vendor/libgit2/fuzzers/corpora/midx/f473b5e1cf51502345f5c1840ec3948d308dd314 +0 -0
  1310. package/vendor/libgit2/fuzzers/corpora/midx/f4ad43d6f913c3be6243dfc439e4b6f5b2e814b9 +0 -0
  1311. package/vendor/libgit2/fuzzers/corpora/midx/f4cde4083a974d755a38bf5ea3820f78b576754a +0 -0
  1312. package/vendor/libgit2/fuzzers/corpora/midx/f5888d0dcacda196d73772aabc18fe2ad6e1dfa2 +0 -0
  1313. package/vendor/libgit2/fuzzers/corpora/midx/f5c3577a62d401f071d5edaa77c54ae98d6a0318 +1 -0
  1314. package/vendor/libgit2/fuzzers/corpora/midx/f5dee0d9da0d6950069ac36b1880090a20f50f3e +0 -0
  1315. package/vendor/libgit2/fuzzers/corpora/midx/f605fff495fef2719585c706c05c350812402a35 +0 -0
  1316. package/vendor/libgit2/fuzzers/corpora/midx/f6fdaf4e77e29c780b9e0b91637777575bebfab4 +0 -0
  1317. package/vendor/libgit2/fuzzers/corpora/midx/f72700bd65fa86c588607ec50d60a9c684c86f43 +0 -0
  1318. package/vendor/libgit2/fuzzers/corpora/midx/f777db12ef18f002febd5af13e2b948c95d964c3 +0 -0
  1319. package/vendor/libgit2/fuzzers/corpora/midx/f777e9274d508e7ac1069e2a04bedc042942491c +0 -0
  1320. package/vendor/libgit2/fuzzers/corpora/midx/f81306f8ceaec3d06d5d34afa9769d15f0d209eb +0 -0
  1321. package/vendor/libgit2/fuzzers/corpora/midx/f84c2b36689f22809d9bda00febab557c381ffa4 +0 -0
  1322. package/vendor/libgit2/fuzzers/corpora/midx/f98168fa74c26b17ad0c3002f2263beb0af7c0ce +0 -0
  1323. package/vendor/libgit2/fuzzers/corpora/midx/fa6759d6a2807bbad83ba21761772c0119122c35 +0 -0
  1324. package/vendor/libgit2/fuzzers/corpora/midx/fa8b927b25a67fa3d60b12c53ac365366cc2b52d +0 -0
  1325. package/vendor/libgit2/fuzzers/corpora/midx/fc5e4b78e59daebed1118389b57a386981f2430e +0 -0
  1326. package/vendor/libgit2/fuzzers/corpora/midx/fdaf408880429153cfcf5d978727cd7b84c3d60e +0 -0
  1327. package/vendor/libgit2/fuzzers/corpora/midx/fe50e7564a28683b24c57f8bcdcb3fbfa61f5c6a +0 -0
  1328. package/vendor/libgit2/fuzzers/corpora/midx/fe64b998872d3ad87df2019173ddc52686841d7d +0 -0
  1329. package/vendor/libgit2/fuzzers/corpora/midx/fec56c7cc86871aaa9c7a947c4084307cac2778d +0 -0
  1330. package/vendor/libgit2/fuzzers/corpora/midx/ff164dfc56dd28709488130dc6dfc17406bf9e9d +0 -0
  1331. package/vendor/libgit2/fuzzers/corpora/midx/ff7035b3c055718728a6025b3cdf55c34c4c744b +0 -0
  1332. package/vendor/libgit2/fuzzers/midx_fuzzer.c +76 -0
  1333. package/vendor/libgit2/git.git-authors +2 -2
  1334. package/vendor/libgit2/include/git2/annotated_commit.h +1 -1
  1335. package/vendor/libgit2/include/git2/blob.h +18 -2
  1336. package/vendor/libgit2/include/git2/branch.h +12 -0
  1337. package/vendor/libgit2/include/git2/cert.h +41 -5
  1338. package/vendor/libgit2/include/git2/config.h +1 -1
  1339. package/vendor/libgit2/include/git2/deprecated.h +102 -8
  1340. package/vendor/libgit2/include/git2/index.h +1 -1
  1341. package/vendor/libgit2/include/git2/patch.h +8 -0
  1342. package/vendor/libgit2/include/git2/refs.h +6 -5
  1343. package/vendor/libgit2/include/git2/remote.h +3 -2
  1344. package/vendor/libgit2/include/git2/repository.h +95 -52
  1345. package/vendor/libgit2/include/git2/revparse.h +5 -5
  1346. package/vendor/libgit2/include/git2/tag.h +12 -0
  1347. package/vendor/libgit2/include/git2/transport.h +1 -1
  1348. package/vendor/libgit2/include/git2/tree.h +0 -14
  1349. package/vendor/libgit2/include/git2/version.h +3 -3
  1350. package/vendor/libgit2/package.json +1 -1
  1351. package/vendor/libgit2/script/thread-sanitizer.supp +26 -0
  1352. package/vendor/libgit2/src/CMakeLists.txt +13 -2
  1353. package/vendor/libgit2/src/alloc.c +21 -8
  1354. package/vendor/libgit2/src/allocators/failalloc.c +92 -0
  1355. package/vendor/libgit2/src/allocators/failalloc.h +23 -0
  1356. package/vendor/libgit2/src/allocators/win32_leakcheck.c +118 -0
  1357. package/vendor/libgit2/src/allocators/{win32_crtdbg.h → win32_leakcheck.h} +3 -3
  1358. package/vendor/libgit2/src/annotated_commit.c +21 -9
  1359. package/vendor/libgit2/src/apply.c +16 -7
  1360. package/vendor/libgit2/src/attr.c +12 -3
  1361. package/vendor/libgit2/src/attr_file.c +8 -5
  1362. package/vendor/libgit2/src/attrcache.c +5 -5
  1363. package/vendor/libgit2/src/blame.c +26 -15
  1364. package/vendor/libgit2/src/blob.c +32 -12
  1365. package/vendor/libgit2/src/branch.c +57 -15
  1366. package/vendor/libgit2/src/buf_text.c +2 -2
  1367. package/vendor/libgit2/src/buffer.c +25 -14
  1368. package/vendor/libgit2/src/buffer.h +2 -2
  1369. package/vendor/libgit2/src/cache.c +3 -3
  1370. package/vendor/libgit2/src/cache.h +7 -7
  1371. package/vendor/libgit2/src/cc-compat.h +1 -1
  1372. package/vendor/libgit2/src/checkout.c +66 -63
  1373. package/vendor/libgit2/src/cherrypick.c +6 -2
  1374. package/vendor/libgit2/src/clone.c +109 -25
  1375. package/vendor/libgit2/src/commit.c +41 -28
  1376. package/vendor/libgit2/src/commit_graph.c +470 -0
  1377. package/vendor/libgit2/src/commit_graph.h +116 -0
  1378. package/vendor/libgit2/src/common.h +4 -2
  1379. package/vendor/libgit2/src/config.c +38 -19
  1380. package/vendor/libgit2/src/config_cache.c +8 -4
  1381. package/vendor/libgit2/src/config_file.c +2 -2
  1382. package/vendor/libgit2/src/config_parse.c +2 -2
  1383. package/vendor/libgit2/src/custom_tls.c +4 -4
  1384. package/vendor/libgit2/src/date.c +2 -1
  1385. package/vendor/libgit2/src/delta.c +1 -1
  1386. package/vendor/libgit2/src/describe.c +7 -4
  1387. package/vendor/libgit2/src/diff.c +11 -8
  1388. package/vendor/libgit2/src/diff_driver.c +2 -2
  1389. package/vendor/libgit2/src/diff_generate.c +45 -15
  1390. package/vendor/libgit2/src/diff_print.c +19 -6
  1391. package/vendor/libgit2/src/diff_stats.c +13 -10
  1392. package/vendor/libgit2/src/diff_tform.c +7 -6
  1393. package/vendor/libgit2/src/errors.c +24 -14
  1394. package/vendor/libgit2/src/features.h.in +1 -1
  1395. package/vendor/libgit2/src/fetch.c +5 -2
  1396. package/vendor/libgit2/src/fetchhead.c +8 -4
  1397. package/vendor/libgit2/src/filebuf.c +9 -7
  1398. package/vendor/libgit2/src/filter.c +31 -25
  1399. package/vendor/libgit2/src/futils.c +5 -5
  1400. package/vendor/libgit2/src/hash/sha1/collisiondetect.c +3 -3
  1401. package/vendor/libgit2/src/hash/sha1/common_crypto.c +3 -3
  1402. package/vendor/libgit2/src/hash/sha1/mbedtls.c +12 -12
  1403. package/vendor/libgit2/src/hash/sha1/openssl.c +3 -3
  1404. package/vendor/libgit2/src/hash/sha1/win32.c +15 -11
  1405. package/vendor/libgit2/src/hash.c +11 -8
  1406. package/vendor/libgit2/src/hashsig.c +20 -9
  1407. package/vendor/libgit2/src/ignore.c +6 -2
  1408. package/vendor/libgit2/src/index.c +109 -72
  1409. package/vendor/libgit2/src/index.h +1 -1
  1410. package/vendor/libgit2/src/indexer.c +50 -32
  1411. package/vendor/libgit2/src/integer.h +77 -0
  1412. package/vendor/libgit2/src/iterator.c +28 -20
  1413. package/vendor/libgit2/src/iterator.h +1 -1
  1414. package/vendor/libgit2/src/{settings.c → libgit2.c} +116 -46
  1415. package/vendor/libgit2/src/libgit2.h +15 -0
  1416. package/vendor/libgit2/src/mailmap.c +19 -10
  1417. package/vendor/libgit2/src/map.h +3 -3
  1418. package/vendor/libgit2/src/merge.c +53 -21
  1419. package/vendor/libgit2/src/merge_driver.c +19 -13
  1420. package/vendor/libgit2/src/merge_file.c +11 -3
  1421. package/vendor/libgit2/src/message.c +3 -1
  1422. package/vendor/libgit2/src/midx.c +477 -0
  1423. package/vendor/libgit2/src/midx.h +94 -0
  1424. package/vendor/libgit2/src/mwindow.c +110 -61
  1425. package/vendor/libgit2/src/mwindow.h +3 -3
  1426. package/vendor/libgit2/src/net.c +15 -4
  1427. package/vendor/libgit2/src/net.h +5 -2
  1428. package/vendor/libgit2/src/netops.c +6 -4
  1429. package/vendor/libgit2/src/netops.h +1 -1
  1430. package/vendor/libgit2/src/notes.c +10 -10
  1431. package/vendor/libgit2/src/object.c +22 -14
  1432. package/vendor/libgit2/src/odb.c +197 -40
  1433. package/vendor/libgit2/src/odb.h +1 -0
  1434. package/vendor/libgit2/src/odb_loose.c +28 -18
  1435. package/vendor/libgit2/src/odb_mempack.c +1 -1
  1436. package/vendor/libgit2/src/odb_pack.c +317 -114
  1437. package/vendor/libgit2/src/oid.c +5 -4
  1438. package/vendor/libgit2/src/pack-objects.c +36 -36
  1439. package/vendor/libgit2/src/pack.c +272 -132
  1440. package/vendor/libgit2/src/pack.h +19 -7
  1441. package/vendor/libgit2/src/patch.c +14 -7
  1442. package/vendor/libgit2/src/patch_generate.c +3 -5
  1443. package/vendor/libgit2/src/patch_parse.c +4 -2
  1444. package/vendor/libgit2/src/path.c +44 -43
  1445. package/vendor/libgit2/src/path.h +0 -2
  1446. package/vendor/libgit2/src/pathspec.c +6 -5
  1447. package/vendor/libgit2/src/pool.c +28 -20
  1448. package/vendor/libgit2/src/pool.h +8 -0
  1449. package/vendor/libgit2/src/posix.c +36 -12
  1450. package/vendor/libgit2/src/posix.h +9 -0
  1451. package/vendor/libgit2/src/reader.c +9 -4
  1452. package/vendor/libgit2/src/rebase.c +26 -18
  1453. package/vendor/libgit2/src/refdb.c +30 -13
  1454. package/vendor/libgit2/src/refdb_fs.c +59 -33
  1455. package/vendor/libgit2/src/reflog.c +19 -14
  1456. package/vendor/libgit2/src/refs.c +92 -44
  1457. package/vendor/libgit2/src/refs.h +1 -2
  1458. package/vendor/libgit2/src/refspec.c +80 -44
  1459. package/vendor/libgit2/src/remote.c +137 -72
  1460. package/vendor/libgit2/src/repository.c +170 -92
  1461. package/vendor/libgit2/src/repository.h +8 -2
  1462. package/vendor/libgit2/src/reset.c +7 -6
  1463. package/vendor/libgit2/src/revert.c +6 -2
  1464. package/vendor/libgit2/src/revparse.c +14 -9
  1465. package/vendor/libgit2/src/revwalk.c +32 -15
  1466. package/vendor/libgit2/src/runtime.c +162 -0
  1467. package/vendor/libgit2/src/runtime.h +62 -0
  1468. package/vendor/libgit2/src/settings.h +11 -0
  1469. package/vendor/libgit2/src/signature.c +6 -5
  1470. package/vendor/libgit2/src/sortedcache.h +1 -1
  1471. package/vendor/libgit2/src/stash.c +3 -1
  1472. package/vendor/libgit2/src/status.c +7 -4
  1473. package/vendor/libgit2/src/strarray.c +2 -1
  1474. package/vendor/libgit2/src/streams/mbedtls.c +8 -8
  1475. package/vendor/libgit2/src/streams/openssl.c +13 -10
  1476. package/vendor/libgit2/src/streams/registry.c +5 -6
  1477. package/vendor/libgit2/src/streams/socket.c +6 -2
  1478. package/vendor/libgit2/src/streams/stransport.c +6 -3
  1479. package/vendor/libgit2/src/streams/tls.c +5 -3
  1480. package/vendor/libgit2/src/submodule.c +89 -33
  1481. package/vendor/libgit2/src/submodule.h +9 -9
  1482. package/vendor/libgit2/src/sysdir.c +8 -7
  1483. package/vendor/libgit2/src/tag.c +47 -11
  1484. package/vendor/libgit2/src/thread.c +140 -0
  1485. package/vendor/libgit2/src/thread.h +422 -0
  1486. package/vendor/libgit2/src/threadstate.c +83 -0
  1487. package/vendor/libgit2/src/threadstate.h +24 -0
  1488. package/vendor/libgit2/src/trace.c +2 -2
  1489. package/vendor/libgit2/src/transaction.c +19 -8
  1490. package/vendor/libgit2/src/transport.c +3 -3
  1491. package/vendor/libgit2/src/transports/auth_negotiate.c +10 -3
  1492. package/vendor/libgit2/src/transports/auth_ntlm.c +8 -4
  1493. package/vendor/libgit2/src/transports/credential.c +15 -7
  1494. package/vendor/libgit2/src/transports/git.c +1 -3
  1495. package/vendor/libgit2/src/transports/http.c +6 -6
  1496. package/vendor/libgit2/src/transports/http.h +1 -0
  1497. package/vendor/libgit2/src/transports/httpclient.c +59 -34
  1498. package/vendor/libgit2/src/transports/local.c +3 -3
  1499. package/vendor/libgit2/src/transports/smart.c +10 -7
  1500. package/vendor/libgit2/src/transports/smart.h +1 -1
  1501. package/vendor/libgit2/src/transports/smart_protocol.c +9 -4
  1502. package/vendor/libgit2/src/transports/ssh.c +47 -13
  1503. package/vendor/libgit2/src/transports/winhttp.c +98 -58
  1504. package/vendor/libgit2/src/tree.c +97 -75
  1505. package/vendor/libgit2/src/tree.h +1 -0
  1506. package/vendor/libgit2/src/tsort.c +0 -2
  1507. package/vendor/libgit2/src/unix/map.c +3 -1
  1508. package/vendor/libgit2/src/unix/posix.h +16 -1
  1509. package/vendor/libgit2/src/unix/pthread.c +27 -6
  1510. package/vendor/libgit2/src/unix/pthread.h +2 -2
  1511. package/vendor/libgit2/src/util.c +53 -12
  1512. package/vendor/libgit2/src/util.h +11 -7
  1513. package/vendor/libgit2/src/vector.c +23 -19
  1514. package/vendor/libgit2/src/win32/findfile.c +4 -2
  1515. package/vendor/libgit2/src/win32/map.c +1 -1
  1516. package/vendor/libgit2/src/win32/msvc-compat.h +9 -1
  1517. package/vendor/libgit2/src/win32/path_w32.c +6 -8
  1518. package/vendor/libgit2/src/win32/posix_w32.c +70 -1
  1519. package/vendor/libgit2/src/win32/precompiled.h +0 -1
  1520. package/vendor/libgit2/src/win32/thread.c +27 -18
  1521. package/vendor/libgit2/src/win32/thread.h +1 -1
  1522. package/vendor/libgit2/src/win32/w32_buffer.c +3 -3
  1523. package/vendor/libgit2/src/win32/w32_leakcheck.c +576 -0
  1524. package/vendor/libgit2/src/win32/w32_leakcheck.h +220 -0
  1525. package/vendor/libgit2/src/worktree.c +27 -12
  1526. package/vendor/libgit2/src/zstream.c +1 -1
  1527. package/vendor/libgit2/tests/clar/fs.h +3 -3
  1528. package/vendor/libgit2/tests/clar/sandbox.h +7 -4
  1529. package/vendor/libgit2/tests/clar_libgit2.c +4 -3
  1530. package/vendor/libgit2/tests/clar_libgit2_trace.c +2 -2
  1531. package/vendor/libgit2/tests/clone/empty.c +17 -0
  1532. package/vendor/libgit2/tests/clone/nonetwork.c +8 -0
  1533. package/vendor/libgit2/tests/config/read.c +76 -0
  1534. package/vendor/libgit2/tests/config/stress.c +5 -0
  1535. package/vendor/libgit2/tests/core/integer.c +253 -0
  1536. package/vendor/libgit2/tests/core/path.c +1 -27
  1537. package/vendor/libgit2/tests/core/strtol.c +2 -0
  1538. package/vendor/libgit2/tests/core/structinit.c +5 -0
  1539. package/vendor/libgit2/tests/core/useragent.c +1 -1
  1540. package/vendor/libgit2/tests/diff/format_email.c +1 -2
  1541. package/vendor/libgit2/tests/diff/parse.c +23 -0
  1542. package/vendor/libgit2/tests/diff/stats.c +36 -2
  1543. package/vendor/libgit2/tests/fetchhead/nonetwork.c +29 -0
  1544. package/vendor/libgit2/tests/filter/bare.c +1 -1
  1545. package/vendor/libgit2/tests/graph/commit_graph.c +90 -0
  1546. package/vendor/libgit2/tests/network/refspecs.c +1 -1
  1547. package/vendor/libgit2/tests/network/remote/isvalidname.c +15 -8
  1548. package/vendor/libgit2/tests/network/urlparse.c +401 -12
  1549. package/vendor/libgit2/tests/online/badssl.c +2 -7
  1550. package/vendor/libgit2/tests/online/clone.c +28 -1
  1551. package/vendor/libgit2/tests/online/push_util.c +3 -1
  1552. package/vendor/libgit2/tests/pack/filelimit.c +1 -1
  1553. package/vendor/libgit2/tests/pack/midx.c +46 -0
  1554. package/vendor/libgit2/tests/pack/threadsafety.c +62 -0
  1555. package/vendor/libgit2/tests/refs/branches/name.c +17 -0
  1556. package/vendor/libgit2/tests/refs/isvalidname.c +29 -22
  1557. package/vendor/libgit2/tests/refs/revparse.c +13 -13
  1558. package/vendor/libgit2/tests/refs/tags/name.c +17 -0
  1559. package/vendor/libgit2/tests/repo/getters.c +13 -0
  1560. package/vendor/libgit2/tests/repo/init.c +120 -81
  1561. package/vendor/libgit2/tests/resources/config/config12 +10 -0
  1562. package/vendor/libgit2/tests/resources/describe/.gitted/refs/tags/A +1 -0
  1563. package/vendor/libgit2/tests/resources/describe/.gitted/refs/tags/B +1 -0
  1564. package/vendor/libgit2/tests/resources/describe/.gitted/refs/tags/D +1 -0
  1565. package/vendor/libgit2/tests/resources/describe/.gitted/refs/tags/R +1 -0
  1566. package/vendor/libgit2/tests/resources/describe/.gitted/refs/tags/c +1 -0
  1567. package/vendor/libgit2/tests/resources/describe/.gitted/refs/tags/e +1 -0
  1568. package/vendor/libgit2/tests/resources/empty_bare.git/refs/tags/dummy-marker.txt +0 -0
  1569. package/vendor/libgit2/tests/resources/empty_standard_repo/.gitted/refs/tags/dummy-marker.txt +0 -0
  1570. package/vendor/libgit2/tests/resources/merge-recursive/.gitted/objects/info/commit-graph +0 -0
  1571. package/vendor/libgit2/tests/resources/push_src/.gitted/refs/tags/tag-blob +1 -0
  1572. package/vendor/libgit2/tests/resources/push_src/.gitted/refs/tags/tag-commit +1 -0
  1573. package/vendor/libgit2/tests/resources/push_src/.gitted/refs/tags/tag-commit-two +1 -0
  1574. package/vendor/libgit2/tests/resources/push_src/.gitted/refs/tags/tag-lightweight +1 -0
  1575. package/vendor/libgit2/tests/resources/push_src/.gitted/refs/tags/tag-tag +1 -0
  1576. package/vendor/libgit2/tests/resources/push_src/.gitted/refs/tags/tag-tree +1 -0
  1577. package/vendor/libgit2/tests/resources/testrepo/.gitted/refs/tags/e90810b +1 -0
  1578. package/vendor/libgit2/tests/resources/testrepo/.gitted/refs/tags/foo/bar +1 -0
  1579. package/vendor/libgit2/tests/resources/testrepo/.gitted/refs/tags/foo/foo/bar +1 -0
  1580. package/vendor/libgit2/tests/resources/testrepo/.gitted/refs/tags/point_to_blob +1 -0
  1581. package/vendor/libgit2/tests/resources/testrepo/.gitted/refs/tags/test +1 -0
  1582. package/vendor/libgit2/tests/resources/testrepo.git/objects/info/commit-graph +0 -0
  1583. package/vendor/libgit2/tests/resources/testrepo.git/objects/pack/multi-pack-index +0 -0
  1584. package/vendor/libgit2/tests/resources/testrepo.git/refs/tags/annotated_tag_to_blob +1 -0
  1585. package/vendor/libgit2/tests/resources/testrepo.git/refs/tags/e90810b +1 -0
  1586. package/vendor/libgit2/tests/resources/testrepo.git/refs/tags/hard_tag +1 -0
  1587. package/vendor/libgit2/tests/resources/testrepo.git/refs/tags/point_to_blob +1 -0
  1588. package/vendor/libgit2/tests/resources/testrepo.git/refs/tags/taggerless +1 -0
  1589. package/vendor/libgit2/tests/resources/testrepo.git/refs/tags/test +1 -0
  1590. package/vendor/libgit2/tests/resources/testrepo.git/refs/tags/wrapped_tag +1 -0
  1591. package/vendor/libgit2/tests/threads/basic.c +7 -1
  1592. package/vendor/libgit2/tests/threads/diff.c +9 -9
  1593. package/vendor/libgit2/tests/threads/thread_helpers.h +1 -1
  1594. package/vendor/libgit2/tests/threads/tlsdata.c +65 -0
  1595. package/vendor/libgit2/tests/trace/windows/stacktrace.c +53 -53
  1596. package/vendor/libgit2/tests/worktree/worktree.c +12 -0
  1597. package/vendor/libgit2.gyp +35 -18
  1598. package/vendor/libssh2/CMakeLists.txt +8 -0
  1599. package/vendor/libssh2/COPYING +3 -1
  1600. package/vendor/libssh2/Makefile.am +5 -3
  1601. package/vendor/libssh2/Makefile.in +29 -15
  1602. package/vendor/libssh2/Makefile.inc +2 -2
  1603. package/vendor/libssh2/NEWS +1376 -486
  1604. package/vendor/libssh2/RELEASE-NOTES +56 -38
  1605. package/vendor/libssh2/acinclude.m4 +1 -0
  1606. package/vendor/libssh2/aclocal.m4 +44 -33
  1607. package/vendor/libssh2/compile +3 -3
  1608. package/vendor/libssh2/configure +9704 -4102
  1609. package/vendor/libssh2/configure.ac +20 -8
  1610. package/vendor/libssh2/depcomp +1 -1
  1611. package/vendor/libssh2/docs/{HACKING.CRYPTO → HACKING-CRYPTO} +312 -49
  1612. package/vendor/libssh2/docs/INSTALL_AUTOTOOLS +2 -2
  1613. package/vendor/libssh2/docs/Makefile.am +2 -2
  1614. package/vendor/libssh2/docs/Makefile.in +14 -7
  1615. package/vendor/libssh2/docs/libssh2_session_callback_set.3 +36 -4
  1616. package/vendor/libssh2/example/CMakeLists.txt +1 -0
  1617. package/vendor/libssh2/example/Makefile.am +3 -3
  1618. package/vendor/libssh2/example/Makefile.in +49 -42
  1619. package/vendor/libssh2/example/ssh2_agent_forwarding.c +292 -0
  1620. package/vendor/libssh2/include/libssh2.h +18 -13
  1621. package/vendor/libssh2/include/libssh2_sftp.h +26 -26
  1622. package/vendor/libssh2/install-sh +92 -69
  1623. package/vendor/libssh2/ltmain.sh +6 -4
  1624. package/vendor/libssh2/m4/libtool.m4 +5 -5
  1625. package/vendor/libssh2/missing +1 -1
  1626. package/vendor/libssh2/src/CMakeLists.txt +8 -2
  1627. package/vendor/libssh2/src/Makefile.in +25 -17
  1628. package/vendor/libssh2/src/agent.c +60 -63
  1629. package/vendor/libssh2/src/agent.h +112 -0
  1630. package/vendor/libssh2/src/agent_win.c +361 -0
  1631. package/vendor/libssh2/src/bcrypt_pbkdf.c +3 -3
  1632. package/vendor/libssh2/src/blf.h +3 -4
  1633. package/vendor/libssh2/src/channel.c +158 -1
  1634. package/vendor/libssh2/src/comp.c +2 -1
  1635. package/vendor/libssh2/src/comp.h +0 -1
  1636. package/vendor/libssh2/src/crypto.h +6 -6
  1637. package/vendor/libssh2/src/global.c +2 -1
  1638. package/vendor/libssh2/src/hostkey.c +41 -2
  1639. package/vendor/libssh2/src/kex.c +691 -974
  1640. package/vendor/libssh2/src/knownhost.c +2 -2
  1641. package/vendor/libssh2/src/libgcrypt.h +4 -1
  1642. package/vendor/libssh2/src/libssh2_config.h.in +6 -18
  1643. package/vendor/libssh2/src/libssh2_priv.h +17 -6
  1644. package/vendor/libssh2/src/mac.h +0 -1
  1645. package/vendor/libssh2/src/mbedtls.c +520 -2
  1646. package/vendor/libssh2/src/mbedtls.h +146 -7
  1647. package/vendor/libssh2/src/misc.c +14 -16
  1648. package/vendor/libssh2/src/openssl.c +227 -181
  1649. package/vendor/libssh2/src/openssl.h +9 -22
  1650. package/vendor/libssh2/src/packet.c +98 -38
  1651. package/vendor/libssh2/src/packet.h +3 -3
  1652. package/vendor/libssh2/src/pem.c +20 -11
  1653. package/vendor/libssh2/src/scp.c +3 -3
  1654. package/vendor/libssh2/src/session.c +2 -2
  1655. package/vendor/libssh2/src/session.h +3 -3
  1656. package/vendor/libssh2/src/sftp.c +1 -1
  1657. package/vendor/libssh2/src/sftp.h +3 -3
  1658. package/vendor/libssh2/src/transport.c +11 -4
  1659. package/vendor/libssh2/src/transport.h +0 -1
  1660. package/vendor/libssh2/src/userauth.c +24 -22
  1661. package/vendor/libssh2/src/userauth.h +3 -3
  1662. package/vendor/libssh2/src/wincng.c +485 -60
  1663. package/vendor/libssh2/src/wincng.h +33 -5
  1664. package/vendor/libssh2/test-driver +6 -4
  1665. package/vendor/libssh2/tests/CMakeLists.txt +4 -1
  1666. package/vendor/libssh2/tests/Makefile.am +60 -23
  1667. package/vendor/libssh2/tests/Makefile.in +223 -65
  1668. package/vendor/libssh2/tests/key_ecdsa +10 -0
  1669. package/vendor/libssh2/tests/key_ecdsa.pub +1 -0
  1670. package/vendor/libssh2/tests/key_ed25519 +7 -0
  1671. package/vendor/libssh2/tests/key_ed25519.pub +1 -0
  1672. package/vendor/libssh2/tests/key_ed25519_encrypted +8 -0
  1673. package/vendor/libssh2/tests/key_ed25519_encrypted.pub +1 -0
  1674. package/vendor/libssh2/tests/key_rsa_encrypted +30 -0
  1675. package/vendor/libssh2/tests/key_rsa_encrypted.pub +1 -0
  1676. package/vendor/libssh2/tests/key_rsa_openssh +27 -0
  1677. package/vendor/libssh2/tests/key_rsa_openssh.pub +1 -0
  1678. package/vendor/libssh2/tests/openssh_fixture.c +141 -46
  1679. package/vendor/libssh2/tests/openssh_server/Dockerfile +9 -0
  1680. package/vendor/libssh2/tests/openssh_server/authorized_keys +1 -0
  1681. package/vendor/libssh2/tests/openssh_server/ca_ecdsa +12 -0
  1682. package/vendor/libssh2/tests/openssh_server/ca_ecdsa.pub +1 -0
  1683. package/vendor/libssh2/tests/openssh_server/ssh_host_ecdsa_key +5 -0
  1684. package/vendor/libssh2/tests/openssh_server/ssh_host_ed25519_key +7 -0
  1685. package/vendor/libssh2/tests/ossfuzz/Makefile.am +32 -0
  1686. package/vendor/libssh2/tests/ossfuzz/Makefile.in +731 -0
  1687. package/vendor/libssh2/tests/ossfuzz/ssh2_client_fuzzer.cc +90 -0
  1688. package/vendor/libssh2/tests/ossfuzz/standaloneengine.cc +74 -0
  1689. package/vendor/libssh2/tests/ossfuzz/testinput.h +3 -0
  1690. package/vendor/libssh2/tests/ssh2.c +9 -5
  1691. package/vendor/libssh2/tests/test_agent_forward_succeeds.c +51 -0
  1692. package/vendor/libssh2/tests/test_hostkey.c +5 -3
  1693. package/vendor/libssh2/tests/test_hostkey_hash.c +32 -19
  1694. package/vendor/libssh2/tests/test_keyboard_interactive_auth_fails_with_wrong_response.c +3 -3
  1695. package/vendor/libssh2/tests/test_keyboard_interactive_auth_succeeds_with_correct_response.c +5 -4
  1696. package/vendor/libssh2/tests/test_password_auth_fails_with_wrong_password.c +1 -1
  1697. package/vendor/libssh2/tests/test_password_auth_fails_with_wrong_username.c +2 -1
  1698. package/vendor/libssh2/tests/test_password_auth_succeeds_with_correct_credentials.c +3 -2
  1699. package/vendor/libssh2/tests/test_public_key_auth_fails_with_wrong_key.c +1 -1
  1700. package/vendor/libssh2/tests/test_public_key_auth_succeeds_with_correct_dsa_key.c +3 -2
  1701. package/vendor/libssh2/tests/test_public_key_auth_succeeds_with_correct_ecdsa_key.c +38 -0
  1702. package/vendor/libssh2/tests/test_public_key_auth_succeeds_with_correct_ed25519_key.c +38 -0
  1703. package/vendor/libssh2/tests/test_public_key_auth_succeeds_with_correct_ed25519_key_from_mem.c +98 -0
  1704. package/vendor/libssh2/tests/test_public_key_auth_succeeds_with_correct_encrypted_ed25519_key.c +39 -0
  1705. package/vendor/libssh2/tests/test_public_key_auth_succeeds_with_correct_encrypted_rsa_key.c +3 -2
  1706. package/vendor/libssh2/tests/test_public_key_auth_succeeds_with_correct_rsa_key.c +3 -2
  1707. package/vendor/libssh2/tests/test_public_key_auth_succeeds_with_correct_rsa_openssh_key.c +3 -2
  1708. package/vendor/libssh2/tests/test_public_key_auth_succeeds_with_correct_signed_ecdsa_key.c +38 -0
  1709. package/vendor/libssh2/vms/libssh2_make_help.dcl +12 -12
  1710. package/vendor/libssh2/win32/libssh2.dsp +8 -0
  1711. package/CHANGELOG.md +0 -3415
  1712. package/HISTORY.md +0 -9
  1713. package/dist/blame.js +0 -22
  1714. package/dist/checkout.js +0 -53
  1715. package/dist/cherrypick.js +0 -62
  1716. package/dist/clone.js +0 -35
  1717. package/dist/status_list.js +0 -14
  1718. package/dist/utils/normalize_fetch_options.js +0 -43
  1719. package/dist/utils/normalize_options.js +0 -31
  1720. package/gibberish/.git/hooks/README.sample +0 -5
  1721. package/include/async_libgit2_queue_worker.h +0 -33
  1722. package/vendor/libgit2/azure-pipelines/bash.yml +0 -17
  1723. package/vendor/libgit2/azure-pipelines/coverity.yml +0 -26
  1724. package/vendor/libgit2/azure-pipelines/docker.yml +0 -51
  1725. package/vendor/libgit2/azure-pipelines/nightly.yml +0 -232
  1726. package/vendor/libgit2/azure-pipelines.yml +0 -203
  1727. package/vendor/libgit2/docs/changelog.md +0 -1627
  1728. package/vendor/libgit2/src/allocators/win32_crtdbg.c +0 -118
  1729. package/vendor/libgit2/src/global.c +0 -357
  1730. package/vendor/libgit2/src/global.h +0 -41
  1731. package/vendor/libgit2/src/thread-utils.c +0 -263
  1732. package/vendor/libgit2/src/thread-utils.h +0 -294
  1733. package/vendor/libgit2/src/win32/w32_crtdbg_stacktrace.c +0 -345
  1734. package/vendor/libgit2/src/win32/w32_crtdbg_stacktrace.h +0 -127
  1735. package/vendor/libgit2/src/win32/w32_stack.c +0 -188
  1736. package/vendor/libgit2/src/win32/w32_stack.h +0 -140
  1737. package/vendor/libssh2/buildconf +0 -22
  1738. package/vendor/libssh2/docs/INSTALL_CMAKE +0 -179
@@ -1,1627 +0,0 @@
1
- v1.0
2
- ----
3
-
4
- This is release v1.0 "Luftschloss", which is the first stabe release of
5
- libgit2. The API will stay compatible across all releases of the same major
6
- version. This release includes bugfixes only and supersedes v0.99, which will
7
- stop being maintained. Both v0.27 and v0.28 stay supported in accordance with
8
- our release policy.
9
-
10
- ### Changes or improvements
11
-
12
- - CMake was converted to make use of the GNUInstallDirs module for both our
13
- pkgconfig and install targets in favor of our custom build options
14
- `BIN_INSTALL_DIR`, `LIB_INSTALL_DIR` and `INCLUDE_INSTALL_DIR`. Instead, you
15
- can now use CMakes standard variables `CMAKE_INSTALL_BINDIR`,
16
- `CMAKE_INSTALL_LIBDIR` and `CMAKE_INSTALL_INCLUDEDIR`.
17
-
18
- - Some CMake build options accepted either a specific value or a boolean value
19
- to disable the option altogether or use automatic detection. We only accepted
20
- "ON" or "OFF", but none of the other values CMake recognizes as boolean. This
21
- was aligned with CMake's understanding of booleans.
22
-
23
- - The installed pkgconfig file contained incorrect values for both `libdir` and
24
- `includedir` variables.
25
-
26
- - If using pcre2 for regular expressions, then we incorrectly added "pcre2"
27
- instead of "pcre2-8" to our pkgconfig dependencies, which was corrected.
28
-
29
- - Fixed building the bundled ntlmclient dependency on FreeBSD, OpenBSD and
30
- SunOS.
31
-
32
- - When writing symlinks on Windows, we incorrectly handled relative symlink
33
- targets, which was corrected.
34
-
35
- - When using the HTTP protocol via macOS' SecureTransport implementation, reads
36
- could stall at the end of the session and only continue after a timeout of 60
37
- seconds was reached.
38
-
39
- - The filesystem-based reference callback didn't corectly initialize the backend
40
- version.
41
-
42
- - A segmentation fault was fixed when calling `git_blame_buffer()` for files
43
- that were modified and added to the index.
44
-
45
- - A backwards-incompatible change was introduced when we moved some structures
46
- from "git2/credentials.h" into "git2/sys/credentials.h". This was fixed in the
47
- case where you do not use hard deprecation.
48
-
49
- - Improved error handling in various places.
50
-
51
-
52
- v0.99
53
- -----
54
-
55
- This is v0.99 "Torschlusspanik". This will be the last minor release
56
- before libgit2 v1.0. We expect to only respond to bugs in this release,
57
- to stabilize it for next major release.
58
-
59
- It contains significant refactorings, but is expected to be API-compatible
60
- with v0.28.0.
61
-
62
- ### Changes or improvements
63
-
64
- * When fetching from an anonymous remote using a URL with authentication
65
- information provided in the URL (eg `https://foo:bar@example.com/repo`),
66
- we would erroneously include the literal URL in the FETCH_HEAD file.
67
- We now remove that to match git's behavior.
68
-
69
- * Some credential structures, enums and values have been renamed:
70
- `git_cred` is now `git_credential`. `git_credtype_t` is now
71
- `git_credential_t`. Functions and types beginning with
72
- `git_cred_` now begin with `git_credential`, and constants beginning
73
- with `GIT_CREDTYPE` now begin with `GIT_CREDENTIAL`. The former names
74
- are deprecated.
75
-
76
- * Several function signatures have been changed to return an `int` to
77
- indicate error conditions. We encourage you to check them for errors
78
- in the standard way.
79
-
80
- * `git_attr_cache_flush`
81
- * `git_error_set_str`
82
- * `git_index_name_clear`
83
- * `git_index_reuc_clear`
84
- * `git_libgit2_version`
85
- * `git_mempack_reset`
86
- * `git_oid_cpy`
87
- * `git_oid_fmt`
88
- * `git_oid_fromraw`
89
- * `git_oid_nfmt`
90
- * `git_oid_pathfmt`
91
- * `git_remote_stop`
92
- * `git_remote_disconnect`
93
- * `git_repository__cleanup`
94
- * `git_repository_set_config`
95
- * `git_repository_set_index`
96
- * `git_repository_set_odb`
97
- * `git_repository_set_refdb`
98
- * `git_revwalk_reset`
99
- * `git_revwalk_simplify_first_parent`
100
- * `git_revwalk_sorting`
101
- * `git_treebuilder_clear`
102
- * `git_treebuilder_filter`
103
-
104
- * The NTLM and Negotiate authentication mechanisms are now supported when
105
- talking to git implementations hosted on Apache or nginx servers.
106
-
107
- * The `HEAD` symbolic reference can no longer be deleted.
108
-
109
- * `git_merge_driver_source_repo` no longer returns a `const git_repository *`,
110
- it now returns a non-`const` `git_repository *`.
111
-
112
- * Relative symbolic links are now supported on Windows when `core.symlinks`
113
- is enabled.
114
-
115
- * Servers that provide query parameters with a redirect are now supported.
116
-
117
- * `git_submodule_sync` will now resolve relative URLs.
118
-
119
- * When creating git endpoint URLs, double-slashes are no longer used when
120
- the given git URL has a trailing slash.
121
-
122
- * On Windows, a `DllMain` function is no longer included and thread-local
123
- storage has moved to fiber-local storage in order to prevent race
124
- conditions during shutdown.
125
-
126
- * The tracing mechanism (`GIT_TRACE`) is now enabled by default and does
127
- not need to be explicitly enabled in CMake.
128
-
129
- * The size of Git objects is now represented by `git_object_size_t`
130
- instead of `off_t`.
131
-
132
- * Binary patches without data can now be parsed.
133
-
134
- * A configuration snapshot can now be created from another configuration
135
- snapshot, not just a "true" configuration object.
136
-
137
- * The `git_commit_with_signature` API will now ensure that referenced
138
- objects exist in the object database.
139
-
140
- * Stash messages containing newlines will now be replaced with spaces;
141
- they will no longer be (erroneously) written to the repository.
142
-
143
- * `git_commit_create_with_signature` now verifies the commit information
144
- to ensure that it points to a valid tree and valid parents.
145
-
146
- * `git_apply` has an option `GIT_APPLY_CHECK` that will only do a dry-run.
147
- The index and working directory will remain unmodified, and application
148
- will report if it would have worked.
149
-
150
- * Patches produced by Mercurial (those that lack some git extended headers)
151
- can now be parsed and applied.
152
-
153
- * Reference locks are obeyed correctly on POSIX platforms, instead of
154
- being removed.
155
-
156
- * Patches with empty new files can now be read and applied.
157
-
158
- * `git_apply_to_tree` can now correctly apply patches that add new files.
159
-
160
- * The program data configuration on Windows (`C:\ProgramData\Git\config`)
161
- must be owned by an administrator, a system account or the current user
162
- to be read.
163
-
164
- * `git_blob_filtered_content` is now deprecated in favor of `git_blob_filter`.
165
-
166
- * Configuration files can now be included conditionally using the
167
- `onbranch` conditional.
168
-
169
- * Checkout can now properly create and remove symbolic links to directories
170
- on Windows.
171
-
172
- * Stash no longer recomputes trees when committing a worktree, for
173
- improved performance.
174
-
175
- * Repository templates can now include a `HEAD` file to default the
176
- initial default branch.
177
-
178
- * Some configuration structures, enums and values have been renamed:
179
- `git_cvar_map` is now `git_configmap`, `git_cvar_t` is now
180
- `git_configmap_t`, `GIT_CVAR_FALSE` is now `GIT_CONFIGMAP_FALSE`,
181
- `GIT_CVAR_TRUE` is now `GIT_CONFIGMAP_TRUE`, `GIT_CVAR_INT32` is now
182
- `GIT_CONFIGMAP_INT32`, and `GIT_CVAR_STRING` is now `GIT_CONFIGMAP_STRING`.
183
- The former names are deprecated.
184
-
185
- * Repositories can now be created at the root of a Windows drive.
186
-
187
- * Configuration lookups are now more efficiently cached.
188
-
189
- * `git_commit_create_with_signature` now supports a `NULL` signature,
190
- which will create a commit without adding a signature.
191
-
192
- * When a repository lacks an `info` "common directory", we will no
193
- longer erroneously return `GIT_ENOTFOUND` for all attribute lookups.
194
-
195
- * Several attribute macros have been renamed: `GIT_ATTR_TRUE` is now
196
- `GIT_ATTR_IS_TRUE`, `GIT_ATTR_FALSE` is now `GIT_ATTR_IS_FALSE`,
197
- `GIT_ATTR_UNSPECIFIED` is now `GIT_ATTR_IS_UNSPECIFIED`. The
198
- attribute enum `git_attr_t` is now `git_attr_value_t` and its
199
- values have been renamed: `GIT_ATTR_UNSPECIFIED_T` is now
200
- `GIT_ATTR_VALUE_UNSPECIFIED`, `GIT_ATTR_TRUE_T` is now
201
- `GIT_ATTR_VALUE_TRUE`, `GIT_ATTR_FALSE_T` is now `GIT_ATTR_VALUE_FALSE`,
202
- and `GIT_ATTR_VALUE_T` is now `GIT_ATTR_VALUE_STRING`. The
203
- former names are deprecated.
204
-
205
- * `git_object__size` is now `git_object_size`. The former name is
206
- deprecated.
207
-
208
- * `git_tag_create_frombuffer` is now `git_tag_create_from_buffer`. The
209
- former name is deprecated.
210
-
211
- * Several blob creation functions have been renamed:
212
- `git_blob_create_frombuffer` is now named `git_blob_create_from_buffer`,
213
- `git_blob_create_fromdisk` is now named `git_blob_create_from_disk`,
214
- `git_blob_create_fromworkdir` is now named `git_blob_create_from_workdir`,
215
- `git_blob_create_fromstream` is now named `git_blob_create_from_stream`,
216
- and `git_blob_create_fromstream_commit` is now named
217
- `git_blob_create_from_stream_commit`. The former names are deprecated.
218
-
219
- * The function `git_oid_iszero` is now named `git_oid_is_zero`. The
220
- former name is deprecated.
221
-
222
- * Pattern matching is now done using `wildmatch` instead of `fnmatch`
223
- for compatibility with git.
224
-
225
- * The option initialization functions suffixed by `init_options` are now
226
- suffixed with `options_init`. (For example, `git_checkout_init_options`
227
- is now `git_checkout_options_init`.) The former names are deprecated.
228
-
229
- * NTLM2 authentication is now supported on non-Windows platforms.
230
-
231
- * The `git_cred_sign_callback` callback is now named `git_cred_sign_cb`.
232
- The `git_cred_ssh_interactive_callback` callback is now named
233
- `git_cred_ssh_interactive_cb`.
234
-
235
- * Ignore files now:
236
-
237
- * honor escaped trailing whitespace.
238
- * do not incorrectly negate sibling paths of a negated pattern.
239
- * honor rules that stop ignoring files after a wildcard
240
-
241
- * Attribute files now:
242
-
243
- * honor leading and trailing whitespace.
244
- * treat paths beginning with `\` as absolute only on Windows.
245
- * properly handle escaped characters.
246
- * stop reading macros defined in subdirectories
247
-
248
- * The C locale is now correctly used when parsing regular expressions.
249
-
250
- * The system PCRE2 or PCRE regular expression libraries are now used
251
- when `regcomp_l` is not available on the system. If none of these
252
- are available on the system, an included version of PCRE is used.
253
-
254
- * Wildcards in reference specifications are now supported beyond simply
255
- a bare wildcard (`*`) for compatibility with git.
256
-
257
- * When `git_ignore_path_is_ignored` is provided a path with a trailing
258
- slash (eg, `dir/`), it will now treat it as a directory for the
259
- purposes of ignore matching.
260
-
261
- * Patches that add or remove a file with a space in the path can now
262
- be correctly parsed.
263
-
264
- * The `git_remote_completion_type` type is now `git_remote_completion_t`.
265
- The former name is deprecated.
266
-
267
- * The `git_odb_backend_malloc` is now `git_odb_backend_data_alloc`. The
268
- former name is deprecated.
269
-
270
- * The `git_transfer_progress_cb` callback is now `git_indexer_progress_cb`
271
- and the `git_transfer_progress` structure is now `git_indexer_progress`.
272
- The former names are deprecated.
273
-
274
- * The example projects are now contained in a single `lg2` executable
275
- for ease of use.
276
-
277
- * libgit2 now correctly handles more URLs, such as
278
- `http://example.com:/repo.git` (colon but no port),
279
- `http://example.com` (no path),
280
- and `http://example.com:8080/` (path is /, nonstandard port).
281
-
282
- * A carefully constructed commit object with a very large number
283
- of parents may lead to potential out-of-bounds writes or
284
- potential denial of service.
285
-
286
- * The ProgramData configuration file is always read for compatibility
287
- with Git for Windows and Portable Git installations. The ProgramData
288
- location is not necessarily writable only by administrators, so we
289
- now ensure that the configuration file is owned by the administrator
290
- or the current user.
291
-
292
- ### API additions
293
-
294
- * The SSH host key now supports SHA-256 when `GIT_CERT_SSH_SHA256` is set.
295
-
296
- * The diff format option `GIT_DIFF_FORMAT_PATCH_ID` can now be used to
297
- emit an output like `git patch-id`.
298
-
299
- * The `git_apply_options_init` function will initialize a
300
- `git_apply_options` structure.
301
-
302
- * The remote callbacks structure adds a `git_url_resolve_cb` callback
303
- that is invoked when connecting to a server, so that applications
304
- may edit or replace the URL before connection.
305
-
306
- * The information about the original `HEAD` in a rebase operation is
307
- available with `git_rebase_orig_head_name`. Its ID is available with
308
- `git_rebase_orig_head_id`. The `onto` reference name is available with
309
- `git_rebase_onto_name` and its ID is available with `git_rebase_onto_id`.
310
-
311
- * ODB backends can now free backend data when an error occurs during its
312
- backend data creation using `git_odb_backend_data_free`.
313
-
314
- * Options may be specified to `git_repository_foreach_head` to control
315
- its behavior: `GIT_REPOSITORY_FOREACH_HEAD_SKIP_REPO` will not skip
316
- the main repository's HEAD reference, while
317
- `GIT_REPOSITORY_FOREACH_HEAD_SKIP_WORKTREES` will now skip the
318
- worktree HEAD references.
319
-
320
- * The `GIT_OPT_DISABLE_PACK_KEEP_FILE_CHECKS` option can be specified to
321
- `git_libgit2_opts()` to avoid looking for `.keep` files that correspond
322
- to packfiles. This setting can improve performance when packfiles are
323
- stored on high-latency filesystems like network filesystems.
324
-
325
- * Blobs can now be filtered with `git_blob_filter`, which allows for
326
- options to be set with `git_blob_filter_options`, including
327
- `GIT_FILTER_NO_SYSTEM_ATTRIBUTES` to disable filtering with system-level
328
- attributes in `/etc/gitattributes` and `GIT_ATTR_CHECK_INCLUDE_HEAD` to
329
- enable filtering with `.gitattributes` files in the HEAD revision.
330
-
331
- ### API removals
332
-
333
- * The unused `git_headlist_cb` function declaration was removed.
334
-
335
- * The unused `git_time_monotonic` API is removed.
336
-
337
- * The erroneously exported `inttypes.h` header was removed.
338
-
339
- # Security Fixes
340
-
341
- - CVE-2019-1348: the fast-import stream command "feature
342
- export-marks=path" allows writing to arbitrary file paths. As
343
- libgit2 does not offer any interface for fast-import, it is not
344
- susceptible to this vulnerability.
345
-
346
- - CVE-2019-1349: by using NTFS 8.3 short names, backslashes or
347
- alternate filesystreams, it is possible to cause submodules to
348
- be written into pre-existing directories during a recursive
349
- clone using git. As libgit2 rejects cloning into non-empty
350
- directories by default, it is not susceptible to this
351
- vulnerability.
352
-
353
- - CVE-2019-1350: recursive clones may lead to arbitrary remote
354
- code executing due to improper quoting of command line
355
- arguments. As libgit2 uses libssh2, which does not require us
356
- to perform command line parsing, it is not susceptible to this
357
- vulnerability.
358
-
359
- - CVE-2019-1351: Windows provides the ability to substitute
360
- drive letters with arbitrary letters, including multi-byte
361
- Unicode letters. To fix any potential issues arising from
362
- interpreting such paths as relative paths, we have extended
363
- detection of DOS drive prefixes to accomodate for such cases.
364
-
365
- - CVE-2019-1352: by using NTFS-style alternative file streams for
366
- the ".git" directory, it is possible to overwrite parts of the
367
- repository. While this has been fixed in the past for Windows,
368
- the same vulnerability may also exist on other systems that
369
- write to NTFS filesystems. We now reject any paths starting
370
- with ".git:" on all systems.
371
-
372
- - CVE-2019-1353: by using NTFS-style 8.3 short names, it was
373
- possible to write to the ".git" directory and thus overwrite
374
- parts of the repository, leading to possible remote code
375
- execution. While this problem was already fixed in the past for
376
- Windows, other systems accessing NTFS filesystems are
377
- vulnerable to this issue too. We now enable NTFS protecions by
378
- default on all systems to fix this attack vector.
379
-
380
- - CVE-2019-1354: on Windows, backslashes are not a valid part of
381
- a filename but are instead interpreted as directory separators.
382
- As other platforms allowed to use such paths, it was possible
383
- to write such invalid entries into a Git repository and was
384
- thus an attack vector to write into the ".git" dierctory. We
385
- now reject any entries starting with ".git\" on all systems.
386
-
387
- - CVE-2019-1387: it is possible to let a submodule's git
388
- directory point into a sibling's submodule directory, which may
389
- result in overwriting parts of the Git repository and thus lead
390
- to arbitrary command execution. As libgit2 doesn't provide any
391
- way to do submodule clones natively, it is not susceptible to
392
- this vulnerability. Users of libgit2 that have implemented
393
- recursive submodule clones manually are encouraged to review
394
- their implementation for this vulnerability.
395
-
396
- ### Breaking API changes
397
-
398
- * The "private" implementation details of the `git_cred` structure have been
399
- moved to a dedicated `git2/sys/cred.h` header, to clarify that the underlying
400
- structures are only provided for custom transport implementers.
401
- The breaking change is that the `username` member of the underlying struct
402
- is now hidden, and a new `git_cred_get_username` function has been provided.
403
-
404
- ### Breaking CMake configuration changes
405
-
406
- * The CMake option to use a system http-parser library, instead of the
407
- bundled dependency, has changed. This is due to a deficiency in
408
- http-parser that we have fixed in our implementation. The bundled
409
- library is now the default, but if you wish to force the use of the
410
- system http-parser implementation despite incompatibilities, you can
411
- specify `-DUSE_HTTP_PARSER=system` to CMake.
412
-
413
- * The interactions between `USE_HTTPS` and `SHA1_BACKEND` have been
414
- streamlined. The detection was moved to a new `USE_SHA1`, modeled after
415
- `USE_HTTPS`, which takes the values "CollisionDetection/Backend/Generic", to
416
- better match how the "hashing backend" is selected, the default (ON) being
417
- "CollisionDetection". If you were using `SHA1_BACKEND` previously, you'll
418
- need to check the value you've used, or switch to the autodetection.
419
-
420
- ### Authors
421
-
422
- The following individuals provided changes that were included in this
423
- release:
424
-
425
- * Aaron Patterson
426
- * Alberto Fanjul
427
- * Anders Borum
428
- * Augie Fackler
429
- * Augustin Fabre
430
- * Ayush Shridhar
431
- * brian m. carlson
432
- * buddyspike
433
- * Carlos Martín Nieto
434
- * cheese1
435
- * Dan Skorupski
436
- * Daniel Cohen Gindi
437
- * Dave Lee
438
- * David Brooks
439
- * David Turner
440
- * Denis Laxalde
441
- * Dhruva Krishnamurthy
442
- * Dominik Ritter
443
- * Drew DeVault
444
- * Edward Thomson
445
- * Eric Huss
446
- * Erik Aigner
447
- * Etienne Samson
448
- * Gregory Herrero
449
- * Heiko Voigt
450
- * Ian Hattendorf
451
- * Jacques Germishuys
452
- * Janardhan Pulivarthi
453
- * Jason Haslam
454
- * Johannes Schindelin
455
- * Jordan Wallet
456
- * Josh Bleecher Snyder
457
- * kas
458
- * kdj0c
459
- * Laurence McGlashan
460
- * lhchavez
461
- * Lukas Berk
462
- * Max Kostyukevich
463
- * Patrick Steinhardt
464
- * pcpthm
465
- * Remy Suen
466
- * Robert Coup
467
- * romkatv
468
- * Scott Furry
469
- * Sebastian Henke
470
- * Stefan Widgren
471
- * Steve King Jr
472
- * Sven Strickroth
473
- * Tobias Nießen
474
- * Tyler Ang-Wanek
475
- * Tyler Wanek
476
-
477
- v0.28
478
- -----
479
-
480
- ### Changes or improvements
481
-
482
- * The library is now always built with cdecl calling conventions on
483
- Windows; the ability to build a stdcall library has been removed.
484
-
485
- * Reference log creation now honors `core.logallrefupdates=always`.
486
-
487
- * Fix some issues with the error-reporting in the OpenSSL backend.
488
-
489
- * HTTP proxy support is now builtin; libcurl is no longer used to support
490
- proxies and is removed as a dependency.
491
-
492
- * Certificate and credential callbacks can now return `GIT_PASSTHROUGH`
493
- to decline to act; libgit2 will behave as if there was no callback set
494
- in the first place.
495
-
496
- * The line-ending filtering logic - when checking out files - has been
497
- updated to match newer git (>= git 2.9) for proper interoperability.
498
-
499
- * Symbolic links are now supported on Windows when `core.symlinks` is set
500
- to `true`.
501
-
502
- * Submodules with names which attempt to perform path traversal now have their
503
- configuration ignored. Such names were blindly appended to the
504
- `$GIT_DIR/modules` and a malicious name could lead to an attacker writing to
505
- an arbitrary location. This matches git's handling of CVE-2018-11235.
506
-
507
- * Object validation is now performed during tree creation in the
508
- `git_index_write_tree_to` API.
509
-
510
- * Configuration variable may now be specified on the same line as a section
511
- header; previously this was erroneously a parser error.
512
-
513
- * When an HTTP server supports both NTLM and Negotiate authentication
514
- mechanisms, we would previously fail to authenticate with any mechanism.
515
-
516
- * The `GIT_OPT_SET_PACK_MAX_OBJECTS` option can now set the maximum
517
- number of objects allowed in a packfile being downloaded; this can help
518
- limit the maximum memory used when fetching from an untrusted remote.
519
-
520
- * Line numbers in diffs loaded from patch files were not being populated;
521
- they are now included in the results.
522
-
523
- * The repository's index is reloaded from disk at the beginning of
524
- `git_merge` operations to ensure that it is up-to-date.
525
-
526
- * Mailmap handling APIs have been introduced, and the new commit APIs
527
- `git_commit_committer_with_mailmap` and `git_commit_author_with_mailmap`
528
- will use the mailmap to resolve the committer and author information.
529
- In addition, blame will use the mailmap given when the
530
- `GIT_BLAME_USE_MAILMAP` option.
531
-
532
- * Ignore handling for files in ignored folders would be ignored.
533
-
534
- * Worktrees can now be backed by bare repositories.
535
-
536
- * Trailing spaces are supported in `.gitignore` files, these spaces were
537
- previously (and erroneously) treated as part of the pattern.
538
-
539
- * The library can now be built with mbedTLS support for HTTPS.
540
-
541
- * The diff status character 'T' will now be presented by the
542
- `git_diff_status_char` API for diff entries that change type.
543
-
544
- * Revision walks previously would sometimes include commits that should
545
- have been ignored; this is corrected.
546
-
547
- * Revision walks are now more efficient when the output is unsorted;
548
- we now avoid walking all the way to the beginning of history unnecessarily.
549
-
550
- * Error-handling around index extension loading has been fixed. We were
551
- previously always misreporting a truncated index (#4858).
552
-
553
- ### API additions
554
-
555
- * The index may now be iterated atomically using `git_index_iterator`.
556
-
557
- * Remote objects can now be created with extended options using the
558
- `git_remote_create_with_opts` API.
559
-
560
- * Diff objects can now be applied as changes to the working directory,
561
- index or both, emulating the `git apply` command. Additionally,
562
- `git_apply_to_tree` can apply those changes to a tree object as a
563
- fully in-memory operation.
564
-
565
- * You can now swap out memory allocators via the
566
- `GIT_OPT_SET_ALLOCATOR` option with `git_libgit2_opts()`.
567
-
568
- * You can now ensure that functions do not discard unwritten changes to the
569
- index via the `GIT_OPT_ENABLE_UNSAVED_INDEX_SAFETY` option to
570
- `git_libgit2_opts()`. This will cause functions that implicitly re-read
571
- the index (eg, `git_checkout`) to fail if you have staged changes to the
572
- index but you have not written the index to disk. (Unless the checkout
573
- has the FORCE flag specified.)
574
-
575
- At present, this defaults to off, but we intend to enable this more
576
- broadly in the future, as a warning or error. We encourage you to
577
- examine your code to ensure that you are not relying on the current
578
- behavior that implicitly removes staged changes.
579
-
580
- * Reference specifications can be parsed from an arbitrary string with
581
- the `git_refspec_parse` API.
582
-
583
- * You can now get the name and path of worktrees using the
584
- `git_worktree_name` and `git_worktree_path` APIs, respectively.
585
-
586
- * The `ref` field has been added to `git_worktree_add_options` to enable
587
- the creation of a worktree from a pre-existing branch.
588
-
589
- * It's now possible to analyze merge relationships between any two
590
- references, not just against `HEAD`, using `git_merge_analysis_for_ref`.
591
-
592
- ### API removals
593
-
594
- * The `git_buf_free` API is deprecated; it has been renamed to
595
- `git_buf_dispose` for consistency. The `git_buf_free` API will be
596
- retained for backward compatibility for the foreseeable future.
597
-
598
- * The `git_otype` enumeration and its members are deprecated and have
599
- been renamed for consistency. The `GIT_OBJ_` enumeration values are
600
- now prefixed with `GIT_OBJECT_`. The old enumerations and macros
601
- will be retained for backward compatibility for the foreseeable future.
602
-
603
- * Several index-related APIs have been renamed for consistency. The
604
- `GIT_IDXENTRY_` enumeration values and macros have been renamed to
605
- be prefixed with `GIT_INDEX_ENTRY_`. The `GIT_INDEXCAP` enumeration
606
- values are now prefixed with `GIT_INDEX_CAPABILITY_`. The old
607
- enumerations and macros will be retained for backward compatibility
608
- for the foreseeable future.
609
-
610
- * The error functions and enumeration values have been renamed for
611
- consistency. The `giterr_` functions and values prefix have been
612
- renamed to be prefixed with `git_error_`; similarly, the `GITERR_`
613
- constants have been renamed to be prefixed with `GIT_ERROR_`.
614
- The old enumerations and macros will be retained for backward
615
- compatibility for the foreseeable future.
616
-
617
- ### Breaking API changes
618
-
619
- * The default checkout strategy changed from `DRY_RUN` to `SAFE` (#4531).
620
-
621
- * Adding a symlink as .gitmodules into the index from the workdir or checking
622
- out such files is not allowed as this can make a Git implementation write
623
- outside of the repository and bypass the fsck checks for CVE-2018-11235.
624
-
625
- v0.27
626
- ---------
627
-
628
- ### Changes or improvements
629
-
630
- * Improved `p_unlink` in `posix_w32.c` to try and make a file writable
631
- before sleeping in the retry loop to prevent unnecessary calls to sleep.
632
-
633
- * The CMake build infrastructure has been improved to speed up building time.
634
-
635
- * A new CMake option "-DUSE_HTTPS=<backend>" makes it possible to explicitly
636
- choose an HTTP backend.
637
-
638
- * A new CMake option "-DSHA1_BACKEND=<backend>" makes it possible to explicitly
639
- choose an SHA1 backend. The collision-detecting backend is now the default.
640
-
641
- * A new CMake option "-DUSE_BUNDLED_ZLIB" makes it possible to explicitly use
642
- the bundled zlib library.
643
-
644
- * A new CMake option "-DENABLE_REPRODUCIBLE_BUILDS" makes it possible to
645
- generate a reproducible static archive. This requires support from your
646
- toolchain.
647
-
648
- * The minimum required CMake version has been bumped to 2.8.11.
649
-
650
- * Writing to a configuration file now preserves the case of the key given by the
651
- caller for the case-insensitive portions of the key (existing sections are
652
- used even if they don't match).
653
-
654
- * We now support conditional includes in configuration files.
655
-
656
- * Fix for handling re-reading of configuration files with includes.
657
-
658
- * Fix for reading patches which contain exact renames only.
659
-
660
- * Fix for reading patches with whitespace in the compared files' paths.
661
-
662
- * We will now fill `FETCH_HEAD` from all passed refspecs instead of overwriting
663
- with the last one.
664
-
665
- * There is a new diff option, `GIT_DIFF_INDENT_HEURISTIC` which activates a
666
- heuristic which takes into account whitespace and indentation in order to
667
- produce better diffs when dealing with ambiguous diff hunks.
668
-
669
- * Fix for pattern-based ignore rules where files ignored by a rule cannot be
670
- un-ignored by another rule.
671
-
672
- * Sockets opened by libgit2 are now being closed on exec(3) if the platform
673
- supports it.
674
-
675
- * Fix for peeling annotated tags from packed-refs files.
676
-
677
- * Fix reading huge loose objects from the object database.
678
-
679
- * Fix files not being treated as modified when only the file mode has changed.
680
-
681
- * We now explicitly reject adding submodules to the index via
682
- `git_index_add_frombuffer`.
683
-
684
- * Fix handling of `GIT_DIFF_FIND_RENAMES_FROM_REWRITES` raising `SIGABRT` when
685
- one file has been deleted and another file has been rewritten.
686
-
687
- * Fix for WinHTTP not properly handling NTLM and Negotiate challenges.
688
-
689
- * When using SSH-based transports, we now repeatedly ask for the passphrase to
690
- decrypt the private key in case a wrong passphrase is being provided.
691
-
692
- * When generating conflict markers, they will now use the same line endings as
693
- the rest of the file.
694
-
695
- ### API additions
696
-
697
- * The `git_merge_file_options` structure now contains a new setting,
698
- `marker_size`. This allows users to set the size of markers that
699
- delineate the sides of merged files in the output conflict file.
700
- By default this is 7 (`GIT_MERGE_CONFLICT_MARKER_SIZE`), which
701
- produces output markers like `<<<<<<<` and `>>>>>>>`.
702
-
703
- * `git_remote_create_detached()` creates a remote that is not associated
704
- to any repository (and does not apply configuration like 'insteadof' rules).
705
- This is mostly useful for e.g. emulating `git ls-remote` behavior.
706
-
707
- * `git_diff_patchid()` lets you generate patch IDs for diffs.
708
-
709
- * `git_status_options` now has an additional field `baseline` to allow creating
710
- status lists against different trees.
711
-
712
- * New family of functions to allow creating notes for a specific notes commit
713
- instead of for a notes reference.
714
-
715
- * New family of functions to allow parsing message trailers. This API is still
716
- experimental and may change in future releases.
717
-
718
- ### API removals
719
-
720
- ### Breaking API changes
721
-
722
- * Signatures now distinguish between +0000 and -0000 UTC offsets.
723
-
724
- * The certificate check callback in the WinHTTP transport will now receive the
725
- `message_cb_payload` instead of the `cred_acquire_payload`.
726
-
727
- * We are now reading symlinked directories under .git/refs.
728
-
729
- * We now refuse creating branches named "HEAD".
730
-
731
- * We now refuse reading and writing all-zero object IDs into the
732
- object database.
733
-
734
- * We now read the effective user's configuration file instead of the real user's
735
- configuration in case libgit2 runs as part of a setuid binary.
736
-
737
- * The `git_odb_open_rstream` function and its `readstream` callback in the
738
- `git_odb_backend` interface have changed their signatures to allow providing
739
- the object's size and type to the caller.
740
-
741
- v0.26
742
- -----
743
-
744
- ### Changes or improvements
745
-
746
- * Support for opening, creating and modifying worktrees.
747
-
748
- * We can now detect SHA1 collisions resulting from the SHAttered attack. These
749
- checks can be enabled at build time via `-DUSE_SHA1DC`.
750
-
751
- * Fix for missing implementation of `git_merge_driver_source` getters.
752
-
753
- * Fix for installed pkg-config file being broken when the prefix contains
754
- spaces.
755
-
756
- * We now detect when the hashsum of on-disk objects does not match their
757
- expected hashsum.
758
-
759
- * We now support open-ended ranges (e.g. "master..", "...master") in our
760
- revision range parsing code.
761
-
762
- * We now correctly compute ignores with leading "/" in subdirectories.
763
-
764
- * We now optionally call `fsync` on loose objects, packfiles and their indexes,
765
- loose references and packed reference files.
766
-
767
- * We can now build against OpenSSL v1.1 and against LibreSSL.
768
-
769
- * `GIT_MERGE_OPTIONS_INIT` now includes a setting to perform rename detection.
770
- This aligns this structure with the default by `git_merge` and
771
- `git_merge_trees` when `NULL` was provided for the options.
772
-
773
- * Improvements for reading index v4 files.
774
-
775
- * Perform additional retries for filesystem operations on Windows when files
776
- are temporarily locked by other processes.
777
-
778
- ### API additions
779
-
780
- * New family of functions to handle worktrees:
781
-
782
- * `git_worktree_list()` lets you look up worktrees for a repository.
783
- * `git_worktree_lookup()` lets you get a specific worktree.
784
- * `git_worktree_open_from_repository()` lets you get the associated worktree
785
- of a repository.
786
- a worktree.
787
- * `git_worktree_add` lets you create new worktrees.
788
- * `git_worktree_prune` lets you remove worktrees from disk.
789
- * `git_worktree_lock()` and `git_worktree_unlock()` let you lock
790
- respectively unlock a worktree.
791
- * `git_repository_open_from_worktree()` lets you open a repository via
792
- * `git_repository_head_for_worktree()` lets you get the current `HEAD` for a
793
- linked worktree.
794
- * `git_repository_head_detached_for_worktree()` lets you check whether a
795
- linked worktree is in detached HEAD mode.
796
-
797
- * `git_repository_item_path()` lets you retrieve paths for various repository
798
- files.
799
-
800
- * `git_repository_commondir()` lets you retrieve the common directory of a
801
- repository.
802
-
803
- * `git_branch_is_checked_out()` allows you to check whether a branch is checked
804
- out in a repository or any of its worktrees.
805
-
806
- * `git_repository_submodule_cache_all()` and
807
- `git_repository_submodule_cache_clear()` functions allow you to prime or clear
808
- the submodule cache of a repository.
809
-
810
- * You can disable strict hash verifications via the
811
- `GIT_OPT_ENABLE_STRICT_HASH_VERIFICATION` option with `git_libgit2_opts()`.
812
-
813
- * You can enable us calling `fsync` for various files inside the ".git"
814
- directory by setting the `GIT_OPT_ENABLE_FSYNC_GITDIR` option with
815
- `git_libgit2_opts()`.
816
-
817
- * You can now enable "offset deltas" when creating packfiles and negotiating
818
- packfiles with a remote server by setting `GIT_OPT_ENABLE_OFS_DELTA` option
819
- with `GIT_libgit2_opts()`.
820
-
821
- * You can now set the default share mode on Windows for opening files using
822
- `GIT_OPT_SET_WINDOWS_SHAREMODE` option with `git_libgit2_opts()`.
823
- You can query the current share mode with `GIT_OPT_GET_WINDOWS_SHAREMODE`.
824
-
825
- * `git_transport_smart_proxy_options()' enables you to get the proxy options for
826
- smart transports.
827
-
828
- * The `GIT_FILTER_INIT` macro and the `git_filter_init` function are provided
829
- to initialize a `git_filter` structure.
830
-
831
- ### Breaking API changes
832
-
833
- * `clone_checkout_strategy` has been removed from
834
- `git_submodule_update_option`. The checkout strategy used to clone will
835
- be the same strategy specified in `checkout_opts`.
836
-
837
- v0.25
838
- -------
839
-
840
- ### Changes or improvements
841
-
842
- * Fix repository discovery with `git_repository_discover` and
843
- `git_repository_open_ext` to match git's handling of a ceiling
844
- directory at the current directory. git only checks ceiling
845
- directories when its search ascends to a parent directory. A ceiling
846
- directory matching the starting directory will not prevent git from
847
- finding a repository in the starting directory or a parent directory.
848
-
849
- * Do not fail when deleting remotes in the presence of broken
850
- global configs which contain branches.
851
-
852
- * Support for reading and writing git index v4 files
853
-
854
- * Improve the performance of the revwalk and bring us closer to git's code.
855
-
856
- * The reference db has improved support for concurrency and returns `GIT_ELOCKED`
857
- when an operation could not be performed due to locking.
858
-
859
- * Nanosecond resolution is now activated by default, following git's change to
860
- do this.
861
-
862
- * We now restrict the set of ciphers we let OpenSSL use by default.
863
-
864
- * Users can now register their own merge drivers for use with `.gitattributes`.
865
- The library also gained built-in support for the union merge driver.
866
-
867
- * The default for creating references is now to validate that the object does
868
- exist.
869
-
870
- * Add `git_proxy_options` which is used by the different networking
871
- implementations to let the caller specify the proxy settings instead of
872
- relying on the environment variables.
873
-
874
- ### API additions
875
-
876
- * You can now get the user-agent used by libgit2 using the
877
- `GIT_OPT_GET_USER_AGENT` option with `git_libgit2_opts()`.
878
- It is the counterpart to `GIT_OPT_SET_USER_AGENT`.
879
-
880
- * The `GIT_OPT_SET_SSL_CIPHERS` option for `git_libgit2_opts()` lets you specify
881
- a custom list of ciphers to use for OpenSSL.
882
-
883
- * `git_commit_create_buffer()` creates a commit and writes it into a
884
- user-provided buffer instead of writing it into the object db. Combine it with
885
- `git_commit_create_with_signature()` in order to create a commit with a
886
- cryptographic signature.
887
-
888
- * `git_blob_create_fromstream()` and
889
- `git_blob_create_fromstream_commit()` allow you to create a blob by
890
- writing into a stream. Useful when you do not know the final size or
891
- want to copy the contents from another stream.
892
-
893
- * New flags for `git_repository_open_ext`:
894
-
895
- * `GIT_REPOSITORY_OPEN_NO_DOTGIT` - Do not check for a repository by
896
- appending `/.git` to the `start_path`; only open the repository if
897
- `start_path` itself points to the git directory.
898
- * `GIT_REPOSITORY_OPEN_FROM_ENV` - Find and open a git repository,
899
- respecting the environment variables used by the git command-line
900
- tools. If set, `git_repository_open_ext` will ignore the other
901
- flags and the `ceiling_dirs` argument, and will allow a NULL
902
- `path` to use `GIT_DIR` or search from the current directory. The
903
- search for a repository will respect `$GIT_CEILING_DIRECTORIES`
904
- and `$GIT_DISCOVERY_ACROSS_FILESYSTEM`. The opened repository
905
- will respect `$GIT_INDEX_FILE`, `$GIT_NAMESPACE`,
906
- `$GIT_OBJECT_DIRECTORY`, and `$GIT_ALTERNATE_OBJECT_DIRECTORIES`.
907
- In the future, this flag will also cause `git_repository_open_ext`
908
- to respect `$GIT_WORK_TREE` and `$GIT_COMMON_DIR`; currently,
909
- `git_repository_open_ext` with this flag will error out if either
910
- `$GIT_WORK_TREE` or `$GIT_COMMON_DIR` is set.
911
-
912
- * `git_diff_from_buffer()` can create a `git_diff` object from the contents
913
- of a git-style patch file.
914
-
915
- * `git_index_version()` and `git_index_set_version()` to get and set
916
- the index version
917
-
918
- * `git_odb_expand_ids()` lets you check for the existence of multiple
919
- objects at once.
920
-
921
- * The new `git_blob_dup()`, `git_commit_dup()`, `git_tag_dup()` and
922
- `git_tree_dup()` functions provide type-specific wrappers for
923
- `git_object_dup()` to reduce noise and increase type safety for callers.
924
-
925
- * `git_reference_dup()` lets you duplicate a reference to aid in ownership
926
- management and cleanup.
927
-
928
- * `git_signature_from_buffer()` lets you create a signature from a string in the
929
- format that appear in objects.
930
-
931
- * `git_tree_create_updated()` lets you create a tree based on another one
932
- together with a list of updates. For the covered update cases, it's more
933
- efficient than the `git_index` route.
934
-
935
- * `git_apply_patch()` applies hunks from a `git_patch` to a buffer.
936
-
937
- * `git_diff_to_buf()` lets you print an entire diff directory to a buffer,
938
- similar to how `git_patch_to_buf()` works.
939
-
940
- * `git_proxy_init_options()` is added to initialize a `git_proxy_options`
941
- structure at run-time.
942
-
943
- * `git_merge_driver_register()`, `git_merge_driver_unregister()` let you
944
- register and unregister a custom merge driver to be used when `.gitattributes`
945
- specifies it.
946
-
947
- * `git_merge_driver_lookup()` can be used to look up a merge driver by name.
948
-
949
- * `git_merge_driver_source_repo()`, `git_merge_driver_source_ancestor()`,
950
- `git_merge_driver_source_ours()`, `git_merge_driver_source_theirs()`,
951
- `git_merge_driver_source_file_options()` added as accessors to
952
- `git_merge_driver_source`.
953
-
954
- ### API removals
955
-
956
- * `git_blob_create_fromchunks()` has been removed in favour of
957
- `git_blob_create_fromstream()`.
958
-
959
- ### Breaking API changes
960
-
961
- * `git_packbuilder_object_count` and `git_packbuilder_written` now
962
- return a `size_t` instead of a `uint32_t` for more thorough
963
- compatibility with the rest of the library.
964
-
965
- * `git_packbuiler_progress` now provides explicitly sized `uint32_t`
966
- values instead of `unsigned int`.
967
-
968
- * `git_diff_file` now includes an `id_abbrev` field that reflects the
969
- number of nibbles set in the `id` field.
970
-
971
- * `git_odb_backend` now has a `freshen` function pointer. This optional
972
- function pointer is similar to the `exists` function, but it will update
973
- a last-used marker. For filesystem-based object databases, this updates
974
- the timestamp of the file containing the object, to indicate "freshness".
975
- If this is `NULL`, then it will not be called and the `exists` function
976
- will be used instead.
977
-
978
- * `git_remote_connect()` now accepts `git_proxy_options` argument, and
979
- `git_fetch_options` and `git_push_options` each have a `proxy_opts` field.
980
-
981
- * `git_merge_options` now provides a `default_driver` that can be used
982
- to provide the name of a merge driver to be used to handle files changed
983
- during a merge.
984
-
985
- v0.24
986
- -------
987
-
988
- ### Changes or improvements
989
-
990
- * Custom merge drivers can now be registered, which allows callers to
991
- configure callbacks to honor `merge=driver` configuration in
992
- `.gitattributes`.
993
-
994
- * Custom filters can now be registered with wildcard attributes, for
995
- example `filter=*`. Consumers should examine the attributes parameter
996
- of the `check` function for details.
997
-
998
- * Symlinks are now followed when locking a file, which can be
999
- necessary when multiple worktrees share a base repository.
1000
-
1001
- * You can now set your own user-agent to be sent for HTTP requests by
1002
- using the `GIT_OPT_SET_USER_AGENT` with `git_libgit2_opts()`.
1003
-
1004
- * You can set custom HTTP header fields to be sent along with requests
1005
- by passing them in the fetch and push options.
1006
-
1007
- * Tree objects are now assumed to be sorted. If a tree is not
1008
- correctly formed, it will give bad results. This is the git approach
1009
- and cuts a significant amount of time when reading the trees.
1010
-
1011
- * Filter registration is now protected against concurrent
1012
- registration.
1013
-
1014
- * Filenames which are not valid on Windows in an index no longer cause
1015
- to fail to parse it on that OS.
1016
-
1017
- * Rebases can now be performed purely in-memory, without touching the
1018
- repository's workdir.
1019
-
1020
- * When adding objects to the index, or when creating new tree or commit
1021
- objects, the inputs are validated to ensure that the dependent objects
1022
- exist and are of the correct type. This object validation can be
1023
- disabled with the GIT_OPT_ENABLE_STRICT_OBJECT_CREATION option.
1024
-
1025
- * The WinHTTP transport's handling of bad credentials now behaves like
1026
- the others, asking for credentials again.
1027
-
1028
- ### API additions
1029
-
1030
- * `git_config_lock()` has been added, which allow for
1031
- transactional/atomic complex updates to the configuration, removing
1032
- the opportunity for concurrent operations and not committing any
1033
- changes until the unlock.
1034
-
1035
- * `git_diff_options` added a new callback `progress_cb` to report on the
1036
- progress of the diff as files are being compared. The documentation of
1037
- the existing callback `notify_cb` was updated to reflect that it only
1038
- gets called when new deltas are added to the diff.
1039
-
1040
- * `git_fetch_options` and `git_push_options` have gained a `custom_headers`
1041
- field to set the extra HTTP header fields to send.
1042
-
1043
- * `git_stream_register_tls()` lets you register a callback to be used
1044
- as the constructor for a TLS stream instead of the libgit2 built-in
1045
- one.
1046
-
1047
- * `git_commit_header_field()` allows you to look up a specific header
1048
- field in a commit.
1049
-
1050
- * `git_commit_extract_signature()` extracts the signature from a
1051
- commit and gives you both the signature and the signed data so you
1052
- can verify it.
1053
-
1054
- ### API removals
1055
-
1056
- * No APIs were removed in this version.
1057
-
1058
- ### Breaking API changes
1059
-
1060
- * The `git_merge_tree_flag_t` is now `git_merge_flag_t`. Subsequently,
1061
- its members are no longer prefixed with `GIT_MERGE_TREE_FLAG` but are
1062
- now prefixed with `GIT_MERGE_FLAG`, and the `tree_flags` field of the
1063
- `git_merge_options` structure is now named `flags`.
1064
-
1065
- * The `git_merge_file_flags_t` enum is now `git_merge_file_flag_t` for
1066
- consistency with other enum type names.
1067
-
1068
- * `git_cert` descendent types now have a proper `parent` member
1069
-
1070
- * It is the responsibility of the refdb backend to decide what to do
1071
- with the reflog on ref deletion. The file-based backend must delete
1072
- it, a database-backed one may wish to archive it.
1073
-
1074
- * `git_config_backend` has gained two entries. `lock` and `unlock`
1075
- with which to implement the transactional/atomic semantics for the
1076
- configuration backend.
1077
-
1078
- * `git_index_add` and `git_index_conflict_add()` will now use the case
1079
- as provided by the caller on case insensitive systems. Previous
1080
- versions would keep the case as it existed in the index. This does
1081
- not affect the higher-level `git_index_add_bypath` or
1082
- `git_index_add_frombuffer` functions.
1083
-
1084
- * The `notify_payload` field of `git_diff_options` was renamed to `payload`
1085
- to reflect that it's also the payload for the new progress callback.
1086
-
1087
- * The `git_config_level_t` enum has gained a higher-priority value
1088
- `GIT_CONFIG_LEVEL_PROGRAMDATA` which represent a rough Windows equivalent
1089
- to the system level configuration.
1090
-
1091
- * `git_rebase_options` now has a `merge_options` field.
1092
-
1093
- * The index no longer performs locking itself. This is not something
1094
- users of the library should have been relying on as it's not part of
1095
- the concurrency guarantees.
1096
-
1097
- * `git_remote_connect()` now takes a `custom_headers` argument to set
1098
- the extra HTTP header fields to send.
1099
-
1100
- v0.23
1101
- ------
1102
-
1103
- ### Changes or improvements
1104
-
1105
- * Patience and minimal diff drivers can now be used for merges.
1106
-
1107
- * Merges can now ignore whitespace changes.
1108
-
1109
- * Updated binary identification in CRLF filtering to avoid false positives in
1110
- UTF-8 files.
1111
-
1112
- * Rename and copy detection is enabled for small files.
1113
-
1114
- * Checkout can now handle an initial checkout of a repository, making
1115
- `GIT_CHECKOUT_SAFE_CREATE` unnecessary for users of clone.
1116
-
1117
- * The signature parameter in the ref-modifying functions has been
1118
- removed. Use `git_repository_set_ident()` and
1119
- `git_repository_ident()` to override the signature to be used.
1120
-
1121
- * The local transport now auto-scales the number of threads to use
1122
- when creating the packfile instead of sticking to one.
1123
-
1124
- * Reference renaming now uses the right id for the old value.
1125
-
1126
- * The annotated version of branch creation, HEAD detaching and reset
1127
- allow for specifying the expression from the user to be put into the
1128
- reflog.
1129
-
1130
- * `git_rebase_commit` now returns `GIT_EUNMERGED` when you attempt to
1131
- commit with unstaged changes.
1132
-
1133
- * On Mac OS X, we now use SecureTransport to provide the cryptographic
1134
- support for HTTPS connections insead of OpenSSL.
1135
-
1136
- * Checkout can now accept an index for the baseline computations via the
1137
- `baseline_index` member.
1138
-
1139
- * The configuration for fetching is no longer stored inside the
1140
- `git_remote` struct but has been moved to a `git_fetch_options`. The
1141
- remote functions now take these options or the callbacks instead of
1142
- setting them beforehand.
1143
-
1144
- * `git_submodule` instances are no longer cached or shared across
1145
- lookup. Each submodule represents the configuration at the time of
1146
- loading.
1147
-
1148
- * The index now uses diffs for `add_all()` and `update_all()` which
1149
- gives it a speed boost and closer semantics to git.
1150
-
1151
- * The ssh transport now reports the stderr output from the server as
1152
- the error message, which allows you to get the "repository not
1153
- found" messages.
1154
-
1155
- * `git_index_conflict_add()` will remove staged entries that exist for
1156
- conflicted paths.
1157
-
1158
- * The flags for a `git_diff_file` will now have the `GIT_DIFF_FLAG_EXISTS`
1159
- bit set when a file exists on that side of the diff. This is useful
1160
- for understanding whether a side of the diff exists in the presence of
1161
- a conflict.
1162
-
1163
- * The constructor for a write-stream into the odb now takes
1164
- `git_off_t` instead of `size_t` for the size of the blob, which
1165
- allows putting large files into the odb on 32-bit systems.
1166
-
1167
- * The remote's push and pull URLs now honor the url.$URL.insteadOf
1168
- configuration. This allows modifying URL prefixes to a custom
1169
- value via gitconfig.
1170
-
1171
- * `git_diff_foreach`, `git_diff_blobs`, `git_diff_blob_to_buffer`,
1172
- and `git_diff_buffers` now accept a new binary callback of type
1173
- `git_diff_binary_cb` that includes the binary diff information.
1174
-
1175
- * The race condition mitigations described in `racy-git.txt` have been
1176
- implemented.
1177
-
1178
- * If libcurl is installed, we will use it to connect to HTTP(S)
1179
- servers.
1180
-
1181
- ### API additions
1182
-
1183
- * The `git_merge_options` gained a `file_flags` member.
1184
-
1185
- * Parsing and retrieving a configuration value as a path is exposed
1186
- via `git_config_parse_path()` and `git_config_get_path()`
1187
- respectively.
1188
-
1189
- * `git_repository_set_ident()` and `git_repository_ident()` serve to
1190
- set and query which identity will be used when writing to the
1191
- reflog.
1192
-
1193
- * `git_config_entry_free()` frees a config entry.
1194
-
1195
- * `git_config_get_string_buf()` provides a way to safely retrieve a
1196
- string from a non-snapshot configuration.
1197
-
1198
- * `git_annotated_commit_from_revspec()` allows to get an annotated
1199
- commit from an extended sha synatx string.
1200
-
1201
- * `git_repository_set_head_detached_from_annotated()`,
1202
- `git_branch_create_from_annotated()` and
1203
- `git_reset_from_annotated()` allow for the caller to provide an
1204
- annotated commit through which they can control what expression is
1205
- put into the reflog as the source/target.
1206
-
1207
- * `git_index_add_frombuffer()` can now create a blob from memory
1208
- buffer and add it to the index which is attached to a repository.
1209
-
1210
- * The structure `git_fetch_options` has been added to determine the
1211
- runtime configuration for fetching, such as callbacks, pruning and
1212
- autotag behaviour. It has the runtime initializer
1213
- `git_fetch_init_options()`.
1214
-
1215
- * The enum `git_fetch_prune_t` has been added, letting you specify the
1216
- pruning behaviour for a fetch.
1217
-
1218
- * A push operation will notify the caller of what updates it indends
1219
- to perform on the remote, which provides similar information to
1220
- git's pre-push hook.
1221
-
1222
- * `git_stash_apply()` can now apply a stashed state from the stash list,
1223
- placing the data into the working directory and index.
1224
-
1225
- * `git_stash_pop()` will apply a stashed state (like `git_stash_apply()`)
1226
- but will remove the stashed state after a successful application.
1227
-
1228
- * A new error code `GIT_EEOF` indicates an early EOF from the
1229
- server. This typically indicates an error with the URL or
1230
- configuration of the server, and tools can use this to show messages
1231
- about failing to communicate with the server.
1232
-
1233
- * A new error code `GIT_EINVALID` indicates that an argument to a
1234
- function is invalid, or an invalid operation was requested.
1235
-
1236
- * `git_diff_index_to_workdir()` and `git_diff_tree_to_index()` will now
1237
- produce deltas of type `GIT_DELTA_CONFLICTED` to indicate that the index
1238
- side of the delta is a conflict.
1239
-
1240
- * The `git_status` family of functions will now produce status of type
1241
- `GIT_STATUS_CONFLICTED` to indicate that a conflict exists for that file
1242
- in the index.
1243
-
1244
- * `git_index_entry_is_conflict()` is a utility function to determine if
1245
- a given index entry has a non-zero stage entry, indicating that it is
1246
- one side of a conflict.
1247
-
1248
- * It is now possible to pass a keypair via a buffer instead of a
1249
- path. For this, `GIT_CREDTYPE_SSH_MEMORY` and
1250
- `git_cred_ssh_key_memory_new()` have been added.
1251
-
1252
- * `git_filter_list_contains` will indicate whether a particular
1253
- filter will be run in the given filter list.
1254
-
1255
- * `git_commit_header_field()` has been added, which allows retrieving
1256
- the contents of an arbitrary header field.
1257
-
1258
- * `git_submodule_set_branch()` allows to set the configured branch for
1259
- a submodule.
1260
-
1261
- ### API removals
1262
-
1263
- * `git_remote_save()` and `git_remote_clear_refspecs()` have been
1264
- removed. Remote's configuration is changed via the configuration
1265
- directly or through a convenience function which performs changes to
1266
- the configuration directly.
1267
-
1268
- * `git_remote_set_callbacks()`, `git_remote_get_callbacks()` and
1269
- `git_remote_set_transport()` have been removed and the remote no
1270
- longer stores this configuration.
1271
-
1272
- * `git_remote_set_fetch_refpecs()` and
1273
- `git_remote_set_push_refspecs()` have been removed. There is no
1274
- longer a way to set the base refspecs at run-time.
1275
-
1276
- * `git_submodule_save()` has been removed. The submodules are no
1277
- longer configured via the objects.
1278
-
1279
- * `git_submodule_reload_all()` has been removed as we no longer cache
1280
- submodules.
1281
-
1282
- ### Breaking API changes
1283
-
1284
- * `git_smart_subtransport_cb` now has a `param` parameter.
1285
-
1286
- * The `git_merge_options` structure member `flags` has been renamed
1287
- to `tree_flags`.
1288
-
1289
- * The `git_merge_file_options` structure member `flags` is now
1290
- an unsigned int. It was previously a `git_merge_file_flags_t`.
1291
-
1292
- * `GIT_CHECKOUT_SAFE_CREATE` has been removed. Most users will generally
1293
- be able to switch to `GIT_CHECKOUT_SAFE`, but if you require missing
1294
- file handling during checkout, you may now use `GIT_CHECKOUT_SAFE |
1295
- GIT_CHECKOUT_RECREATE_MISSING`.
1296
-
1297
- * The `git_clone_options` and `git_submodule_update_options`
1298
- structures no longer have a `signature` field.
1299
-
1300
- * The following functions have removed the signature and/or log message
1301
- parameters in favour of git-emulating ones.
1302
-
1303
- * `git_branch_create()`, `git_branch_move()`
1304
- * `git_rebase_init()`, `git_rebase_abort()`
1305
- * `git_reference_symbolic_create_matching()`,
1306
- `git_reference_symbolic_create()`, `git_reference_create()`,
1307
- `git_reference_create_matching()`,
1308
- `git_reference_symbolic_set_target()`,
1309
- `git_reference_set_target()`, `git_reference_rename()`
1310
- * `git_remote_update_tips()`, `git_remote_fetch()`, `git_remote_push()`
1311
- * `git_repository_set_head()`,
1312
- `git_repository_set_head_detached()`,
1313
- `git_repository_detach_head()`
1314
- * `git_reset()`
1315
-
1316
- * `git_config_get_entry()` now gives back a ref-counted
1317
- `git_config_entry`. You must free it when you no longer need it.
1318
-
1319
- * `git_config_get_string()` will return an error if used on a
1320
- non-snapshot configuration, as there can be no guarantee that the
1321
- returned pointer is valid.
1322
-
1323
- * `git_note_default_ref()` now uses a `git_buf` to return the string,
1324
- as the string is otherwise not guaranteed to stay allocated.
1325
-
1326
- * `git_rebase_operation_current()` will return `GIT_REBASE_NO_OPERATION`
1327
- if it is called immediately after creating a rebase session but before
1328
- you have applied the first patch.
1329
-
1330
- * `git_rebase_options` now contains a `git_checkout_options` struct
1331
- that will be used for functions that modify the working directory,
1332
- namely `git_rebase_init`, `git_rebase_next` and
1333
- `git_rebase_abort`. As a result, `git_rebase_open` now also takes
1334
- a `git_rebase_options` and only the `git_rebase_init` and
1335
- `git_rebase_open` functions take a `git_rebase_options`, where they
1336
- will persist the options to subsequent `git_rebase` calls.
1337
-
1338
- * The `git_clone_options` struct now has fetch options in a
1339
- `fetch_opts` field instead of remote callbacks in
1340
- `remote_callbacks`.
1341
-
1342
- * The remote callbacks has gained a new member `push_negotiation`
1343
- which gets called before sending the update commands to the server.
1344
-
1345
- * The following functions no longer act on a remote instance but
1346
- change the repository's configuration. Their signatures have changed
1347
- accordingly:
1348
-
1349
- * `git_remote_set_url()`, `git_remote_seturl()`
1350
- * `git_remote_add_fetch()`, `git_remote_add_push()` and
1351
- * `git_remote_set_autotag()`
1352
-
1353
- * `git_remote_connect()` and `git_remote_prune()` now take a pointer
1354
- to the callbacks.
1355
-
1356
- * `git_remote_fetch()` and `git_remote_download()` now take a pointer
1357
- to fetch options which determine the runtime configuration.
1358
-
1359
- * The `git_remote_autotag_option_t` values have been changed. It has
1360
- gained a `_UNSPECIFIED` default value to specify no override for the
1361
- configured setting.
1362
-
1363
- * `git_remote_update_tips()` now takes a pointer to the callbacks as
1364
- well as a boolean whether to write `FETCH_HEAD` and the autotag
1365
- setting.
1366
-
1367
- * `git_remote_create_anonymous()` no longer takes a fetch refspec as
1368
- url-only remotes cannot have configured refspecs.
1369
-
1370
- * The `git_submodule_update_options` struct now has fetch options in
1371
- the `fetch_opts` field instead of callbacks in the
1372
- `remote_callbacks` field.
1373
-
1374
- * The following functions no longer act on a submodule instance but
1375
- change the repository's configuration. Their signatures have changed
1376
- accordingly:
1377
-
1378
- * `git_submodule_set_url()`, `git_submodule_set_ignore()`,
1379
- `git_submodule_set_update()`,
1380
- `git_submodule_set_fetch_recurse_submodules()`.
1381
-
1382
- * `git_submodule_status()` no longer takes a submodule instance but a
1383
- repsitory, a submodule name and an ignore setting.
1384
-
1385
- * The `push` function in the `git_transport` interface now takes a
1386
- pointer to the remote callbacks.
1387
-
1388
- * The `git_index_entry` struct's fields' types have been changed to
1389
- more accurately reflect what is in fact stored in the
1390
- index. Specifically, time and file size are 32 bits intead of 64, as
1391
- these values are truncated.
1392
-
1393
- * `GIT_EMERGECONFLICT` is now `GIT_ECONFLICT`, which more accurately
1394
- describes the nature of the error.
1395
-
1396
- * It is no longer allowed to call `git_buf_grow()` on buffers
1397
- borrowing the memory they point to.
1398
-
1399
- v0.22
1400
- ------
1401
-
1402
- ### Changes or improvements
1403
-
1404
- * `git_signature_new()` now requires a non-empty email address.
1405
-
1406
- * Use CommonCrypto libraries for SHA-1 calculation on Mac OS X.
1407
-
1408
- * Disable SSL compression and SSLv2 and SSLv3 ciphers in favor of TLSv1
1409
- in OpenSSL.
1410
-
1411
- * The fetch behavior of remotes with autotag set to `GIT_REMOTE_DOWNLOAD_TAGS_ALL`
1412
- has been changed to match git 1.9.0 and later. In this mode, libgit2 now
1413
- fetches all tags in addition to whatever else needs to be fetched.
1414
-
1415
- * `git_checkout()` now handles case-changing renames correctly on
1416
- case-insensitive filesystems; for example renaming "readme" to "README".
1417
-
1418
- * The search for libssh2 is now done via pkg-config instead of a
1419
- custom search of a few directories.
1420
-
1421
- * Add support for core.protectHFS and core.protectNTFS. Add more
1422
- validation for filenames which we write such as references.
1423
-
1424
- * The local transport now generates textual progress output like
1425
- git-upload-pack does ("counting objects").
1426
-
1427
- * `git_checkout_index()` can now check out an in-memory index that is not
1428
- necessarily the repository's index, so you may check out an index
1429
- that was produced by git_merge and friends while retaining the cached
1430
- information.
1431
-
1432
- * Remove the default timeout for receiving / sending data over HTTP using
1433
- the WinHTTP transport layer.
1434
-
1435
- * Add SPNEGO (Kerberos) authentication using GSSAPI on Unix systems.
1436
-
1437
- * Provide built-in objects for the empty blob (e69de29) and empty
1438
- tree (4b825dc) objects.
1439
-
1440
- * The index' tree cache is now filled upon read-tree and write-tree
1441
- and the cache is written to disk.
1442
-
1443
- * LF -> CRLF filter refuses to handle mixed-EOL files
1444
-
1445
- * LF -> CRLF filter now runs when * text = auto (with Git for Windows 1.9.4)
1446
-
1447
- * File unlocks are atomic again via rename. Read-only files on Windows are
1448
- made read-write if necessary.
1449
-
1450
- * Share open packfiles across repositories to share descriptors and mmaps.
1451
-
1452
- * Use a map for the treebuilder, making insertion O(1)
1453
-
1454
- * The build system now accepts an option EMBED_SSH_PATH which when set
1455
- tells it to include a copy of libssh2 at the given location. This is
1456
- enabled for MSVC.
1457
-
1458
- * Add support for refspecs with the asterisk in the middle of a
1459
- pattern.
1460
-
1461
- * Fetching now performs opportunistic updates. To achieve this, we
1462
- introduce a difference between active and passive refspecs, which
1463
- make `git_remote_download()` and `git_remote_fetch()` to take a list of
1464
- resfpecs to be the active list, similarly to how git fetch accepts a
1465
- list on the command-line.
1466
-
1467
- * The THREADSAFE option to build libgit2 with threading support has
1468
- been flipped to be on by default.
1469
-
1470
- * The remote object has learnt to prune remote-tracking branches. If
1471
- the remote is configured to do so, this will happen via
1472
- `git_remote_fetch()`. You can also call `git_remote_prune()` after
1473
- connecting or fetching to perform the prune.
1474
-
1475
-
1476
- ### API additions
1477
-
1478
- * Introduce `git_buf_text_is_binary()` and `git_buf_text_contains_nul()` for
1479
- consumers to perform binary detection on a git_buf.
1480
-
1481
- * `git_branch_upstream_remote()` has been introduced to provide the
1482
- branch.<name>.remote configuration value.
1483
-
1484
- * Introduce `git_describe_commit()` and `git_describe_workdir()` to provide
1485
- a description of the current commit (and working tree, respectively)
1486
- based on the nearest tag or reference
1487
-
1488
- * Introduce `git_merge_bases()` and the `git_oidarray` type to expose all
1489
- merge bases between two commits.
1490
-
1491
- * Introduce `git_merge_bases_many()` to expose all merge bases between
1492
- multiple commits.
1493
-
1494
- * Introduce rebase functionality (using the merge algorithm only).
1495
- Introduce `git_rebase_init()` to begin a new rebase session,
1496
- `git_rebase_open()` to open an in-progress rebase session,
1497
- `git_rebase_commit()` to commit the current rebase operation,
1498
- `git_rebase_next()` to apply the next rebase operation,
1499
- `git_rebase_abort()` to abort an in-progress rebase and `git_rebase_finish()`
1500
- to complete a rebase operation.
1501
-
1502
- * Introduce `git_note_author()` and `git_note_committer()` to get the author
1503
- and committer information on a `git_note`, respectively.
1504
-
1505
- * A factory function for ssh has been added which allows to change the
1506
- path of the programs to execute for receive-pack and upload-pack on
1507
- the server, `git_transport_ssh_with_paths()`.
1508
-
1509
- * The ssh transport supports asking the remote host for accepted
1510
- credential types as well as multiple challeges using a single
1511
- connection. This requires to know which username you want to connect
1512
- as, so this introduces the USERNAME credential type which the ssh
1513
- transport will use to ask for the username.
1514
-
1515
- * The `GIT_EPEEL` error code has been introduced when we cannot peel a tag
1516
- to the requested object type; if the given object otherwise cannot be
1517
- peeled, `GIT_EINVALIDSPEC` is returned.
1518
-
1519
- * Introduce `GIT_REPOSITORY_INIT_RELATIVE_GITLINK` to use relative paths
1520
- when writing gitlinks, as is used by git core for submodules.
1521
-
1522
- * `git_remote_prune()` has been added. See above for description.
1523
-
1524
-
1525
- * Introduce reference transactions, which allow multiple references to
1526
- be locked at the same time and updates be queued. This also allows
1527
- us to safely update a reflog with arbitrary contents, as we need to
1528
- do for stash.
1529
-
1530
- ### API removals
1531
-
1532
- * `git_remote_supported_url()` and `git_remote_is_valid_url()` have been
1533
- removed as they have become essentially useless with rsync-style ssh paths.
1534
-
1535
- * `git_clone_into()` and `git_clone_local_into()` have been removed from the
1536
- public API in favour of `git_clone callbacks`.
1537
-
1538
- * The option to ignore certificate errors via `git_remote_cert_check()`
1539
- is no longer present. Instead, `git_remote_callbacks` has gained a new
1540
- entry which lets the user perform their own certificate checks.
1541
-
1542
- ### Breaking API changes
1543
-
1544
- * `git_cherry_pick()` is now `git_cherrypick()`.
1545
-
1546
- * The `git_submodule_update()` function was renamed to
1547
- `git_submodule_update_strategy()`. `git_submodule_update()` is now used to
1548
- provide functionalty similar to "git submodule update".
1549
-
1550
- * `git_treebuilder_create()` was renamed to `git_treebuilder_new()` to better
1551
- reflect it being a constructor rather than something which writes to
1552
- disk.
1553
-
1554
- * `git_treebuilder_new()` (was `git_treebuilder_create()`) now takes a
1555
- repository so that it can query repository configuration.
1556
- Subsequently, `git_treebuilder_write()` no longer takes a repository.
1557
-
1558
- * `git_threads_init()` and `git_threads_shutdown()` have been renamed to
1559
- `git_libgit2_init()` and `git_libgit2_shutdown()` to better explain what
1560
- their purpose is, as it's grown to be more than just about threads.
1561
-
1562
- * `git_libgit2_init()` and `git_libgit2_shutdown()` now return the number of
1563
- initializations of the library, so consumers may schedule work on the
1564
- first initialization.
1565
-
1566
- * The `git_transport_register()` function no longer takes a priority and takes
1567
- a URL scheme name (eg "http") instead of a prefix like "http://"
1568
-
1569
- * `git_index_name_entrycount()` and `git_index_reuc_entrycount()` now
1570
- return size_t instead of unsigned int.
1571
-
1572
- * The `context_lines` and `interhunk_lines` fields in `git_diff`_options are
1573
- now `uint32_t` instead of `uint16_t`. This allows to set them to `UINT_MAX`,
1574
- in effect asking for "infinite" context e.g. to iterate over all the
1575
- unmodified lines of a diff.
1576
-
1577
- * `git_status_file()` now takes an exact path. Use `git_status_list_new()` if
1578
- pathspec searching is needed.
1579
-
1580
- * `git_note_create()` has changed the position of the notes reference
1581
- name to match `git_note_remove()`.
1582
-
1583
- * Rename `git_remote_load()` to `git_remote_lookup()` to bring it in line
1584
- with the rest of the lookup functions.
1585
-
1586
- * `git_remote_rename()` now takes the repository and the remote's
1587
- current name. Accepting a remote indicates we want to change it,
1588
- which we only did partially. It is much clearer if we accept a name
1589
- and no loaded objects are changed.
1590
-
1591
- * `git_remote_delete()` now accepts the repository and the remote's name
1592
- instead of a loaded remote.
1593
-
1594
- * `git_merge_head` is now `git_annotated_commit`, to better reflect its usage
1595
- for multiple functions (including rebase)
1596
-
1597
- * The `git_clone_options` struct no longer provides the `ignore_cert_errors` or
1598
- `remote_name` members for remote customization.
1599
-
1600
- Instead, the `git_clone_options` struct has two new members, `remote_cb` and
1601
- `remote_cb_payload`, which allow the caller to completely override the remote
1602
- creation process. If needed, the caller can use this callback to give their
1603
- remote a name other than the default (origin) or disable cert checking.
1604
-
1605
- The `remote_callbacks` member has been preserved for convenience, although it
1606
- is not used when a remote creation callback is supplied.
1607
-
1608
- * The `git_clone`_options struct now provides `repository_cb` and
1609
- `repository_cb_payload` to allow the user to create a repository with
1610
- custom options.
1611
-
1612
- * The `git_push` struct to perform a push has been replaced with
1613
- `git_remote_upload()`. The refspecs and options are passed as a
1614
- function argument. `git_push_update_tips()` is now also
1615
- `git_remote_update_tips()` and the callbacks are in the same struct as
1616
- the rest.
1617
-
1618
- * The `git_remote_set_transport()` function now sets a transport factory function,
1619
- rather than a pre-existing transport instance.
1620
-
1621
- * The `git_transport` structure definition has moved into the sys/transport.h
1622
- file.
1623
-
1624
- * libgit2 no longer automatically sets the OpenSSL locking
1625
- functions. This is not something which we can know to do. A
1626
- last-resort convenience function is provided in sys/openssl.h,
1627
- `git_openssl_set_locking()` which can be used to set the locking.