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
2015-11-10Implement Build ArtifactsKamil Trzcinski
- Offloads uploading to GitLab Workhorse - Use /authorize request for fast uploading - Added backup recipes for artifacts - Support download acceleration using X-Sendfile
2015-11-10Merge remote-tracking branch 'origin/release-notes'Dmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-11-10Merge branch 'master' into 'master' Achilleas Pipinellis
Change documentation of converting a MySQL-Database to a Postgres one The instructions were missleading. See -> https://gitlab.com/gitlab-org/gitlab-ce/issues/2904 closes #2904 See merge request !1549
2015-11-09Merge branch 'stanhu/gitlab-ce-bump-gitlab-git-and-other-gems'Douwe Maan
2015-11-09Update monthly release issue templateRobert Speicher
[ci skip]
2015-11-09Update CHANGELOGRobert Speicher
[ci skip]
2015-11-09Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ceDmitriy Zaporozhets
2015-11-09Merge branch 'fix-incoming-email-default' into 'master' Robert Speicher
Fix incoming email config defaults Fixes #3377. See merge request !1766
2015-11-09Upgrade gitlab_git to 7.2.20 and rugged to 0.23.3.Stan Hu
Switch back to github-linguist
2015-11-09Merge branch 'accept_mr_btn_ci_status' into 'master' Dmitriy Zaporozhets
Merge button has color from CI status This MR closes #3313 I'am not realy sure about the color for the skipped status (red)... UI changes: ![accpet-mr-ci-failed](/uploads/c03970c468b89e38ed2c5e3171f53505/accpet-mr-ci-failed.png) ![accpet-mr-ci-skipped](/uploads/f29cbc69e77cc95b33522135b327cc51/accpet-mr-ci-skipped.png) ![accpet-mr-ci-pending](/uploads/79612a66fd497174e00bd348c9cba69c/accpet-mr-ci-pending.png) ![accpet-mr-ci-success](/uploads/4b601e6d02b860db5ff53c47c98f3206/accpet-mr-ci-success.png) See merge request !1761
2015-11-09Only load rblineprof when actually neededYorick Peterse
This ensures the application can still boot when the "development" group is not available.
2015-11-09Add missing param and title for tagDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-11-09Refactor release code a bitDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-11-09Merge branch 'sherlock' into 'master' Yorick Peterse
See merge request !1749
2015-11-09Added changelog entry for SherlockYorick Peterse
2015-11-09Truncate transaction paths to 70 charactersYorick Peterse
This ensures that long URLs don't completely mess up the layout of the table.
2015-11-09Track the amount of times views are renderedYorick Peterse
2015-11-09Added navigation link to SherlockYorick Peterse
2015-11-09Fixed Hash key style in Sherlock::Query specYorick Peterse
2015-11-09Updated profiling guides for SherlockYorick Peterse
2015-11-09Added specs and source documentation for SherlockYorick Peterse
2015-11-09Added Sherlock, a custom profiling tool for GitLabYorick Peterse
Sherlock will be a new GitLab specific tool for measuring the performance of Rails requests (and SideKiq jobs at some point). Some of the things that are currently tracked: * SQL queries along with their timings, backtraces and query plans (using "EXPLAIN ANALYZE" for PostgreSQL and regular "EXPLAIN" for MySQL) * Timings of application files (including views) on a per line basis * Some meta data such as the request method, path, total duration, etc More tracking (e.g. Rugged or gitlab-shell timings) might be added in the future. Sherlock will replace any existing tools we have used so far (e.g. active_record_query_trace and rack-mini-profiler), hence the corresponding Gems have been removed from the Gemfile. Sherlock can be enabled by starting Rails as following: ENABLE_SHERLOCK=1 bundle exec rails s Recorded transactions can be found at `/sherlock/transactions`.
2015-11-09Fix incoming email config defaultsDouwe Maan
2015-11-09Merge pull request #9814 from Totof6942/patch-ui-graphs-headerDmitriy Zaporozhets
Apply new header design for project graphs page
2015-11-09Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ceDmitriy Zaporozhets
2015-11-09Merge branch 'fix-commits-manual-merge' into 'master' Douwe Maan
Fix bug where manually merged branches in a MR would end up with an empty diff This bug manifested in 8.1 with the refactoring of `RefreshService`. Here's what happens: 1. User create a new branch `foo`. 2. User creates a merge request for `foo`. 3. User merges `foo` into `master` by hand. 4. `RefreshService` reloads the merge request. Since `master` is equivalent to `foo`, this results in an empty diff. 5. `RefreshService` then closes the MR. This wasn't an issue when you use the normal "Accept Merge Request" flow because the act of clicking the button closes the merge request, so step 4 never happens. Closes #3314 See merge request !1758
2015-11-09Merge pull request #9756 from Soullivaneuh/patch-1Jeroen van Baarsen
Add GitLabCI code coverage regex sample for PHPUnit
2015-11-09Merge branch 'shared_runners' into 'master' Kamil TrzciƄski
Enable shared runners for all new projects This adds Admin Setting option to enable shared runners for all new projects, and by default it is set to true. /cc @dzaporozhets @sytses See merge request !1738
2015-11-09Add GitLabCI code coverage regex sample for PHPUnitSullivan SENECHAL
2015-11-09Fix testsKamil Trzcinski
2015-11-08Fix typo.Christophe Poulette
2015-11-08Fix typoChristophe Poulette
2015-11-08Apply new design for project graphs pageChristophe Poulette
2015-11-08Merge pull request #9813 from axilleas/fix_piwik_templateJeroen van Baarsen
Update piwik template
2015-11-08Update piwik templateAchilleas Pipinellis
2015-11-08Merge branch 'markdown-form-hint' into 'master' Dmitriy Zaporozhets
Render same markdown hint for issue, merge request, wiki and comment forms Fixes internal issue https://dev.gitlab.org/gitlab/gitlabhq/issues/2595 Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> See merge request !1763
2015-11-07Render same markdown hint for issue, merge request, wiki and comment formsDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-11-07Merge pull request #9782 from gitlabhq/jvanbaarsen-patch-1Robert Schilling
Fixed markdown issue in PROCESS.md
2015-11-07Fixed markdown issue in PROCESS.mdJeroen van Baarsen
2015-11-07Merge pull request #9812 from chrspeich/hide-tabs-lone-auth-providerJeroen van Baarsen
Hide tab-bar in login-box when only one tabs is shown.
2015-11-07Hide tab-bar in login-box when only one tabs is shown.Christian Speich
2015-11-07Merge branch 'small-ui-improvements' into 'master' Dmitriy Zaporozhets
Small UI improvements to merge request page Make gray block under tabs identical height. Also same height have blocks on pages like `Groups` etc. So this improvement is targeted for consistency in UI too Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> Fixes internal issues * https://dev.gitlab.org/gitlab/gitlabhq/issues/2591 * https://dev.gitlab.org/gitlab/gitlabhq/issues/2592 cc @DouweM See merge request !1759
2015-11-07Merge button has color from CI statusBaldinof
2015-11-06Add spec for manual merge of merge requestStan Hu
2015-11-06Small UI improvements to merge request pageDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-11-06Better englishDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-11-06Add tests to release notes featureDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-11-06Add association and validation for Release modelDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-11-06Small UI improvements to new git tag pageDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-11-06Merge pull request #9807 from SkySymbol/fix_line_orderRobert Schilling
fix line order in installation docs