summaryrefslogtreecommitdiff
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | Add a '?' to the custom favicon's urlsAlexis Reigel2018-06-051-2/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Without the '?' at the end of the favicon url the custom favicon (i.e. the favicons that are served through `UploadController`) are not shown in the browser. It may have something to do with how `#send_file` / `#send_data` set http headers. When serving the same icon file from the public directory everything is fine.
| * | | | | use custom favicon for ci build status faviconsAlexis Reigel2018-06-059-11/+23
| | | | | |
| * | | | | extract favicon logic to lib classAlexis Reigel2018-06-051-0/+23
| | | | | |
* | | | | | Merge branch 'sh-fix-schema-migrations-seq-scans' into 'master'Douwe Maan2018-06-071-0/+15
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | | | | | | | | | | | | | Avoid sequential scans loading schema_migrations table when loading application settings See merge request gitlab-org/gitlab-ce!19541
| * | | | | Make Gitlab::CurrentSettings.current_application_settings return cached ↵Rémy Coutable2018-06-071-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | settings early if they exist without issuing any DB query Signed-off-by: Rémy Coutable <remy@rymai.me>
| * | | | | Avoid sequential scans loading schema_migrations table when loading ↵Stan Hu2018-06-071-0/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | application settings This was causing significant performance problems in production, and this commit reverts to the original behavior.
* | | | | | Add git filter flag only if it is supportedFrancisco Javier López2018-06-071-1/+5
| | | | | |
* | | | | | Resolve "Hashed Storage: Make possible to migrate single project"Gabriel Mazetto2018-06-073-3/+89
|/ / / / /
* | | | | Merge branch 'backup-rake-tar' into 'master'Douwe Maan2018-06-071-3/+8
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Consistently use tar lookup function See merge request gitlab-org/gitlab-ce!19477
| * | | | | Consistently use tar lookup functionJacob Vosmaer2018-06-071-3/+8
| | |_|/ / | |/| | |
* | | | | Add installation type to usage ping dataBalasankar C2018-06-072-0/+2
| |_|/ / |/| | |
* | | | Restore navigation theme orderGeorge Tsiolis2018-06-071-8/+8
|/ / /
* | | Merge branch '45505-lograge_formatter_encoding' into 'master'Kamil Trzciński2018-06-071-0/+17
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Enforce UTF-8 encoding on user input in LogrageWithTimestamp formatter Closes #45505 See merge request gitlab-org/gitlab-ce!19244
| * | | Enforce UTF-8 encoding on user input in LogrageWithTimestamp formatter and ↵Imre Farkas2018-06-061-0/+17
| | | | | | | | | | | | | | | | filter out file content from logs
* | | | Merge branch 'fj-move-rev-list-option' into 'master'Douwe Maan2018-06-072-3/+5
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | Moving rev-list lfs options to LfsChanges See merge request gitlab-org/gitlab-ce!19497
| * | | | Moving rev-list lfs options to LfschangesFrancisco Javier López2018-06-062-3/+5
| | |_|/ | |/| |
* | | | Resolve "Introduce new navigation themes in GitLab 11.0"Annabel Gray2018-06-071-5/+10
|/ / /
* | | Support LFS objects when creating a project by importFrancisco Javier López2018-06-066-5/+106
| | |
* | | Merge branch '42751-rename-master-to-maintainer' into 'master'Sean McGivern2018-06-063-11/+11
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Resolve "Rename the `Master` role to `Maintainer`" Closes #42751 See merge request gitlab-org/gitlab-ce!19080
| * | | change wordingMark Chao2018-06-061-1/+1
| | | |
| * | | wordingMark Chao2018-06-061-2/+2
| | | |
| * | | Rename master to maintainerMark Chao2018-06-061-8/+8
| | | |
* | | | Merge branch 'live-trace-v2-persist-data' into 'master'Kamil Trzciński2018-06-061-2/+22
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | Live trace: Rescue stale live trace See merge request gitlab-org/gitlab-ce!18680
| * | | | Fix the query to select stale live tracesShinya Maeda2018-06-061-19/+23
| | | | |
| * | | | Fix ambiguous stuck ci job worker's spec. Rename lease key of archiveShinya Maeda2018-06-061-1/+1
| | | | |
| * | | | Add exclusive relase for trace arhiveShinya Maeda2018-06-061-14/+30
| | | | |
* | | | | Merge branch 'gitaly-find-commit-go-git' into 'master'Sean McGivern2018-06-062-0/+17
|\ \ \ \ \ | |_|/ / / |/| | | | | | | | | | | | | | Add feature flag for using go-git in Gitaly See merge request gitlab-org/gitlab-ce!19305
| * | | | Rescue from failed feature lookupsJacob Vosmaer2018-06-061-0/+4
| | | | |
| * | | | Simplify server feature flagsJacob Vosmaer2018-06-062-15/+7
| | | | |
| * | | | Set Gitaly Server feature flags from RailsZeger-Jan van de Weg2018-06-062-0/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Gitaly itself hold very little state, other than the data on disk. This limits the interfaces to set feature flags. Gitaly now has the ability to interpret the request metadata to check for feature flags. https://gitlab.com/gitlab-org/gitaly/merge_requests/704 This allows clients control on the Gitaly server, and given that Rails has an internal chatops interface to set these values this was chosen as solution. Known limitation right now, is that this package doesn't support the opt out that other Gitaly features do.
* | | | | Merge branch '47189-github_import_visibility' into 'master'Douwe Maan2018-06-061-1/+4
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use Github repo visibility during import while respecting restricted visibility levels Closes #47189 See merge request gitlab-org/gitlab-ce!19450
| * | | | | Use Github repo visibility during import while respecting restricted ↵Imre Farkas2018-06-061-1/+4
| | |_|/ / | |/| | | | | | | | | | | | | visibility levels
* | | | | Merge branch '45821-avatar_api' into 'master'Rémy Coutable2018-06-063-0/+28
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add Avatar API Closes #45821 See merge request gitlab-org/gitlab-ce!19121
| * | | | | Add Avatar APIImre2018-06-063-0/+28
| | | | | |
* | | | | | Merge branch 'bvl-graphql-start-34754' into 'master'Douwe Maan2018-06-067-0/+166
|\ \ \ \ \ \ | |_|_|/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | GraphQL setup: Basic Project and Merge request endpoint Closes #34754 See merge request gitlab-org/gitlab-ce!19008
| * | | | | Initial setup GraphQL using graphql-ruby 1.8Bob Van Landuyt2018-06-065-69/+102
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - All definitions have been replaced by classes: http://graphql-ruby.org/schema/class_based_api.html - Authorization & Presentation have been refactored to work in the class based system - Loaders have been replaced by resolvers - Times are now coersed as ISO 8601
| * | | | | Handle exceptions outside the GraphQL schemaBob Van Landuyt2018-06-052-0/+42
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This allows us to report JSON parse exceptions to clients and ignore them in sentry.
| * | | | | Add `present_using` to typesBob Van Landuyt2018-06-051-0/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | By specifying a presenter for the object type, we can keep the logic out of `GitlabSchema`. The presenter gets initialized using the object being presented, and the context (including the `current_user`).
| * | | | | Convert from GraphQL::Batch to BatchLoaderNick Thomas2018-06-051-0/+2
| | | | | |
| * | | | | Add a minimal GraphQL APINick Thomas2018-06-051-0/+55
| | | | | |
* | | | | | Merge branch '25045-add-variables-to-post-pipeline-api' into 'master'Grzegorz Bizon2018-06-061-1/+6
|\ \ \ \ \ \ | |_|_|_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Resolve "POST api/v4/projects/:id/pipeline should accept variables" Closes #25045 See merge request gitlab-org/gitlab-ce!19124
| * | | | | Removes variables from pipelines apiJacopo2018-06-051-1/+0
| | | | | |
| * | | | | Review 1Jacopo2018-06-011-1/+5
| | | | | |
| * | | | | Rename variables_attributes => variables and adds spec for exclude/only optionJacopo2018-06-011-2/+2
| | | | | |
| * | | | | Adds variables to POST api/v4/projects/:id/pipelineJacopo2018-06-012-0/+2
| | | | | |
* | | | | | Merge branch 'sh-reject-non-utf8-gpg' into 'master'Robert Speicher2018-06-051-1/+5
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Reject GPG keys that have e-mail or names with non-valid UTF-8 encodings Closes #47280 See merge request gitlab-org/gitlab-ce!19455
| * | | | | | Reject GPG keys that have e-mail or names with non-valid UTF-8 encodingsStan Hu2018-06-051-1/+5
| | |_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | These were causing 500 Errors when accessing GPG keys for some users. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/47280
* | | | | | Fix repository archive generation when hashed storage is enabledNick Thomas2018-06-051-8/+4
|/ / / / /
* | | | | Merge branch 'master' into ↵Kamil Trzciński2018-06-0514-30/+43
|\ \ \ \ \ | | |/ / / | |/| | | | | | | | | | | | | | | | | | 'backstage/gb/use-persisted-stages-to-improve-pipelines-table' # Conflicts: # db/schema.rb
| * | | | Find and mark more Git disk access locationsJacob Vosmaer (GitLab)2018-06-0510-27/+36
| | | | |