<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/spec, branch docs-css</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 'sh-fix-project-branches-merge-status' into 'master'</title>
<updated>2019-04-01T10:25:31+00:00</updated>
<author>
<name>Douwe Maan</name>
<email>douwe@gitlab.com</email>
</author>
<published>2019-04-01T10:25:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=2db4e79f2825408f99e4f070bc3393de9b4cace3'/>
<id>2db4e79f2825408f99e4f070bc3393de9b4cace3</id>
<content type='text'>
Fix API /project/:id/branches not returning correct merge status

Closes #56250

See merge request gitlab-org/gitlab-ce!26785</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix API /project/:id/branches not returning correct merge status

Closes #56250

See merge request gitlab-org/gitlab-ce!26785</pre>
</div>
</content>
</entry>
<entry>
<title>add a uniq constraints on issues and mrs labels</title>
<updated>2019-04-01T09:09:49+00:00</updated>
<author>
<name>Antoine Huret</name>
<email>huret.antoine@yahoo.fr</email>
</author>
<published>2019-04-01T09:09:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=5e10b611299b4a968e51f5a706d60b7d1a9c29b5'/>
<id>5e10b611299b4a968e51f5a706d60b7d1a9c29b5</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 '6539-extract-ee-specific-code' into 'master'</title>
<updated>2019-04-01T08:58:16+00:00</updated>
<author>
<name>Rémy Coutable</name>
<email>remy@rymai.me</email>
</author>
<published>2019-04-01T08:58:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=e5aa2d88248b510b55c909d2ba4ee7b511927c86'/>
<id>e5aa2d88248b510b55c909d2ba4ee7b511927c86</id>
<content type='text'>
Add no-op license helper to CE

See merge request gitlab-org/gitlab-ce!26723</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add no-op license helper to CE

See merge request gitlab-org/gitlab-ce!26723</pre>
</div>
</content>
</entry>
<entry>
<title>Don't try to set any ACL on uploaded objects</title>
<updated>2019-03-30T13:55:33+00:00</updated>
<author>
<name>Bastian Blank</name>
<email>waldi@debian.org</email>
</author>
<published>2019-03-29T22:54:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=b82ccf2cbc074e36c78dd1e331c6745cb9b71349'/>
<id>b82ccf2cbc074e36c78dd1e331c6745cb9b71349</id>
<content type='text'>
Set ACL of uploaded objects to not-public (fog-aws) or no ACL at all
(fog-google).  Value is ignored by other supported backends (fog-aliyun,
fog-openstack, fog-rackspace)

This allows uploads to GCS with ACL support disabled.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Set ACL of uploaded objects to not-public (fog-aws) or no ACL at all
(fog-google).  Value is ignored by other supported backends (fog-aliyun,
fog-openstack, fog-rackspace)

This allows uploads to GCS with ACL support disabled.
</pre>
</div>
</content>
</entry>
<entry>
<title>Revise merged branch check to green light up to N branches</title>
<updated>2019-03-30T12:28:37+00:00</updated>
<author>
<name>Stan Hu</name>
<email>stanhu@gmail.com</email>
</author>
<published>2019-03-30T12:28:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=2675581cb9dbc37c81732ac69e2166da6ced0429'/>
<id>2675581cb9dbc37c81732ac69e2166da6ced0429</id>
<content type='text'>
The main point of this check is to ensure we aren't checking
all branches, not that we have an exact count.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The main point of this check is to ensure we aren't checking
all branches, not that we have an exact count.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix API /project/:id/branches not returning correct merge status</title>
<updated>2019-03-30T12:20:29+00:00</updated>
<author>
<name>Stan Hu</name>
<email>stanhu@gmail.com</email>
</author>
<published>2019-03-29T22:16:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=cedbb3366bf3dd9bafe95dde366c1e28ee70c615'/>
<id>cedbb3366bf3dd9bafe95dde366c1e28ee70c615</id>
<content type='text'>
https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/24034 introduced
a regression where only the first 20 branches were used to determine
whether a branch has been merged because the pagination was applied
incorrectly. Requesting the second page of branches via the API would
always have the wrong merge status. We fix this by properly paginating
the branches before requesting their merge status.

Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/56250
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/24034 introduced
a regression where only the first 20 branches were used to determine
whether a branch has been merged because the pagination was applied
incorrectly. Requesting the second page of branches via the API would
always have the wrong merge status. We fix this by properly paginating
the branches before requesting their merge status.

Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/56250
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'sh-fix-failing-spec-on-first-da' into 'master'</title>
<updated>2019-03-30T06:42:46+00:00</updated>
<author>
<name>James Lopez</name>
<email>james@gitlab.com</email>
</author>
<published>2019-03-30T06:42:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=50a1e01fa8959b08df8bfc18940f9310876873b3'/>
<id>50a1e01fa8959b08df8bfc18940f9310876873b3</id>
<content type='text'>
Fix failing spec in spec/features/users/login_spec.rb

Closes #59731

See merge request gitlab-org/gitlab-ce!26787</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix failing spec in spec/features/users/login_spec.rb

Closes #59731

See merge request gitlab-org/gitlab-ce!26787</pre>
</div>
</content>
</entry>
<entry>
<title>Fix failing spec in spec/features/users/login_spec.rb</title>
<updated>2019-03-30T04:05:37+00:00</updated>
<author>
<name>Stan Hu</name>
<email>stanhu@gmail.com</email>
</author>
<published>2019-03-30T03:57:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=bf286d1172430051cf12ad2e1bbe27c063b7d74d'/>
<id>bf286d1172430051cf12ad2e1bbe27c063b7d74d</id>
<content type='text'>
This spec would start to fail on the first of the month because the
generated text would have a zero-padded day (e.g. 01 vs 1), whereas the
expected text check used an unpadded day via the `-d` parameter in
strftime (https://apidock.com/ruby/Date/strftime). To fix this, we
use use the `d` parameter to pad zeros.

This spec was introduced recently in
https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/25731.

Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/59731
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This spec would start to fail on the first of the month because the
generated text would have a zero-padded day (e.g. 01 vs 1), whereas the
expected text check used an unpadded day via the `-d` parameter in
strftime (https://apidock.com/ruby/Date/strftime). To fix this, we
use use the `d` parameter to pad zeros.

This spec was introduced recently in
https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/25731.

Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/59731
</pre>
</div>
</content>
</entry>
<entry>
<title>Renames Cluster#managed? to provided_by_user?</title>
<updated>2019-03-29T18:23:18+00:00</updated>
<author>
<name>Mayra Cabrera</name>
<email>mcabrera@gitlab.com</email>
</author>
<published>2019-03-29T18:23:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=ab06d1eda2fa222b4de400d2b18eab611ffefa68'/>
<id>ab06d1eda2fa222b4de400d2b18eab611ffefa68</id>
<content type='text'>
This will allow to user the term managed? on
https://gitlab.com/gitlab-org/gitlab-ce/issues/56557. Managed? will be
used to distinct clusters that are automatically managed by GitLab
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This will allow to user the term managed? on
https://gitlab.com/gitlab-org/gitlab-ce/issues/56557. Managed? will be
used to distinct clusters that are automatically managed by GitLab
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'winh-jest-html-fixtures' into 'master'</title>
<updated>2019-03-29T16:59:16+00:00</updated>
<author>
<name>Clement Ho</name>
<email>clemmakesapps@gmail.com</email>
</author>
<published>2019-03-29T16:59:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=b4cc639f80407285e69bdb5cb2bda7dcd74c87e6'/>
<id>b4cc639f80407285e69bdb5cb2bda7dcd74c87e6</id>
<content type='text'>
Add helpers for HTML fixtures to Jest

Closes #57998

See merge request gitlab-org/gitlab-ce!26739</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add helpers for HTML fixtures to Jest

Closes #57998

See merge request gitlab-org/gitlab-ce!26739</pre>
</div>
</content>
</entry>
</feed>
