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
AgeCommit message (Collapse)Author
2018-04-19Moves Uniquify counter in the initializerJacopo
2018-04-19Uses Uniquify to calculate Issue#suggested_branch_nameJacopo
2018-04-19Shows new branch/mr button even when branch existsJacopo
2018-04-18Revert the addition of goldiloaderYorick Peterse
This reverts the addition of the "goldiloader" Gem and all use of it. While this Gem is very promising it's causing a variety of problems on GitLab.com due to it eager-loading too much data in places where we don't expect/can handle this. At least for the time being this means we have to go back to manually fixing N+1 query problems, but at least those should not cause a negative impact on availability.
2018-04-10Merge branch 'master' into 'stuartnelson3/gitlab-ce-stn/issue-due-email'Sean McGivern
# Conflicts: # db/schema.rb
2018-04-09Use Goldiloader for handling N+1 queriesYorick Peterse
Goldiloader (https://github.com/salsify/goldiloader) can eager load associations automatically. This removes the need for adding "includes" calls in a variety of different places. This also comes with the added benefit of not having to eager load data if it's not used.
2018-04-05Show issues of subgroups in group-level issue boardFelipe Artur
2018-04-04[Rails5] Rename `sort` methods to `sort_by_attribute`blackst0ne
2018-03-30Merge branch '41967_issue_api_closed_by_info' into 'master'Sean McGivern
Add closed by information to issue API See merge request gitlab-org/gitlab-ce!17042
2018-03-30Send emails for issues due tomorrowSean McGivern
Also, refactor the mail sending slightly: instead of one worker sending all emails, create a worker per project with issues due, which will send all emails for that project.
2018-03-16Refactor, extract class and improve comments.Andreas Brandl
2018-03-16More flexible way of internal id generation.Andreas Brandl
2018-03-16Atomic generation of internal ids for issues.Andreas Brandl
2018-03-16Deprecate InternalId concern and rename.Andreas Brandl
2018-03-05changed the way of nullifying columshaseeb
2018-02-28closed by field addedhaseeb
2018-02-22Port `read_cross_project` ability from EEBob Van Landuyt
2018-01-08Remove soft removals related codeYorick Peterse
This removes all usage of soft removals except for the "pending delete" system implemented for projects. This in turn simplifies all the query plans of the models that used soft removals. Since we don't really use soft removals for anything useful there's no point in keeping it around. This _does_ mean that hard removals of issues (which only admins can do if I'm not mistaken) can influence the "iid" values, but that code is broken to begin with. More on this (and how to fix it) can be found in https://gitlab.com/gitlab-org/gitlab-ce/issues/31114. Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/37447
2018-01-05Refactor matchers for background migrationsJarka Kadlecová
2018-01-05Refactor RelativePositioning so that it can be used by other classesJarka Kadlecová
2018-01-02Cache merged and closed events data in merge_request_metrics tableOswaldo Ferreira
2017-12-11Fix migration that removes issues.branch_nameYorick Peterse
2017-12-11Add spec for removing issues.assignee_idSean McGivern
This migration also needs to be a post-deployment migration, as it removes a column.
2017-12-06Throttle the number of UPDATEs triggered by touchYorick Peterse
This throttles the number of UPDATE queries that can be triggered by calling "touch" on a Note, Issue, or MergeRequest. For Note objects we also take care of updating the associated "noteable" relation in a smarter way than Rails does by default.
2017-11-25Create issue and merge request destroy servicesGeorge Andrinopoulos
2017-11-20Add issue sidebar and toggle_subscription endpoint in board issues dataOswaldo Ferreira
2017-11-11Move update_project_counter_caches? out of issue and merge requestGeorge Andrinopoulos
2017-11-07Refactor issuables index actionsJarka Kadlecova
2017-11-02CE port of code changed for epicsJarka Kadlecova
2017-10-09Introduce new hook data builders for Issue and MergeRequestRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-10-09Start adding Gitlab::HookData::IssuableBuilderRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-10-09Include the changes in issuable webhook payloadsRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-09-23Improve list of sorting optionsVitaliy @blackst0ne Klachkov
2017-09-19Fix refreshing of issues/MR count cachesYorick Peterse
This ensures the open issues/MR count caches are refreshed properly when creating new issues or MRs. This MR also includes a change to the cache keys to ensure all caches are rebuilt on the fly. This particular problem was not caught in the test suite due to a null cache being used, resulting in all calls that would use a cache using the underlying data directly. In production the code would fail because a newly saved record returns an empty hash in #changes meaning checks such as `state_changed? || confidential_changed?` would return false for new rows, thus never updating the counters. Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/38061
2017-09-11Delete duplicated lines.Shinichi Maeshima
2017-08-31Merge branch 'master' into issue-discussions-refactorDouwe Maan
# Conflicts: # app/models/issue.rb
2017-08-30Only update the sidebar count caches when neededYorick Peterse
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.
2017-08-30Merge branch 'master' into issue-discussions-refactorDouwe Maan
# Conflicts: # app/models/issue.rb
2017-08-23Merge branch 'cache-issue-and-mr-counts' into 'master'Douwe Maan
Cache the number of open issues and merge requests Closes #36622 See merge request !13639
2017-08-23Cache the number of open issues and merge requestsYorick Peterse
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
2017-08-23Merge branch 'master' into issue-discussions-refactorDouwe Maan
# Conflicts: # package.json
2017-08-18Remove ignore columnsFelipe Artur
2017-08-17Prefer polymorphism over `is_a?`Douwe Maan
2017-07-28Merge issuable "reopened" state into "opened"Yorick Peterse
Having two states that essentially mean the same thing is very much like having a boolean "true" and boolean "mostly-true": it's rather silly. This commit merges the "reopened" state into the "opened" state while taking care of system notes still showing messages along the lines of "Alice reopened this issue". A big benefit from having only two states (opened and closed) is that indexing and querying becomes simpler and more performant. For example, to get all the opened queries we no longer have to query both states: SELECT * FROM issues WHERE project_id = 2 AND state IN ('opened', 'reopened'); Instead we can query a single state directly, which can be much faster: SELECT * FROM issues WHERE project_id = 2 AND state = 'opened'; Further, only having two states makes indexing easier as we will only ever filter (and thus scan an index) using a single value. Partial indexes could help but aren't supported on MySQL, complicating the development process and not being helpful for MySQL.
2017-07-07fix created_afterJames Lopez
2017-07-07refactor created at filter to use model scopesJames Lopez
2017-07-06Added Cop to blacklist the use of `dependent:`Yorick Peterse
This is allowed for existing instances so we don't end up 76 offenses right away, but for new code one should _only_ use this if they _have_ to remove non database data. Even then it's usually better to do this in a service class as this gives you more control over how to remove the data (e.g. in bulk).
2017-07-06Add many foreign keys to the projects tableYorick Peterse
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.
2017-07-05Create and use project path helpers that only need a project, no namespaceDouwe Maan
2017-06-21Enable Style/DotPosition Rubocop :cop:Grzegorz Bizon