<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/lib/banzai, branch 35942_api_binary_encoding</title>
<subtitle>gitlab.com: gitlab-org/gitlab-ce.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/'/>
<entry>
<title>Merge branch 'rs-more-public-send-whitelists' into 'master'</title>
<updated>2017-08-16T11:25:26+00:00</updated>
<author>
<name>Rémy Coutable</name>
<email>remy@rymai.me</email>
</author>
<published>2017-08-16T11:25:26+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=fcce6c3168dbd04404f318b4e983d7395d21538c'/>
<id>fcce6c3168dbd04404f318b4e983d7395d21538c</id>
<content type='text'>
Whitelist or fix additional `Gitlab/PublicSend` cop violations

See merge request !13467</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Whitelist or fix additional `Gitlab/PublicSend` cop violations

See merge request !13467</pre>
</div>
</content>
</entry>
<entry>
<title>Enable Layout/TrailingWhitespace cop and auto-correct offenses</title>
<updated>2017-08-15T17:44:37+00:00</updated>
<author>
<name>Robert Speicher</name>
<email>rspeicher@gmail.com</email>
</author>
<published>2017-08-15T17:44:37+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=4edfad96784e8f77ec8ead26f01b4012977ba58a'/>
<id>4edfad96784e8f77ec8ead26f01b4012977ba58a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Whitelist or fix additional `Gitlab/PublicSend` cop violations</title>
<updated>2017-08-14T16:14:11+00:00</updated>
<author>
<name>Robert Speicher</name>
<email>rspeicher@gmail.com</email>
</author>
<published>2017-08-10T16:39:26+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=260c8da060a6039cbd47cfe31c8ec6d6f9b43de0'/>
<id>260c8da060a6039cbd47cfe31c8ec6d6f9b43de0</id>
<content type='text'>
An upcoming update to rubocop-gitlab-security added additional
violations.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
An upcoming update to rubocop-gitlab-security added additional
violations.
</pre>
</div>
</content>
</entry>
<entry>
<title>DRY up caching in AbstractReferenceFilter</title>
<updated>2017-08-07T18:12:46+00:00</updated>
<author>
<name>Sean McGivern</name>
<email>sean@gitlab.com</email>
</author>
<published>2017-08-07T10:54:18+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=df00ebded67e871dfab226db3ffadc3dd6807d79'/>
<id>df00ebded67e871dfab226db3ffadc3dd6807d79</id>
<content type='text'>
We had a lot of copied and pasted code, when the different elements were very
small and easy to get wrong.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We had a lot of copied and pasted code, when the different elements were very
small and easy to get wrong.
</pre>
</div>
</content>
</entry>
<entry>
<title>Support references to group milestones</title>
<updated>2017-08-07T10:55:00+00:00</updated>
<author>
<name>Sean McGivern</name>
<email>sean@gitlab.com</email>
</author>
<published>2017-08-03T11:50:06+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=149528f472f3d2f3865ae01c764b81c6a97f9380'/>
<id>149528f472f3d2f3865ae01c764b81c6a97f9380</id>
<content type='text'>
Group milestones can only be referred to by name, not IID. They also do not
support cross-project references.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Group milestones can only be referred to by name, not IID. They also do not
support cross-project references.
</pre>
</div>
</content>
</entry>
<entry>
<title>Don't bother going through an entire Banzai pipeline for empty text</title>
<updated>2017-08-04T02:48:51+00:00</updated>
<author>
<name>Robert Speicher</name>
<email>rspeicher@gmail.com</email>
</author>
<published>2017-08-04T01:00:20+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=01dc8e6d66598c42edb58e35c7da79c3b4cad425'/>
<id>01dc8e6d66598c42edb58e35c7da79c3b4cad425</id>
<content type='text'>
This bails out of `cacheless_render` immediately unless the provided
text is present, since there's no point.

This is a slight improvement in our test performance. Across the
creation of 1,000 `Namespace` records, which caches the `description`
field and which is blank by default in its factory, this saves about
four seconds, which... sure. Why not.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This bails out of `cacheless_render` immediately unless the provided
text is present, since there's no point.

This is a slight improvement in our test performance. Across the
creation of 1,000 `Namespace` records, which caches the `description`
field and which is blank by default in its factory, this saves about
four seconds, which... sure. Why not.
</pre>
</div>
</content>
</entry>
<entry>
<title>Rename more path_with_namespace -&gt; full_path or disk_path</title>
<updated>2017-08-01T05:28:13+00:00</updated>
<author>
<name>Gabriel Mazetto</name>
<email>brodock@gmail.com</email>
</author>
<published>2017-07-22T00:37:22+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=fb06a4d8fe7bb10c2784f323261cfde04718aec9'/>
<id>fb06a4d8fe7bb10c2784f323261cfde04718aec9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Rename many path_with_namespace -&gt; full_path</title>
<updated>2017-08-01T05:26:58+00:00</updated>
<author>
<name>Gabriel Mazetto</name>
<email>brodock@gmail.com</email>
</author>
<published>2017-07-20T09:34:09+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=abb878326c5cac283fff19716149211658ce25d1'/>
<id>abb878326c5cac283fff19716149211658ce25d1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Resolve "Lazy load images on the Frontend"</title>
<updated>2017-07-24T17:36:52+00:00</updated>
<author>
<name>Tim Zallmann</name>
<email>tzallmann@gitlab.com</email>
</author>
<published>2017-07-24T17:36:52+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=52b8a0db689c2df968776a1f369ea6a6db245d39'/>
<id>52b8a0db689c2df968776a1f369ea6a6db245d39</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Support both internal and external issue trackers</title>
<updated>2017-07-24T06:13:43+00:00</updated>
<author>
<name>Jarka Kadlecova</name>
<email>jarka@gitlab.com</email>
</author>
<published>2017-07-10T07:38:42+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=7bee7b848aab883a6869e1fd2fbb9e66182d2023'/>
<id>7bee7b848aab883a6869e1fd2fbb9e66182d2023</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
