<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git, branch hotfix/recaptcha</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 recaptcha specs</title>
<updated>2015-12-29T20:59:24+00:00</updated>
<author>
<name>Gabriel Mazetto</name>
<email>gabriel@gitlab.com</email>
</author>
<published>2015-12-29T20:59:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=a727ea0b0e7745079c757208c6243ce2f93267e5'/>
<id>a727ea0b0e7745079c757208c6243ce2f93267e5</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 'upvote_count_to_api' into 'master'</title>
<updated>2015-12-29T16:07:12+00:00</updated>
<author>
<name>Valery Sizov</name>
<email>valery@gitlab.com</email>
</author>
<published>2015-12-29T16:07:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=eeba266e3d45f2e82f84bd3aab85195c890efb89'/>
<id>eeba266e3d45f2e82f84bd3aab85195c890efb89</id>
<content type='text'>

Revert upvotes and downvotes params back to MR API

issue https://gitlab.com/gitlab-org/gitlab-ce/issues/3672

See merge request !2212</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>

Revert upvotes and downvotes params back to MR API

issue https://gitlab.com/gitlab-org/gitlab-ce/issues/3672

See merge request !2212</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'influxdb-current-settings' into 'master'</title>
<updated>2015-12-29T16:03:13+00:00</updated>
<author>
<name>Yorick Peterse</name>
<email>yorickpeterse@gmail.com</email>
</author>
<published>2015-12-29T16:03:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=a12517466b13150cc6631018b9a7e91ea534e3d9'/>
<id>a12517466b13150cc6631018b9a7e91ea534e3d9</id>
<content type='text'>

See merge request !2239</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>

See merge request !2239</pre>
</div>
</content>
</entry>
<entry>
<title>Use Gitlab::CurrentSettings for InfluxDB</title>
<updated>2015-12-29T14:49:12+00:00</updated>
<author>
<name>Yorick Peterse</name>
<email>yorickpeterse@gmail.com</email>
</author>
<published>2015-12-29T14:49:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=701e5de9108faa65a118e8822560d39fd8ea9996'/>
<id>701e5de9108faa65a118e8822560d39fd8ea9996</id>
<content type='text'>
This ensures we can still start up even when not connecting to a
database.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This ensures we can still start up even when not connecting to a
database.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'influxdb-without-sidekiq' into 'master'</title>
<updated>2015-12-29T14:40:51+00:00</updated>
<author>
<name>Yorick Peterse</name>
<email>yorickpeterse@gmail.com</email>
</author>
<published>2015-12-29T14:40:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=1dbf7284a9c478fad9d6062a6e022b23370ef23d'/>
<id>1dbf7284a9c478fad9d6062a6e022b23370ef23d</id>
<content type='text'>

See merge request !2238</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>

See merge request !2238</pre>
</div>
</content>
</entry>
<entry>
<title>Write to InfluxDB directly via UDP</title>
<updated>2015-12-29T13:53:45+00:00</updated>
<author>
<name>Yorick Peterse</name>
<email>yorickpeterse@gmail.com</email>
</author>
<published>2015-12-29T12:40:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=620e7bb3d60c3685b494b26e256b793a47621da4'/>
<id>620e7bb3d60c3685b494b26e256b793a47621da4</id>
<content type='text'>
This removes the need for Sidekiq and any overhead/problems introduced
by TCP. There are a few things to take into account:

1. When writing data to InfluxDB you may still get an error if the
   server becomes unavailable during the write. Because of this we're
   catching all exceptions and just ignore them (for now).
2. Writing via UDP apparently requires the timestamp to be in
   nanoseconds. Without this data either isn't written properly.
3. Due to the restrictions on UDP buffer sizes we're writing metrics one
   by one, instead of writing all of them at once.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This removes the need for Sidekiq and any overhead/problems introduced
by TCP. There are a few things to take into account:

1. When writing data to InfluxDB you may still get an error if the
   server becomes unavailable during the write. Because of this we're
   catching all exceptions and just ignore them (for now).
2. Writing via UDP apparently requires the timestamp to be in
   nanoseconds. Without this data either isn't written properly.
3. Due to the restrictions on UDP buffer sizes we're writing metrics one
   by one, instead of writing all of them at once.
</pre>
</div>
</content>
</entry>
<entry>
<title>Strip newlines from obfuscated SQL</title>
<updated>2015-12-29T12:40:08+00:00</updated>
<author>
<name>Yorick Peterse</name>
<email>yorickpeterse@gmail.com</email>
</author>
<published>2015-12-29T12:40:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=03478e6d5b98a723fbb349dac2c8495f75909a08'/>
<id>03478e6d5b98a723fbb349dac2c8495f75909a08</id>
<content type='text'>
Newlines aren't really needed and they may mess with InfluxDB's line
protocol.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Newlines aren't really needed and they may mess with InfluxDB's line
protocol.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'issue_3780' into 'master'</title>
<updated>2015-12-29T11:54:13+00:00</updated>
<author>
<name>Dmitriy Zaporozhets</name>
<email>dmitriy.zaporozhets@gmail.com</email>
</author>
<published>2015-12-29T11:54:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=10491c38b0391408ec44140e3e449b0965230cc9'/>
<id>10491c38b0391408ec44140e3e449b0965230cc9</id>
<content type='text'>

Downcased user or email search for avatar_icon.

GitLab users are defined with their mail address which is enforced to be lower case. When a commit is listed in the history whose committer mail address is not written in all lower case, the corresponding GitLab user won't be found because the search is case sensitive resp. the mail address to search for not downcased.

Closes #3780 

See merge request !2234</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>

Downcased user or email search for avatar_icon.

GitLab users are defined with their mail address which is enforced to be lower case. When a commit is listed in the history whose committer mail address is not written in all lower case, the corresponding GitLab user won't be found because the search is case sensitive resp. the mail address to search for not downcased.

Closes #3780 

See merge request !2234</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'feature/recaptcha_settings' into 'master'</title>
<updated>2015-12-29T09:39:54+00:00</updated>
<author>
<name>Dmitriy Zaporozhets</name>
<email>dmitriy.zaporozhets@gmail.com</email>
</author>
<published>2015-12-29T09:39:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=58bc4b72d519d971be7c3eb80f174d9e22f2a1b2'/>
<id>58bc4b72d519d971be7c3eb80f174d9e22f2a1b2</id>
<content type='text'>

Makes reCAPTCHA configurable through Application Settings screen

Following the work made by @stanhu here: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/2216, made it configurable without needing to restart Gitlab

See merge request !2231</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>

Makes reCAPTCHA configurable through Application Settings screen

Following the work made by @stanhu here: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/2216, made it configurable without needing to restart Gitlab

See merge request !2231</pre>
</div>
</content>
</entry>
<entry>
<title>note votes methids implementation</title>
<updated>2015-12-29T08:11:20+00:00</updated>
<author>
<name>Valery Sizov</name>
<email>vsv2711@gmail.com</email>
</author>
<published>2015-12-29T08:11:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=d3807328d8ed9be2915f67708b093269bf0b1b9f'/>
<id>d3807328d8ed9be2915f67708b093269bf0b1b9f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
