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
path: root/app
AgeCommit message (Collapse)Author
2018-04-23Removes hover animation from mini pipeline graph42769-remove-hover-animationFilipa Lacerda
2018-04-23Merge branch '43466-make-auto-devops-settings-first-class' into 'master'Filipa Lacerda
Resolve "Make Auto DevOps settings first class" Closes #43466 See merge request gitlab-org/gitlab-ce!18321
2018-04-23Merge branch 'ce-5514-fix-epic-collapsed-sidebar-label-click' into 'master'Phil Hughes
CE Backport: Reveal labels dropdown when labels icon is clicked on collapsed Epic sidebar See merge request gitlab-org/gitlab-ce!18255
2018-04-23Merge branch 'dz-add-2fa-filter-admin-api' into 'master'Douwe Maan
Add 2FA filter to users API for admins only See merge request gitlab-org/gitlab-ce!18503
2018-04-23Emit `toggleCollapse`, `onDropdownClose` on componentKushal Pandya
2018-04-23Add 2FA filter to users API for admins onlyDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2018-04-23Emit `onValueClick` event on component when container is clickedKushal Pandya
2018-04-23Flowdock uses Gitaly, not GritZeger-Jan van de Weg
Prior to this change, Flowdock used Grit to get the difference between commits and post that to the remote service. This required direct path access, which doesn't work with Gitaly. Fixes gitlab-org/gitaly#1113
2018-04-22Removes 'no job log' from trace actionMayra Cabrera
'No job log' message is no longer necessary since we returned an image when a build does not have a trace. See https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/18278 for more details Closes #45625
2018-04-20Changed anchor not to have the js prefix, add i18nJose Ivan Vargas
2018-04-20Create autodevops settings sectionsJose Ivan Vargas
2018-04-20Atomic internal ids for all modelsAndreas Brandl
2018-04-20Merge branch '42803-show-new-branch-mr-button' into 'master'Sean McGivern
Resolve "Show new branch/merge request button even if a branch / merge request already exists" Closes #42803 See merge request gitlab-org/gitlab-ce!17712
2018-04-20Resolve "Text from the diff is showing within a table header inside the ↵Simon Knox
discussion after the discussion is resolved"
2018-04-20Merge branch 'issue_45435' into 'master'Phil Hughes
Fix issues without links when added from boards new issue modal Closes #45435 See merge request gitlab-org/gitlab-ce!18460
2018-04-19Refactored activity calendarJose
2018-04-19Fix issues without links when added from boards new issue modalFelipe Artur
2018-04-19Respect visibility options and description when importing project from templateFrancisco Javier López
2018-04-19Resolve "Improve tooltips of collapsed sidebars"Dennis Tang
2018-04-19Merge branch '45507-fix-repository-archive-url' into 'master'Douwe Maan
Fix specifying a non-default ref when requesting an archive using the legacy URL Closes #45507 See merge request gitlab-org/gitlab-ce!18468
2018-04-19Merge branch 'sh-fix-award-emoji-nplus-one-participants' into 'master'Yorick Peterse
Fix N+1 queries when loading participants for a commit note Closes #45526 See merge request gitlab-org/gitlab-ce!18471
2018-04-19Merge branch 'blackst0ne-rails5-update-user-manageable-groups' into 'master'Yorick Peterse
[Rails5] Fix `User#manageable_groups` See merge request gitlab-org/gitlab-ce!18330
2018-04-19Moves Uniquify counter in the initializerJacopo
2018-04-19Uses Uniquify to calculate Issue#suggested_branch_nameJacopo
2018-04-19Shows new branch/mr button even when branch existsJacopo
2018-04-19Fix specifying a non-default ref when requesting an archive using the legacy URLNick Thomas
2018-04-19Merge branch 'ide-diff-marker-cache-fix' into 'master'Tim Zallmann
Fixed IDE diff markers being cached too long See merge request gitlab-org/gitlab-ce!18311
2018-04-19Merge branch 'ide-staged-changes' into 'master'Tim Zallmann
Added staged files state to IDE Closes #44842, #44844, and gitlab-ee#4541 See merge request gitlab-org/gitlab-ce!17898
2018-04-19Fix direct_upload when records with null file_store are usedKamil Trzciński
Old records have a null value of file_store column. This causes the problems with current direct_upload implementation, as this makes it to choose Store::REMOTE instead of Store::LOCAL. This change moves the store save when change saving the object.
2018-04-19Merge branch '41059-calculate-artifact-size-more-efficiently' into 'master'Grzegorz Bizon
Resolve "Calculating total size of a project's CI artifacts" Closes #41059 See merge request gitlab-org/gitlab-ce!17839
2018-04-19Update ProjectStatistics#build_artifacts_size synchronously without summing ↵Dylan Griffith
(#41059) Previously we scheduled a worker to just some this but we were running into performance issues when the build table was getting too large. So now we've updated the code such that this column is updated immediately and incremented/decremented by the correct amount whenever artifacts are created or deleted. We've also added the performance optimization that we do not update this statistic if a project is deleted because it could result in many updates for a project with many builds.
2018-04-19Fix label links update on project transferJan Provaznik
2018-04-19Resolve "Get rid of branch element all in bottom bar in WEB IDE"André Luís
2018-04-19Merge branch 'master' into ide-staged-changesPhil Hughes
2018-04-19Resolve "Show `failure_reason` in jobs view content section"Mayra Cabrera
2018-04-19Merge branch '5320-fix-gitlab-features-env-var' into 'master'Grzegorz Bizon
Get GITLAB_FEATURES from Project#licensed_features instead of Namespace#features (#5320) See merge request gitlab-org/gitlab-ce!18189
2018-04-19Fix N+1 queries when loading participants for a commit noteStan Hu
We saw about 10,000 SQL queries for some commits in the NewNoteWorker, which stalled the Sidekiq queue for other new notes. The notification service took up to 8 minutes to process the commits. Avoiding this N+1 query brings the time down significantly. Closes #45526
2018-04-19[Rails5] Fix `User#manageable_groups`blackst0ne
In `arel 7.0` (`7.1.4` version is used for rails5) there were introduced some changes that break our code in the `User#manageable_groups` method. The problem is that `arel_table[:id].in(Arel::Nodes::SqlLiteral)` generates wrong `IN ()` construction. The selection for `IN` is missing: => "\"namespaces\".\"id\" IN (0)" That caused such spec errors for the `rails5` branch: ``` 4) User groups with child groups #manageable_groups does not include duplicates if a membership was added for the subgroup Failure/Error: expect(user.manageable_groups).to contain_exactly(group, subgroup) expected collection contained: [#<Group id:232 @group29>, #<Group id:234 @group29/group30>] actual collection contained: [] the missing elements were: [#<Group id:232 @group29>, #<Group id:234 @group29/group30>] # ./spec/models/user_spec.rb:699:in `block (5 levels) in <top (required)>' # ./spec/spec_helper.rb:188:in `block (2 levels) in <top (required)>' # /var/lib/gems/2.3.0/gems/rspec-retry-0.4.6/lib/rspec/retry.rb:112:in `block in run' # /var/lib/gems/2.3.0/gems/rspec-retry-0.4.6/lib/rspec/retry.rb:101:in `loop' # /var/lib/gems/2.3.0/gems/rspec-retry-0.4.6/lib/rspec/retry.rb:101:in `run' # /var/lib/gems/2.3.0/gems/rspec-retry-0.4.6/lib/rspec_ext/rspec_ext.rb:12:in `run_with_retry' # /var/lib/gems/2.3.0/gems/rspec-retry-0.4.6/lib/rspec/retry.rb:30:in `block (2 levels) in setup' ``` This commit changes `User#manageable_groups` in the way to drop the usage of `Arel::Nodes::SqlLiteral` and adds usage of raw SQL query. This change should be updated when we're migrated to Rails 5.2 because arel was fixed in `9.0.0` (which is used in Rails 5.2).
2018-04-19Resolve "View labels when editing labels in sidebar and board sidebar"André Luís
2018-04-18Merge branch 'revert-goldiloader' into 'master'Robert Speicher
Revert the addition of goldiloader See merge request gitlab-org/gitlab-ce!18458
2018-04-18Merge branch 'bvl-shared-groups-on-group-page' into 'master'Rémy Coutable
Fix issues on groups group trees Closes #42407 See merge request gitlab-org/gitlab-ce!18390
2018-04-18Fix Custom hooks are not triggered by UI wiki editFrancisco Javier López
2018-04-18Revert "Don't include projects shared as group-descendants"Bob Van Landuyt
This reverts commit 2c3c5b35549185080296670cfe6710aa80f99944. Revisit this after https://gitlab.com/gitlab-org/gitlab-ce/issues/45441
2018-04-18Recover from errors when a parent is not preloadedBob Van Landuyt
2018-04-18Revert the addition of goldiloaderYorick Peterse
This reverts the addition of the "goldiloader" Gem and all use of it. While this Gem is very promising it's causing a variety of problems on GitLab.com due to it eager-loading too much data in places where we don't expect/can handle this. At least for the time being this means we have to go back to manually fixing N+1 query problems, but at least those should not cause a negative impact on availability.
2018-04-18updates to variable names to make more sensePhil Hughes
fixed up duplicate is-collapsed classes
2018-04-18Merge branch 'rfc-3676-mailsig' into 'master'Sean McGivern
set proper signature marker in mails Closes #43617 See merge request gitlab-org/gitlab-ce!17979
2018-04-18Merge branch 'master' into ide-staged-changesPhil Hughes
2018-04-18Merge branch '45446-new-sha-widget-breaks-on-new-merge-request' into 'master'Filipa Lacerda
Fix regression around new SHA widget in "New Merge Request" Screen Closes #45446 See merge request gitlab-org/gitlab-ce!18422
2018-04-18Merge branch 'ide-commit-box-highlight' into 'master'Filipa Lacerda
Improve web IDE commit input Closes #44832 See merge request gitlab-org/gitlab-ce!18389