<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/gitpython.git, branch 2.0.5</title>
<subtitle>github.com: gitpython-developers/GitPython.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitpython.git/'/>
<entry>
<title>This is 2.0.5</title>
<updated>2016-05-30T19:23:51+00:00</updated>
<author>
<name>Vincent Driessen</name>
<email>me@nvie.com</email>
</author>
<published>2016-05-30T19:23:51+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitpython.git/commit/?id=88716d3be8d9393fcf5695dd23efb9c252d1b09e'/>
<id>88716d3be8d9393fcf5695dd23efb9c252d1b09e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix regex</title>
<updated>2016-05-30T19:23:45+00:00</updated>
<author>
<name>Vincent Driessen</name>
<email>me@nvie.com</email>
</author>
<published>2016-05-30T19:20:47+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitpython.git/commit/?id=25844b80c56890abc79423a7a727a129b2b9db85'/>
<id>25844b80c56890abc79423a7a727a129b2b9db85</id>
<content type='text'>
This catches the case where the matched line contains "(" or ")"
characters.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This catches the case where the matched line contains "(" or ")"
characters.
</pre>
</div>
</content>
</entry>
<entry>
<title>This is 2.0.4</title>
<updated>2016-05-30T17:21:35+00:00</updated>
<author>
<name>Vincent Driessen</name>
<email>me@nvie.com</email>
</author>
<published>2016-05-30T17:21:35+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitpython.git/commit/?id=2f91ab7bb0dadfd165031f846ae92c9466dceb66'/>
<id>2f91ab7bb0dadfd165031f846ae92c9466dceb66</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update changelog</title>
<updated>2016-05-30T17:17:05+00:00</updated>
<author>
<name>Vincent Driessen</name>
<email>me@nvie.com</email>
</author>
<published>2016-05-30T17:17:05+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitpython.git/commit/?id=c4ace5482efa4ca8769895dc9506d8eccfb0173d'/>
<id>c4ace5482efa4ca8769895dc9506d8eccfb0173d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #456 from gitpython-developers/fix-for-invalid-data-in-commits</title>
<updated>2016-05-30T16:58:30+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2016-05-30T16:58:30+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitpython.git/commit/?id=79fdaf349fa8ad3524f67f1ef86c38ecfc317585'/>
<id>79fdaf349fa8ad3524f67f1ef86c38ecfc317585</id>
<content type='text'>
Add test case as example of Git commit with invalid data</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add test case as example of Git commit with invalid data</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #454 from gitpython-developers/fix-octal-escaped-path-parser-bug</title>
<updated>2016-05-30T16:53:23+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2016-05-30T16:53:23+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitpython.git/commit/?id=f5089d9d6c303b47936a741b7bdf37293ec3a1c6'/>
<id>f5089d9d6c303b47936a741b7bdf37293ec3a1c6</id>
<content type='text'>
Fix bug in diff parser output</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix bug in diff parser output</pre>
</div>
</content>
</entry>
<entry>
<title>Ignore invalid data when decoding commit objects</title>
<updated>2016-05-30T14:33:59+00:00</updated>
<author>
<name>Vincent Driessen</name>
<email>me@nvie.com</email>
</author>
<published>2016-05-30T14:26:43+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitpython.git/commit/?id=79c99c0f66c8f3c8d13258376c82125a23b1b5c8'/>
<id>79c99c0f66c8f3c8d13258376c82125a23b1b5c8</id>
<content type='text'>
Previously, GitPython chokes on this while decoding.  Rather than
choking, instead accept the error and replace the invalid bytes by the
� (\x80) char.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Previously, GitPython chokes on this while decoding.  Rather than
choking, instead accept the error and replace the invalid bytes by the
� (\x80) char.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #455 from gitpython-developers/fix-ci-tests</title>
<updated>2016-05-30T14:32:55+00:00</updated>
<author>
<name>Vincent Driessen</name>
<email>me@nvie.com</email>
</author>
<published>2016-05-30T14:32:55+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitpython.git/commit/?id=a3f24f64a20d1e09917288f67fd21969f4444acd'/>
<id>a3f24f64a20d1e09917288f67fd21969f4444acd</id>
<content type='text'>
Skip test that always fails on Travis CI</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Skip test that always fails on Travis CI</pre>
</div>
</content>
</entry>
<entry>
<title>Add test case as example of Git commit with invalid data</title>
<updated>2016-05-30T14:32:26+00:00</updated>
<author>
<name>Vincent Driessen</name>
<email>me@nvie.com</email>
</author>
<published>2016-05-30T14:20:22+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitpython.git/commit/?id=0eafe201905d85be767c24106eb1ab12efd3ee22'/>
<id>0eafe201905d85be767c24106eb1ab12efd3ee22</id>
<content type='text'>
This is a real commit from the microjs.com open source project, see
https://github.com/madrobby/microjs.com/commit/7e8457c17850d0991763941213dcb403d80f39f8,
which is declared to be encoded in UTF-8, but contains invalid bytes.

This makes GitPython choke on it while decoding.  Rather than choking,
this should instead accept the error and replace the invalid bytes by
the �  (\x80) char.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is a real commit from the microjs.com open source project, see
https://github.com/madrobby/microjs.com/commit/7e8457c17850d0991763941213dcb403d80f39f8,
which is declared to be encoded in UTF-8, but contains invalid bytes.

This makes GitPython choke on it while decoding.  Rather than choking,
this should instead accept the error and replace the invalid bytes by
the �  (\x80) char.
</pre>
</div>
</content>
</entry>
<entry>
<title>Skip test that always fails on Travis CI</title>
<updated>2016-05-30T13:59:46+00:00</updated>
<author>
<name>Vincent Driessen</name>
<email>me@nvie.com</email>
</author>
<published>2016-05-30T13:59:46+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitpython.git/commit/?id=0235f910916b49a38aaf1fcbaa6cfbef32c567a6'/>
<id>0235f910916b49a38aaf1fcbaa6cfbef32c567a6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
