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
2021-11-16Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-05-12Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-01-05Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-06-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-05-22Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-05-13Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-05-12Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-05-07Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-03-25Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-11-13Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-12Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-13Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-10Optimize queries for snippet listingsMarkus Koller
- Avoid N+1 queries for authors and comment counts - Avoid an additional snippet existence query
2019-08-28Change the way totalNotes is calculatedIgor Drozdov
totalNotes is only used to prerender a number of skeleton containers until real notes are loaded issuable.discussions makes multiple requests, so too expensive for this This commit uses mere notes for this and sends actual totalNotes number if it's less than 10; otherwise it sends 10 - it allows us to avoid bunch of skeleton prerenderings, which are not necessary since they doesn't fit into the whole screen and disappear quite fast
2019-06-03Make `resolvable_types` a class methodBob Van Landuyt
This turns Notable::RESOLVABLE_TYPES into a `Notable.resolvable_types`. That allows us to override it in EE.
2019-04-16Set correct timestamps when creating past issuesHeinrich Lee Yu
Sets `system_note_timestamp` from `created_at`
2019-04-08Fix `updated_at` doesn't apply to `state_event` updates of issues via APISean McGivern
2019-02-06Add reply to notes to turn into discussionsHeinrich Lee Yu
2018-12-21Cache diff highlight in discussionsOswaldo Ferreira
This commit handles note diffs caching, which considerably improves the performance on merge requests with lots of comments. Important to note that the caching approach taken here is different from `Gitlab::Diff::HighlightCache`. We do not reset the whole cache when a new push is sent or anything else. That's because discussions diffs are persisted and do not change.
2018-12-13Allow suggesting single line changes in diffsOswaldo Ferreira
2018-10-26Remove EE-specific code from DiscussionNoteSean McGivern
2018-09-07Use ResourceLabelEvent for tracking label changesJan Provaznik
2018-08-07Enable more frozen string in app/models/**/*.rbgfyoung
Partially addresses #47424.
2017-11-22Move ModuleWithInstanceVariables to Gitlab namespaceLin Jen-Shin
And use .rubocop.yml to exclude paths we don't care, rather than using the cop itself to exclude.
2017-11-17Use StrongMemoize and enable/disable cops properlyLin Jen-Shin
2017-11-06Merge remote-tracking branch 'upstream/master' into no-ivar-in-modulesLin Jen-Shin
* upstream/master: (1723 commits) Resolve "Editor icons" Refactor issuable destroy action Ignore routes matching legacy_*_redirect in route specs Gitlab::Git::RevList and LfsChanges use lazy popen Gitlab::Git::Popen can lazily hand output to a block Merge branch 'master-i18n' into 'master' Remove unique validation from external_url in Environment Expose `duration` in Job API entity Add TimeCop freeze for DST and Regular time Harcode project visibility update a changelog Put a condition to old migration that adds fast_forward column to MRs Expose project visibility as CI variable fix flaky tests by removing unneeded clicks and focus actions fix flaky test in gfm_autocomplete_spec.rb Use Gitlab::Git operations for repository mirroring Encapsulate git operations for mirroring in Gitlab::Git Create a Wiki Repository's raw_repository properly Add `Gitlab::Git::Repository#fetch` command Fix Gitlab::Metrics::System#real_time and #monotonic_time doc ...
2017-09-18Allow simple ivar ||= form. Update accordinglyLin Jen-Shin
2017-09-18Add cop to make sure we don't use ivar in a moduleLin Jen-Shin
2017-09-14Create system notes for MR too, improve doc + clean up codeJarka Kadlecova
2017-08-17Prefer polymorphism over `is_a?`Douwe Maan
2017-08-17Remove cross-references user cannot see from issue discussions JSONDouwe Maan
2017-05-30Resolve N+1 query issue with discussionsDouwe Maan
2017-04-08Link to outdated diff in older MR version from outdated diff discussionDouwe Maan
2017-04-06Refactor resolvability checks based on typeDouwe Maan
2017-04-05Address review commentsDouwe Maan
2017-04-05Don't use original_discussion_idDouwe Maan
2017-04-05Add option to start a new discussion on an MRDouwe Maan