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-04-20Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-01-16chore(rubocop): fix Style/TrivialAccessors issuesSemyon Pupkov
2018-07-27Enable frozen string in app/models/*.rbgfyoung
Partially addresses #47424.
2018-02-14Fix closing issues text added to MRs for external issue trackersSean McGivern
Before, this would: 1. Not use the correct reference for non-JIRA external trackers. 2. Append 'Closes ' if an external tracker was enabled, but no issue matched the branch name.
2017-11-23Fix link text from group contextJarka Kadlecova
2017-11-08Use Commit#notes and Note.for_commit_id when possible to make sure we use ↵Douwe Maan
all the indexes available to us
2017-06-30Improve support for external issue referencesAdam Niedzielski
2017-03-06Fix issues mentioned but not closed for JIRASean McGivern
The `ReferenceExtractor` would return an array of `ExternalIssue` objects, and then perform `Array#-` to remove the issues closed. `ExternalIssue`s had `==` defined, but not `hash` or `eql?`, which are used by `Array#-`.
2017-02-23Enable Performance/RedundantMatchDouwe Maan
2017-01-03Fix cross-project references copy to include the project referenceJames Lopez
Also added relevant specs and refactored to_references in a bunch of places to be more consistent.
2016-11-07Add the method ExternalIssue#project_idYorick Peterse
This method returns the project's ID, making ExternalIssue slightly more compatible with Issue (which also defines the "project_id" method).
2016-10-19Prevent wrong markdown on issue ids when project has Jira service activatedFelipe Artur
2016-04-17Merge branch 'master' into number_sign_for_external_issue_refBaldinoF
2016-04-12Hide number sign for string prefixed external issuesBaldinof
2016-04-01Memoize reference_pattern/link_reference_patternYorick Peterse
These methods are called quite often in loops so by memoizing their output we can reduce timings a bit.
2016-03-22Add number sign on external issue reference textBaldinof
2016-01-26Update ExternalIssue regex for JIRA integrationBlake Hitchcock
The pattern in the `::reference_pattern` class method in the ExternalIssue model does not match all valid forms of JIRA project names. I have updated the regex to match JIRA project names with numbers and underscores. More information on valid JIRA project names can be found here: https://confluence.atlassian.com/jira/changing-the-project-key-format-192534.html * The first character must be a letter, * All letters used in the project key must be from the Modern Roman Alphabet and upper case, and * Only letters, numbers or the underscore character can be used.
2015-05-26Add `reference_pattern` to Referable modelsRobert Speicher
2015-05-26Add `to_reference` for models that support referencesRobert Speicher
Now there is a single source of information for which attribute a model uses to be referenced, and its special character.
2015-05-01Remove title_for_issue helperRobert Speicher
2015-02-11Add ExternalIssue base model to make issue referencing more robust for ↵Marin Jankovski
external issue trackers.