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.
Showing
... | @@ -18,7 +18,7 @@ gem 'gitlab-default_value_for', '~> 3.1.1', require: 'default_value_for' | ... | @@ -18,7 +18,7 @@ gem 'gitlab-default_value_for', '~> 3.1.1', require: 'default_value_for' |
gem 'mysql2', '~> 0.4.10', group: :mysql | gem 'mysql2', '~> 0.4.10', group: :mysql | ||
gem 'pg', '~> 1.1', group: :postgres | gem 'pg', '~> 1.1', group: :postgres | ||
gem 'rugged', '~> 0.27' | gem 'rugged', '~> 0.28' | ||
gem 'grape-path-helpers', '~> 1.0' | gem 'grape-path-helpers', '~> 1.0' | ||
gem 'faraday', '~> 0.12' | gem 'faraday', '~> 0.12' | ||
... | ... |
Please register or sign in to comment