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
ec45122c
Commit
ec45122c
authored
Feb 06, 2019
by
Yorick Peterse
Browse files
Options
Browse Files
Download
Plain Diff
Merge dev.gitlab.org master into GitLab.com master
parents
4e24db32
b6a43731
Changes
10
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
42 additions
and
36 deletions
+42
-36
CHANGELOG.md
CHANGELOG.md
+14
-0
changelogs/unreleased/56424-fix-gl-form-init-tag-editing.yml
changelogs/unreleased/56424-fix-gl-form-init-tag-editing.yml
+0
-5
changelogs/unreleased/fj-regression-external-wiki-url.yml
changelogs/unreleased/fj-regression-external-wiki-url.yml
+0
-5
changelogs/unreleased/osw-adjusts-suggestions-unable-to-be-applied.yml
...released/osw-adjusts-suggestions-unable-to-be-applied.yml
+0
-5
changelogs/unreleased/sh-fix-detect-host-keys.yml
changelogs/unreleased/sh-fix-detect-host-keys.yml
+0
-5
changelogs/unreleased/sh-fix-issue-9357.yml
changelogs/unreleased/sh-fix-issue-9357.yml
+0
-5
changelogs/unreleased/sh-fix-oauth2-callback-caps.yml
changelogs/unreleased/sh-fix-oauth2-callback-caps.yml
+0
-5
changelogs/unreleased/sh-remove-bitbucket-mirror-constant.yml
...gelogs/unreleased/sh-remove-bitbucket-mirror-constant.yml
+0
-5
lib/api/entities.rb
lib/api/entities.rb
+3
-1
spec/requests/api/releases_spec.rb
spec/requests/api/releases_spec.rb
+25
-0
No files found.
CHANGELOG.md
View file @
ec45122c
...
...
@@ -2,6 +2,20 @@
documentation
](
doc/development/changelog.md
)
for instructions on adding your own
entry.
## 11.7.5 (2019-02-06)
### Fixed (8 changes)
-
Fix import handling errors in Bitbucket Server importer. !24499
-
Adjusts suggestions unable to be applied. !24603
-
Fix 500 errors with legacy appearance logos. !24615
-
Fix form functionality for edit tag page. !24645
-
Update Workhorse to v8.0.2. !24870
-
Downcase aliased OAuth2 callback providers. !24877
-
Fix Detect Host Keys not working. !24884
-
Changed external wiki query method to prevent attribute caching. !24907
## 11.7.2 (2019-01-29)
### Fixed (1 change)
...
...
changelogs/unreleased/56424-fix-gl-form-init-tag-editing.yml
deleted
100644 → 0
View file @
4e24db32
---
title
:
Fix form functionality for edit tag page
merge_request
:
24645
author
:
type
:
fixed
changelogs/unreleased/fj-regression-external-wiki-url.yml
deleted
100644 → 0
View file @
4e24db32
---
title
:
Changed external wiki query method to prevent attribute caching
merge_request
:
24907
author
:
type
:
fixed
changelogs/unreleased/osw-adjusts-suggestions-unable-to-be-applied.yml
deleted
100644 → 0
View file @
4e24db32
---
title
:
Adjusts suggestions unable to be applied
merge_request
:
24603
author
:
type
:
fixed
changelogs/unreleased/sh-fix-detect-host-keys.yml
deleted
100644 → 0
View file @
4e24db32
---
title
:
Fix Detect Host Keys not working
merge_request
:
24884
author
:
type
:
fixed
changelogs/unreleased/sh-fix-issue-9357.yml
deleted
100644 → 0
View file @
4e24db32
---
title
:
Fix 500 errors with legacy appearance logos
merge_request
:
24615
author
:
type
:
fixed
changelogs/unreleased/sh-fix-oauth2-callback-caps.yml
deleted
100644 → 0
View file @
4e24db32
---
title
:
Downcase aliased OAuth2 callback providers
merge_request
:
24877
author
:
type
:
fixed
changelogs/unreleased/sh-remove-bitbucket-mirror-constant.yml
deleted
100644 → 0
View file @
4e24db32
---
title
:
Fix import handling errors in Bitbucket Server importer
merge_request
:
24499
author
:
type
:
fixed
lib/api/entities.rb
View file @
ec45122c
...
...
@@ -1116,7 +1116,9 @@ module API
class
Release
<
TagRelease
expose
:name
expose
:description_html
expose
:description_html
do
|
entity
|
MarkupHelper
.
markdown_field
(
entity
,
:description
)
end
expose
:created_at
expose
:author
,
using:
Entities
::
UserBasic
,
if:
->
(
release
,
_
)
{
release
.
author
.
present?
}
expose
:commit
,
using:
Entities
::
Commit
...
...
spec/requests/api/releases_spec.rb
View file @
ec45122c
...
...
@@ -127,6 +127,31 @@ describe API::Releases do
.
to
match_array
(
release
.
sources
.
map
(
&
:url
))
end
context
"when release description contains confidential issue's link"
do
let
(
:confidential_issue
)
do
create
(
:issue
,
:confidential
,
project:
project
,
title:
'A vulnerability'
)
end
let!
(
:release
)
do
create
(
:release
,
project:
project
,
tag:
'v0.1'
,
sha:
commit
.
id
,
author:
maintainer
,
description:
"This is confidential
#{
confidential_issue
.
to_reference
}
"
)
end
it
"does not expose confidential issue's title"
do
get
api
(
"/projects/
#{
project
.
id
}
/releases/v0.1"
,
maintainer
)
expect
(
json_response
[
'description_html'
]).
to
include
(
confidential_issue
.
to_reference
)
expect
(
json_response
[
'description_html'
]).
not_to
include
(
'A vulnerability'
)
end
end
context
'when release has link asset'
do
let!
(
:link
)
do
create
(
:release_link
,
...
...
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