Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add a spec for Github::Client and revert an `if !` to `unless`38198-fetch-github-api-per-100 | Rémy Coutable | 2017-09-26 | 2 | -1/+35 |
| | | | | Signed-off-by: Rémy Coutable <remy@rymai.me> | ||||
* | Retrieve PR comments only when we know there are any | Rémy Coutable | 2017-09-26 | 2 | -20/+24 |
| | | | | | | | | | | | | The Pull Request resource doesn't include the `comments` field, while the Issue resource does. And since we're looping through all issues anyway, we can freely check if the issue is a PR and has comments and in this case only fetch comments for it. That means if you have 1000 PRs but only 200 with comments, you will do 200 API requests instead of 1000. :notbad: Signed-off-by: Rémy Coutable <remy@rymai.me> | ||||
* | Fetch 100 results when calling the GitHub API in Github::Import | Rémy Coutable | 2017-09-26 | 1 | -6/+6 |
| | | | | Signed-off-by: Rémy Coutable <remy@rymai.me> | ||||
* | Merge branch 'avatar_n_plus_one' into 'master' | Rémy Coutable | 2017-09-26 | 1 | -2/+5 |
|\ | | | | | | | | | Allow n+1s caused by avatar fetches on the project dashboard. See… See merge request gitlab-org/gitlab-ce!14475 | ||||
| * | Allow n+1s caused by avatar fetches on the project dashboard. See ↵avatar_n_plus_one | Andrew Newdigate | 2017-09-25 | 1 | -2/+5 |
| | | | | | | | | https://gitlab.com/gitlab-org/gitlab-ce/issues/38261 | ||||
* | | Merge branch 'mobile-breadcrumbs-divider' into 'master' | Annabel Dunstone Gray | 2017-09-26 | 2 | -5/+7 |
|\ \ | | | | | | | | | | | | | Fix sidebar mobile toggle button border See merge request gitlab-org/gitlab-ce!14502 | ||||
| * | | Fix sidebar mobile toggle button bordermobile-breadcrumbs-divider | Phil Hughes | 2017-09-26 | 2 | -5/+7 |
| | | | |||||
* | | | Merge branch 'doc-license-wtfpl-rejected' into 'master' | Robert Speicher | 2017-09-26 | 1 | -0/+3 |
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | WTFPL is deemed unacceptable [ci skip] See merge request gitlab-org/gitlab-ce!14485 | ||||
| * | | | WTFPL is deamed unacceptabledoc-license-wtfpl-rejected | Kim "BKC" Carlbäcker | 2017-09-25 | 1 | -0/+3 |
| | |/ | |/| | |||||
* | | | Merge branch 'dm-simple-project-avatar-url' into 'master' | Rémy Coutable | 2017-09-26 | 5 | -5/+14 |
|\ \ \ | | | | | | | | | | | | | | | | | Expose avatar_url when requesting list of projects from API with simple=true See merge request gitlab-org/gitlab-ce!14498 | ||||
| * | | | Expose avatar_url when requesting list of projects from API with simple=truedm-simple-project-avatar-url | Douwe Maan | 2017-09-26 | 5 | -5/+14 |
| | | | | |||||
* | | | | Merge branch 'dm-bitbucket-import-truncated-shas' into 'master' | Robert Speicher | 2017-09-26 | 7 | -16/+136 |
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix bug that caused merge requests with diff notes imported from Bitbucket to raise errors Closes #38100 See merge request gitlab-org/gitlab-ce!14438 | ||||
| * | | | | Add specsdm-bitbucket-import-truncated-shas | Douwe Maan | 2017-09-25 | 2 | -0/+93 |
| | | | | | |||||
| * | | | | Remove unnecessary comments | Douwe Maan | 2017-09-25 | 2 | -4/+2 |
| | | | | | |||||
| * | | | | Add changelog | Douwe Maan | 2017-09-25 | 1 | -0/+6 |
| | | | | | |||||
| * | | | | Properly compare diff refs and diff positions when shas are truncated | Douwe Maan | 2017-09-25 | 3 | -13/+31 |
| | | | | | |||||
| * | | | | Expand truncated Bitbucket pull request source/target SHA if possible | Douwe Maan | 2017-09-25 | 1 | -2/+7 |
| | |/ / | |/| | | |||||
* | | | | Merge branch 'expose-last-pipeline-for-a-commit' into 'master' | Rémy Coutable | 2017-09-26 | 6 | -2/+42 |
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Expose last pipeline details in API response when getting a single commit Closes #35692 See merge request gitlab-org/gitlab-ce!13521 | ||||
| * | | | | Expose last pipeline details in API response when getting a single commit | Mehdi Lahmam | 2017-09-26 | 6 | -2/+42 |
| | | | | | | | | | | | | | | | | | | | | Closes #35692. | ||||
* | | | | | Merge branch 'remove-temporary-ci-index' into 'master' | Yorick Peterse | 2017-09-26 | 3 | -1/+32 |
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | Remove a temporary index on ci_builds meant only for earlier migration See merge request gitlab-org/gitlab-ce!14378 | ||||
| * | | | | | Remove an unneeded index on ci_builds left in some databasesremove-temporary-ci-index | Greg Stark | 2017-09-26 | 3 | -1/+32 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Migration 20170919211300_remove_temporary_ci_builds_index.rb created a temporary partial index and tried to drop it at the end of the migration. In some circumstances apparently it failed to drop the index and it ended up in our schema.rb. This accidentally failed to fail due to a bug in the regular expression for partial indexes which caused the index creation in schema.rb to be ignored. Now that that's fixed we could be resurrecting this zombie index from the past in some but not all databases. Add a migration to drop this index if it's present to reconcile this discrepancy. | ||||
* | | | | | | Merge branch 'ueberbit/gitlab-ce-omniauth-azure-oauth2' into 'master' | Douwe Maan | 2017-09-26 | 3 | -6/+9 |
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Update omniauth-azure-oauth2 to 0.0.9 (Support Office 365 Germany) See merge request gitlab-org/gitlab-ce!14501 | ||||
| * | | | | | | Update omniauth-azure-oauth2 to 0.0.9 (Support Office 365 Germany)ueberbit/gitlab-ce-omniauth-azure-oauth2 | Florian Weber | 2017-09-26 | 3 | -6/+9 |
| | |_|_|_|/ | |/| | | | | | | | | | | | | | | | | Signed-off-by: Rémy Coutable <remy@rymai.me> | ||||
* | | | | | | Merge branch 'changes-bar-dynamic-placeholder' into 'master' | Filipa Lacerda | 2017-09-26 | 4 | -40/+83 |
|\ \ \ \ \ \ | |_|_|/ / / |/| | | | | | | | | | | | | | | | | | Dynamically create offset for sticky bar See merge request gitlab-org/gitlab-ce!14280 | ||||
| * | | | | | remove the sticky el from the test DOM after each testchanges-bar-dynamic-placeholder | Phil Hughes | 2017-09-25 | 1 | -2/+6 |
| | | | | | | |||||
| * | | | | | refactor tests to actually test browser behaviour | Phil Hughes | 2017-09-25 | 2 | -49/+38 |
| | | | | | | |||||
| * | | | | | removed commented out CSS | Phil Hughes | 2017-09-25 | 2 | -6/+1 |
| | | | | | | |||||
| * | | | | | spec fixes | Phil Hughes | 2017-09-22 | 1 | -0/+6 |
| | | | | | | |||||
| * | | | | | fixed and added specs for removing placeholder element | Phil Hughes | 2017-09-22 | 1 | -3/+37 |
| | | | | | | |||||
| * | | | | | Dynamically create offset for sticky bar | Phil Hughes | 2017-09-22 | 2 | -12/+27 |
| | | | | | | |||||
* | | | | | | Merge branch '34371-cycle-analitcs-components-vue' into 'master' | Phil Hughes | 2017-09-26 | 19 | -433/+400 |
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Moves cycle analytics components into vue files See merge request gitlab-org/gitlab-ce!14464 | ||||
| * | | | | | | Moves cycle analytics components into vue files | Filipa Lacerda | 2017-09-26 | 19 | -433/+400 |
|/ / / / / / | |||||
* | | | | | | Merge branch '38374-add-note-for-upgrading-helm-chart-prior-to-1-3-5-docs' ↵ | Achilleas Pipinellis | 2017-09-26 | 1 | -1/+16 |
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | into 'master' Add note for upgrading Helm chart prior to 1.3.5 - docs Closes #38374 See merge request gitlab-org/gitlab-ce!14491 | ||||
| * | | | | | Add note for upgrading Helm chart prior to 1.3.5 - docs | Joshua Lambert | 2017-09-26 | 1 | -1/+16 |
|/ / / / / | |||||
* | | | | | Merge branch 'remove-old-nav-styles' into 'master' | Phil Hughes | 2017-09-26 | 102 | -545/+86 |
|\ \ \ \ \ | |_|/ / / |/| | | | | | | | | | | | | | | Remove old nav code - Part 1 See merge request gitlab-org/gitlab-ce!14379 | ||||
| * | | | | Fix UI bugsremove-old-nav-styles | Annabel Dunstone Gray | 2017-09-25 | 3 | -12/+15 |
| | | | | | |||||
| * | | | | Fix specs | Annabel Dunstone Gray | 2017-09-25 | 6 | -6/+4 |
| | | | | | |||||
| * | | | | Remove all old sub nav bars | Annabel Dunstone Gray | 2017-09-25 | 74 | -324/+5 |
| | | | | | |||||
| * | | | | Combine all search releated CSS | Annabel Dunstone Gray | 2017-09-25 | 2 | -110/+47 |
| | | | | | |||||
| * | | | | Remove unused admin subnavs | Annabel Dunstone Gray | 2017-09-25 | 17 | -110/+36 |
| | | | | | |||||
| * | | | | Move new nav into main CSS folder | Annabel Dunstone Gray | 2017-09-25 | 5 | -6/+2 |
| | | | | | |||||
* | | | | | Merge branch 'winh-user-dropdown-nowrap' into 'master' | Phil Hughes | 2017-09-26 | 1 | -0/+8 |
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Avoid wrapping users in dropdown Closes #38077 See merge request gitlab-org/gitlab-ce!14410 | ||||
| * | | | | | Avoid wrapping users in dropdownwinh-user-dropdown-nowrap | Winnie Hellmann | 2017-09-21 | 1 | -0/+8 |
| | | | | | | |||||
* | | | | | | Merge branch 'document-background-migration-stealing' into 'master' | Yorick Peterse | 2017-09-26 | 1 | -1/+28 |
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Document manual cleanup after background migration stealing See merge request gitlab-org/gitlab-ce!14477 | ||||
| * | | | | | | Document manual cleanup after background migration stealingdocument-background-migration-stealing | Sean McGivern | 2017-09-25 | 1 | -1/+28 |
| | | | | | | | |||||
* | | | | | | | Merge branch 'fix-locked-shared-runners-problem' into 'master' | Kamil Trzciński | 2017-09-26 | 3 | -52/+24 |
|\ \ \ \ \ \ \ | |_|_|_|_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix locked shared runners problem Closes gitlab-runner#2782 See merge request gitlab-org/gitlab-ce!14483 | ||||
| * | | | | | | Add CHANGELOG entryfix-locked-shared-runners-problem | Tomasz Maczukin | 2017-09-25 | 1 | -0/+5 |
| | | | | | | | |||||
| * | | | | | | Fix locked shared runners problem | Tomasz Maczukin | 2017-09-25 | 2 | -52/+19 |
| | | | | | | | |||||
* | | | | | | | Merge branch 'patch-2' into 'master' | Douwe Maan | 2017-09-26 | 1 | -1/+1 |
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Update gitlab-shell to 5.9.2 See merge request gitlab-org/gitlab-ce!14446 | ||||
| * | | | | | | | Update gitlab-shell to 5.9.2 | Jonathon Reinhart | 2017-09-22 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | See gitlab-shell!169 |