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
2022-12-03Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-12-03Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-11-08Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-10-17Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-10-07Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-05-25Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-05-17Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-03-10Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-03-03Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-01-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-08-04Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-05-21Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-05-20Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-05-20Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-05-12Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-03-09Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-02-16Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-12-10Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-07-14Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-06-16Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-06-10Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-04-01Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-03-24Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-02-27Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-02-15Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-29Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-13Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-08-30Merge branch 'security-fix-html-injection-for-label-description-ce-master' ↵GitLab Release Tools Bot
into 'master' Fix HTML injection for label description See merge request gitlab/gitlabhq!3250
2019-08-13Improve quick action error messagesHeinrich Lee Yu
Standardize punctuation and format
2019-08-05Fix HTML injection for label descriptionPatrick Derichs
Add changelog entry Add spec
2019-07-30Make quick action "commands applied" banner more useful🙈 jacopo beschi 🙉
Extends the quick actions "commands applied" banner to show the quick action preview text, but with everything in past tense.
2019-07-24Add where condition to filter out invalid labels with nil typePatrick Derichs
2019-06-07Remove some deprecated codeDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2019-04-23Move scoped_label into label presenterJan Provaznik
When rendering a label we want to check 'scoped_label' feature availability on a project/group where label is being used. For this reason a label presenter is used in UI and information about context project/group is passed to this presenter.
2019-04-02Merge branch 'master' of dev.gitlab.org:gitlab/gitlabhq into ↵John Jarvis
jarv/dev-to-gitlab-2019-04-02
2019-03-28Inherit from ApplicationRecord instead of ActiveRecord::BaseNick Thomas
2019-03-28Check if labels are available for target issuableJarka Košanová
- labels have to be in the same project/group as an issuable
2019-03-13Allow filtering labels by a single characterSean McGivern
When we use Gitlab::SQL::Pattern, this typically relates to a trigram index. As the 'tri' indicates, we need at least three characters to be able to use that index. Labels don't have a trigram index, because we never allow you to search for them globally: it's always in the context of a project or a group. In that context, it's just as fast to search for a single character (in general) because there is already a pretty specific index being used.
2019-01-18Fix inconsistent label foreground colorNathan Friend
In different parts of the application, the same label was being rendered with a different foreground color. This was due to the "textColor" JSON property not being generated by the backend. This commit adds this property to JSON representation of labels.
2018-11-23Filter by `None`/`Any` for labels in issues/mrs APIJacopo
By using the parameters `?labels=None|Any` the user can filter issues/mrs from the API that has `none/any` label. Affected endpoints are: - /api/issues - /api/projects/:id/issues - /api/groups/:id/issues - /api/merge_requests - /api/projects/:id/merge_requests - /api/groups/:id/merge_requests
2018-11-05Fixed label removal from issueChantal Rollison
2018-10-04Add subscribe filter to labels pageDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2018-09-17Added FromUnion to easily select from a UNIONYorick Peterse
This commit adds the module `FromUnion`, which provides the class method `from_union`. This simplifies the process of selecting data from the result of a UNION, and reduces the likelihood of making mistakes. As a result, instead of this: union = Gitlab::SQL::Union.new([foo, bar]) Foo.from("(#{union.to_sql}) #{Foo.table_name}") We can now write this instead: Foo.from_union([foo, bar]) This commit also includes some changes to make this new setup work properly. For example, a bug in Rails 4 (https://github.com/rails/rails/issues/24193) would break the use of `from("sub-query-here").includes(:relation)` in certain cases. There was also a CI query which appeared to repeat a lot of conditions from an outer query on an inner query, which isn't necessary. Finally, we include a RuboCop cop to ensure developers use this new module, instead of using Gitlab::SQL::Union directly. Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/51307
2018-09-10Add sort dropdown to project labels page and group labels pageDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2018-09-07Use optionally_search for group labels index pageDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2018-08-02Merge branch 'frozen-string-enable-app-models' into 'master'Rémy Coutable
Enable frozen string in app/models/*.rb See merge request gitlab-org/gitlab-ce!20851
2018-07-31Add ability to filter labels by title or descriptionDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2018-07-27Enable frozen string in app/models/*.rbgfyoung
Partially addresses #47424.
2018-06-18Properly detect label reference if followed by period or question markDouwe Maan