<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git, branch awards-handler-class-syntax</title>
<subtitle>gitlab.com: gitlab-org/gitlab-ce.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/'/>
<entry>
<title>refactor AwardsHandler into es class syntax</title>
<updated>2017-06-18T03:28:37+00:00</updated>
<author>
<name>Mike Greiling</name>
<email>mike@pixelcog.com</email>
</author>
<published>2017-06-16T21:56:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=3b4c07ac5fd173786d3e587a5af9ea27bfd0a707'/>
<id>3b4c07ac5fd173786d3e587a5af9ea27bfd0a707</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'backport-panels-styles-from-ee' into 'master'</title>
<updated>2017-06-16T19:06:32+00:00</updated>
<author>
<name>Annabel Dunstone Gray</name>
<email>annabel.dunstone@gmail.com</email>
</author>
<published>2017-06-16T19:06:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=442bd2657c35afbe5d8dd1eb189a431b24308544'/>
<id>442bd2657c35afbe5d8dd1eb189a431b24308544</id>
<content type='text'>
Backport panels.scss styles from EE

See merge request !12206</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Backport panels.scss styles from EE

See merge request !12206</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'merge-request-diffs-table' into 'master'</title>
<updated>2017-06-16T19:01:56+00:00</updated>
<author>
<name>Douwe Maan</name>
<email>douwe@gitlab.com</email>
</author>
<published>2017-06-16T19:01:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=ab29db9ecde5c883f6225de85be13c9eb81f0465'/>
<id>ab29db9ecde5c883f6225de85be13c9eb81f0465</id>
<content type='text'>
Add table for files in merge request diffs

See merge request !12047</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add table for files in merge request diffs

See merge request !12047</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'tc-fix-group-finder-subgrouping' into 'master'</title>
<updated>2017-06-16T17:51:35+00:00</updated>
<author>
<name>Douwe Maan</name>
<email>douwe@gitlab.com</email>
</author>
<published>2017-06-16T17:51:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=9b835d10d2c13b55b84461589542b9c77ab90b45'/>
<id>9b835d10d2c13b55b84461589542b9c77ab90b45</id>
<content type='text'>
Show private subgroups if member of parent group

Closes #32135

See merge request !11764</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Show private subgroups if member of parent group

Closes #32135

See merge request !11764</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch '33779-reset-session-before-blocking-requests' into 'master'</title>
<updated>2017-06-16T17:38:22+00:00</updated>
<author>
<name>Robert Speicher</name>
<email>robert@gitlab.com</email>
</author>
<published>2017-06-16T17:38:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=11b3e54cfe709fdfcbf3d56fa894c4e8c781cef7'/>
<id>11b3e54cfe709fdfcbf3d56fa894c4e8c781cef7</id>
<content type='text'>
Call Capybara.reset_sessions! before block_and_wait_for_requests_complete

Closes #33779

See merge request !12224</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Call Capybara.reset_sessions! before block_and_wait_for_requests_complete

Closes #33779

See merge request !12224</pre>
</div>
</content>
</entry>
<entry>
<title>Add table for files in merge request diffs</title>
<updated>2017-06-16T17:30:01+00:00</updated>
<author>
<name>Sean McGivern</name>
<email>sean@gitlab.com</email>
</author>
<published>2017-06-09T11:48:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=9a73b634ab4220f68a8296ccb582a68293874489'/>
<id>9a73b634ab4220f68a8296ccb582a68293874489</id>
<content type='text'>
This adds an ID-less table containing one row per file, per merge request
diff. It has a column for each attribute on Gitlab::Git::Diff that is serialised
currently, with the advantage that we can easily query the attributes of this
new table.

It does not migrate existing data, so we have fallback code when the legacy
st_diffs column is present instead. For a merge request diff to be valid, it
should have at most one of:

* Rows in this new table, with the correct merge_request_diff_id.
* A non-NULL st_diffs column.

It may have neither, if the diff is empty.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This adds an ID-less table containing one row per file, per merge request
diff. It has a column for each attribute on Gitlab::Git::Diff that is serialised
currently, with the advantage that we can easily query the attributes of this
new table.

It does not migrate existing data, so we have fallback code when the legacy
st_diffs column is present instead. For a merge request diff to be valid, it
should have at most one of:

* Rows in this new table, with the correct merge_request_diff_id.
* A non-NULL st_diffs column.

It may have neither, if the diff is empty.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch '27070-rename-slash-commands-to-quick-actions' into 'master'</title>
<updated>2017-06-16T16:32:53+00:00</updated>
<author>
<name>Sean McGivern</name>
<email>sean@mcgivern.me.uk</email>
</author>
<published>2017-06-16T16:32:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=352a9ed56213b6f83a679e72f9554638a0aed1ee'/>
<id>352a9ed56213b6f83a679e72f9554638a0aed1ee</id>
<content type='text'>
Rename "Slash commands" to "Quick actions"

Closes #27070

See merge request !11811</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Rename "Slash commands" to "Quick actions"

Closes #27070

See merge request !11811</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'issue_20900' into 'master'</title>
<updated>2017-06-16T16:29:35+00:00</updated>
<author>
<name>Sean McGivern</name>
<email>sean@mcgivern.me.uk</email>
</author>
<published>2017-06-16T16:29:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=c6701d45474acab6a2d687d2e2ffdaac5c0d5491'/>
<id>c6701d45474acab6a2d687d2e2ffdaac5c0d5491</id>
<content type='text'>
Remove issuable drag and drop and sorting from milestone view

Closes #20900

See merge request !11950</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Remove issuable drag and drop and sorting from milestone view

Closes #20900

See merge request !11950</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch '33739-blame-legend-bottom-border' into 'master'</title>
<updated>2017-06-16T16:20:02+00:00</updated>
<author>
<name>Annabel Dunstone Gray</name>
<email>annabel.dunstone@gmail.com</email>
</author>
<published>2017-06-16T16:20:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=451cbe1f69d65b24568a53ec7aa4a7fba2c46933'/>
<id>451cbe1f69d65b24568a53ec7aa4a7fba2c46933</id>
<content type='text'>
Add missing bottom border to blame age legend

Closes #33739

See merge request !12205</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add missing bottom border to blame age legend

Closes #33739

See merge request !12205</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'bvl-missing-translations' into 'master'</title>
<updated>2017-06-16T16:16:35+00:00</updated>
<author>
<name>Douwe Maan</name>
<email>douwe@gitlab.com</email>
</author>
<published>2017-06-16T16:16:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=0dc5eb78ca83d6e03e94080cd8c657a63af03f81'/>
<id>0dc5eb78ca83d6e03e94080cd8c657a63af03f81</id>
<content type='text'>
Missing translations for the project &amp; repository pages.

Closes #33420

See merge request !12052</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Missing translations for the project &amp; repository pages.

Closes #33420

See merge request !12052</pre>
</div>
</content>
</entry>
</feed>
