- Oct 13, 2017
-
-
Oswaldo Ferreir authored
-
- Oct 11, 2017
-
-
Oswaldo Ferreir authored
-
- Oct 09, 2017
-
-
Rémy Coutable authored
Signed-off-by:
Rémy Coutable <remy@rymai.me>
-
Rémy Coutable authored
Signed-off-by:
Rémy Coutable <remy@rymai.me>
-
- Oct 07, 2017
-
-
Bob Van Landuyt authored
The helper creates a fork of a project with all provided attributes, but skipping the creation of the repository on disk.
-
Bob Van Landuyt authored
-
- Oct 04, 2017
-
-
Oswaldo Ferreir authored
-
- Sep 06, 2017
-
-
Sean McGivern authored
-
- Aug 31, 2017
-
-
Felipe Artur authored
-
- Aug 30, 2017
-
-
Yorick Peterse authored
This ensures the issues/MR cache of the sidebar is only updated when the state or confidential flags changes, instead of changing this for every update.
-
- Aug 28, 2017
-
-
Oswaldo Ferreir authored
-
Oswaldo Ferreir authored
-
- Aug 23, 2017
-
-
Yorick Peterse authored
Every project page displays a navigation menu that in turn displays the number of open issues and merge requests. This means that for every project page we run two COUNT(*) queries, each taking up roughly 30 milliseconds on GitLab.com. By caching these numbers and refreshing them whenever necessary we can reduce loading times of all these pages by up to roughly 60 milliseconds. The number of open issues does not include confidential issues. This is a trade-off to keep the code simple and to ensure refreshing the data only needs 2 COUNT(*) queries instead of 3. A downside is that if a project only has 5 confidential issues the counter will be set to 0. Because we now have 3 similar counting service classes the code previously used in Projects::ForksCountService has mostly been moved to Projects::CountService, which in turn is reused by the various service classes. Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/36622
-
- Aug 13, 2017
-
-
haseeb authored
-
- Aug 10, 2017
-
-
Robert Speicher authored
-
- Aug 09, 2017
-
-
Rémy Coutable authored
Signed-off-by:
Rémy Coutable <remy@rymai.me>
-
- Aug 07, 2017
-
-
Oswaldo Ferreir authored
-
- Aug 02, 2017
-
-
Robert Speicher authored
-
- Aug 01, 2017
-
-
Gabriel Mazetto authored
-
- Jul 27, 2017
-
-
Rémy Coutable authored
Remove superfluous lib: true, type: redis, service: true, models: true, services: true, no_db: true, api: true Signed-off-by:
Rémy Coutable <remy@rymai.me>
-
- Jul 24, 2017
-
-
Jarka Kadlecova authored
-
- Jul 07, 2017
-
-
Sean McGivern authored
For merge requests created after 9.4, we have a `merge_request_diff_commits` table we can get all the SHAs from very quickly. We just need to exclude these when we load from the legacy format, by ignoring diffs with no serialised commits. Once these have been migrated in the background, every MR will see this improvement.
-
- Jul 06, 2017
-
-
Sean McGivern authored
This is an ID-less table with just three columns: an association to the merge request diff the commit belongs to, the relative order of the commit within the merge request diff, and the commit SHA itself. Previously we stored much more information about the commits, so that we could display them even when they were deleted from the repo. Since 8.0, we ensure that those commits are kept around for as long as the target repo itself is, so we don't need to duplicate that data in the database.
-
Yorick Peterse authored
This removes the need for relying on Rails' "dependent" option for data removal, which is _incredibly_ slow (even when using :delete_all) when deleting large amounts of data. This also ensures data consistency is enforced on DB level and not on application level (something Rails is really bad at). This commit also includes various migrations to add foreign keys to tables that eventually point to "projects" to ensure no rows get orphaned upon removing a project.
-
- Jun 26, 2017
-
-
Adam Niedzielski authored
Closes #34052
-
- Jun 21, 2017
-
-
Grzegorz Bizon authored
-
- Jun 20, 2017
-
-
Toon Claes authored
To make it simpler to assign users to an Issuable, make MergeRequest support the attribute `assignee_ids`.
-
- Jun 15, 2017
-
-
Eric Eastwood authored
Fix https://gitlab.com/gitlab-org/gitlab-ce/issues/27070 Deprecate "chat commands" in favor of "slash commands" We looked for things like: - `slash commmand` - `slash_command` - `slash-command` - `SlashCommand`
-
- Jun 14, 2017
-
-
Robert Speicher authored
-
- May 31, 2017
-
-
Douwe Maan authored
-
- May 29, 2017
-
-
Douwe Maan authored
-
- May 23, 2017
-
-
Douwe Maan authored
-
Douwe Maan authored
-
- May 22, 2017
-
-
Felipe Artur authored
-
- May 12, 2017
-
-
Sean McGivern authored
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.
-
Valery Sizov authored
-
- May 08, 2017
-
-
Felipe Artur authored
-
Felipe Artur authored
-
Felipe Artur authored
-
- May 04, 2017
-
-
Valery Sizov authored
-