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
0
Merge Requests
0
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
Jérome Perrin
gitlab-ce
Commits
f02210ca
Commit
f02210ca
authored
Feb 15, 2017
by
blackst0ne
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'upstream/master'
parents
6eb34e60
14527293
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
41 additions
and
10 deletions
+41
-10
CHANGELOG.md
CHANGELOG.md
+21
-0
app/assets/stylesheets/pages/issuable.scss
app/assets/stylesheets/pages/issuable.scss
+0
-1
app/assets/stylesheets/pages/tree.scss
app/assets/stylesheets/pages/tree.scss
+2
-0
app/views/dashboard/_activity_head.html.haml
app/views/dashboard/_activity_head.html.haml
+8
-7
changelogs/unreleased/27631-fix-small-height-of-activity-header-page.yml
...leased/27631-fix-small-height-of-activity-header-page.yml
+4
-0
changelogs/unreleased/28142-overlap-bugs.yml
changelogs/unreleased/28142-overlap-bugs.yml
+4
-0
lib/gitlab/sidekiq_status/client_middleware.rb
lib/gitlab/sidekiq_status/client_middleware.rb
+1
-1
lib/gitlab/sidekiq_status/server_middleware.rb
lib/gitlab/sidekiq_status/server_middleware.rb
+1
-1
No files found.
CHANGELOG.md
View file @
f02210ca
...
...
@@ -2,6 +2,13 @@
documentation
](
doc/development/changelog.md
)
for instructions on adding your own
entry.
## 8.16.5 (2017-02-14)
-
Patch Asciidocs rendering to block XSS.
-
Fix XSS vulnerability in SVG attachments.
-
Prevent the GitHub importer from assigning labels and comments to merge requests or issues belonging to other projects.
-
Patch XSS vulnerability in RDOC support.
## 8.16.4 (2017-02-02)
-
Support non-ASCII characters in GFM autocomplete. !8729
...
...
@@ -174,6 +181,13 @@ entry.
-
Add margin to markdown math blocks.
-
Add hover state to MR comment reply button.
## 8.15.6 (2017-02-14)
-
Patch Asciidocs rendering to block XSS.
-
Fix XSS vulnerability in SVG attachments.
-
Prevent the GitHub importer from assigning labels and comments to merge requests or issues belonging to other projects.
-
Patch XSS vulnerability in RDOC support.
## 8.15.4 (2017-01-09)
-
Make successful pipeline emails off for watchers. !8176
...
...
@@ -437,6 +451,13 @@ entry.
-
Whitelist next project names: help, ci, admin, search. !8227
-
Adds back CSS for progress-bars. !8237
## 8.14.9 (2017-02-14)
-
Patch Asciidocs rendering to block XSS.
-
Fix XSS vulnerability in SVG attachments.
-
Prevent the GitHub importer from assigning labels and comments to merge requests or issues belonging to other projects.
-
Patch XSS vulnerability in RDOC support.
## 8.14.8 (2017-01-25)
-
Accept environment variables from the
`pre-receive`
script. !7967
...
...
app/assets/stylesheets/pages/issuable.scss
View file @
f02210ca
...
...
@@ -193,7 +193,6 @@
top
:
$header-height
;
bottom
:
0
;
right
:
0
;
z-index
:
8
;
transition
:
width
.3s
;
background
:
$gray-light
;
padding
:
10px
20px
;
...
...
app/assets/stylesheets/pages/tree.scss
View file @
f02210ca
...
...
@@ -171,6 +171,8 @@
.tree-controls
{
float
:
right
;
margin-top
:
11px
;
position
:
relative
;
z-index
:
2
;
.project-action-button
{
margin-left
:
$btn-side-margin
;
...
...
app/views/dashboard/_activity_head.html.haml
View file @
f02210ca
%ul
.nav-links
%li
{
class:
(
"active"
unless
params
[
:filter
])
}
>
=
link_to
activity_dashboard_path
,
class:
'shortcuts-activity'
,
data:
{
placement:
'right'
}
do
Your Projects
%li
{
class:
(
"active"
if
params
[
:filter
]
==
'starred'
)
}
>
=
link_to
activity_dashboard_path
(
filter:
'starred'
),
data:
{
placement:
'right'
}
do
Starred Projects
.top-area
%ul
.nav-links
%li
{
class:
(
"active"
unless
params
[
:filter
])
}
>
=
link_to
activity_dashboard_path
,
class:
'shortcuts-activity'
,
data:
{
placement:
'right'
}
do
Your Projects
%li
{
class:
(
"active"
if
params
[
:filter
]
==
'starred'
)
}
>
=
link_to
activity_dashboard_path
(
filter:
'starred'
),
data:
{
placement:
'right'
}
do
Starred Projects
changelogs/unreleased/27631-fix-small-height-of-activity-header-page.yml
0 → 100644
View file @
f02210ca
---
title
:
"
Fix
small
height
of
activity
header
page"
merge_request
:
8952
author
:
Pavel Sorokin
changelogs/unreleased/28142-overlap-bugs.yml
0 → 100644
View file @
f02210ca
---
title
:
Fix z index issues with sidebar
merge_request
:
author
:
lib/gitlab/sidekiq_status/client_middleware.rb
View file @
f02210ca
...
...
@@ -2,7 +2,7 @@ module Gitlab
module
SidekiqStatus
class
ClientMiddleware
def
call
(
_
,
job
,
_
,
_
)
SidekiqStatus
.
set
(
job
[
'jid'
])
Gitlab
::
SidekiqStatus
.
set
(
job
[
'jid'
])
yield
end
end
...
...
lib/gitlab/sidekiq_status/server_middleware.rb
View file @
f02210ca
...
...
@@ -4,7 +4,7 @@ module Gitlab
def
call
(
worker
,
job
,
queue
)
ret
=
yield
SidekiqStatus
.
unset
(
job
[
'jid'
])
Gitlab
::
SidekiqStatus
.
unset
(
job
[
'jid'
])
ret
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