Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2021-01-29 20:29:38 +0300
committerStan Hu <stanhu@gmail.com>2021-02-03 00:35:11 +0300
commit0d1a7a18f26136453e781b011b3c1b9ab5f011f7 (patch)
tree77728e65defae65e97494a038aeb1716b1fe2ea8 /gitaly.gemspec
parent9c2da9436f6a41a244a30deef6f48798f877e909 (diff)
ruby: Upgrade to Rugged 1.0.1
With v1.0, libgit2 released its first stable major version since forever and as Rugged follows the same versioning scheme, it also released v1.0 of the Gem. This caused us to be blocked on upgrading libgit2/Rugged as some of our dependencies were depending on ~>0.28. The two last dependencies which did depend on that are licensee and gitlab-gollum-lib. While the latter has a new Gem pushed which now depends on ~>1.0 of rugged, licensee didn't yet release a new version but has the fix on its master branch. This commit here thus upgrades both Gems, which allows us to finally make use of rugged v1.0 and later.
Diffstat (limited to 'gitaly.gemspec')
-rw-r--r--gitaly.gemspec3
1 files changed, 3 insertions, 0 deletions
diff --git a/gitaly.gemspec b/gitaly.gemspec
index 80095c4ce..5f0d08db7 100644
--- a/gitaly.gemspec
+++ b/gitaly.gemspec
@@ -18,4 +18,7 @@ Gem::Specification.new do |spec|
spec.require_paths = [prefix]
spec.add_dependency "grpc", "~> 1.0"
+ # This is locked to ensure CE/EE use the same version to ensure
+ # license key mappings match between gitaly-ruby and GitLab Rails.
+ spec.add_dependency "licensee", "= 9.14.1"
end