<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/lib/api, branch docs/edit-rules-docs</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 'master' of dev.gitlab.org:gitlab/gitlabhq</title>
<updated>2019-08-29T22:17:37+00:00</updated>
<author>
<name>Robert Speicher</name>
<email>rspeicher@gmail.com</email>
</author>
<published>2019-08-29T22:17:37+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=7698d405506bc10dfd7fb2e6e02b419dd5925725'/>
<id>7698d405506bc10dfd7fb2e6e02b419dd5925725</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 'security-enable-image-proxy' into 'master'</title>
<updated>2019-08-29T21:34:29+00:00</updated>
<author>
<name>GitLab Release Tools Bot</name>
<email>robert+release-tools@gitlab.com</email>
</author>
<published>2019-08-29T21:34:29+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=090956259c47d839b136f9391c3f74255764da81'/>
<id>090956259c47d839b136f9391c3f74255764da81</id>
<content type='text'>
Use image proxy to mitigate stealing ip addresses

Closes #2812

See merge request gitlab/gitlabhq!2926</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use image proxy to mitigate stealing ip addresses

Closes #2812

See merge request gitlab/gitlabhq!2926</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'security-epic-notes-api-reveals-historical-info-ce-master' into 'master'</title>
<updated>2019-08-29T21:34:24+00:00</updated>
<author>
<name>GitLab Release Tools Bot</name>
<email>robert+release-tools@gitlab.com</email>
</author>
<published>2019-08-29T21:34:24+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=5a008d136840b5c7fd5688060efa73dd1b5491ab'/>
<id>5a008d136840b5c7fd5688060efa73dd1b5491ab</id>
<content type='text'>
Filter out old system notes for epics in notes api endpoint response

See merge request gitlab/gitlabhq!3224</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Filter out old system notes for epics in notes api endpoint response

See merge request gitlab/gitlabhq!3224</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'security-59549-add-capcha-for-failed-logins' into 'master'</title>
<updated>2019-08-29T21:34:12+00:00</updated>
<author>
<name>GitLab Release Tools Bot</name>
<email>robert+release-tools@gitlab.com</email>
</author>
<published>2019-08-29T21:34:12+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=a5b2a3786056ddf99de06c8315e9a42c3bf86cd5'/>
<id>a5b2a3786056ddf99de06c8315e9a42c3bf86cd5</id>
<content type='text'>
Require a captcha after unique failed logins from the same IP

See merge request gitlab/gitlabhq!3270</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Require a captcha after unique failed logins from the same IP

See merge request gitlab/gitlabhq!3270</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'sh-support-content-for-snippets-api' into 'master'</title>
<updated>2019-08-29T11:33:48+00:00</updated>
<author>
<name>Kamil Trzciński</name>
<email>ayufan@ayufan.eu</email>
</author>
<published>2019-08-29T11:33:48+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=955e23d9564f5b99d97d00f077b21490dca6cd62'/>
<id>955e23d9564f5b99d97d00f077b21490dca6cd62</id>
<content type='text'>
Standardize use of `content` parameter in snippets API

Closes #66673

See merge request gitlab-org/gitlab-ce!32296</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Standardize use of `content` parameter in snippets API

Closes #66673

See merge request gitlab-org/gitlab-ce!32296</pre>
</div>
</content>
</entry>
<entry>
<title>Standardize use of `content` parameter in snippets API</title>
<updated>2019-08-29T05:54:07+00:00</updated>
<author>
<name>Stan Hu</name>
<email>stanhu@gmail.com</email>
</author>
<published>2019-08-27T19:52:27+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=fc52421b552dace1a8d1410adc23b7bfddc5a580'/>
<id>fc52421b552dace1a8d1410adc23b7bfddc5a580</id>
<content type='text'>
There was some confusion over whether `code` or `content` is the right
parameter for snippets. Internally, the database stores
`content`. However:

1. Project snippets use `code`. `code` gets remapped in `content` in
`lib/api/project_snippets.rb`.

2. Personal snippets use `content`.

To unify these APIs, allow an alias of `content` to work for project
snippets.

Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/66673
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
There was some confusion over whether `code` or `content` is the right
parameter for snippets. Internally, the database stores
`content`. However:

1. Project snippets use `code`. `code` gets remapped in `content` in
`lib/api/project_snippets.rb`.

2. Personal snippets use `content`.

To unify these APIs, allow an alias of `content` to work for project
snippets.

Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/66673
</pre>
</div>
</content>
</entry>
<entry>
<title>Simplify internal post receive messages</title>
<updated>2019-08-28T22:18:58+00:00</updated>
<author>
<name>Michael Kozono</name>
<email>mkozono@gmail.com</email>
</author>
<published>2019-08-28T21:12:37+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=50342028aa9eecaa0b9bbf7e4161b2a5eb90dcfa'/>
<id>50342028aa9eecaa0b9bbf7e4161b2a5eb90dcfa</id>
<content type='text'>
Instead of sending varied data to Gitaly, and making Gitaly construct
various messages, build the messages first and have Gitaly print
either basic messages or alert messages, in the order they come.

Depends on https://gitlab.com/gitlab-org/gitaly/merge_requests/1410
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Instead of sending varied data to Gitaly, and making Gitaly construct
various messages, build the messages first and have Gitaly print
either basic messages or alert messages, in the order they come.

Depends on https://gitlab.com/gitlab-org/gitaly/merge_requests/1410
</pre>
</div>
</content>
</entry>
<entry>
<title>Update CE files for GSD projects filter</title>
<updated>2019-08-28T14:26:42+00:00</updated>
<author>
<name>Victor Zagorodny</name>
<email>vzagorodny@gitlab.com</email>
</author>
<published>2019-08-28T14:26:42+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=e4fbd94cf5eba0b103bd97627d822f2014dfe474'/>
<id>e4fbd94cf5eba0b103bd97627d822f2014dfe474</id>
<content type='text'>
A new param with_security_reports was added to
GET /groups/:id/projects API and the code to
support this logic in GroupProjectsFinder and
Project model. Also, a DB index was added to
ci_job_artifacts table to speed up the search
of security reports artifacts for projects
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
A new param with_security_reports was added to
GET /groups/:id/projects API and the code to
support this logic in GroupProjectsFinder and
Project model. Also, a DB index was added to
ci_job_artifacts table to speed up the search
of security reports artifacts for projects
</pre>
</div>
</content>
</entry>
<entry>
<title>Filter out old system notes for epics</title>
<updated>2019-08-28T13:04:23+00:00</updated>
<author>
<name>Patrick Derichs</name>
<email>pderichs@gitlab.com</email>
</author>
<published>2019-08-09T12:54:57+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=c9b4dc677abdebc02ecac4dca65a759d3f07b2a0'/>
<id>c9b4dc677abdebc02ecac4dca65a759d3f07b2a0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Replace prepend_entity with prepend_if_ee</title>
<updated>2019-08-27T15:11:15+00:00</updated>
<author>
<name>Winnie Hellmann</name>
<email>winnie@gitlab.com</email>
</author>
<published>2019-08-27T15:11:15+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=75353242e2a2925fa968a3f9a5ad1db051a194cd'/>
<id>75353242e2a2925fa968a3f9a5ad1db051a194cd</id>
<content type='text'>
(cherry picked from commit 897a9d308db46b620b738b98f2b0e5630ac7d2dd)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(cherry picked from commit 897a9d308db46b620b738b98f2b0e5630ac7d2dd)
</pre>
</div>
</content>
</entry>
</feed>
