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
2017-06-20Merge branch '30213-project-transfer-move-rollback' into 'master'Douwe Maan
Rollback project folder move after error in Projects::TransferService Closes #30213 See merge request !11877
2017-06-20Merge branch 'delete-fix-missing-function-changelog' into 'master'Stan Hu
Deleted "fix-missing-function-dropzone-input.yml" from the changelog See merge request !12316
2017-06-20Deleted "fix-missing-function-dropzone-input.yml" from the changelogJose Ivan Vargas
2017-06-20Merge branch 'bugfix/html-email-brackets' into 'master'Douwe Maan
unwrap links without an href Closes #27645 See merge request !9045
2017-06-20Rollback project folder move after error in Projects::TransferServiceJames Edwards-Jones
2017-06-20Merge branch 'refactor-projects-finder-init-collection' into 'master'Rémy Coutable
Refactor ProjectsFinder#init_collection and GroupProjectsFinder#init_collection Closes #33632 See merge request !12135
2017-06-20Merge branch 'remove-changelog' into 'master'Clement Ho
Remove changelog entry See merge request !12309
2017-06-20Re-instate is_admin flag in users API is current user is an adminMike Ricketts
2017-06-20Remove changelog entryAnnabel Dunstone Gray
2017-06-20add a changelog for the email parsing bughttp://jneen.net/
2017-06-20Added specs for the copy/paste actionJose Ivan Vargas
2017-06-19Restored missing function inside dropzone_input.jsJose Ivan Vargas
2017-06-19Merge branch '25164-disable-fork-on-project-limit' into 'master'Rémy Coutable
Disable fork button on project limit Closes #25164 See merge request !12145
2017-06-19Merge branch 'moved-submodules' into 'master'Rémy Coutable
repository: index submodules by path See merge request !10798
2017-06-19Merge branch 'reduce-sidekiq-wait-timings' into 'master'Rémy Coutable
Reduce wait timings for Sidekiq jobs See merge request !12270
2017-06-19Merge branch '30725-reset-user-limits-when-unchecking-external-user' into ↵Douwe Maan
'master' Ensures default user limits when external user is unchecked Closes #30725 See merge request !12218
2017-06-19Use color inputs for broadcast messagesAnnabel Dunstone Gray
2017-06-19Reduce wait timings for Sidekiq jobsYorick Peterse
This reduces the time spent waiting for Sidekiq jobs to complete in JobWaiter, and reduces the sleep interval when trying to acquire the lease for refreshing authorizations. These changes should reduce the time spent just waiting for a lock, which we seem to be spending most time in when running the AuthorizedProjectsWorker.
2017-06-19[#27697] Make the arrow icons consistent in dropdownTM Lee
2017-06-19Merge branch 'add-since-and-until-params-to-issuables' into 'master'Rémy Coutable
add created_after and created_before params to issuables Closes #32901 See merge request !12151
2017-06-19Merge branch '33461-display-user-id' into 'master'Grzegorz Bizon
Display own user id in account settings pages Closes #33461 See merge request !12141
2017-06-19Merge branch '26212-upload-user-avatar-trough-api' into 'master'Rémy Coutable
Accept image for avatar in user API Closes #26212 See merge request !12143
2017-06-19Merge branch 'issue_33205' into 'master'Sean McGivern
Fix API bug accepting wrong merge requests parameters Closes #33205 See merge request !12173
2017-06-19add since and until params to issuablesKyle Bishop
2017-06-17Merge branch 'mr-widget-memory-usage-tech-debt-fix' into 'master'Phil Hughes
Changed utilites imports from ~ to relative paths Closes #33485 See merge request !12026
2017-06-16Disable fork button on project limitvanadium23
2017-06-16Accept image for avatar in user APIvanadium23
2017-06-16Fixed overflow on mobile screens for the slash commandsJose Ivan Vargas Lopez
2017-06-16Fix API bug accepting wrong merge requests parametersFelipe Artur
2017-06-16repository: index submodules by pathDavid Turner
Submodules have a name in the configuration, but this name is simply the path at which the submodule was initially checked in (by default -- the name is totally arbitrary). If a submodule is moved, it retains its original name, but its path changes. Since we discover submodules inside trees, we have their path but not necessarily their name. Make the submodules() function return the submodule hash indexed by path rather than name, so that renamed submodules can be looked up. Signed-off-by: David Turner <novalis@novalis.org>
2017-06-16Ensures default user limits when external user is uncheckedTiago Botelho
2017-06-16Changed utilites imports from ~ to relative pathsJose Ivan Vargas
2017-06-16Merge branch '27070-rename-slash-commands-to-quick-actions' into 'master'Sean McGivern
Rename "Slash commands" to "Quick actions" Closes #27070 See merge request !11811
2017-06-16Order issues by priorityFelipe Artur
2017-06-16Remove Drag and drop and sorting from milestone viewFelipe Artur
2017-06-16Merge branch 'docs/branches' into 'master'Marcia Ramos
Document the Delete Merged Branches functionality See merge request !12217
2017-06-16Create responsive mobile view for pipelines tableAnnabel Dunstone Gray
2017-06-16Refactor ProjectsFinder#init_collectionYorick Peterse
This changes ProjectsFinder#init_collection so it no longer relies on a UNION. For example, to get starred projects of a user we used to run: SELECT projects.* FROM projects WHERE projects.pending_delete = 'f' AND ( projects.id IN ( SELECT projects.id FROM projects INNER JOIN users_star_projects ON users_star_projects.project_id = projects.id INNER JOIN project_authorizations ON projects.id = project_authorizations.project_id WHERE projects.pending_delete = 'f' AND project_authorizations.user_id = 1 AND users_star_projects.user_id = 1 UNION SELECT projects.id FROM projects INNER JOIN users_star_projects ON users_star_projects.project_id = projects.id WHERE projects.visibility_level IN (20, 10) AND users_star_projects.user_id = 1 ) ) ORDER BY projects.id DESC; With these changes the above query is turned into the following instead: SELECT projects.* FROM projects INNER JOIN users_star_projects ON users_star_projects.project_id = projects.id WHERE projects.pending_delete = 'f' AND ( EXISTS ( SELECT 1 FROM project_authorizations WHERE project_authorizations.user_id = 1 AND (project_id = projects.id) ) OR projects.visibility_level IN (20,10) ) AND users_star_projects.user_id = 1 ORDER BY projects.id DESC; This query in turn produces a better execution plan and takes less time, though the difference is only a few milliseconds (this however depends on the amount of data involved and additional conditions that may be added).
2017-06-16Merge branch 'translation/9.3/french' into 'master'Rémy Coutable
Add French translations for Cycle Analytics, Project, and Repository pages. Closes #32998 and #33140 See merge request !12200
2017-06-16Speed up used languages calculation on charts pageSean McGivern
We removed calls from our code to Rugged::Repository#fetch_attributes: <https://gitlab.com/gitlab-org/gitlab_git/commit/340e111e040ae847b614d35b4d3173ec48329015> However, we didn't remove calls from within Linguist. This method is only called when calculating the languages for a repository on the Charts page: <https://github.com/github/linguist/blob/v4.7.0/lib/linguist/lazy_blob.rb#L33-L36> We can safely use our own Gitlab::Git::Attributes here. On staging, for the GitLab CE repo, this makes the calculation take about a third of the time: # Before Benchmark.realtime do Linguist::Repository.new(repository.rugged, repository.rugged.head.target_id).languages end #=> 23.67193900188431 # After Benchmark.realtime do Linguist::Repository.new(repository.rugged, repository.rugged.head.target_id).languages end #=> 8.945212290156633
2017-06-16Update CHANGELOG.md for 9.2.6Timothy Andrew
[ci skip]
2017-06-16Merge branch 'karma-headless-chrome-redux' into 'master'Tim Zallmann
Replace PhantomJS with Chrome in Karma test runner (2nd attempt) Closes #33633 See merge request !12144
2017-06-16Adding changelogErwan GEORGET
2017-06-15Merge branch 'feature/unify-email-layouts' into 'master'Robert Speicher
Unify email layouts: devise emails See merge request !10483
2017-06-15Rename "Slash commands" to "Quick actions"Eric Eastwood
Fix https://gitlab.com/gitlab-org/gitlab-ce/issues/27070 Deprecate "chat commands" in favor of "slash commands" We looked for things like: - `slash commmand` - `slash_command` - `slash-command` - `SlashCommand`
2017-06-15#13336 - display multiple messages in both the UI and git outputMike Ricketts
2017-06-15Merge branch '23998-blame-age-map' into 'master'Annabel Dunstone Gray
Add age color mapping to blame view Closes #23998 See merge request !7198
2017-06-15Merge branch 'fix-manual-actions' into 'master'Grzegorz Bizon
Do not show manual actions that cannot be run Closes #32380 See merge request !12121
2017-06-15Merge branch 'instrument-merge-request-diff-load-commits' into 'master'Sean McGivern
Instrument MergeRequestDiff#load_commits See merge request !12162
2017-06-15Merge branch 'dm-fix-parser-cache' into 'master'Sean McGivern
Don't return nil for missing objects from parser cache See merge request !12168