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-05-19Add latest changes from gitlab-org/gitlab@15-0-stable-eev15.0.0-rc42GitLab Bot
2022-03-18Add latest changes from gitlab-org/gitlab@14-9-stable-eev14.9.0-rc42GitLab Bot
2022-01-20Add latest changes from gitlab-org/gitlab@14-7-stable-eev14.7.0-rc42GitLab Bot
2021-12-20Add latest changes from gitlab-org/gitlab@14-6-stable-eev14.6.0-rc42GitLab Bot
2021-11-18Add latest changes from gitlab-org/gitlab@14-5-stable-eev14.5.0-rc42GitLab Bot
2021-09-20Add latest changes from gitlab-org/gitlab@14-3-stable-eev14.3.0-rc42GitLab Bot
2021-05-19Add latest changes from gitlab-org/gitlab@13-12-stable-eev13.12.0-rc42GitLab Bot
2021-04-21Add latest changes from gitlab-org/gitlab@13-11-stable-eev13.11.0-rc43GitLab Bot
2020-08-20Add latest changes from gitlab-org/gitlab@13-3-stable-eeGitLab Bot
2020-06-18Add latest changes from gitlab-org/gitlab@13-1-stable-eeGitLab Bot
2020-05-20Add latest changes from gitlab-org/gitlab@13-0-stable-eeGitLab Bot
2020-03-23Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-03-04Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-02Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-11-07Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-07-29Merge branch 'frozen_string_spec_features' into 'master'Rémy Coutable
Add frozen_string_literal to spec/features See merge request gitlab-org/gitlab-ce!31131
2019-07-26Add frozen_string_literal to spec/featuresThong Kuah
Using the sed script from https://gitlab.com/gitlab-org/gitlab-ce/issues/59758
2019-07-25Remove code related to object hierarchy in MySQLHeinrich Lee Yu
These are not required because MySQL is not supported anymore
2019-07-02Don't let logged out user do manual orderRajat Jain
Add a check for logged out user in the manual order so that they don't see an flash message when they try to reorder issues.
2019-06-27Properly check that issue list has persistedStan Hu
A valid user needs to be signed in, and we need to reload the page to verify that the issue list was saved on the backend.
2019-06-26Use relative position to order issuesRajat Jain
2019-06-26Stub manual_sorting flagRajat Jain
2019-06-26Bring Manual Ordering on Issue ListRajat Jain
On all the issue lists -- Group, Project and Dashboard -- this change adds a new option for managing the lists. "Manual Ordering" option is added which when flipped on will allow an user to drag and drop issues around to create a relative ordering among them.
2018-08-03Use Projects::UpdateService to archive projectsJames Ramsay
System hooks were not being triggered when projects were archived or unarchived. Reuse the Projects::UpdateService to automatically trigger system hooks and increase code reuse.
2018-07-11Resolve "Rename the `Master` role to `Maintainer`" BackendMark Chao
2018-07-05Enable Capybara/FeatureMethods copWinnie Hellmann
2018-07-02Resolve "404 when trying to create a new issue from the group"Jan Beckmann
2018-05-31Export assigned issues in iCalendar feedImre Farkas
2018-03-29Replace group spinach tests with RSpec analogSemyon Pupkov
https://gitlab.com/gitlab-org/gitlab-ce/issues/23036
2018-02-01Include subgroup issuables on the group pageJarka Kadlecová
2017-08-02Add filtered search to group issue dashboardClement Ho
2017-07-27Remove superfluous type defs in specsKeifer Furzland
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-05-24use full caps RSS instead of rssAlexis Reigel
2017-05-24atom links with rss token instead of private tokenAlexis Reigel
2017-05-23Use wait_for_requests to wait all JS requestOswaldo Ferreira
2017-04-24Assignee filter on group issues/merge requests only loads group usersPhil Hughes
Closes #29490
2017-02-28Show public RSS feeds to anonymous usersMichael Kozono
2016-11-09Merge branch '22481-honour-issue-visibility-for-groups' into 'security' Douwe Maan
Honour issue and merge request visibility in their respective finders This MR fixes a security issue with the IssuesFinder and MergeRequestFinder where they would return items the user did not have permission to see. This was most visible on the issue and merge requests page for a group containing projects that had set their issues or merge requests to "private". Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/22481 See merge request !2000