- 09 Feb, 2016 26 commits
-
-
Robert Speicher authored
Freeze constants in Gitlab::Git See merge request !1730
-
Douwe Maan authored
Smarter flushing of branch statistics caches This basically ensures we only flush caches of branches whenever we really have to. See commit c514f8b850219cd3e5526e73e1d00e6729e2b466 for the details. cc @joshfng @rspeicher See merge request !2769
-
Robert Speicher authored
-
Robert Speicher authored
-
Douwe Maan authored
Change default smpt port to 465 (default smtps port)
-
Yorick Peterse authored
Instead of flushing the behind/ahead counts for all branches upon every push we now only flush the cache of branches that actually need to have these statistics recalculated. There are now basically 2 scenarios and their effects: 1. A user pushes a commit to the default branch, this results in the cache being flushed for all branches. 2. A user pushes to a non default branch, this results in _only_ the cache for that branch being flushed. The existing code (Repository#expire_cache) remains backwards compatible with the previous behaviour, the new behaviour is only applied when a branch name is passed as an argument. This ensures that when for example a project is deleted the cache for all branches is flushed.
-
Douwe Maan authored
Add index for snippet's updated_at @DouweM We are ordering by `updated_at` but there is no index. cc @yorickpeterse See merge request !2768
-
Douwe Maan authored
Expose MergeRequest#merge_status _Originally opened at !2478 by @develop7._ - - - This enables API users to see whether a merge request can be merged without conflicts. See merge request !2756
-
Douwe Maan authored
-
Douwe Maan authored
Add option to include the sender name in body of Notify email _Originally opened at !2495 by @huacnlee._ - - - Fixes #7824. See merge request !2767
-
Douwe Maan authored
Add an option to supply root email through an environmental variable. _Originally opened at !2499 by @3kami3._ --- Add an option to supply root email through an environmental variable. See merge request !2751
-
Valery Sizov authored
-
Douwe Maan authored
-
Douwe Maan authored
Add a tooltip to the stuck warning build symbol We want to give people an idea of what is wrong with their build, we do this by adding a tooltip telling them where they can find more information about their broken builds. Fixes #10919 See merge request !2680
-
Jason Lee authored
-
Douwe Maan authored
split gitlab-ci builds for ruby 2.1 Added breakdown of builds for Ruby 2.1 in .gitlab-ci.yml config file. Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/13252 See merge request !2746
-
Douwe Maan authored
Allow limited Markdown in Broadcast Messages Closes #11853 See merge request !2695
-
Grzegorz Bizon authored
-
Grzegorz Bizon authored
`max_attachment_size` in `ApplicationSetting` should be present, only integers greater than zero are valid. Closes #13188
-
Douwe Maan authored
Increase project import timeout from 4 minutes to 15 minutes Many users were experiencing timeouts when we only allowed 4 minutes before a timeout. A 15 minute timeout is more than reasonable and prevents us from having to add a configuration for this. Fixes gitlab-org/gitlab-ee#246 ## Import screenshot ![Screen_Shot_2016-02-04_at_1.45.20_PM](/uploads/d9d71ec953afae31e6fbe54a8932b945/Screen_Shot_2016-02-04_at_1.45.20_PM.png) See merge request !2717
-
Douwe Maan authored
do not rename .aToM but only .atom projects in migration Sorry @DouweM forgot to add this. See https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/2651/diffs#bc35672f73f4ee025132aee428f383acdf0f755e_0_51 Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/3699 See merge request !2712
-
Valery Sizov authored
-
Valery Sizov authored
-
Yorick Peterse authored
See merge request !2752
-
Kamil Trzciński authored
Improve CI builds API specs This modifies a CI Runners Builds API, to improve performance, and add few missing examples. Extracted from !2560 (cherry-picked + extended). cc @ayufan See merge request !2698
-
Artem V. Navrotskiy authored
-
- 08 Feb, 2016 14 commits
-
-
Robert Speicher authored
Fix timeout issue for rake task gitlab:backup:create This is a fix for a database timeout which can occur when the backup create task is taking very long (1-2 hours). It seems that ActiveRecord is loosing the connection after a hour idleness and need to be reconnected before use. See merge request !2757
-
Robert Speicher authored
Limit guest access to builds Closes https://dev.gitlab.org/gitlab/gitlabhq/issues/2646 See merge request !1942
-
Robert Speicher authored
Fix CurrentSettings autoload bug in development _Originally opened at !2526 by @huacnlee._ - - - In development env, when we changed any file hit Rails reload, it will failed with this message: ``` A copy of Gitlab::CurrentSettings has been removed from the module tree but is still active ``` See merge request !2753
-
Robert Schilling authored
Fix grammar in installation requirements. Fixes #13274 See merge request !2759
-
Paul Johnson authored
Fixes #13274
-
Rémy Coutable authored
Fixed init.d script not working on OS X -s flag of su doesn't work correctly on OS X, logging in as the user and not running the requested command. By moving the bash shell init inside the su command we avoid the issue Fixes Issue #3309 See merge request !1728
-
3kami3 authored
-
Jacob Vosmaer authored
suppress error in init-script while determining canonical path of gitlab_workhorse_dir fixes #12693 fixes #12954 See merge request !2697
-
Jeroen Nijhof authored
-
Rémy Coutable authored
-
Andrei Dziahel authored
-
ritave authored
-s flag of su doesn't work correctly on some systems, loging in the user and not running the requested command. By moving the bash shell init inside the su command we avoid the issue
-
Yorick Peterse authored
This caches the output of the following methods: * Repository#empty? * Repository#has_visible_content? * Repository#root_ref The cache for Repository#has_visible_content? is flushed whenever a commit is pushed to a new branch or an existing branch is removed. The cache for Repository#root_ref is only flushed whenever a user changes the default branch of a project. The cache for Repository#empty? is never explicitly flushed as there's no need for it.
-
Jason Lee authored
Error: A copy of Gitlab::CurrentSettings has been removed from the module tree but is still active
-