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
2019-10-08Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-04Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-16Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-12Backport of ee/15773: Allow SmartCard authentication to use SAN extensionsSebastián Arcila Valenzuela
2019-09-10Enable JSON logs for Sidekiq by defaultStan Hu
JSON logs include arguments by default, and they're easier to parse/filter.
2019-09-06Add skeleton Pages internal APIKrasimir Angelov
Basic `/internal/pages` endpoint that will be used for Pages virtual domains internal API. The endpoint is currently behind feature flag and provides authetication similar to how Workhorse is authenticating with the GitLab.
2019-09-04Add note to gitlab.yml about Service Desk requirementWinnie Hellmann
2019-09-04Add Notification secret into gitlab.yml.templateValery Sizov
2019-08-27Update docs and comments about saml with allow_bypass_two_factordodocat
allow_bypass_two_factor configration dose not work with saml provider
2019-08-22Enable CSP in gitlab.yml.exampleHeinrich Lee Yu
This enables CSP in dev and CI
2019-08-22Fix typo in Content Security Policy exampleJ0WI
2019-08-20feat: SMIME signed notification emailsDiego Louzán
- Add mail interceptor the signs outgoing email with SMIME - Add lib and helpers to work with SMIME data - New configuration params for setting up SMIME key and cert files
2019-08-07Add support for Content-Security-PolicyStan Hu
A nonce-based Content-Security-Policy thwarts XSS attacks by allowing inline JavaScript to execute if the script nonce matches the header value. Rails 5.2 supports nonce-based Content-Security-Policy headers, so provide configuration to enable this and make it work. To support this, we need to change all `:javascript` HAML filters to the following form: ``` = javascript_tag nonce: true do :plain ... ``` We use `%script` throughout our HAML to store JSON and other text, but since this doesn't execute, browsers don't appear to block this content from being used and require the nonce value to be present.
2019-08-01Backport of https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/3809Valery Sizov
Introducing Docker Registry replication
2019-07-24Backport of https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/14597Valery Sizov
This is the first part of Docker Registry replication for secondary Geo node.
2019-07-16Don't use transactions and exceptionsReuben Pereira
Instead return error objects.
2019-07-09CE-EE parity for shared config filesRobert Speicher
This copies over EE-specific changes to shared configuration files in CE.
2019-06-28Replace 'JIRA' with 'Jira'Takuya Noguchi
https://community.atlassian.com/t5/Jira-questions/Is-it-quot-JIRA-quot-or-quot-Jira-quot/qaq-p/681163 Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com>
2019-06-20Backport gitlab.yml.example from EEYorick Peterse
To make this happen, we need to conditionally add the group_saml strategy when running tests, but only on EE. This requires some changes to Gitlab.ee? so that it can be used before/without loading the Rails environment. We also have to change how we require a few files, so this can run outside of Rails.
2019-05-29Add Puma samplerJan Provaznik
This sampler gathers Puma-specific metrics which can be used by Prometheus then.
2019-05-10Expain usage of `artifacts_server` in `gitlab.yml`Krasimir Angelov
Add comment to clarify intended usage of `artifacts_server`. Related to https://gitlab.com/gitlab-org/gitlab-ce/issues/49475.
2019-05-07Remove from providers with iconGosia Ksionek
Remove puts Remove puts
2019-05-01Allow Sentry client-side DSN to be passed on gitlab.ymlDouglas Barbosa Alexandre
2019-04-30feat: allow Sentry configuration to be passed on gitlab.ymlRoger Meier
2019-04-10Add doc link to omnibus for changing gitlab.ymlDmitriy Zaporozhets
2019-03-27Allow external diffs to be used conditionallyNick Thomas
Since external diffs are likely to be a bit slower than in-database ones, add a mode that makes diffs external after they've been obsoleted by events. This should strike a balance between performance and disk space. A background cron drives the majority of migrations, since diffs become outdated through user actions.
2019-03-19Integrate Gitlab::Keys with Gitlab::ShellPatrick Bajao
In this commit, some methods that aren't being used are removed from `Gitlab::Shell`. They are the ff: - `#remove_keys_not_found_in_db` - `#batch_read_key_ids` - `#list_key_ids` The corresponding methods in `Gitlab::Keys` have been removed as well.
2019-03-07Update packages comment in gitlab.yml.example [ci skip]Dmitriy Zaporozhets
2019-03-04Allow raw `tls_options` to be passed in LDAP configurationDrew Blessing
We've previously exposed ca_file and ssl_version but there are many possible options that can be used inside tls_options. Instead of exposing individual ones, simply expose the entire hash so it can be passed in and we won't have to add things in the future.
2019-02-27Prepare test suite for switch to Gitaly-embedded Git hooksJacob Vosmaer
2019-02-05Allow MR diffs to be placed into an object storeNick Thomas
2019-01-09Add SSE-C key configuration option for Amazon S3 remote backupsPepijn Van Eeckhoudt
2018-12-11Merge remote-tracking branch 'origin/master' into support-gitaly-tlsAhmad Hassan
2018-12-05Support RSA and ECDSA algorithms in Omniauth JWTMichael Tsyganov
Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-11-29Add config to disable impersonationImre Farkas
Adds gitlab.impersonation_enabled config option defaulting to true to keep the current default behaviour. Only the act of impersonation is modified, impersonation token management is not affected.
2018-11-15Merge remote-tracking branch 'origin/master' into support-gitaly-tlsAhmad Hassan
2018-11-06Merge branch 'dz-add-packages-to-yml' into 'master'Marin Jankovski
Add packages section to CE config file See merge request gitlab-org/gitlab-ce!22151
2018-11-02Add documentation for tls gitalyAhmad Hassan
2018-11-01Fix typos in comments and specsGeorge Tsiolis
2018-10-23Remove broken git storage for testingZeger-Jan van de Weg
Broken storage used to be used to test situations where the Git storage wasn't being reached. These days we can just mock the Gitaly response. But given the broken storage is removed now, Gitaly can take over control of the storage being reachable. If it's not, Gitaly won't boot. That's nice for situations where a disk wasn't mounted for instance. Gitaly MR: https://gitlab.com/gitlab-org/gitaly/merge_requests/675
2018-10-05Add packages section to CE config fileDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2018-10-05Make GitLab pages support access controlTuomo Ala-Vannesluoma
2018-09-17Fix grammar (setup to set-up) in code comments, spec, views, etc.Marcel Amirault
2018-09-13Enable omniauth by defaultNick Thomas
2018-09-06Fix closing issue default patternSamuele Kaplun
* (Suf)fix #51085 :-) Signed-off-by: Samuele Kaplun <kaplun@protonmail.com>
2018-08-16Add ci_archive_traces_cron_worker configuration to gitlab.yml.exampleShinya Maeda
2018-07-23Fix theme index to match realityBalasankar "Balu" C
2018-07-09Merge branch 'rjh/additional-options-for-s3-compatible-hosts' into 'master'Rémy Coutable
Add options to adjust signed url creation for Object Storage to use older signature if needed. See merge request gitlab-org/gitlab-ce!18719
2018-06-27Fix spelling: Uncommment -> UncommentStan Hu
2018-06-07Update gitlab.yml.exampleRichard Hancock