Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
22811da9
Commit
22811da9
authored
Feb 10, 2020
by
GitalyBot
Committed by
James Lopez
Feb 10, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Upgrade Gitaly to v1.86.0
parent
070abce6
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
4 deletions
+10
-4
GITALY_SERVER_VERSION
GITALY_SERVER_VERSION
+1
-1
changelogs/unreleased/gitaly-version-v1.86.0.yml
changelogs/unreleased/gitaly-version-v1.86.0.yml
+5
-0
lib/feature/gitaly.rb
lib/feature/gitaly.rb
+1
-0
spec/requests/api/internal/base_spec.rb
spec/requests/api/internal/base_spec.rb
+3
-3
No files found.
GITALY_SERVER_VERSION
View file @
22811da9
1.8
5
.0
1.8
6
.0
changelogs/unreleased/gitaly-version-v1.86.0.yml
0 → 100644
View file @
22811da9
---
title
:
Upgrade to Gitaly v1.86.0
merge_request
:
24610
author
:
type
:
changed
lib/feature/gitaly.rb
View file @
22811da9
...
...
@@ -11,6 +11,7 @@ class Feature
inforef_uploadpack_cache
commit_without_batch_check
use_core_delta_islands
use_git_protocol_v2
]
.
freeze
DEFAULT_ON_FLAGS
=
Set
.
new
([]).
freeze
...
...
spec/requests/api/internal/base_spec.rb
View file @
22811da9
...
...
@@ -326,7 +326,7 @@ describe API::Internal::Base do
expect
(
json_response
[
"gitaly"
][
"repository"
][
"relative_path"
]).
to
eq
(
project
.
repository
.
gitaly_repository
.
relative_path
)
expect
(
json_response
[
"gitaly"
][
"address"
]).
to
eq
(
Gitlab
::
GitalyClient
.
address
(
project
.
repository_storage
))
expect
(
json_response
[
"gitaly"
][
"token"
]).
to
eq
(
Gitlab
::
GitalyClient
.
token
(
project
.
repository_storage
))
expect
(
json_response
[
"gitaly"
][
"features"
]).
to
eq
(
'gitaly-feature-inforef-uploadpack-cache'
=>
'true'
,
'gitaly-feature-cache-invalidator'
=>
'true'
,
'gitaly-feature-commit-without-batch-check'
=>
'true'
,
'gitaly-feature-use-core-delta-islands'
=>
'true'
)
expect
(
json_response
[
"gitaly"
][
"features"
]).
to
eq
(
'gitaly-feature-inforef-uploadpack-cache'
=>
'true'
,
'gitaly-feature-cache-invalidator'
=>
'true'
,
'gitaly-feature-commit-without-batch-check'
=>
'true'
,
'gitaly-feature-use-core-delta-islands'
=>
'true'
,
'gitaly-feature-use-git-protocol-v2'
=>
'true'
)
expect
(
user
.
reload
.
last_activity_on
).
to
eql
(
Date
.
today
)
end
end
...
...
@@ -346,7 +346,7 @@ describe API::Internal::Base do
expect
(
json_response
[
"gitaly"
][
"repository"
][
"relative_path"
]).
to
eq
(
project
.
repository
.
gitaly_repository
.
relative_path
)
expect
(
json_response
[
"gitaly"
][
"address"
]).
to
eq
(
Gitlab
::
GitalyClient
.
address
(
project
.
repository_storage
))
expect
(
json_response
[
"gitaly"
][
"token"
]).
to
eq
(
Gitlab
::
GitalyClient
.
token
(
project
.
repository_storage
))
expect
(
json_response
[
"gitaly"
][
"features"
]).
to
eq
(
'gitaly-feature-inforef-uploadpack-cache'
=>
'true'
,
'gitaly-feature-cache-invalidator'
=>
'true'
,
'gitaly-feature-commit-without-batch-check'
=>
'true'
,
'gitaly-feature-use-core-delta-islands'
=>
'true'
)
expect
(
json_response
[
"gitaly"
][
"features"
]).
to
eq
(
'gitaly-feature-inforef-uploadpack-cache'
=>
'true'
,
'gitaly-feature-cache-invalidator'
=>
'true'
,
'gitaly-feature-commit-without-batch-check'
=>
'true'
,
'gitaly-feature-use-core-delta-islands'
=>
'true'
,
'gitaly-feature-use-git-protocol-v2'
=>
'true'
)
expect
(
user
.
reload
.
last_activity_on
).
to
be_nil
end
end
...
...
@@ -594,7 +594,7 @@ describe API::Internal::Base do
expect
(
json_response
[
"gitaly"
][
"repository"
][
"relative_path"
]).
to
eq
(
project
.
repository
.
gitaly_repository
.
relative_path
)
expect
(
json_response
[
"gitaly"
][
"address"
]).
to
eq
(
Gitlab
::
GitalyClient
.
address
(
project
.
repository_storage
))
expect
(
json_response
[
"gitaly"
][
"token"
]).
to
eq
(
Gitlab
::
GitalyClient
.
token
(
project
.
repository_storage
))
expect
(
json_response
[
"gitaly"
][
"features"
]).
to
eq
(
'gitaly-feature-inforef-uploadpack-cache'
=>
'true'
,
'gitaly-feature-cache-invalidator'
=>
'true'
,
'gitaly-feature-commit-without-batch-check'
=>
'true'
,
'gitaly-feature-use-core-delta-islands'
=>
'true'
)
expect
(
json_response
[
"gitaly"
][
"features"
]).
to
eq
(
'gitaly-feature-inforef-uploadpack-cache'
=>
'true'
,
'gitaly-feature-cache-invalidator'
=>
'true'
,
'gitaly-feature-commit-without-batch-check'
=>
'true'
,
'gitaly-feature-use-core-delta-islands'
=>
'true'
,
'gitaly-feature-use-git-protocol-v2'
=>
'true'
)
end
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment