summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Rename BlobViewer max_size to overridable_max_size and absolute_max_size to ↵dm-blob-viewer-concernsDouwe Maan2017-05-159-42/+50
| | | | max_size
* Specify explicitly whether a blob viewer should be loaded asynchronouslyDouwe Maan2017-05-1312-69/+73
|
* Allow blob viewer to support multiple filetypesDouwe Maan2017-05-134-7/+7
|
* Merge branch '26325-system-hooks' into 'master' Robert Speicher2017-05-1319-11/+230
|\ | | | | | | | | | | | | Backport New SystemHook: `repository_update` Closes #26325 See merge request !11140
| * CodestyleGabriel Mazetto2017-05-131-1/+1
| |
| * Minor cosmetic fixes in hooks admin screenGabriel Mazetto2017-05-122-4/+4
| |
| * Documentation for repository_update_eventsGabriel Mazetto2017-05-121-1/+49
| |
| * ChangelogGabriel Mazetto2017-05-121-0/+4
| |
| * Update SystemHooks API to expose and handle new repository_update_eventsGabriel Mazetto2017-05-123-3/+5
| |
| * Make the new repository_update_events configurable in System Hooks UIGabriel Mazetto2017-05-126-2/+54
| |
| * Added repository_update hookGabriel Mazetto2017-05-1210-4/+117
| |
* | Update CHANGELOG.md for 9.1.4Felipe Artur2017-05-121-0/+1
| | | | | | [ci skip]
* | Update CHANGELOG.md for 9.1.4Felipe Artur2017-05-121-0/+1
| | | | | | [ci skip]
* | Merge branch 'dm-wait-for-requests' into 'master' Douwe Maan2017-05-122-8/+3
|\ \ | | | | | | | | | | | | Wait for requests after each Spinach scenario instead of feature See merge request !11349
| * | Wait for requests after each Spinach scenario instead of featuredm-wait-for-requestsDouwe Maan2017-05-122-8/+3
| | |
* | | Update CHANGELOG.md for 9.1.4Felipe Artur2017-05-121-0/+1
| | | | | | | | | [ci skip]
* | | Update CHANGELOG.md for 9.1.4Felipe Artur2017-05-129-33/+11
| | | | | | | | | [ci skip]
* | | Merge branch 'add-problematic-mysql-examples' into 'master' Sid Sijbrandij2017-05-121-2/+5
|\ \ \ | |_|/ |/| | | | | | | | | | | | | | Link to a case where we can't support MySQL Closes #32181 See merge request !11334
| * | Link to a case where we can't support MySQLadd-problematic-mysql-examplesYorick Peterse2017-05-121-2/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | This updates the requirements guide to include a link to an issue where we discuss dropping MySQL support for nested groups. This should give users a better understanding of why we highly recommend them to use PostgreSQL instead. [ci skip]
* | | Merge branch 'sh-remove-trailing-comma' into 'master' Douwe Maan2017-05-121-1/+1
|\ \ \ | | | | | | | | | | | | | | | | Remove trailing comma in dependency linker to satisfy Rubocop See merge request !11348
| * | | Remove trailing comma in dependency linker to satisfy RubocopStan Hu2017-05-121-1/+1
| | | |
* | | | Merge branch '30975-fixed-top-nav-POC' into 'master' Annabel Dunstone Gray2017-05-1224-35/+70
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add fixed positioning to top level navbar Closes #30975 See merge request !10751
| * | | | Fix specsAnnabel Dunstone Gray2017-05-123-4/+4
| | | | |
| * | | | Clean up fixed navbarAnnabel Dunstone Gray2017-05-123-6/+9
| | | | |
| * | | | Fix specsAnnabel Dunstone Gray2017-05-1213-25/+30
| | | | |
| * | | | Fade out border on scrollAnnabel Dunstone Gray2017-05-124-11/+14
| | | | |
| * | | | Add animation to navbar borderAnnabel Dunstone Gray2017-05-121-2/+3
| | | | |
| * | | | Add nav border on scrollAnnabel Dunstone Gray2017-05-122-0/+15
| | | | |
| * | | | Remove trailing semicolonAnnabel Dunstone Gray2017-05-121-1/+1
| | | | |
| * | | | Add fixed positioning to top level navbarAnnabel Dunstone Gray2017-05-129-8/+16
| | | | |
* | | | | Merge branch 'sh-relax-backup-rake-spec' into 'master' Stan Hu2017-05-121-1/+1
|\ \ \ \ \ | |_|/ / / |/| | | | | | | | | | | | | | Relax rake backup regex to handle CE and EE RCs See merge request !11345
| * | | | Relax rake backup regex to handle CE and EE RCssh-relax-backup-rake-specStan Hu2017-05-121-1/+1
| | | | | | | | | | | | | | | | | | | | See http://rubular.com/r/uTDlT85zW1
* | | | | Merge branch 'fix-conflict-resolution-with-corrupt-repos' into 'master' Douwe Maan2017-05-1215-200/+268
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix conflict resolution from corrupted upstream Closes gitlab-ee#2128 See merge request !11298
| * | | | | Fix conflict resolution from corrupted upstreamfix-conflict-resolution-with-corrupt-reposSean McGivern2017-05-1215-200/+268
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I don't know why this happens exactly, but given an upstream and fork repository from a customer, both of which required GC, resolving conflicts would corrupt the fork so badly that it couldn't be cloned. This isn't a perfect fix for that case, because the MR may still need to be merged manually, but it does ensure that the repository is at least usable. My best guess is that when we generate the index for the conflict resolution (which we previously did in the target project), we obtain a reference to an OID that doesn't exist in the source, even though we already fetch the refs from the target into the source. Explicitly setting the source project as the place to get the merge index from seems to prevent repository corruption in this way.
* | | | | | Merge branch 'new-branch-new-mr-docs' into 'master' Filipa Lacerda2017-05-122-0/+6
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | | | | | | | | | | | | | New branch new mr docs See merge request !11308
| * | | | | New branch new mr docsVictor Wu2017-05-122-0/+6
|/ / / / /
* | | | | Merge branch 'disable-usage-ping' into 'master'Robert Speicher2017-05-129-67/+118
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Usage ping updates Closes #31741 and #31453 See merge request !11231
| * | | | | update the documentation to reflect upcoming changes to the usage pingdisable-usage-pingJob van der Voort2017-05-111-64/+9
| | | | | |
| * | | | | Add hostname to usage pingSean McGivern2017-05-113-0/+6
| | | | | |
| * | | | | Allow disabling usage ping in `gitlab.yml`Sean McGivern2017-05-116-8/+108
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Setting `usage_ping_enabled` to false in `gitlab.yml`: 1. Disables the usage ping, regardless of the value stored in the database. 2. Prevents the usage ping from being enabled through the admin panel. It can only be enabled by either removing the line from `gitlab.yml` and configuring through the admin panel, or setting it to true in `gitlab.yml`.
* | | | | | Merge branch 'dz-project-list-cache-key' into 'master' Douwe Maan2017-05-124-4/+16
|\ \ \ \ \ \ | |_|_|_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Improve project list cache key Closes #31863 See merge request !11325
| * | | | | Change project list cache key to use route.cache_key instead of namespacedz-project-list-cache-keyDmitriy Zaporozhets2017-05-126-22/+5
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
| * | | | | Add parent full path to project list cache keyDmitriy Zaporozhets2017-05-125-1/+30
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* | | | | | Merge branch 'dm-dependency-linker-gemfile' into 'master' Sean McGivern2017-05-1224-148/+514
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Autolink package names in Gemfile See merge request !11224
| * | | | | | Add changelogdm-dependency-linker-gemfileDouwe Maan2017-05-121-0/+4
| | | | | | |
| * | | | | | Remove unrelated link from specDouwe Maan2017-05-121-7/+0
| | | | | | |
| * | | | | | Link Gemfile git URLsDouwe Maan2017-05-122-1/+8
| | | | | | |
| * | | | | | Fix specsDouwe Maan2017-05-102-4/+4
| | | | | | |
| * | | | | | Turn blob dependency links blueDouwe Maan2017-05-105-0/+25
| | | | | | |
| * | | | | | Autolink package names in GemfileDouwe Maan2017-05-107-10/+263
| | | | | | |