Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/app
AgeCommit message (Collapse)Author
2017-10-30Merge branch '39582-nestingdepth-6' into 'master'Annabel Dunstone Gray
Enable NestingDepth (level 6) on scss-lint Closes #39582 See merge request gitlab-org/gitlab-ce!15073
2017-10-30Refresh open Issue and Merge Request project counter caches when re-openingRob Ede
2017-10-30Merge branch 'sh-fix-broken-redirection-relative-url-root' into 'master'Rémy Coutable
Fix broken Members link when relative URL root paths are used See merge request gitlab-org/gitlab-ce!15070
2017-10-30Merge branch ↵Sean McGivern
'39570-performance-bar-appears-enabled-even-though-it-won-t-show-up' into 'master' Resolve "Performance bar appears enabled even though it won't show up" Closes #39570 See merge request gitlab-org/gitlab-ce!15084
2017-10-30Allow to disable the Performance Bar and document the `p b` shortcut in its ↵Rémy Coutable
doc page Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-10-30Merge branch '38869-importer_status' into 'master'Phil Hughes
Remove code from global namespace See merge request gitlab-org/gitlab-ce!15058
2017-10-30Merge branch ↵Fatih Acet
'39020-fix-js-call-stack-size-exceeded-autocomplete-group-milestone' into 'master' Fix call stack size exceeded group milestone description autocomplete Closes #39020 See merge request gitlab-org/gitlab-ce!14972
2017-10-30Changed project select to use it independently and not onlt as a combobuttonFrancisco Javier López
2017-10-30Fix queried elementFilipa Lacerda
2017-10-30Merge branch ↵Yorick Peterse
'39054-activerecord-statementinvalid-pg-querycanceled-error-canceling-statement-due-to-statement-timeout' into 'master' Resolve "ActiveRecord::StatementInvalid: PG::QueryCanceled: ERROR: canceling statement due to statement timeout" Closes #39054 See merge request gitlab-org/gitlab-ce!15063
2017-10-30Merge branch 'master' into 38869-importer_statusFilipa Lacerda
* master: (51 commits) Move locked check to a guard-clause Ci::Build tag is a trait instead of an own factory [CE backport] Saved configuration for issue board Use the correct project visibility in system hooks Add changelog more readable changelog Make merge_jid handling less stateful in MergeService Fetch the merged branches at once remove extra whitespace use a delegate for `username` to be more future friendly Merging EE doc into CE add changelog entry Avoid using Rugged in Gitlab::Git::Wiki#preview_slug Cache commits on the repository model Remove groups_select from global namespace & simplifies the code Change default disabled merge request widget message to "Merge is not allowed yet" Semi-linear history merge is now available in CE. Remove repetitive karma spec Improve spec to check hidden component Rename to shouldShowUsername ...
2017-10-30Merge branch 'make-merge-jid-handling-less-stateful' into 'master'Sean McGivern
Fix widget of locked merge requests not being presented See merge request gitlab-org/gitlab-ce!15069
2017-10-30Move locked check to a guard-clauseOswaldo Ferreira
2017-10-30[CE backport] Saved configuration for issue boardOswaldo Ferreira
2017-10-30Merge branch 'bvl-fix-system-hook-project-visibility' into 'master'Sean McGivern
Use the correct project visibility in system hooks Closes #39496 See merge request gitlab-org/gitlab-ce!15065
2017-10-30Merge branch '39366-email-confirmation-fails' into 'master'Douwe Maan
grab the correct username when confirming secondary email Closes #39366 See merge request gitlab-org/gitlab-ce!15010
2017-10-30Use the correct project visibility in system hooksBob Van Landuyt
2017-10-30Enable NestingDepth (level 6) on scss-lintTakuya Noguchi
2017-10-30Merge branch 'es-module-autosave' into 'master'Filipa Lacerda
Remove Autosave class from global namespace See merge request gitlab-org/gitlab-ce!14856
2017-10-28Fix broken Members link when relative URL root paths are usedStan Hu
Navigating to the "Members" section of a project would omit the relative URL root path. Fix the redirection and eliminate the need for a redirection in the first place. Fix other redirections failing to work with relative roots
2017-10-27Make merge_jid handling less stateful in MergeServiceOswaldo Ferreira
2017-10-27Fetch the merged branches at onceLin Jen-Shin (godfat)
2017-10-27use a delegate for `username` to be more future friendlyBrett Walker
2017-10-27Merge branch 'zj-commit-cache' into 'master'Sean McGivern
Cache commits on the repository model See merge request gitlab-org/gitlab-ce!14863
2017-10-27Avoid hitting statement timeout finding MR pipelinesSean McGivern
For MRs with many thousands of commits, `SELECT DISTINCT(sha)` will be very slow. What we can't do to fix this: 1. Add an index. Postgres won't use it for DISTINCT without a lot of ceremony. 2. Do the `uniq` in Ruby. That can still be very slow with hundreds of thousands of commits. 3. Use a subquery. We haven't removed the `st_commits` column yet, but we will soon. Until 3 is available to us, we can just do 2, but also add a limit clause. There is no ordering, so this may return different results, but our goal with these MRs is just to get them to load, so it's not a huge deal.
2017-10-27Merge branch 'add-user-avatar-username-link' into 'master'Fatih Acet
Add configurable option to display username in user avatar link component See merge request gitlab-org/gitlab-ce!14902
2017-10-27Merge branch 'ac-k8s-namespace-validator' into 'master'Rémy Coutable
Sanitize k8s default_namespace Closes #38692 See merge request gitlab-org/gitlab-ce!15053
2017-10-27Merge branch '39441-bring-edit-form-back' into 'master'Rémy Coutable
Revert "Merge branch '36670-remove-edit-form' into 'master'" Closes #39441 See merge request gitlab-org/gitlab-ce!15049
2017-10-27Merge branch '39188-change-default-disabled-merge-message' into 'master'Filipa Lacerda
Change default disabled merge request widget message to be more general Closes #39188 See merge request gitlab-org/gitlab-ce!14960
2017-10-27Cache commits on the repository modelZeger-Jan van de Weg
Now, when requesting a commit from the Repository model, the results are not cached. This means we're fetching the same commit by oid multiple times during the same request. To prevent us from doing this, we now cache results. Caching is done only based on object id (aka SHA). Given we cache on the Repository model, results are scoped to the associated project, eventhough the change of two repositories having the same oids for different commits is small.
2017-10-27Remove groups_select from global namespace & simplifies the codeFilipa Lacerda
2017-10-27Change default disabled merge request widget message to "Merge is not ↵Eric Eastwood
allowed yet" Fix https://gitlab.com/gitlab-org/gitlab-ce/issues/39188
2017-10-27Rename to shouldShowUsernameClement Ho
2017-10-26Remove issuable form from global namespaceFilipa Lacerda
2017-10-26Remove issuableContext from global namespaceFilipa Lacerda
2017-10-26Improves issuable testsFilipa Lacerda
Fixes missing dependencies
2017-10-26Remove old codeFilipa Lacerda
2017-10-26Add KubernetesService#default_namespace testsAlessio Caiazza
2017-10-26Revert "Merge branch '36670-remove-edit-form' into 'master'"Sean McGivern
This reverts commit 915e35a2992a4e51db2ac32aac8d7a29b1f4449e, reversing changes made to 9533786f522e358f372d8a0ec4b4990ae9d88f37.
2017-10-26Merge branch 'non-existing-repo-optimization' into 'master'Douwe Maan
Avoid calling underlying methods on non-existing repos See merge request gitlab-org/gitlab-ce!14962
2017-10-26Merge branch 'api-configure-jira' into 'master'Douwe Maan
Validate username/pw for Jiraservice, require them in the API Closes #36621 See merge request gitlab-org/gitlab-ce!15025
2017-10-25Added ssh fingerprint, gitlab ci and pages information in an instance ↵Francisco Lopez
configuration page Closes #25142
2017-10-25Merge branch '38178-fl-mr-notes-components' into 'master'Phil Hughes
Moves placeholders components into shared folder with documentation. See merge request gitlab-org/gitlab-ce!14964
2017-10-25Merge branch 'gitaly-ff-merge-preparation' into 'master'Rémy Coutable
Move all rugged operation for ff_merge inside Gitlab::Git Closes gitaly#683 See merge request gitlab-org/gitlab-ce!15011
2017-10-25Merge branch '35199-case-insensitive-branches-search' into 'master'Sean McGivern
Add case insensitive branches search Closes #35199 See merge request gitlab-org/gitlab-ce!14995
2017-10-25Resolve "Remove overzealous tooltips in projects page tabs"Victor Wu
2017-10-25Split project and group milestone dispatcher branchLuke "Jared" Bennett
2017-10-24Remove filter icon from search barAnnabel Dunstone Gray
2017-10-24Move all rugged operation for ff_merge inside Gitlab::GitAlejandro Rodríguez
We also delete some unused code related to the aforementioned feature.
2017-10-24Merge branch 'jramsay-remove-superfluous-namespace' into 'master'Douwe Maan
Remove superfluous namespace from cluster settings See merge request gitlab-org/gitlab-ce!14987