- 13 Oct, 2018 3 commits
-
-
Jan Provaznik authored
In Rails 5 catches invalid UTF8 characters in querystring in a params middleware, errors are handled by a params middleware and raises a BadRequest exception. This means that these UTF8 errors are not raised deeper in application stack and these can't also be handled on application level. If we would want to have custom handler for these errors, we would have to create a new middleware and insert it before actionpack's params middleware and rescue BadRequest exceptions there. But there is no need to do this currently (see discussion on https://gitlab.com/gitlab-org/gitlab-ce/issues/51908)
-
Dmitriy Zaporozhets authored
Fix duplicated key in license management job gitlab-org/gitlab-ce#52609 Closes #52609 See merge request gitlab-org/gitlab-ce!22311
-
Adam Lemanski authored
-
- 12 Oct, 2018 23 commits
-
-
Robert Speicher authored
Fix rubocop complaining about unicorn.rb See merge request gitlab-org/gitlab-ce!22332
-
Marcia Ramos authored
Update merge request diff navigation docs See merge request gitlab-org/gitlab-ce!22275
-
James Ramsay authored
-
Marcia Ramos authored
Drop support for Go 1.9 in GitLab 11.4 Closes #51982 See merge request gitlab-org/gitlab-ce!22324
-
Brett Walker authored
-
Tim Zallmann authored
Updates the check for started in job header See merge request gitlab-org/gitlab-ce!22329
-
Tim Zallmann authored
Add stage name in job.json response Closes #52618 See merge request gitlab-org/gitlab-ce!22317
-
Steve Azzopardi authored
-
Filipa Lacerda authored
The function that was checking if the job was started or not was expecting a boolean, however it was receiving a null. During the refactor the condition was changed, causing the function to break with null This commit fixes the check
-
Robert Speicher authored
Fix the event API docs Closes #52512 See merge request gitlab-org/gitlab-ce!22320
-
Sean McGivern authored
Backport CE changes for Ops Dashboard in EE See merge request gitlab-org/gitlab-ce!22136
-
Peter Leitzen authored
-
Mike Greiling authored
Updates gitlab-svg dependency See merge request gitlab-org/gitlab-ce!22299
-
Stan Hu authored
Update GitLab Pages to v1.2.1 See merge request gitlab-org/gitlab-ce!22318
-
Jacob Vosmaer authored
-
Nick Thomas authored
-
Tim Zallmann authored
Hide job sidebar on mobile Closes #52608 See merge request gitlab-org/gitlab-ce!22314
-
Filipa Lacerda authored
Resolve "Make file browser hidden by default for mobile screens" and improve layout in small screens too Closes #52361 See merge request gitlab-org/gitlab-ce!22273
-
Nick Thomas authored
-
Filipa Lacerda authored
-
Filipa Lacerda authored
This commit adds back `js-` classes needed to automatically collapse the sidebar on resize.
-
Adam Lemanski authored
-
Evan Read authored
Specification change: Fix asciidoctor block context. See merge request gitlab-org/gitlab-ce!22280
-
- 11 Oct, 2018 14 commits
-
-
André Luís authored
-
Mike Greiling authored
Fix broken file name navigation on MRs Closes #50185 See merge request gitlab-org/gitlab-ce!22109
-
Jacques Erasmus authored
-
Mike Greiling authored
4. enable jasmine/prefer-jasmine-matcher See merge request gitlab-org/gitlab-ce!22236
-
Mike Greiling authored
1. enable jasmine/new-line-between-declarations See merge request gitlab-org/gitlab-ce!22230
-
Mike Greiling authored
Fix erased block not being rendered when job was erased Closes #52570 See merge request gitlab-org/gitlab-ce!22294
-
Filipa Lacerda authored
-
Annabel Dunstone Gray authored
Update copy to clipboard button data for application secret Closes #52572 See merge request gitlab-org/gitlab-ce!22268
-
Robert Speicher authored
Fix project deletion when there is a export available Closes #52362 See merge request gitlab-org/gitlab-ce!22276
-
Rémy Coutable authored
Support pushing of feature flags to the frontend Closes gitlab-org/release/framework#17 See merge request gitlab-org/gitlab-ce!22197
-
Tim Zallmann authored
Adds `.json` to the end of pipelines endpoint Closes #52472 See merge request gitlab-org/gitlab-ce!22293
-
Tim Zallmann authored
Stuck block URL links to runners settings Closes #52519 See merge request gitlab-org/gitlab-ce!22286
-
Filipa Lacerda authored
-
Yorick Peterse authored
This adds a method to Gitlab::GonHelper called `push_frontend_feature_flag`. This method can be used to easily expose the state of a feature flag to Javascript code. For example, using this method we may write the following controller code: before_action do push_frontend_feature_flag(:vim_bindings) end def index # ... end def edit # ... end In Javascript we can then check the state of the flag as follows: if ( gon.features.vimBindings ) { // ... } Fixes https://gitlab.com/gitlab-org/release/framework/issues/17
-