summaryrefslogtreecommitdiff
path: root/CHANGELOG
Commit message (Collapse)AuthorAgeFilesLines
* Improve the Two-factor Authentication sign-in text [ci skip]connorshea2016-05-031-0/+1
| | | | Resolves #14543.
* Updated CHANGELOG for 8.7.2Yorick Peterse2016-05-031-1/+2
| | | | [ci skip]
* Update CHANGELOG for 8.6.8, 8.5.12, et al.Robert Speicher2016-05-021-1/+56
| | | | [ci skip]
* Support e-mail notifications for comments on project snippetsStan Hu2016-05-021-0/+1
| | | | Closes #2334
* Merge branch '15527-fix-wiki-page-creation-issue' into 'master' Robert Speicher2016-05-021-0/+1
|\ | | | | | | | | | | | | Fix error when trying to create a wiki page Closes #15527, #15569, #15623, #15630, #15637, #15653, #15870, #16558, #16875, #16987, #17016, https://github.com/gitlabhq/gitlabhq/issues/10317. See merge request !3924
| * Simplify specs by not over-expecting15527-fix-wiki-page-creation-issueRémy Coutable2016-05-021-1/+1
| | | | | | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
| * Fix error when trying to create a wiki pageRémy Coutable2016-04-291-1/+2
| | | | | | | | | | | | Closes #15527. Signed-off-by: Rémy Coutable <remy@rymai.me>
* | Remove duplicate entry in the CHANGELOGDmitriy Zaporozhets2016-05-021-1/+0
| |
* | Tweak checking branches in Project#open_branchesYorick Peterse2016-04-291-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This changes 4 things: 1. Project#protected_branches_names has been renamed to Project#protected_branch_names. 2. Project#open_branches uses a Set for the branch names as checking values in a Set is faster than checking values in a (large) Array. 3. Some redundant code in Project#open_branches has been removed. 4. Project#protected_branch_names now uses #pluck instead of #map, removing the need for loading entire DB records into memory.
* | Update CHANGELOGduplicate-label-dropdownJacob Schatz2016-04-291-0/+1
|/
* Merge branch 'gitattributes' into 'master' Rémy Coutable2016-04-291-0/+1
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Support supressing text file diffs on the default branch with .gitattributes This change allows users to suppress diffs for text files by adding an entry to the `.gitattributes` file. To take effect the file present at the HEAD of the default branch. When rendering a diff, if the file is text according to the charlock holmes gem (via the `text?` method) but the file is not diffable according to the project repository, then a message is displayed stating that the diff was suppressed. ![image](/uploads/2e119b725875a301e30d9ad482e283b3/image.png) I looked into ways to do this using a `binary` flag as suggested by @stanhu in [this comment](https://gitlab.com/gitlab-org/gitlab-ce/issues/2315#note_4435454), however, there was no good way to seperate what was a real binary file from one that had been marked as not diffable in `.gitattributes`. Fixes and closes gitlab-org/gitlab-ce#2315. See merge request !3806
| * Support supressing text file diffs on the default branch with .gitattributesMatt Oakes2016-04-291-0/+1
| | | | | | | | | | | | | | | | This is a combination of 3 commits. - Update the bare repositories info/attributes if the default branch is updated - Check the diff attributes of a file before showing a diff - Update CHANGELOG
* | Merge branch 'change_message_for_newly_created_milestone' into 'master' Rémy Coutable2016-04-291-0/+1
|\ \ | | | | | | | | | | | | | | | | | | Use a better message when milestone is newly created closes #14982 See merge request !3925
| * | Use a better message when milestone is newly createdchange_message_for_newly_created_milestoneArinde Eniola2016-04-291-0/+1
| |/ | | | | | | | | | | | | | | | | | | make some changes for the checks to determine when the messages should be displayed add item to changelog and also integration test make some changes to the test make some changes
* | Fixed CHANGELOG for 8.7.1/8.7.2Yorick Peterse2016-04-291-2/+4
|/ | | | [ci skip]
* Merge branch 'zj-large-files-no-highlight' into 'master' Robert Speicher2016-04-281-0/+1
|\ | | | | | | | | | | | | Properly handle bigger files Closes #3967 See merge request !3718
| * Properly handle bigger filesZeger-Jan van de Weg2016-04-281-0/+1
| |
* | Load the "New Branch" button asynchronouslyYorick Peterse2016-04-281-0/+2
|/ | | | | | | This button depends on Issue#can_be_worked_on? which in turn depends on Issue#related_branches. By rendering this button asynchronously we can finally remove all usages of Issue#related_branches and Issue#referenced_merge_requests from the issues "show" page.
* Merge branch 'changelog-update' into 'master' Jacob Schatz2016-04-281-0/+1
|\ | | | | | | | | | | | | Add Safari search box bug fix to changelog See merge request !3951
| * Add Safari search box bug fix to changelogAnnabel Dunstone2016-04-271-0/+1
| |
* | Merge branch 'fix/ci-skipped-status' into 'master' Rémy Coutable2016-04-281-0/+1
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | Build status `canceled` if any of the jobs canceled Before this change in case of any of the jobs had been canceled, build status was `failed`. Closes #14207 See merge request !3778
| * | Add Changelog entry for build status canceled fixGrzegorz Bizon2016-04-281-0/+1
| |/
* | Merge branch 'use-remote-ip-for-akismet' into 'master' Rémy Coutable2016-04-281-0/+1
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use ActionDispatch Remote IP for Akismet checking Previously all remote IPs appeared at 127.0.0.1, which made Akismet not very useful. Using the ActionDispatch Remote IP (http://api.rubyonrails.org/classes/ActionDispatch/RemoteIp.html) should provide more reliable results. Closes #16629 See merge request !3961
| * | Use ActionDispatch Remote IP for Akismet checkingStan Hu2016-04-271-0/+1
| |/ | | | | | | | | | | | | | | Previously all remote IPs appeared at 127.0.0.1, which made Akismet not very useful. Using the ActionDispatch Remote IP (http://api.rubyonrails.org/classes/ActionDispatch/RemoteIp.html) should provide more reliable results. Closes #16629
* | Backport GitHub Enterprise import support from EEStan Hu2016-04-261-0/+1
|/ | | | | | | | | | These changes were pulled from GitLab EE to support configuring an alternative API URL than the default https://api.github.com. In addition, the `verify_ssl` flag allows users to disable SSL cert checking. One modification: add a default `args` option if it does not exist to avoid breaking existing configurations.
* Update CHANGELOGissue_4271Alfredo Sumaran2016-04-261-1/+0
|
* Update CHANGELOGAlfredo Sumaran2016-04-261-0/+1
|
* Update CHANGELOGAlfredo Sumaran2016-04-261-0/+1
|
* Allow alternative names for the CHANGELOG file.Connor Shea2016-04-261-0/+1
| | | | | | | | "CHANGELOG", "NEWS", "HISTORY", and "CHANGES" are recognized as Changelog files. Also adds relevant tests for each of these names. Resolves #14864.
* Remove the Devise Async gem.Connor Shea2016-04-261-0/+1
| | | | | | The extra gem isn’t necessary anymore since Rails 4.2 has ActiveJob integration. Resolves #15575.
* Merge branch 'search-ui-update' into 'master' Robert Speicher2016-04-261-0/+1
|\ | | | | | | | | | | | | Search ui update Closes #2537 See merge request !3751
| * Updated based on feedbacksearch-ui-updatePhil Hughes2016-04-261-1/+1
| | | | | | | | | | Changed some variable names Fixed CHANGELOG entry
| * Fixed issue with dropdown option not stickingPhil Hughes2016-04-261-0/+1
| | | | | | | | CHANGELOG item
* | Merge branch '15094-throttle-update-of-last_activity_at' into 'master' Jacob Vosmaer2016-04-261-0/+1
|\ \ | |/ |/| | | | | | | | | Throttle the update of `project.last_activity_at` to 1 minute This implement [the solution](https://gitlab.com/gitlab-org/gitlab-ce/issues/15094#note_4769387) proposed by @jacobvosmaer. See merge request !3848
| * Throttle the update of `project.last_activity_at` to 1 minute15094-throttle-update-of-last_activity_atRémy Coutable2016-04-251-0/+1
| | | | | | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* | Move CHANGELOG entry to 8.8Alfredo Sumaran2016-04-251-1/+1
| |
* | Merge branch 'issue_14904' into 'master' Jacob Schatz2016-04-251-0/+1
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add new shortcuts Closes #14904 - On a project: `i` To navigate to New Issue page. - On a issuable: `l` To open Label dropdown on a issuable. - Global: Typing `?` multiple times now toggles the modal. See merge request !3686
| * \ Merge remote-tracking branch 'origin/master' into issue_14904Alfredo Sumaran2016-04-211-1/+4
| |\ \
| * \ \ Merge remote-tracking branch 'origin/master' into issue_14904Alfredo Sumaran2016-04-201-2/+15
| |\ \ \ | | | | | | | | | | | | | | | | | | | | # Conflicts: # app/views/shared/issuable/_sidebar.html.haml
| * \ \ \ Merge remote-tracking branch 'origin/master' into issue_14904Alfredo Sumaran2016-04-201-0/+26
| |\ \ \ \
| * | | | | Update CHANGELOGAlfredo Sumaran2016-04-181-0/+1
| | | | | |
* | | | | | Add Changelog entry for commit builds page fixGrzegorz Bizon2016-04-251-0/+1
| |_|_|_|/ |/| | | |
* | | | | Fix Error 500 due to stale cache when projects are renamed or transferredStan Hu2016-04-251-0/+1
| | | | | | | | | | | | | | | | | | | | Closes gitlab-org/gitlab-ee#506
* | | | | Fix 8.7.1 CHANGELOGRémy Coutable2016-04-251-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ci skip] Signed-off-by: Rémy Coutable <remy@rymai.me>
* | | | | Merge branch 'master' of https://dev.gitlab.org/gitlab/gitlabhqRémy Coutable2016-04-251-0/+3
|\ \ \ \ \
| * \ \ \ \ Merge branch 'fix-project-hook-delete-permissions' into 'master' Rémy Coutable2016-04-251-0/+1
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Prevent users from deleting Webhooks via API they do not own Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/15576 See merge request !1959
| | * | | | | Prevent users from deleting Webhooks via API they do not ownStan Hu2016-04-241-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/15576
* | | | | | | Fix license detection to detect all license files, not only known licensesRémy Coutable2016-04-251-2/+3
|/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #15470. Signed-off-by: Rémy Coutable <remy@rymai.me>
* | | | | | Merge branch 'fix/hidden-build-validation-in-ci-yaml' into 'master' Rémy Coutable2016-04-251-0/+1
|\ \ \ \ \ \ | |/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add posibility to define a hidden job without 'script' in .gitlab-ci.yml References #15451 /cc @ayufan See merge request !3849
| * | | | | Move CHANGELOG entry to 8.7.1fix/hidden-build-validation-in-ci-yamlTomasz Maczukin2016-04-221-1/+1
| | | | | |