<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/lib, branch patch-12</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>Merge branch '24976-start-of-line-mention' into 'master'</title>
<updated>2017-02-13T13:10:15+00:00</updated>
<author>
<name>Sean McGivern</name>
<email>sean@mcgivern.me.uk</email>
</author>
<published>2017-02-13T13:10:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=42ad07c6801b37edc2b58e72446e34f553713be6'/>
<id>42ad07c6801b37edc2b58e72446e34f553713be6</id>
<content type='text'>

Feature to create directly addressed Todos when mentioned in beginning

Closes #24976

See merge request !7926</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>

Feature to create directly addressed Todos when mentioned in beginning

Closes #24976

See merge request !7926</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch '20732_member_exists_409' into 'master'</title>
<updated>2017-02-13T12:00:29+00:00</updated>
<author>
<name>Sean McGivern</name>
<email>sean@mcgivern.me.uk</email>
</author>
<published>2017-02-13T12:00:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=d8345a5d4359ec2783216b3b4896e43fbe731c6d'/>
<id>d8345a5d4359ec2783216b3b4896e43fbe731c6d</id>
<content type='text'>
Add member: Always return 409 when a member exists

Closes #20732

See merge request !9093</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add member: Always return 409 when a member exists

Closes #20732

See merge request !9093</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'zj-drop-ruby-21-tests' into 'master'</title>
<updated>2017-02-13T10:22:38+00:00</updated>
<author>
<name>Rémy Coutable</name>
<email>remy@rymai.me</email>
</author>
<published>2017-02-13T10:22:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=6a1b3ef73f57d58d159e343f79e1f74418c2f763'/>
<id>6a1b3ef73f57d58d159e343f79e1f74418c2f763</id>
<content type='text'>

Update Rubocop to Ruby 2.3

See merge request !8994</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>

Update Rubocop to Ruby 2.3

See merge request !8994</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'concurrent-foreign-keys' into 'master'</title>
<updated>2017-02-13T08:57:40+00:00</updated>
<author>
<name>Rémy Coutable</name>
<email>remy@rymai.me</email>
</author>
<published>2017-02-13T08:57:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=39e525a063752ce59386d1cfcc15d6b1d88d5e12'/>
<id>39e525a063752ce59386d1cfcc15d6b1d88d5e12</id>
<content type='text'>
Add method for creating foreign keys concurrently

See merge request !9069</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add method for creating foreign keys concurrently

See merge request !9069</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'rename_files_delete_service' into 'master'</title>
<updated>2017-02-13T08:20:23+00:00</updated>
<author>
<name>Rémy Coutable</name>
<email>remy@rymai.me</email>
</author>
<published>2017-02-13T08:20:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=b609ee55f23847e529cabd5b35f013a7293b380a'/>
<id>b609ee55f23847e529cabd5b35f013a7293b380a</id>
<content type='text'>

Rename Files::DeleteService to Files::DestroyService

See merge request !9110</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>

Rename Files::DeleteService to Files::DestroyService

See merge request !9110</pre>
</div>
</content>
</entry>
<entry>
<title>Add method for creating foreign keys concurrently</title>
<updated>2017-02-10T20:51:09+00:00</updated>
<author>
<name>Yorick Peterse</name>
<email>yorickpeterse@gmail.com</email>
</author>
<published>2017-02-08T17:15:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=a97dcc077c68f4f320cd7a5686b9056adfef6c09'/>
<id>a97dcc077c68f4f320cd7a5686b9056adfef6c09</id>
<content type='text'>
This method allows one to create foreign keys without blocking access to
the source table, but only on PostgreSQL.

When creating a regular foreign key the "ALTER TABLE" statement used for
this won't return until all data has been validated. This statement in
turn will acquire a lock on the source table. As a result this lock can
be held for quite a long amount of time, depending on the number of rows
and system load.

By breaking up the foreign key creation process in two steps (creation,
and validation) we can reduce the amount of locking to a minimum.
Locking is still necessary for the "ALTER TABLE" statement that adds the
constraint, but this is a fast process and so will only block access for
a few milliseconds.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This method allows one to create foreign keys without blocking access to
the source table, but only on PostgreSQL.

When creating a regular foreign key the "ALTER TABLE" statement used for
this won't return until all data has been validated. This statement in
turn will acquire a lock on the source table. As a result this lock can
be held for quite a long amount of time, depending on the number of rows
and system load.

By breaking up the foreign key creation process in two steps (creation,
and validation) we can reduce the amount of locking to a minimum.
Locking is still necessary for the "ALTER TABLE" statement that adds the
constraint, but this is a fast process and so will only block access for
a few milliseconds.
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "Merge branch 'add-additional-checks-to-ca-data' into 'master'"</title>
<updated>2017-02-10T20:21:45+00:00</updated>
<author>
<name>Alfredo Sumaran</name>
<email>alfredo@gitlab.com</email>
</author>
<published>2017-02-10T20:21:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=7b20784715ea4f32fd8d83d1ab9403056069e9f7'/>
<id>7b20784715ea4f32fd8d83d1ab9403056069e9f7</id>
<content type='text'>
This reverts commit b7c5ca499d9c26494736d92505116bbb294c63d6, reversing
changes made to 9745c98bb77a1a1ddd964f58cc4d058a665eb9ee.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit b7c5ca499d9c26494736d92505116bbb294c63d6, reversing
changes made to 9745c98bb77a1a1ddd964f58cc4d058a665eb9ee.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'add-additional-checks-to-ca-data' into 'master'</title>
<updated>2017-02-10T18:48:49+00:00</updated>
<author>
<name>Alfredo Sumaran</name>
<email>alfredo@gitlab.com</email>
</author>
<published>2017-02-10T18:48:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=b7c5ca499d9c26494736d92505116bbb294c63d6'/>
<id>b7c5ca499d9c26494736d92505116bbb294c63d6</id>
<content type='text'>

Small improvements for Cycle Analytics

See merge request !9126</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>

Small improvements for Cycle Analytics

See merge request !9126</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch '1051-api-create-users-without-password' into 'master'</title>
<updated>2017-02-10T18:34:58+00:00</updated>
<author>
<name>Rémy Coutable</name>
<email>remy@rymai.me</email>
</author>
<published>2017-02-10T18:34:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=6c62ec76c0bc7a15005c8add04dc1700d471b80b'/>
<id>6c62ec76c0bc7a15005c8add04dc1700d471b80b</id>
<content type='text'>

Optionally make users created via the API set their password

Closes #1051

See merge request !8957</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>

Optionally make users created via the API set their password

Closes #1051

See merge request !8957</pre>
</div>
</content>
</entry>
<entry>
<title>Rename Files::DeleteService to Files::DestroyService</title>
<updated>2017-02-10T17:22:18+00:00</updated>
<author>
<name>dixpac</name>
<email>dino.onex@gmail.com</email>
</author>
<published>2017-02-09T19:32:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=fa2339641f52688ba2465f4c602c1de36fe5b353'/>
<id>fa2339641f52688ba2465f4c602c1de36fe5b353</id>
<content type='text'>
Reason for renaming is to comply with naming convention of services in
codebase.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Reason for renaming is to comply with naming convention of services in
codebase.
</pre>
</div>
</content>
</entry>
</feed>
