- 30 Oct, 2017 19 commits
-
-
Francisco Javier López authored
-
Douwe Maan authored
Fix 500 error for old (somewhat) MRs Closes #36540 See merge request gitlab-org/gitlab-ce!14945
-
AlexWayfer authored
-
Sean McGivern authored
Upgrade Gitaly to v0.50.0 See merge request gitlab-org/gitlab-ce!15050
-
Yorick Peterse authored
Merge branch '39054-activerecord-statementinvalid-pg-querycanceled-error-canceling-statement-due-to-statement-timeout' into 'master' Resolve "ActiveRecord::StatementInvalid: PG::QueryCanceled: ERROR: canceling statement due to statement timeout" Closes #39054 See merge request gitlab-org/gitlab-ce!15063
-
Achilleas Pipinellis authored
Add docs for backing up to Google Cloud Storage See merge request gitlab-org/gitlab-ce!15074
-
Achilleas Pipinellis authored
Add missing circuitbreaker metrics to prometheus documentation See merge request gitlab-org/gitlab-ce!15062
-
Achilleas Pipinellis authored
-
Grzegorz Bizon authored
Ci::Build tag is a trait instead of an own factory See merge request gitlab-org/gitlab-ce!15077
-
Sean McGivern authored
Fix widget of locked merge requests not being presented See merge request gitlab-org/gitlab-ce!15069
-
Oswaldo Ferreira authored
-
Zeger-Jan van de Weg authored
Minor annoyance of mine, and there were a couple of things wrong, for example: 1. Switching on a property is just a trait 2. It didn't inherrit from its parent Find and replace through the code based fixed all occurances.
-
Phil Hughes authored
[CE backport] Saved configuration for issue board See merge request gitlab-org/gitlab-ce!15009
-
Oswaldo Ferreira authored
-
Sean McGivern authored
Use the correct project visibility in system hooks Closes #39496 See merge request gitlab-org/gitlab-ce!15065
-
Douwe Maan authored
grab the correct username when confirming secondary email Closes #39366 See merge request gitlab-org/gitlab-ce!15010
-
Bob Van Landuyt authored
-
Lin Jen-Shin authored
-
Filipa Lacerda authored
Remove Autosave class from global namespace See merge request gitlab-org/gitlab-ce!14856
-
- 29 Oct, 2017 1 commit
-
-
Oswaldo Ferreira authored
-
- 28 Oct, 2017 1 commit
-
-
Brett Walker authored
-
- 27 Oct, 2017 19 commits
-
-
Marcia Ramos authored
Update docs on creating MRs See merge request gitlab-org/gitlab-ce!14982
-
Oswaldo Ferreira authored
-
Rémy Coutable authored
Fetch the merged branches at once. Checking it one by one in the view. We don't cache this yet because this would already much improve the performance. A naive test against a particularly large repository: ``` ruby begin now = Time.now branches.map{ |b| r.merged_to_root_ref?(b.name) } Time.now - now end # 8.265830782 ``` Around 10 times faster: ``` ruby begin now = Time.now r.merged_branches(branches.map(&:name)) Time.now - now end # 0.807405397 ``` This should make the branches page usable. See merge request gitlab-org/gitlab-ce!14729
-
Lin Jen-Shin (godfat) authored
-
Brett Walker authored
-
Rémy Coutable authored
Move doc/development/ee_features.md to CE See merge request gitlab-org/gitlab-ce!15066
-
Brett Walker authored
-
Lin Jen-Shin authored
-
Sean McGivern authored
Cache commits on the repository model See merge request gitlab-org/gitlab-ce!14863
-
Sean McGivern authored
Avoid using Rugged in Gitlab::Git::Wiki#preview_slug See merge request gitlab-org/gitlab-ce!15054
-
Sean McGivern authored
For MRs with many thousands of commits, `SELECT DISTINCT(sha)` will be very slow. What we can't do to fix this: 1. Add an index. Postgres won't use it for DISTINCT without a lot of ceremony. 2. Do the `uniq` in Ruby. That can still be very slow with hundreds of thousands of commits. 3. Use a subquery. We haven't removed the `st_commits` column yet, but we will soon. Until 3 is available to us, we can just do 2, but also add a limit clause. There is no ordering, so this may return different results, but our goal with these MRs is just to get them to load, so it's not a huge deal.
-
Brett Walker authored
-
Fatih Acet authored
Add configurable option to display username in user avatar link component See merge request gitlab-org/gitlab-ce!14902
-
Rémy Coutable authored
Sanitize k8s default_namespace Closes #38692 See merge request gitlab-org/gitlab-ce!15053
-
Ahmad Sherif authored
-
Rémy Coutable authored
Revert "Merge branch '36670-remove-edit-form' into 'master'" Closes #39441 See merge request gitlab-org/gitlab-ce!15049
-
Bob Van Landuyt authored
-
Filipa Lacerda authored
Change default disabled merge request widget message to be more general Closes #39188 See merge request gitlab-org/gitlab-ce!14960
-
Zeger-Jan van de Weg authored
Now, when requesting a commit from the Repository model, the results are not cached. This means we're fetching the same commit by oid multiple times during the same request. To prevent us from doing this, we now cache results. Caching is done only based on object id (aka SHA). Given we cache on the Repository model, results are scoped to the associated project, eventhough the change of two repositories having the same oids for different commits is small.
-