summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | | | | Reverted project avatar radiusPhil Hughes2016-07-042-1/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed spacing in missing links
| * | | | | | | | Fixed issue with Forked from text not being visiblePhil Hughes2016-07-041-9/+8
| | | | | | | | |
| * | | | | | | | Mobile spacingPhil Hughes2016-07-041-2/+14
| | | | | | | | |
| * | | | | | | | Updated spacingPhil Hughes2016-07-044-16/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | CHANGELOG item
| * | | | | | | | Updated project headerPhil Hughes2016-07-046-293/+221
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Closes #18544
* | | | | | | | | Merge branch 'rs-avatar_url-performance' into 'master' Stan Hu2016-07-053-3/+3
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Dumb-down avatar presence check in `avatar_url` methods `avatar.present?` goes through CarrierWave, and checks that the file exists on disk and checks its filesize. Because we're hitting the disk, this adds extra overhead to something where the worst-case scenario is rendering a broken image. Instead, we now just check that the _database attribute_ is present, which is good enough for our purposes. See https://gitlab.com/gitlab-org/gitlab-ce/issues/19273 See merge request !5093
| * | | | | | | | | Dumb-down avatar presence check in `avatar_url` methodsRobert Speicher2016-07-053-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | `avatar.present?` goes through CarrierWave, and checks that the file exists on disk and checks its filesize. Because we're hitting the disk, this adds extra overhead to something where the worst-case scenario is rendering a broken image. Instead, we now just check that the _database attribute_ is present, which is good enough for our purposes. See https://gitlab.com/gitlab-org/gitlab-ce/issues/19273
* | | | | | | | | | Merge branch 'new-mr-commit-alignment' into 'master' Jacob Schatz2016-07-051-1/+2
|\ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed avatar alignment in new MR view ## What does this MR do? Fixes the alignment of the avatar in the new MR compare view ## Screenshots (if relevant) ![Screen_Shot_2016-07-05_at_16.17.54](/uploads/9c427f66f8ef1d5ecee627e57ee61322/Screen_Shot_2016-07-05_at_16.17.54.png) See merge request !5095
| * | | | | | | | | Fixed avatar alignment in new MR viewPhil Hughes2016-07-051-1/+2
| | |_|_|/ / / / / | |/| | | | | | |
* | | | | | | | | Merge branch 'upgrade-doorkeeper' into 'master' Robert Speicher2016-07-052-4/+4
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Upgrade Doorkeeper from 3.1.0 to 4.0.0. Includes Rails 5 support and various bug fixes. Working toward #14286. Changelog: https://github.com/doorkeeper-gem/doorkeeper/blob/master/NEWS.md#400 See merge request !5055
| * | | | | | | | | Upgrade Doorkeeper from 3.1.0 to 4.0.0.upgrade-doorkeeperConnor Shea2016-07-012-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Includes Rails 5 support and various bug fixes. Changelog: https://github.com/doorkeeper-gem/doorkeeper/blob/master/NEWS.md#400
* | | | | | | | | | Merge branch 'dz-remove-profile-sidebar' into 'master' Dmitriy Zaporozhets2016-07-056-43/+10
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove current user link to the profile from sidebar Because user avatar and link to the profile are duplicated in the header now Related to https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/4939 and https://gitlab.com/gitlab-org/gitlab-ce/issues/18544 cc @iamphill @jschatz1 See merge request !5077
| * | | | | | | | | | Set user data in profile link in the headerDmitriy Zaporozhets2016-07-052-7/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
| * | | | | | | | | | Fix profile test to click on header user profile linkDmitriy Zaporozhets2016-07-052-3/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
| * | | | | | | | | | Remove current user link to the profile from sidebarDmitriy Zaporozhets2016-07-053-34/+2
|/ / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* | | | | | | | | | Merge branch 'dz-add-profile-settings-link' into 'master' Dmitriy Zaporozhets2016-07-051-0/+2
|\ \ \ \ \ \ \ \ \ \ | |_|/ / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add profile settings link to header user dropdown It allows you to get to profile settings right from avatar without triggering sidebar Based on https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/5077#note_12878162 See merge request !5090
| * | | | | | | | | Add profile settings link to header user dropdowndz-add-profile-settings-linkDmitriy Zaporozhets2016-07-051-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* | | | | | | | | | Merge branch 'instrument-cache-fetch-hit-and-misses' into 'master' Yorick Peterse2016-07-053-0/+126
|\ \ \ \ \ \ \ \ \ \ | |_|_|_|/ / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Instrument cache fetch hit and misses See merge request !4993
| * | | | | | | | | RailsCache metrics now includes fetch_hit/fetch_miss and read_hit/read_miss ↵Paco Guzman2016-07-053-2/+116
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | info.
| * | | | | | | | | Instrument cache fetch hit and cache fetch missesPaco Guzman2016-07-051-0/+12
| | | | | | | | | |
* | | | | | | | | | Merge branch 'mrchrisw/docs/shibboleth' into 'master' Achilleas Pipinellis2016-07-051-1/+1
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix wording around NGINX Shibboleth setup ![image](/uploads/de69ad7a056083ab4ca337d9cacad6e2/image.png) __________ ![image](/uploads/bd8081aa0e3a7bd0568267c4a485df5d/image.png) See merge request !5034
| * | | | | | | | | | Fix wording around NGINX Shibboleth setupmrchrisw/docs/shibbolethChris Wilson2016-07-011-1/+1
| | | | | | | | | | |
* | | | | | | | | | | Merge branch 'doc-mysql-priv' into 'master' Achilleas Pipinellis2016-07-052-5/+21
|\ \ \ \ \ \ \ \ \ \ \ | |_|/ / / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add missing privileges to MySQL database Closes gitlab-org/gitlab-ce#19321 See merge request !5079
| * | | | | | | | | | Add missing privileges to MySQL databaseAchilleas Pipinellis2016-07-052-5/+21
| | |_|_|_|_|/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | [ci skip]
* | | | | | | | | | Merge branch 'index-on-emoji-name-and-user' into 'master' Yorick Peterse2016-07-053-1/+14
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add index on both Award Emoji user and name See merge request !5061
| * | | | | | | | | | Add index on both Award Emoji user and nameindex-on-emoji-name-and-userZ.J. van de Weg2016-07-053-1/+14
| |/ / / / / / / / /
* | | | | | | | | | Merge branch 'refactor/ci-config-move-global-entries' into 'master' Rémy Coutable2016-07-0536-275/+1021
|\ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Move global ci entries handling from legacy to new config ## What does this MR do? This MR moves responsibility of handling global CI config entries (like `image`, `services`), from legacy `GitlabCiYamlProcessor` to new CI Config ## Why was this MR needed? This is the next iteration of CI configuration refactoring ## What are the relevant issue numbers? #15060 ## Does this MR meet the acceptance criteria? - Tests - [x] Added for this feature/bug - [x] All builds are passing - [x] Conform by the [style guides](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CONTRIBUTING.md#style-guides) - [x] Branch has no merge conflicts with `master` (if you do - rebase it please) See merge request !4820
| * | | | | | | | | Add minor improvements in readability in CI configrefactor/ci-config-move-global-entriesGrzegorz Bizon2016-07-046-8/+6
| | | | | | | | | |
| * | | | | | | | | Extract CI configuration entry node factory methodGrzegorz Bizon2016-07-041-8/+12
| | | | | | | | | |
| * | | | | | | | | Improve description of CI types node and in specsGrzegorz Bizon2016-06-302-3/+3
| | | | | | | | | |
| * | | | | | | | | Explicitly define entry node class in new CI configGrzegorz Bizon2016-06-292-11/+11
| | | | | | | | | |
| * | | | | | | | | Add CI config entry validator for allowed keysGrzegorz Bizon2016-06-294-18/+17
| | | | | | | | | |
| * | | | | | | | | Return compound value if CI config node is compositeGrzegorz Bizon2016-06-291-1/+6
| | | | | | | | | |
| * | | | | | | | | Move global CI cache configuration to new CI classesGrzegorz Bizon2016-06-292-29/+3
| | | | | | | | | |
| * | | | | | | | | Add global cache config entry to new CI configGrzegorz Bizon2016-06-2916-36/+64
| | | | | | | | | |
| * | | | | | | | | Add CI config entry location info to error messageGrzegorz Bizon2016-06-294-14/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This CI config entry location in configuration Hash.
| * | | | | | | | | Make it possible to set parent in CI config nodeGrzegorz Bizon2016-06-293-5/+18
| | | | | | | | | |
| * | | | | | | | | Merge branch 'master' into refactor/ci-config-move-global-entriesGrzegorz Bizon2016-06-28552-3362/+7573
| |\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * master: (352 commits) Display last commit of deleted branch in push events (!4699) add changelog add missing attribute to attr_encrypted so it is fully backwards-compatible Add "GitLab team members only" to diagram link doc: note that .gitattributes uses default branch use the conf lexer so we have highlighted comments first draft of docs support cgi style options, such as erb?parent=json move the path alias to a more appropriate location make #custom_language private appease rubocop add an alias for Snippet#path appease rubocop check the tag so that an instance will pass too fix the spec, using project.change_head Revert "bump the master sha for gitlab-test!9" bump the master sha for gitlab-test!9 add custom highlighting via .gitattributes Rename Licenses API to License Templates API Check for conflict with wiki projects when creating a new project. ...
| * | | | | | | | | | Validate interface only with CI node validatorGrzegorz Bizon2016-06-273-40/+24
| | | | | | | | | | |
| * | | | | | | | | | Add new ci config entry that handles cache configGrzegorz Bizon2016-06-275-12/+151
| | | | | | | | | | |
| * | | | | | | | | | Add ci config entry that represents array of pathsGrzegorz Bizon2016-06-242-0/+52
| | | | | | | | | | |
| * | | | | | | | | | Add ci config class that represents a boolean valueGrzegorz Bizon2016-06-243-0/+62
| | | | | | | | | | |
| * | | | | | | | | | Add ci config class that represents a key valueGrzegorz Bizon2016-06-243-0/+62
| | | | | | | | | | |
| * | | | | | | | | | Fix ci config cache validation in legacy processorGrzegorz Bizon2016-06-242-3/+16
| | | | | | | | | | |
| * | | | | | | | | | Minor refactorings in new CI configuration classesGrzegorz Bizon2016-06-235-6/+10
| | | | | | | | | | |
| * | | | | | | | | | Move CI stages configuration to new CI configGrzegorz Bizon2016-06-2312-29/+147
| | | | | | | | | | |
| * | | | | | | | | | Assume that unspecified CI config is undefinedGrzegorz Bizon2016-06-238-94/+112
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We assume that when someone adds a key for the configuration entry, but does not provide a valid value, which causes entry to be `nil`, then entry should be considered as the undefined one. We also assume this is semantically correct, this is also backwards compatible with legacy CI config processor. See issue #18775 for more details.
| * | | | | | | | | | Return default config value when entry is undefinedGrzegorz Bizon2016-06-229-51/+74
| | | | | | | | | | |
| * | | | | | | | | | Handle CI environment variables in a new CI configGrzegorz Bizon2016-06-228-9/+115
| | | | | | | | | | |
| * | | | | | | | | | Rename CI config null node entry to undefined nodeGrzegorz Bizon2016-06-225-23/+16
| | | | | | | | | | |