summaryrefslogtreecommitdiff
path: root/changelogs
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'fix-too-many-loops-cron-error' into 'master'Robert Speicher2019-05-171-0/+5
|\ | | | | | | | | | | | | Rescue too many loops cron error Closes #58241 See merge request gitlab-org/gitlab-ce!28002
| * add changelogfix-too-many-loops-cron-errorFabio Pitino2019-05-071-0/+5
| |
* | Style toasts according to design specsJacques Erasmus2019-05-171-0/+5
| | | | | | | | Styled the toast component according to design specs
* | Merge branch 'mm12935' into 'master'Jan Provaznik2019-05-171-0/+5
|\ \ | | | | | | | | | | | | | | | | | | Remove Content-Type override for Mattermost OAuth login Closes #46810 See merge request gitlab-org/gitlab-ce!28374
| * | Remove Content-Type override for Mattermost OAuth loginHarrison Healey2019-05-161-0/+5
| | |
* | | Merge branch 'leipert-node-12-compatibility' into 'master'Phil Hughes2019-05-172-0/+10
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Upgrade dependencies for node 12 compatibility Closes #61629, #61631, and #61380 See merge request gitlab-org/gitlab-ce!28323
| * \ \ Merge branch ↵leipert-node-12-compatibilityLukas Eipert2019-05-161-0/+5
| |\ \ \ | | | | | | | | | | | | | | | '61629-dependency-installation-error-on-fsevents-1-2-4-with-node-js-12' of gitlab.com:tnir/gitlab-ce into leipert-node-12-compatibility
| | * | | Update indirect dependency fsevents from 1.2.4 to 1.2.9Takuya Noguchi2019-05-091-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In fsevents 1.x, fsevents 1.2.9+ supports for Node.js 12. Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com>
| * | | | Upgrade node-sass for node 12 compatibilityLukas Eipert2019-05-161-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Some dependencies have incompatibilities with Node v12, which will become LTS in October. Namely node-sass and needed to be forwarded in order for their native extensions to compile without errors.
* | | | | Merge branch 'dz-patch-58' into 'master'Annabel Dunstone Gray2019-05-171-0/+5
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Replace deprecated Oxygen-Sans font with Noto Sans See merge request gitlab-org/gitlab-ce!28322
| * | | | | Prefer Noto Sans over Oxygen-Sansdz-patch-58Dmitriy Zaporozhets2019-05-161-0/+5
| |/ / / / | | | | | | | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* | | | | Add PoolRepository to the usage pingZeger-Jan van de Weg2019-05-171-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PoolRepository is a relatively new model of which the counts could help to further determine the priority of new features. Also gives some insight into the number of forks customers have.
* | | | | Merge branch '60379-remove-ci-preparing-state-feature-flag' into 'master'James Lopez2019-05-171-0/+5
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Stop configuring group clusters on creation Closes #60379 See merge request gitlab-org/gitlab-ce!27245
| * | | | | Stop configuring group clusters on creation60379-remove-ci-preparing-state-feature-flagTiger2019-05-161-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Immediate configuration is not ideal for group and instance level clusters as projects that may never be deployed would still have Kubernetes namespaces and service accounts created for them. As of https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/25586 we now create only the resources that are required for the project being deployed, at the time of deployment.
* | | | | | Merge branch 'sh-fix-personal-snippet-uploads-object-storage' into 'master'Sean McGivern2019-05-171-0/+5
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix incorrect prefix used in new uploads for personal snippets Closes #61671 See merge request gitlab-org/gitlab-ce!28337
| * | | | | | Fix incorrect prefix used in new uploads for personal snippetsStan Hu2019-05-161-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/24550 fixed the case where the wrong path on disk was being searched, but it inadvertently ommitted the `/uploads/-/system` prefix when rendering the Markdown for personal snippet uploads when they were stored directly in object storage. A personal snippet path is stored using FileUploader#upload_path. The format for the path: Local storage: :random_hex/:filename. Object storage: personal_snippet/:id/:random_hex/:filename. upload_paths represent the possible paths for a given identifier, which will vary depending on whether the file is stored in local or object storage. upload_path should match an element in upload_paths. base_dir represents the path seen by the user in Markdown, and it should always be prefixed with uploads/-/system. store_dirs represent the paths that are actually used on disk. For object storage, this should omit the prefix /uploads/-/system. For example, consider the requested path /uploads/-/system/personal_snippet/172/ff4ad5c2/file.png. For local storage: base_dir: uploads/-/system/personal_snippet/172 upload_path: ff4ad5c2/file.png upload_paths: ["ff4ad5c2/file.png", "personal_snippet/172/ff4ad5c2/file.png"]. store_dirs: {1=>"uploads/-/system/personal_snippet/172/ff4ad5c2", 2=>"personal_snippet/172/ff4ad5c2"} For object storage: upload_path: personal_snippet/172/ff4ad5c2/file.png Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/61671
* | | | | | | #46469 - Added ref querystring parameter to project search to allow ↵Lee Tickett2019-05-171-0/+5
| |/ / / / / |/| | | | | | | | | | | | | | | | | searching on branches other than master
* | | | | | Fix emojis URLsPaul Gascou-Vaillancourt2019-05-171-0/+5
|/ / / / /
* | | | | Merge branch 'jc-omit-count-diverging-commits-max' into 'master'Lin Jen-Shin2019-05-161-0/+5
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Omit max-count for diverging_commit_counts behind feature flag See merge request gitlab-org/gitlab-ce!28157
| * | | | | Omit max-count for diverging_commit_counts behind feature flagjc-omit-count-diverging-commits-maxJohn Cai2019-05-141-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We want to optimize the query for the CountDivergingCommits rpc by removing the --max-count argument now that we have commit graphs enabled for all repositories during housekeeping. However, we want to test this first behind a feature flag.
* | | | | | Merge branch 'fix_failure_migrate_on_mysql8' into 'master'Stan Hu2019-05-161-0/+5
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix. db:migrate is failed on MySQL 8 See merge request gitlab-org/gitlab-ce!28351
| * | | | | | Fix. db:migrate is failed on MySQL 8sue4452019-05-161-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ``` StandardError: An error has occurred, all later migrations canceled: Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'system = true AND note LIKE '\_%\_'' at line 1: UPDATE notes SET note = trim(both '_' from note) WHERE system = true AND note LIKE '\_%\_' ```
* | | | | | | Fix an error in projects admin when statistics are missingRémy Coutable2019-05-161-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* | | | | | | Include MR information if possible when emailing notification of closing an ↵Michał Zając2019-05-161-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | issue
* | | | | | | Merge branch 'diff-whitespace-setting-changes' into 'master'Filipa Lacerda2019-05-161-0/+5
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes issues with show whitespace button in diffs Closes #42597 and #58852 See merge request gitlab-org/gitlab-ce!28242
| * | | | | | | Fixes issues with show whitespace button in diffsPhil Hughes2019-05-101-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Correctly updates the URL without overwriting parameters Reloads the diff file content without reloading the page Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/58852, https://gitlab.com/gitlab-org/gitlab-ce/issues/42597
* | | | | | | | Properly clear the merge error upon rebase failuresh-fix-rebase-error-clearingStan Hu2019-05-151-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If `merge_error` is ever set after a failure, it is never cleared, even after a subsequent, successful rebase. We now clear this field whenever a successful rebase occurs. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/56139
* | | | | | | | Merge branch ↵Kushal Pandya2019-05-161-0/+5
|\ \ \ \ \ \ \ \ | |_|_|_|/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 'ce-quick-fix-58727-collapsed-sidebar-flyout-menu-items-don-t-appear-in-1200px-screen-size' into 'master' CE Fix flyout nav on small viewports See merge request gitlab-org/gitlab-ce!25998
| * | | | | | | Fix flyout nav on small viewportsce-quick-fix-58727-collapsed-sidebar-flyout-menu-items-don-t-appear-in-1200px-screen-sizeLuke Bennett2019-05-151-0/+5
| | |_|_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | Decouples sidebar collapsed style from behavior.
* | | | | | | Merge branch 'make-autocomplete-faster-with-lots-of-results' into 'master'53811-move-multiple-issue-boards-for-projects-to-coreStan Hu2019-05-141-0/+5
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | | | | | | | | | | | | | | | | Optimise upload path calls See merge request gitlab-org/gitlab-ce!28264
| * | | | | | Optimise upload path callsSean McGivern2019-05-141-0/+5
| | |/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | String#underscore isn't particularly slow, but it's possible for us to call it many times in a users autocomplete request, with mostly-static values ('User', 'Group', etc.). We can memoise this and save a surprising amount of time (around 10% of the total request time in some cases).
* | | | | | Fix project visibility level validationPeter Marko2019-05-141-0/+5
| | | | | |
* | | | | | Merge branch ↵Kushal Pandya2019-05-131-0/+5
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 'ce-11542-remove-non-semantic-use-of-row-in-member-listing-controls' into 'master' CE backport: Remove non-semantic use of `.row` in member listing controls See merge request gitlab-org/gitlab-ce!28204
| * | | | | | Remove non-semantic use of `.row` in member listing controlsce-11542-remove-non-semantic-use-of-row-in-member-listing-controlsDennis Tang2019-05-081-0/+5
| | | | | | |
* | | | | | | Merge branch 'support-string-piwik-website-ids' into 'master'Phil Hughes2019-05-131-0/+5
|\ \ \ \ \ \ \ | |_|/ / / / / |/| | | | | | | | | | | | | | | | | | | | Adds changelog entry for Matomo string website ID support See merge request gitlab-org/gitlab-ce!28244
| * | | | | | Adds changelog entry for Matomostring website ID supportCDuv2019-05-101-0/+5
| | | | | | |
* | | | | | | Merge branch 'include-ee-fixtures' into 'master'12-0-auto-deploy-0009646Stan Hu2019-05-111-0/+5
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add EE fixtures to SeedFu fixture paths See merge request gitlab-org/gitlab-ce!28241
| * | | | | | | Add EE fixtures to SeedFu pathinclude-ee-fixturesBalasankar "Balu" C2019-05-101-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Balasankar "Balu" C <balasankar@gitlab.com>
* | | | | | | | Merge branch 'sh-update-process-mem' into 'master'Ash McKenzie2019-05-111-0/+5
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Update get_process_mem to 0.2.3 See merge request gitlab-org/gitlab-ce!28248
| * | | | | | | | Update get_process_mem to 0.2.3sh-update-process-memStan Hu2019-05-101-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This squelches a BigDecimal warning in Ruby 2.6: warning: BigDecimal.new is deprecated; use BigDecimal() method instead. https://github.com/schneems/get_process_mem/blob/master/CHANGELOG.md
* | | | | | | | | Fixes next badge being always visible61550-next-badgeFilipa Lacerda2019-05-101-0/+5
|/ / / / / / / /
* | | | | | | | Merge branch 'sh-fix-lfs-download-errors' into 'master'Douglas Barbosa Alexandre2019-05-101-0/+5
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Properly handle LFS Batch API response in project import Closes #61624 See merge request gitlab-org/gitlab-ce!28223
| * | | | | | | Properly handle LFS Batch API response in project importsh-fix-lfs-download-errorsStan Hu2019-05-091-0/+5
| | |_|/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Project imports were failing with `undefined method each_with_object for String` because the import was attempting to parse the LFS Batch API and failing due to the fact that the Content-Type wasn't a supported format (e.g. application/vnd.git-lfs+json instead of application/json). We now parse the body as JSON. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/61624
* | | | | | | Resolve "JIRA service: NoMethodError: undefined method `find' for nil:NilClass"Patrick Derichs2019-05-101-0/+5
| | | | | | |
* | | | | | | Fix Error 500 when inviting user already presentStan Hu2019-05-101-0/+5
|/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A project admin attempting to invite an already-invited user will see a confusing Error 500 message. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/61574
* | | | | | Change DetectRepositoryLanguagesWorker to not receive userDiego Silva2019-05-091-0/+5
| |_|_|/ / |/| | | | | | | | | | | | | | Fixes #60425
* | | | | Merge branch 'sh-upgrade-ruby-2.6.3-ce' into 'master'Rémy Coutable2019-05-091-0/+5
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Upgrade Ruby version to 2.6.3 See merge request gitlab-org/gitlab-ce!28117
| * | | | | Upgrade Ruby version to 2.6.3sh-upgrade-ruby-2.6.3-ceStan Hu2019-05-081-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ruby 2.6 offers better performance and memory usage: https://www.rubyguides.com/2018/11/ruby-2-6-new-features/ Part of https://gitlab.com/gitlab-org/gitlab-ce/issues/57323
* | | | | | Merge branch 'add-warning-to-backup-rake-task' into 'master'Rémy Coutable2019-05-091-0/+5
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add warning that gitlab-secrets isn't included See merge request gitlab-org/gitlab-ce!28187
| * | | | | | Add warning that gitlab-secrets isn't includedadd-warning-to-backup-rake-taskCindy Pallares2019-05-081-0/+5
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Many customers forget to include the gitlab-secrets.json file. This adds a warning that both gitlab-secrets.json and gitlab.rb are not included in the backup.