diff options
author | Stan Hu <stanhu@gmail.com> | 2019-02-28 11:07:15 -0800 |
---|---|---|
committer | Stan Hu <stanhu@gmail.com> | 2019-03-19 00:16:00 -0700 |
commit | 30caec327f6331985bb8157e1a3aac8174bb0a77 (patch) | |
tree | fdc154a65aa50cdaacaffc6e206cdfe10e4184f3 /Gemfile | |
parent | 909161dd49514db5292ca551d6e288560c29f7b2 (diff) | |
download | gitlab-ce-30caec327f6331985bb8157e1a3aac8174bb0a77.tar.gz |
Bump Rugged to 0.28.0
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.
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -18,7 +18,7 @@ gem 'gitlab-default_value_for', '~> 3.1.1', require: 'default_value_for' gem 'mysql2', '~> 0.4.10', group: :mysql gem 'pg', '~> 1.1', group: :postgres -gem 'rugged', '~> 0.27' +gem 'rugged', '~> 0.28' gem 'grape-path-helpers', '~> 1.0' gem 'faraday', '~> 0.12' |