<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/libgit2.git/src, branch cmn/prettify-docs</title>
<subtitle>github.com: libgit2/libgit2.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/libgit2.git/'/>
<entry>
<title>Merge pull request #4451 from libgit2/charliesome/trailer-info</title>
<updated>2018-01-17T21:54:42+00:00</updated>
<author>
<name>Brian Lopez</name>
<email>seniorlopez@gmail.com</email>
</author>
<published>2018-01-17T21:54:42+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/libgit2.git/commit/?id=4893a9c01c8da084eb995178f80d0d453109056e'/>
<id>4893a9c01c8da084eb995178f80d0d453109056e</id>
<content type='text'>
Implement message trailer parsing API</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Implement message trailer parsing API</pre>
</div>
</content>
</entry>
<entry>
<title>rename find_trailer to extract_trailer_block</title>
<updated>2018-01-17T20:52:08+00:00</updated>
<author>
<name>Brian Lopez</name>
<email>seniorlopez@gmail.com</email>
</author>
<published>2018-01-17T20:52:08+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/libgit2.git/commit/?id=d4a3a4b5383fefcb397524340af05118b4687f29'/>
<id>d4a3a4b5383fefcb397524340af05118b4687f29</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Change trailer API to return a simple array</title>
<updated>2018-01-17T03:33:04+00:00</updated>
<author>
<name>Brian Lopez</name>
<email>seniorlopez@gmail.com</email>
</author>
<published>2018-01-16T21:40:26+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/libgit2.git/commit/?id=d43974fb5cbfda6ec28fc92b83d03db0af73748b'/>
<id>d43974fb5cbfda6ec28fc92b83d03db0af73748b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>transports: local: fix memory leak in reference walk</title>
<updated>2018-01-12T13:12:37+00:00</updated>
<author>
<name>Patrick Steinhardt</name>
<email>ps@pks.im</email>
</author>
<published>2018-01-12T12:56:57+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/libgit2.git/commit/?id=90f81f9fdc6d87c4ca75e4f065e1eb4818c99674'/>
<id>90f81f9fdc6d87c4ca75e4f065e1eb4818c99674</id>
<content type='text'>
Upon downloading the pack file, the local transport will iterate through
every reference using `git_reference_foreach`. The function is a bit
tricky though in that it requires the passed callback to free the
references, which does not currently happen.

Fix the memory leak by freeing all passed references in the callback.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Upon downloading the pack file, the local transport will iterate through
every reference using `git_reference_foreach`. The function is a bit
tricky though in that it requires the passed callback to free the
references, which does not currently happen.

Fix the memory leak by freeing all passed references in the callback.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge remote-tracking branch 'origin/master' into charliesome/trailer-info</title>
<updated>2018-01-11T03:19:34+00:00</updated>
<author>
<name>Brian Lopez</name>
<email>seniorlopez@gmail.com</email>
</author>
<published>2018-01-11T03:19:34+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/libgit2.git/commit/?id=5734768b9edaecedaa7b13fed2ce59cb588df7e8'/>
<id>5734768b9edaecedaa7b13fed2ce59cb588df7e8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>cmake: add openssl to the private deps list when it's the TLS implementation</title>
<updated>2018-01-08T12:33:07+00:00</updated>
<author>
<name>Carlos Martín Nieto</name>
<email>cmn@dwim.me</email>
</author>
<published>2018-01-08T12:33:07+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/libgit2.git/commit/?id=b21c5408ff18eaf99029f59e738f6f614a53c90d'/>
<id>b21c5408ff18eaf99029f59e738f6f614a53c90d</id>
<content type='text'>
We might want OpenSSL to be the implementation for SHA-1 and/or TLS. If we only
want it for TLS (e.g. we're building with the collision-detecting SHA-1
implementation) then we did not indicate this to the systems including us a
static library.

Add OpenSSL to the list also during the TLS decision to make sure we say we
should link to it if we use it for TLS.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We might want OpenSSL to be the implementation for SHA-1 and/or TLS. If we only
want it for TLS (e.g. we're building with the collision-detecting SHA-1
implementation) then we did not indicate this to the systems including us a
static library.

Add OpenSSL to the list also during the TLS decision to make sure we say we
should link to it if we use it for TLS.
</pre>
</div>
</content>
</entry>
<entry>
<title>cmake: treat LIBGIT2_PC_REQUIRES as a list</title>
<updated>2018-01-08T12:30:50+00:00</updated>
<author>
<name>Carlos Martín Nieto</name>
<email>cmn@dwim.me</email>
</author>
<published>2018-01-08T12:30:50+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/libgit2.git/commit/?id=b85548edb027474af3d107f9faa004cc09a1863a'/>
<id>b85548edb027474af3d107f9faa004cc09a1863a</id>
<content type='text'>
It is indeed a list of dependencies for those which include the static archive.
This is in preparation for adding two possible places where we might add openssl
as a dependency.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It is indeed a list of dependencies for those which include the static archive.
This is in preparation for adding two possible places where we might add openssl
as a dependency.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #4398 from pks-t/pks/generic-sha1</title>
<updated>2018-01-05T21:31:51+00:00</updated>
<author>
<name>Edward Thomson</name>
<email>ethomson@edwardthomson.com</email>
</author>
<published>2018-01-05T21:31:51+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/libgit2.git/commit/?id=70db57d4a431dae2edcf19e92a84db8d6cf4f935'/>
<id>70db57d4a431dae2edcf19e92a84db8d6cf4f935</id>
<content type='text'>
cmake: allow explicitly choosing SHA1 backend</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
cmake: allow explicitly choosing SHA1 backend</pre>
</div>
</content>
</entry>
<entry>
<title>cmake: allow explicitly choosing SHA1 backend</title>
<updated>2018-01-04T11:23:57+00:00</updated>
<author>
<name>Patrick Steinhardt</name>
<email>ps@pks.im</email>
</author>
<published>2017-12-05T08:48:31+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/libgit2.git/commit/?id=70aa61460a4f33509aa06ed86ac3becc243ee5d6'/>
<id>70aa61460a4f33509aa06ed86ac3becc243ee5d6</id>
<content type='text'>
Right now, if SHA1DC is disabled, the SHA1 backend is mostly chosen
based on which system libgit2 is being compiled on and which libraries
have been found. To give developers and distributions more choice,
enable them to request specific backends by passing in a
`-DSHA1_BACKEND=&lt;BACKEND&gt;` option instead. This completely replaces the
previous auto-selection.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Right now, if SHA1DC is disabled, the SHA1 backend is mostly chosen
based on which system libgit2 is being compiled on and which libraries
have been found. To give developers and distributions more choice,
enable them to request specific backends by passing in a
`-DSHA1_BACKEND=&lt;BACKEND&gt;` option instead. This completely replaces the
previous auto-selection.
</pre>
</div>
</content>
</entry>
<entry>
<title>make separators const a macro as well</title>
<updated>2018-01-04T02:44:12+00:00</updated>
<author>
<name>Brian Lopez</name>
<email>seniorlopez@gmail.com</email>
</author>
<published>2018-01-04T02:44:12+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/libgit2.git/commit/?id=f315cd1470e21dee0dc48cc6b53ffbd30122c917'/>
<id>f315cd1470e21dee0dc48cc6b53ffbd30122c917</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
