<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/Gemfile, branch docs/fix-commit-api-render</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-update-rails-5.0.7.2' into 'master'</title>
<updated>2019-04-05T10:16:29+00:00</updated>
<author>
<name>Robert Speicher</name>
<email>rspeicher@gmail.com</email>
</author>
<published>2019-04-05T10:16:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=0b7f904635512d61149a502a2063cc1452514137'/>
<id>0b7f904635512d61149a502a2063cc1452514137</id>
<content type='text'>
Update Rails to 5.0.7.2

Closes #58963

See merge request gitlab-org/gitlab-ce!27022</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Update Rails to 5.0.7.2

Closes #58963

See merge request gitlab-org/gitlab-ce!27022</pre>
</div>
</content>
</entry>
<entry>
<title>Bump rack gem to 2.0.7</title>
<updated>2019-04-05T05:01:01+00:00</updated>
<author>
<name>Stan Hu</name>
<email>stanhu@gmail.com</email>
</author>
<published>2019-04-05T04:56:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=617dcfd5e4fef79feeaf24fde3e9478ca598bd69'/>
<id>617dcfd5e4fef79feeaf24fde3e9478ca598bd69</id>
<content type='text'>
This update has two important fixes:

1. It reverts the monkey patch introduced in
https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/23385 since
https://github.com/rack/rack/pull/1201 is now part of the release.

2. Preserve forwarded IP address for trusted proxy chains
(https://github.com/rack/rack/pull/1343).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This update has two important fixes:

1. It reverts the monkey patch introduced in
https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/23385 since
https://github.com/rack/rack/pull/1201 is now part of the release.

2. Preserve forwarded IP address for trusted proxy chains
(https://github.com/rack/rack/pull/1343).
</pre>
</div>
</content>
</entry>
<entry>
<title>Update Rails to 5.0.7.2</title>
<updated>2019-04-04T21:18:53+00:00</updated>
<author>
<name>Stan Hu</name>
<email>stanhu@gmail.com</email>
</author>
<published>2019-04-04T21:12:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=b704fce1bcd1d60b30524a832d0211c0d40e72ec'/>
<id>b704fce1bcd1d60b30524a832d0211c0d40e72ec</id>
<content type='text'>
This fixes a number of issues as described in
https://weblog.rubyonrails.org/releases/.

Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/58963
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This fixes a number of issues as described in
https://weblog.rubyonrails.org/releases/.

Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/58963
</pre>
</div>
</content>
</entry>
<entry>
<title>Download a folder from repository</title>
<updated>2019-04-02T14:07:16+00:00</updated>
<author>
<name>Patrick Bajao</name>
<email>ebajao@gitlab.com</email>
</author>
<published>2019-03-25T08:20:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=6766a0a144bd07441b4593d25235924a14df0a91'/>
<id>6766a0a144bd07441b4593d25235924a14df0a91</id>
<content type='text'>
Add `GetArchiveRequest` to git-archive params.

Modifies `Git::Repository#archive_metadata` to append `path`
to `ArchivePrefix` so it'll not hit the cache of repository archive
when it already exists.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add `GetArchiveRequest` to git-archive params.

Modifies `Git::Repository#archive_metadata` to append `path`
to `ArchivePrefix` so it'll not hit the cache of repository archive
when it already exists.
</pre>
</div>
</content>
</entry>
<entry>
<title>Upgrade `gitlab-markup` to 1.7.0</title>
<updated>2019-03-27T15:29:22+00:00</updated>
<author>
<name>Gabriel Mazetto</name>
<email>brodock@gmail.com</email>
</author>
<published>2019-03-16T21:49:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=e5af7d83962934fc0463657a006acb54d4f85e85'/>
<id>e5af7d83962934fc0463657a006acb54d4f85e85</id>
<content type='text'>
The new version requires `python3` to be available. In omnibus
installation this is already a reality as we are currently pathing
previous `gitlab-markup` version to use `python3` instead of `python2`.

We are now requiring `python3` with the gem without having to patch it.

As a consequence to also make it easy to use it in development, we've
introduced a `Pipfile` and `Pipfile.lock`, working similarly to
`Gemfile` and `Gemfile.lock`, and added documentation on how to use
them.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The new version requires `python3` to be available. In omnibus
installation this is already a reality as we are currently pathing
previous `gitlab-markup` version to use `python3` instead of `python2`.

We are now requiring `python3` with the gem without having to patch it.

As a consequence to also make it easy to use it in development, we've
introduced a `Pipfile` and `Pipfile.lock`, working similarly to
`Gemfile` and `Gemfile.lock`, and added documentation on how to use
them.
</pre>
</div>
</content>
</entry>
<entry>
<title>Upgrade bootstrap_form gem</title>
<updated>2019-03-25T20:21:44+00:00</updated>
<author>
<name>Enrique Alcantara</name>
<email>ealcantara@gitlab.com</email>
</author>
<published>2019-03-25T20:21:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=9ea2c959d9d27b8370e6c1d6c5d77615f318c6d3'/>
<id>9ea2c959d9d27b8370e6c1d6c5d77615f318c6d3</id>
<content type='text'>
- Also remove boostrap 4 migration adapter
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Also remove boostrap 4 migration adapter
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'dz-bump-httparty' into 'master'</title>
<updated>2019-03-20T21:37:42+00:00</updated>
<author>
<name>Stan Hu</name>
<email>stanhu@gmail.com</email>
</author>
<published>2019-03-20T21:37:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=9ca395134501b57331a7a49d0c6f5ceb0fc3301d'/>
<id>9ca395134501b57331a7a49d0c6f5ceb0fc3301d</id>
<content type='text'>
Bump httparty to version 1.16.4

Closes #44342

See merge request gitlab-org/gitlab-ce!25893</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Bump httparty to version 1.16.4

Closes #44342

See merge request gitlab-org/gitlab-ce!25893</pre>
</div>
</content>
</entry>
<entry>
<title>Bump httparty to version 1.16.4</title>
<updated>2019-03-19T17:00:44+00:00</updated>
<author>
<name>Dmitriy Zaporozhets</name>
<email>dmitriy.zaporozhets@gmail.com</email>
</author>
<published>2019-03-07T21:07:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=6af99db01ba00b242e6aa3f3a262f5c98249035d'/>
<id>6af99db01ba00b242e6aa3f3a262f5c98249035d</id>
<content type='text'>
Signed-off-by: Dmitriy Zaporozhets &lt;dmitriy.zaporozhets@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Dmitriy Zaporozhets &lt;dmitriy.zaporozhets@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Bump Rugged to 0.28.0</title>
<updated>2019-03-19T07:16:00+00:00</updated>
<author>
<name>Stan Hu</name>
<email>stanhu@gmail.com</email>
</author>
<published>2019-02-28T19:07:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=30caec327f6331985bb8157e1a3aac8174bb0a77'/>
<id>30caec327f6331985bb8157e1a3aac8174bb0a77</id>
<content type='text'>
This version bump makes things consistent between Gitaly and
fixes a significant number of bugs:
https://github.com/libgit2/libgit2/releases

This also decreases disk space of Omnibus builds by ~30 MB.

There is also a workaround for
https://github.com/libgit2/rugged/issues/785. If Gitaly or another
process changes .gitconfig while Rugged has the file loaded,
Rugged::Repository#each_key will report stale values unless a lookup is
done first.

This bug only manifests in a spec because we are using both Gitaly and
Rugged at the same time there, and we normally don't use Rugged in the
CE/EE code in this way.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This version bump makes things consistent between Gitaly and
fixes a significant number of bugs:
https://github.com/libgit2/libgit2/releases

This also decreases disk space of Omnibus builds by ~30 MB.

There is also a workaround for
https://github.com/libgit2/rugged/issues/785. If Gitaly or another
process changes .gitconfig while Rugged has the file loaded,
Rugged::Repository#each_key will report stale values unless a lookup is
done first.

This bug only manifests in a spec because we are using both Gitaly and
Rugged at the same time there, and we normally don't use Rugged in the
CE/EE code in this way.
</pre>
</div>
</content>
</entry>
<entry>
<title>Update acts-as-taggable-on 5.0 -&gt; 6.0</title>
<updated>2019-03-18T11:08:48+00:00</updated>
<author>
<name>Pirate Praveen</name>
<email>praveen@debian.org</email>
</author>
<published>2019-03-04T15:31:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=c122014fd3978b8398ead838fa51eea947872a45'/>
<id>c122014fd3978b8398ead838fa51eea947872a45</id>
<content type='text'>
Signed-off-by: Rémy Coutable &lt;remy@rymai.me&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Rémy Coutable &lt;remy@rymai.me&gt;
</pre>
</div>
</content>
</entry>
</feed>
