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
path: root/lib
AgeCommit message (Collapse)Author
2019-02-27Add Project template for go-microJason Lenny
2019-02-27Merge branch 'osw-merge-refs-refreshing-api' into 'master'Douwe Maan
API support for MR merge to temporary merge ref path Closes #57252 See merge request gitlab-org/gitlab-ce!24918
2019-02-27Prepare test suite for switch to Gitaly-embedded Git hooksJacob Vosmaer
2019-02-27Add project http fetch statistics APIJacopo
The API get projects/:id/traffic/fetches allows user with write access to the repository to get the number of clones for the last 30 days.
2019-02-27Danger ignores gitlab.potNick Thomas
2019-02-27Merge branch 'include-ci-yaml' into 'master'Grzegorz Bizon
fix: validate 'include' keywords in gitlab-ci.yml configuration files Closes #55863 See merge request gitlab-org/gitlab-ce!24098
2019-02-27Reduce code duplicationAlexander Koval
Move logic of obtaining Issuable data to separate method
2019-02-27Persist source sha and target sha for merge pipelinesShinya Maeda
source_sha and target_sha are used for merge request pipelines
2019-02-27Added: Documentation for the APINermin Vehabovic
Added: Specs for the API action
2019-02-26Protect against nil due_on value in imported dataDiana Stanley
2019-02-26Revert "Merge branch '56726-fix-n+1-in-issues-and-merge-requests-api' into ↵Heinrich Lee Yu
'master'" This reverts merge request !25042
2019-02-26Revert "Merge branch '13784-simple-masking-of-protected-variables-in-logs' ↵Kamil Trzciński
into 'master'" This reverts merge request !25293
2019-02-26Reduce code duplicationAlexander Koval
Move logic of obtaining Issuable data to separate method
2019-02-26Merge branch 'ce-revert-d5ce84fd' into 'master'Lin Jen-Shin
Revert "Merge branch 'revert-82d7b5a0-ce' into 'master'" Closes #57857 and #50747 See merge request gitlab-org/gitlab-ce!25559
2019-02-26Add API support for refreshing merge ref pathOswaldo Ferreira
Add a merge_requests/:iid/merge_to_ref API which make use of the groundwork to write merge results into refs/merge-requests/:iid/merge.
2019-02-26Merge branch 'add_YouTrack_integration' into 'master'Sean McGivern
Added YouTrack integration Closes #42595 See merge request gitlab-org/gitlab-ce!25361
2019-02-26Add Maskable concern for CI variablesMatija Čupić
This adds a concern that abstracts the concept of masking a variable, including the RegEx for validation.
2019-02-26Merge branch 'osw-create-and-store-merge-ref-for-mrs' into 'master'Douwe Maan
Support merge ref writing (without merging to target branch) Closes #47110 See merge request gitlab-org/gitlab-ce!24692
2019-02-26Merge branch 'filter-confidential-issues' into 'master'Kamil Trzciński
Ability to filter confidential issues Closes #50747 See merge request gitlab-org/gitlab-ce!24960
2019-02-26Merge branch 'sh-fix-cpp-templates-404' into 'master'Nick Thomas
Fix 404s when C++ .gitignore template selected Closes #57857 See merge request gitlab-org/gitlab-ce!25416
2019-02-26Merge branch '50313-use-kaniko-to-build-containers-in-autodevops' into 'master'Kamil Trzciński
Use auto-build-image in AutoDevOps See merge request gitlab-org/gitlab-ce!24279
2019-02-26Merge branch '54417-improve-authorize-dsl' into 'master'Kamil Trzciński
Improve GraphQL Authorization DSL Closes #57828 See merge request gitlab-org/gitlab-ce!25328
2019-02-26Improve GraphQL Authorization DSLLuke Duncalfe
Previously GraphQL field authorization happened like this: class ProjectType field :my_field, MyFieldType do authorize :permission end end This change allowed us to authorize like this instead: class ProjectType field :my_field, MyFieldType, authorize: :permission end A new initializer registers the `authorize` metadata keyword on GraphQL Schema Objects and Fields, and we can collect this data within the context of Instrumentation like this: field.metadata[:authorize] The previous functionality of authorize is still being used for mutations, as the #authorize method here is called at during the code that executes during the mutation, rather than when a field resolves. https://gitlab.com/gitlab-org/gitlab-ce/issues/57828
2019-02-25Revert "Merge branch 'sh-fix-cpp-templates-404' into 'master'"Michael Kozono
This reverts commit 4b282e9ce1ae246c4538b3ede18d1380ea778029, reversing changes made to b6f37434a7022be1be40c0d0519aea3ceca25ea5.
2019-02-25Revert "Merge branch ↵Michael Kozono
'49449-add-an-api-endpoint-for-bulk-updating-issues-and-mrs' into 'master'" This reverts commit 7981c0292b07a0138b096fa082341fcb13e9ce2b, reversing changes made to 9202bbd129537a698b986e6295d0c783b5a84815.
2019-02-25Revert "Merge branch 'filter-confidential-issues' into 'master'"Michael Kozono
This reverts commit d133bf84c668df3dfc9938bb04150754cb873c8b, reversing changes made to 7981c0292b07a0138b096fa082341fcb13e9ce2b.
2019-02-25Merge branch 'zj-load-languages-from-database' into 'master'Nick Thomas
Load repository language from the DB if detected Closes #47390 See merge request gitlab-org/gitlab-ce!25518
2019-02-25Merge branch '58020-fix-merge-api-endpoint-param' into 'master'Lin Jen-Shin
Respect the `should_remove_source_branch` parameter to the merge API Closes #58020 See merge request gitlab-org/gitlab-ce!25525
2019-02-25Merge branch '57794-project-template-for-net' of ↵Jason Lenny
https://gitlab.com/gitlab-org/gitlab-ce into 57794-project-template-for-net
2019-02-25Load repository language from the DB if detectedZeger-Jan van de Weg
The repository charts page used to detect the repository language for each request that was made to the page. Given the detection is an expensive operation and the same data is stored in the database the database is now serving the request. The same goes for an API endpoint that serves the languages. When a repository is empty or non-existent the languages will always be empty. And the language detection RPC isn't requested. Closes: https://gitlab.com/gitlab-org/gitlab-ce/issues/47390
2019-02-25Respect the should_remove_source_branch parameter to the merge APINick Thomas
2019-02-25Merge branch '57712-project-import-error-user-expected-got-hash' into 'master'Lin Jen-Shin
Resolve "Project import error, User expected, got Hash" Closes #57712 See merge request gitlab-org/gitlab-ce!25495
2019-02-25Support merge to ref for merge-commit and squashOswaldo Ferreira
Adds the ground work for writing into the merge ref refs/merge-requests/:iid/merge the merge result between source and target branches of a MR, without further side-effects such as mailing, MR updates and target branch changes.
2019-02-25Raise not implemented error on BaseLinker for package_urlOswaldo Ferreira
2019-02-25Merge branch 'expose-merge-ref-to-runner' into 'master'Kamil Trzciński
Expose refspec and depth to runner See merge request gitlab-org/gitlab-ce!25233
2019-02-25Merge branch '40795-set-project-name-on-fork-api' into 'master'Douwe Maan
Add ability to set project path and name on fork using API Closes #40795 See merge request gitlab-org/gitlab-ce!25363
2019-02-25Merge branch '58098-auto-devops-postgres-version-variable' into 'master'Sean McGivern
Allow configuring POSTGRES_VERSION in Auto DevOps Closes #58098 See merge request gitlab-org/gitlab-ce!25500
2019-02-25Merge branch 'am-fix-pagination-relative-links' into 'master'Rémy Coutable
Properly implement API pagination headers and add specs Closes #57684 See merge request gitlab-org/gitlab-ce!25267
2019-02-25Merge branch 'filter-confidential-issues' into 'master'Kamil Trzciński
Ability to filter confidential issues Closes #50747 See merge request gitlab-org/gitlab-ce!24960
2019-02-25Merge branch '49449-add-an-api-endpoint-for-bulk-updating-issues-and-mrs' ↵Rémy Coutable
into 'master' API endpoint for bulk updating issues and MRs Closes #49449 See merge request gitlab-org/gitlab-ce!25201
2019-02-25Merge branch 'sh-fix-cpp-templates-404' into 'master'Nick Thomas
Fix 404s when C++ .gitignore template selected Closes #57857 See merge request gitlab-org/gitlab-ce!25416
2019-02-25Merge branch '57785-create-project-template-for-netlify' of ↵Jason Lenny
https://gitlab.com/gitlab-org/gitlab-ce into 57785-create-project-template-for-netlify
2019-02-25Expose refspec and depth to runnerShinya Maeda
fix fix and fix Allow full ref specification for pipeline creation Add spec Support backward compatibility Use ref path Runner feature flag Simplify the things Support fork workflow (Public only) Expose ref spec Use refspec Glooming Decouple unrelated changes Add changelog Revert unrelated file Decouple unnecessary Add spec Use refspecs Fix changelog Simplify Fix coding offence Fix a ok ok ok ok ok a a Fix Add workaround for ignore_column Fix git depth Fix coding offence Fix spec Simplify more Do not set ignored column Fix tests Fix pipeline Fix spec fix fixture yes Revert nonsense fix Revert more ok Decouple mr pipelines fix spev Remove unrelated changes
2019-02-25Properly handle multiple X-Forwarded-For addresses in runner IPStan Hu
https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/24624 extracted the X-Forwarded-For address directly, but this didn't consider the case where multiple proxies are in the chain. To fix this, we use the Rails implementation to filter trusted proxies, as documented by Grape: https://github.com/ruby-grape/grape#remote-ip Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/58103
2019-02-24Use auto-build-image for build stageJames Fargher
2019-02-23Allow configuring POSTGRES_VERSION in Auto DevOpsDylan Griffith
We set the default value to 9.6.2 since this was the previous default being used by `stable/postgresql --version=0.7.1` which is used in auto-deploy-app.
2019-02-23Merge branch ↵Douglas Barbosa Alexandre
'58062-tracing-url-template-render-using-string-format-does-not-play-well-with-urls' into 'master' Switch back to using regexps in tracing_url_template Closes #58062 See merge request gitlab-org/gitlab-ce!25491
2019-02-22Only allow 30 RPCs per test case to GitalyZeger-Jan van de Weg
Prior to this change, 35 Gitaly RPCs were allowed. But recently there's been a renewed interest in performance. By lowering the number of calls new N + 1's will pop up. Later commits will add blocks to ignore the raised errors, followed by an issue for each to be fixed.
2019-02-22Fix project import error on releasesJames Lopez
2019-02-22Only use boolean parameters internallyRobert Schilling
Use internally only boolean params.