summaryrefslogtreecommitdiff
path: root/CHANGELOG
Commit message (Collapse)AuthorAgeFilesLines
* Add changelog itemDmitriy Zaporozhets2016-03-301-0/+1
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Merge branch 'fix-mr-comment-commit-pruned' into 'master' Robert Speicher2016-03-291-0/+1
|\ | | | | | | | | | | | | Gracefully handle notes on deleted commits in merge requests Closes #3250 See merge request !3402
| * Gracefully handle notes on deleted commits in merge requestsStan Hu2016-03-281-0/+1
| | | | | | | | Closes #3250
* | Merge branch ↵Robert Speicher2016-03-291-0/+1
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | 'mariusz_jachimowicz/gitlab-ce-i_14415_expose_label_description' into 'master' api - expose label description Resolves #14415 See merge request !3314
| * | api - expose label descriptionMariusz Jachimowicz2016-03-241-0/+1
| | |
* | | Merge branch 'handle-nil-description-slack-message' into 'master' Robert Speicher2016-03-291-0/+1
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Handle nil descriptions in Slack issue messages Closes #14676 See merge request !3420
| * | | Handle nil descriptions in Slack issue messagesStan Hu2016-03-281-0/+1
| | |/ | |/| | | | | | | Closes #14676
* | | Merge branch 'fix/nomethod-error-on-ci' into 'master' Rémy Coutable2016-03-291-0/+1
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Fix error when visiting CI root path Closes #14528, closes #14687 See merge request !3377
| * | | Add definition of before action that has been movedGrzegorz Bizon2016-03-251-0/+1
| | | | | | | | | | | | | | | | Closes #14528
* | | | Merge branch 'api-ability-to-backdate-newly-created-issues-12628' into 'master' Robert Speicher2016-03-281-0/+1
|\ \ \ \ | |_|/ / |/| | | | | | | | | | | | | | | | | | | Back dating of issues when creating through the API Closes #12628 See merge request !3408
| * | | Back dating of issues when creating throught the APIZeger-Jan van de Weg2016-03-281-0/+1
| |/ /
* | | Merge branch 'handle-avatar-in-empty-repo' into 'master' Stan Hu2016-03-271-0/+1
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Don't attempt to look up an avatar in repo if repo directory does not exist Relates to https://sentry.gitlap.com/gitlab/gitlabcom/issues/3507/ Closes #14580 See merge request !3390
| * | | Don't attempt to look up an avatar in repo if repo directory does not existStan Hu2016-03-251-0/+1
| |/ / | | | | | | | | | Closes #14580
* | | Merge branch 'feature--preferences-dashboard-groups' of ↵Dmitriy Zaporozhets2016-03-261-0/+2
|\ \ \ | | | | | | | | | | | | https://gitlab.com/eliasw/gitlab-ce
| * | | Implementing 'Groups View' and 'TODOs View' as options for dashboard ↵Elias Werberich2016-03-241-0/+2
| |/ / | | | | | | | | | | | | | | | preferences. Fixes #14585.
* | | Merge branch 'ci-setup-info' into 'master' Dmitriy Zaporozhets2016-03-261-0/+1
|\ \ \ | |/ / |/| | | | | | | | | | | | | | | | | | | | Add links to CI setup documentation from project settings and builds pages For #14483 Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> See merge request !3384
| * | Add links to CI setup documentation from project settings and builds pagesDmitriy Zaporozhets2016-03-241-0/+1
| |/ | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* | Comments on confidential issues doesn't show in activity feed to non-membersDouglas Barbosa Alexandre2016-03-241-0/+3
|/
* Merge branch 'issue_7959' into 'master' Jacob Schatz2016-03-231-0/+1
|\ | | | | | | | | | | | | | | | | | | Crop avatars on the client before upload <img src="/uploads/535d69956cc5904870ae5d95132a35af/Screen_Shot_2016-03-17_at_9.55.56_AM.png" width="700"> closes #7959 closes #600 See merge request !3270
| * Update CHANGELOGAlfredo Sumaran2016-03-231-0/+1
| |
* | Updated 8.6.1 changelogRémy Coutable2016-03-231-6/+14
| | | | | | | | [ci skip]
* | Merge branch 'fix/issue-move-preserve-update-time' into 'master' Douwe Maan2016-03-231-0/+1
|\ \ | | | | | | | | | | | | | | | | | | Preserve time notes has been updated at when moving issue Closes #14490 See merge request !3356
| * | Add Changelog entry for preserving timestamps when moving issueGrzegorz Bizon2016-03-231-0/+1
| | |
* | | Update CHANGELOGKamil Trzcinski2016-03-231-1/+1
| | |
* | | Fix build dependencies, when the dependency is a stringKamil Trzcinski2016-03-231-0/+1
| | |
* | | Add CHANGELOG itemRémy Coutable2016-03-231-0/+1
|/ /
* | Merge branch 'fix-sorting-by-votes-on-groups-page' into 'master' Douwe Maan2016-03-231-0/+1
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix sorting issues/mrs by votes on the groups page Closes #14394 The `non_archived` scope applied here https://gitlab.com/gitlab-org/gitlab-ce/blob/master/app/controllers/concerns/issues_action.rb#L5 overrides the previous `ORDER BY` applied inside the IssuesFinder, with the default scope of the Project model, resulting in SQL errors. ```ruby Issue.reorder(created_at: :desc).joins(:project).to_sql => "SELECT issues.* FROM issues INNER JOIN projects ON projects.id = issues.project_id ORDER BY issues.created_at DESC" Issue.reorder(created_at: :desc).joins(:project).merge(Project.non_archived).to_sql => "SELECT issues.* FROM issues INNER JOIN projects ON projects.id = issues.project_id WHERE projects.archived = 'f' ORDER BY projects.id DESC" Issue.reorder(created_at: :desc).joins(:project).merge(Project.non_archived.only(:where)).to_sql => "SELECT issues.* FROM issues INNER JOIN projects ON projects.id = issues.project_id WHERE projects.archived = 'f' ORDER BY issues.created_at DESC" ``` /cc @yorickpeterse See merge request !3333
| * | Fix sorting issues/mrs by votes on the groups pagefix-sorting-by-votes-on-groups-pageDouglas Barbosa Alexandre2016-03-211-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | The `non_archived` scope applied here https://gitlab.com/gitlab-org/gitlab-ce/blob/master/app/controllers/conc erns/issues_action.rb#L5 overrides the previous `ORDER BY` applied inside the IssuesFinder, with the default scope of the Project model, resulting in SQL errors.
* | | Do not allow to move issue if it has not been persistedmove-issue-section-should-not-be-displayed-in-the-new-issue-form-14489Grzegorz Bizon2016-03-231-1/+1
| | |
* | | Merge branch 'drop_db_before_restore' into 'master' Robert Speicher2016-03-221-0/+1
|\ \ \ | |_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Reload the schema before restoring a database backup If a user tries to downgrade and restore after a failed upgrade, the database may still contain newer tables. Reload the older schema before restoring the database to avoid future upgrade problems. Also, add a rake task to help users add migration versions to the database so it's easier to recover from these errors if they do occur. Fixes #13419 See merge request !2807
| * | Reload the schema before restoring a database backupDrew Blessing2016-03-211-0/+1
| |/
* | Update CHANGELOGRémy Coutable2016-03-221-2/+9
|/ | | | [ci skip]
* Merge branch '2489-soft-delete-issues' into 'master' Douwe Maan2016-03-211-0/+1
|\ | | | | | | | | | | | | | | | | | | | | | | | | Soft delete issuables Fixes #2489 What still needs to happen: research on the indexes, the gem suggests a [lot of changes](https://github.com/rubysherpas/paranoia#about-indexes) though this is probably a good idea to discuss and I'm unsure on the impact of an omnibus upgrade as I suspect creating about 10 new indexes has a large impact on the downtime. TODO: - [x] Also group owners can ***soft*** delete - [x] Button should be hidden See merge request !2982
| * Merge branch 'master' into 2489-soft-delete-issuesZeger-Jan van de Weg2016-03-211-0/+4
| |\
| * | Minor improvements on IssuableActionsZeger-Jan van de Weg2016-03-211-0/+1
| | |
* | | updated changelogfix/safe-import-urlJames Lopez2016-03-211-0/+1
| |/ |/|
* | Merge branch 'feature/issue-move' into 'master' Kamil Trzciński2016-03-211-0/+1
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ability to move issue to another project Tasks: - [x] Create scaffold of service that will move issue to another project. - [x] Close old issue, add system note about moving issue to a new project. - [x] Create a new issue, add system note about issue being moved from old project. - [x] Check if issue can be moved to another project before executing service - [x] Check permissions when moving an issue (`:admin_issue` ability) - [x] Display select box for a new project when editing an issue - [x] Show only projects that issue can be moved into in that select box - [x] Add project select handler, helper and some permission filters to it - [x] Preserve as much information as possible, including author - [x] Prepare mechanisms that unfolds local references in issue description - [x] Rewrite issue description with references unfolding and add some specs for it - [x] Rewrite all system notes and comments attached to issue that is being moved - [x] Update `Label` so that is was able to create cross reference labels (separate MR) - [x] Add notifications about moving issue to another project - [x] Display confirmation alert/message when issue move has been requested - [x] Make it possible to undo selecting project where issue will be moved to - [x] Add column to issue, that will indicate if it has been moved to another project - [x] Do not allow to move issue that has been already moved - [x] Write top-to-bottom feature spec in RSpec instead of Spinach UI: ![issue_move_ui](/uploads/b3c6b563362c1fded9082cc0f51e5a74/issue_move_ui.png) ![issue_move_tooltip](/uploads/2ab913b06f52df1cafde9abe89bd9cb8/issue_move_tooltip.png) Closes #3024 See merge request !2831
| * \ Merge branch 'master' into feature/issue-moveGrzegorz Bizon2016-03-201-0/+4
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * master: Fix bug where wrong commit ID was being used in a merge request diff to show old image Remove CHANGELOG item that was added during merge resolution Improve the "easy WIP & un-WIP from link" feature Fix specs \#to_branch_name now uses the iid as postfix Add label description in tooltip to labels in issue index and sidebar Easily (un)mark merge request as WIP using link Use specialized system notes when MR is (un)marked as WIP another attempt to fix oauth issue attempting to fix omniauth problem Conflicts: app/assets/javascripts/issuable_form.js.coffee
| * | | Add Changelog entry for issue move featureGrzegorz Bizon2016-03-191-0/+1
| | | |
* | | | Merge branch 'fix-image-mode-view-diff' into 'master' Dmitriy Zaporozhets2016-03-211-0/+1
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix diff image view modes (2-up, swipe, onion skin) not working Example test case: https://gitlab.com/mrtzcspr/test/commit/5d983226b1308d98ef3d8919b978ad49f34496b8 Closes #13856 See merge request !3316
| * | | | Fix diff image view modes (2-up, swipe, onion skin) not workingStan Hu2016-03-191-0/+1
| |/ / / | | | | | | | | | | | | Closes #13856
* | | | Make HTTP(s) label consistent on clone barStan Hu2016-03-191-0/+1
| |/ / |/| | | | | | | | | | | Sites that use http:// for the external_url should always display HTTP on the clone bar. Similarly, sites that use https:// should show HTTPS.
* | | Merge branch 'fix-image-diff' into 'master' Douwe Maan2016-03-191-0/+1
|\ \ \ | |_|/ |/| | | | | | | | | | | | | | | | | | | | Fix bug where wrong commit ID was being used in a merge request diff to show old image Closes #3769 Closes #14327 See merge request !3300
| * | Fix bug where wrong commit ID was being used in a merge request diff to show ↵Stan Hu2016-03-191-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | old image Closes #3769 Closes #14327
* | | Merge branch 'remove-wip' into 'master' Jacob Schatz2016-03-191-0/+2
|\ \ \ | |/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Easily (un)mark merge request as WIP using link Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/3768 and https://gitlab.com/gitlab-org/gitlab-ce/issues/3516 ## Link to add `WIP` prefix (underline is visible because of hover) ![wipless_title](/uploads/72a6f7119ba9d8043ca8329641e97c3b/wipless_title.png) ## Link to remove `WIP` prefix ![wip_title](/uploads/8620ad65da9ef620b180603520fead55/wip_title.png) ## System note after WIP is added ![wip_sysnote](/uploads/2de073b75e854d2c9e243eb8b5d5c259/wip_sysnote.png) ## Widget with link to remove WIP ![wip_widget](/uploads/cf83ea93743c4c26d9df759c17cb9d7b/wip_widget.png) ## Flash after WIP is removed ![wip_flash](/uploads/27b7240cd5d7ceeb8b7b477abd94d7ff/wip_flash.png) ## System note after WIP is removed ![wipless_sysnote](/uploads/c0d3368abdf21a2f253532a9a9594d90/wipless_sysnote.png) ## Widget when current user cannot remove the WIP prefix ![wip_widget_unauthorized](/uploads/174ccf1674be86dc81c3078fe297acb7/wip_widget_unauthorized.png) cc @creamzy See merge request !3006
| * | Remove CHANGELOG item that was added during merge resolutionremove-wipRémy Coutable2016-03-181-1/+0
| | |
| * | Merge remote-tracking branch 'origin/master' into remove-wipRémy Coutable2016-03-181-15/+103
| |\ \ | | |/
| * | Merge branch 'master' into remove-wipDouwe Maan2016-02-291-3/+6
| |\ \
| * | | Easily (un)mark merge request as WIP using linkDouwe Maan2016-02-261-0/+1
| | | | | | | | | | | | | | | | Fixes #3768
| * | | Use specialized system notes when MR is (un)marked as WIPDouwe Maan2016-02-261-0/+1
| | | |