<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/app/views/notify, branch commit-limits</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>Fix broken link in CI build notification emails</title>
<updated>2016-02-12T13:01:27+00:00</updated>
<author>
<name>Grzegorz Bizon</name>
<email>grzesiek.bizon@gmail.com</email>
</author>
<published>2016-02-11T14:08:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=c9f202b2efdecda2e9fa5290ba5de413ab345a7d'/>
<id>c9f202b2efdecda2e9fa5290ba5de413ab345a7d</id>
<content type='text'>
Closes #13199
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #13199
</pre>
</div>
</content>
</entry>
<entry>
<title>Add option to include the sender name in body of Notify email. fix #7824</title>
<updated>2016-02-09T11:58:13+00:00</updated>
<author>
<name>Jason Lee</name>
<email>huacnlee@gmail.com</email>
</author>
<published>2016-01-26T13:34:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=9474e36f462522af1804e760e5fe134f101fce08'/>
<id>9474e36f462522af1804e760e5fe134f101fce08</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Mark inline difference between old and new paths when a file is renamed</title>
<updated>2016-01-29T18:37:17+00:00</updated>
<author>
<name>Douwe Maan</name>
<email>douwe@selenight.nl</email>
</author>
<published>2016-01-29T18:37:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=677b4db9e682b29bb15dddb84fe80b976490a671'/>
<id>677b4db9e682b29bb15dddb84fe80b976490a671</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use `to_s(:iso8601)` where appropriate</title>
<updated>2016-01-08T01:01:08+00:00</updated>
<author>
<name>Robert Speicher</name>
<email>rspeicher@gmail.com</email>
</author>
<published>2016-01-07T21:45:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=63444936559cffba174a69c01d2425fb6b5e61cf'/>
<id>63444936559cffba174a69c01d2425fb6b5e61cf</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "Make sure notify email always has author info."</title>
<updated>2015-12-15T15:45:52+00:00</updated>
<author>
<name>Job van der Voort</name>
<email>jobvandervoort@gmail.com</email>
</author>
<published>2015-12-15T15:45:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=ddd806c66f7b1b064243f81e36412ddbe557b8da'/>
<id>ddd806c66f7b1b064243f81e36412ddbe557b8da</id>
<content type='text'>
This reverts commit 303f79f8046876c7a461708dee5d1f50f12737bf.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit 303f79f8046876c7a461708dee5d1f50f12737bf.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'ci-project-migrate' into 'master'</title>
<updated>2015-12-14T10:35:40+00:00</updated>
<author>
<name>Kamil Trzciński</name>
<email>ayufan@ayufan.eu</email>
</author>
<published>2015-12-14T10:35:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=c81023435795766411c5954a4676ebb215af40a6'/>
<id>c81023435795766411c5954a4676ebb215af40a6</id>
<content type='text'>

Ci Project migrate

- This doesn't migrate: allow_git_fetch, coverage_regex, timeout. Since this are project configuration settings I would propose to migrate them to `.gitlab-ci.yml`.
- This requires offline migrations.
- It simplifies database models making all CI objects to be attached to: Project.
- It removes Ci::Project, but makes /ci/projects working by adding method: Project.find_by_ci_id for backward compatibility (badges, triggers).
- We should add default `timeout` to Application Settings.
- It misses specs.
- It is based on ci-services-migrate for now.
- It removes CI events.
- It removes administrator CI projects overview.
- It removes CI application settings.

In 8.4 or 8.5 we can remove redundant tables and columns.


See merge request !1987</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>

Ci Project migrate

- This doesn't migrate: allow_git_fetch, coverage_regex, timeout. Since this are project configuration settings I would propose to migrate them to `.gitlab-ci.yml`.
- This requires offline migrations.
- It simplifies database models making all CI objects to be attached to: Project.
- It removes Ci::Project, but makes /ci/projects working by adding method: Project.find_by_ci_id for backward compatibility (badges, triggers).
- We should add default `timeout` to Application Settings.
- It misses specs.
- It is based on ci-services-migrate for now.
- It removes CI events.
- It removes administrator CI projects overview.
- It removes CI application settings.

In 8.4 or 8.5 we can remove redundant tables and columns.


See merge request !1987</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'ci-services-migrate' into 'master'</title>
<updated>2015-12-14T10:32:57+00:00</updated>
<author>
<name>Kamil Trzciński</name>
<email>ayufan@ayufan.eu</email>
</author>
<published>2015-12-14T10:32:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=e81ae1e68c03de4442265e4699710421e2f2755c'/>
<id>e81ae1e68c03de4442265e4699710421e2f2755c</id>
<content type='text'>

Ci Services migrate



See merge request !1985</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>

Ci Services migrate



See merge request !1985</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #9839 from huacnlee/fix/add-author-info-into-note-messages</title>
<updated>2015-12-12T07:40:22+00:00</updated>
<author>
<name>Stan Hu</name>
<email>stanhu@gmail.com</email>
</author>
<published>2015-12-12T07:40:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=885bfe3bdc40ffa927fadb54cd0afb3587c1d5c9'/>
<id>885bfe3bdc40ffa927fadb54cd0afb3587c1d5c9</id>
<content type='text'>
Make sure notify email always has author info.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Make sure notify email always has author info.</pre>
</div>
</content>
</entry>
<entry>
<title>Migrate CI::Project to Project</title>
<updated>2015-12-11T17:02:09+00:00</updated>
<author>
<name>Kamil Trzcinski</name>
<email>ayufan@ayufan.eu</email>
</author>
<published>2015-12-04T11:55:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=e80e3f5372d6bcad1fbe04a85b3086bb66794828'/>
<id>e80e3f5372d6bcad1fbe04a85b3086bb66794828</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Migrate CI::Services and CI::WebHooks to Services and WebHooks</title>
<updated>2015-12-10T15:04:08+00:00</updated>
<author>
<name>Kamil Trzcinski</name>
<email>ayufan@ayufan.eu</email>
</author>
<published>2015-12-07T12:23:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=2988e1fbf50b3c9e803a9358933e3e969e64dcc3'/>
<id>2988e1fbf50b3c9e803a9358933e3e969e64dcc3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
