<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/spec/requests/api, branch NicoleSchwartz-Python-Blog</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>Allow asynchronous rebase operations to be monitored</title>
<updated>2019-07-04T07:50:55+00:00</updated>
<author>
<name>Nick Thomas</name>
<email>nick@gitlab.com</email>
</author>
<published>2019-06-21T16:56:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=381468d0cc6e5b528a4b2207c0a534569035a73f'/>
<id>381468d0cc6e5b528a4b2207c0a534569035a73f</id>
<content type='text'>
This MR introduces tracking of the `rebase_jid` for merge requests. As
with `merge_ongoing?`, `rebase_in_progress?` will now return true if a
rebase is proceeding in sidekiq.

After one release, we should remove the Gitaly-based lookup of rebases.
It is much better to track this kind of thing via the database.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This MR introduces tracking of the `rebase_jid` for merge requests. As
with `merge_ongoing?`, `rebase_in_progress?` will now return true if a
rebase is proceeding in sidekiq.

After one release, we should remove the Gitaly-based lookup of rebases.
It is much better to track this kind of thing via the database.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'sh-fix-issue-63349' into 'master'</title>
<updated>2019-07-04T07:38:56+00:00</updated>
<author>
<name>Rémy Coutable</name>
<email>remy@rymai.me</email>
</author>
<published>2019-07-04T07:38:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=9a4b5f08dbf5e0900145b5127f50e7ab3578d05c'/>
<id>9a4b5f08dbf5e0900145b5127f50e7ab3578d05c</id>
<content type='text'>
Make Housekeeping button do a full garbage collection

Closes #63349

See merge request gitlab-org/gitlab-ce!30289</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Make Housekeeping button do a full garbage collection

Closes #63349

See merge request gitlab-org/gitlab-ce!30289</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ce</title>
<updated>2019-07-03T09:55:56+00:00</updated>
<author>
<name>Marin Jankovski</name>
<email>maxlazio@gmail.com</email>
</author>
<published>2019-07-03T09:55:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=c20c9e2940b0f94547246d05b7b526f0b1571027'/>
<id>c20c9e2940b0f94547246d05b7b526f0b1571027</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Show upcoming status for releases</title>
<updated>2019-07-03T09:12:15+00:00</updated>
<author>
<name>Jason Goodman</name>
<email>jgoodman@gitlab.com</email>
</author>
<published>2019-07-03T09:12:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=7ecffe2987e0f3953489759d080fc263c5cb95c5'/>
<id>7ecffe2987e0f3953489759d080fc263c5cb95c5</id>
<content type='text'>
Add released_at field to releases API
Add released_at column to releases table
Return releases to the API sorted by released_at
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add released_at field to releases API
Add released_at column to releases table
Return releases to the API sorted by released_at
</pre>
</div>
</content>
</entry>
<entry>
<title>Make Housekeeping button do a full garbage collection</title>
<updated>2019-07-03T07:21:33+00:00</updated>
<author>
<name>Stan Hu</name>
<email>stanhu@gmail.com</email>
</author>
<published>2019-07-03T07:13:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=d48ee86053acabf4d52effc2a6a2ba714926821d'/>
<id>d48ee86053acabf4d52effc2a6a2ba714926821d</id>
<content type='text'>
Previously the Housekeeping button and API would use the counter of last
pushes to determine whether to do a full garbage collection, or whether
to do one of the less comprehensive tasks: a full repack, incremental
pack, or ref pack. This was confusing behavior, since a project owner
might have to click the button dozens of times before a full GC would be
initiated.

This commit forces a full GC each time this is initiated. Note that the
`ExclusiveLease` in `HousekeepingService` prevents users from clicking
on the button more than once a day.

Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/63349
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Previously the Housekeeping button and API would use the counter of last
pushes to determine whether to do a full garbage collection, or whether
to do one of the less comprehensive tasks: a full repack, incremental
pack, or ref pack. This was confusing behavior, since a project owner
might have to click the button dozens of times before a full GC would be
initiated.

This commit forces a full GC each time this is initiated. Note that the
`ExclusiveLease` in `HousekeepingService` prevents users from clicking
on the button more than once a day.

Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/63349
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'project-cluster-spec-improvements' into 'master'</title>
<updated>2019-07-02T08:18:41+00:00</updated>
<author>
<name>Jan Provaznik</name>
<email>jprovaznik@gitlab.com</email>
</author>
<published>2019-07-02T08:18:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=ebf289fded498bf928ae979245f4be753865781a'/>
<id>ebf289fded498bf928ae979245f4be753865781a</id>
<content type='text'>
Tidy spec for API::ProjectClusters

See merge request gitlab-org/gitlab-ce!30154</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Tidy spec for API::ProjectClusters

See merge request gitlab-org/gitlab-ce!30154</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'security-mr-head-pipeline-leak' into 'master'</title>
<updated>2019-07-02T06:23:28+00:00</updated>
<author>
<name>Marin Jankovski</name>
<email>marin@gitlab.com</email>
</author>
<published>2019-07-02T06:23:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=fa77293bdca13d056dc7214583c3a0b370d18531'/>
<id>fa77293bdca13d056dc7214583c3a0b370d18531</id>
<content type='text'>
[master] Fix MR head pipeline leak

See merge request gitlab/gitlabhq!3148</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
[master] Fix MR head pipeline leak

See merge request gitlab/gitlabhq!3148</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'security-bvl-enforce-graphql-type-authorization' into 'master'</title>
<updated>2019-07-02T06:22:09+00:00</updated>
<author>
<name>Marin Jankovski</name>
<email>marin@gitlab.com</email>
</author>
<published>2019-07-02T06:22:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=7eae0e9b529c5fb28b30857c06cd004dc5ebd74e'/>
<id>7eae0e9b529c5fb28b30857c06cd004dc5ebd74e</id>
<content type='text'>
Fix type authorizations in GraphQL

See merge request gitlab/gitlabhq!3170</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix type authorizations in GraphQL

See merge request gitlab/gitlabhq!3170</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'security-59581-related-merge-requests-count' into 'master'</title>
<updated>2019-07-02T06:19:58+00:00</updated>
<author>
<name>Marin Jankovski</name>
<email>marin@gitlab.com</email>
</author>
<published>2019-07-02T06:19:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=f66169b35c29294ecc9f63eeeedc52085d2a3fd7'/>
<id>f66169b35c29294ecc9f63eeeedc52085d2a3fd7</id>
<content type='text'>
Expose merge requests count based on user access

See merge request gitlab/gitlabhq!3157</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Expose merge requests count based on user access

See merge request gitlab/gitlabhq!3157</pre>
</div>
</content>
</entry>
<entry>
<title>Tidy spec for API::ProjectClusters</title>
<updated>2019-07-02T04:17:01+00:00</updated>
<author>
<name>Dylan Griffith</name>
<email>dyl.griffith@gmail.com</email>
</author>
<published>2019-06-28T07:10:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=29bd0775ff80a51322ec54be92e9eb08f63b1576'/>
<id>29bd0775ff80a51322ec54be92e9eb08f63b1576</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
