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/config
AgeCommit message (Collapse)Author
2019-09-10Do not include source code in stats generationmg-remove-sources-from-webpack-statsMike Greiling
2019-09-09Merge branch '61927-skeleton-pages-internal-api' into 'master'Kamil Trzciński
Add skeleton Pages internal API See merge request gitlab-org/gitlab-ce!32732
2019-09-06Merge branch 'ce-detect-github-pull-requests' into 'master'Kamil Trzciński
Port CreateGithubPullRequestEvents migration from EE See merge request gitlab-org/gitlab-ce!31802
2019-09-06Merge branch ↵Jan Provaznik
'59729-estimate-quick-action-does-not-produce-correct-time-for-1mo' into 'master' Resolve "estimate quick action does not produce correct time for 1mo" See merge request gitlab-org/gitlab-ce!32165
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-05Adds route for instance level security dashboardMark Florian
2019-09-05CE port for pipelines for external pull requestsFabio Pitino
Detect if pipeline runs for a GitHub pull request When using a mirror for CI/CD only we register a pull_request webhook. When a pull_request webhook is received, if the source branch SHA matches the actual head of the branch in the repository we create immediately a new pipeline for the external pull request. Otherwise we store the pull request info for when the push webhook is received. When using "only/except: external_pull_requests" we can detect if the pipeline has a open pull request on GitHub and create or not the job based on that.
2019-09-05Fix time tracking parsing of monthsHeinrich Lee Yu
Patches ChronicDuration to use our custom conversions when parsing months
2019-09-04Merge branch 'osw-record-repo-push-events' into 'master'James Lopez
Backport EE "Track repository pushes as audit events" See merge request gitlab-org/gitlab-ce!32304
2019-09-04Add note to gitlab.yml about Service Desk requirementWinnie Hellmann
2019-09-04Backport "Track repository pushes as audit events"Oswaldo Ferreira
2019-09-04Merge branch 'mk/fix-comment' into 'master'Dmitriy Zaporozhets
Fix outdated comment See merge request gitlab-org/gitlab-ce!32598
2019-09-04Add Notification secret into gitlab.yml.templateValery Sizov
2019-09-03Fix outdated commentMichael Kozono
2019-08-30Update jira-ruby to 1.7.1Takuya Noguchi
Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com>
2019-08-30Merge branch 'master' of dev.gitlab.org:gitlab/gitlabhqRobert Speicher
2019-08-30Merge branch 'security-enable-image-proxy' into 'master'GitLab Release Tools Bot
Use image proxy to mitigate stealing ip addresses Closes #2812 See merge request gitlab/gitlabhq!2926
2019-08-30Merge branch 'security-personal-snippets' into 'master'GitLab Release Tools Bot
Add direct upload support for personal snippets See merge request gitlab/gitlabhq!3226
2019-08-30Merge branch 'security-59549-add-capcha-for-failed-logins' into 'master'GitLab Release Tools Bot
Require a captcha after unique failed logins from the same IP See merge request gitlab/gitlabhq!3270
2019-08-30Merge branch 'security-ssrf-kubernetes-dns-12-3' into 'master'GitLab Release Tools Bot
DNS Rebind SSRF in Kubernetes Integration See merge request gitlab/gitlabhq!3345
2019-08-29Merge branch 'rd-add-custom-endpoint-for-new-registrations' into 'master'Sean McGivern
Add custom endpoint for new registrations See merge request gitlab-org/gitlab-ce!32233
2019-08-29Set default authorized_keys_filePatrick Bajao
This is the same as gitlab-shell's default. This is to ensure that it's always set. It needs to be the same as gitlab-shell's default because we don't set a default value in omnibus-gitlab. If users don't set the value of that config in their install and they upgraded, we must ensure that it's still going to point to the same authorized keys file.
2019-08-29Merge branch 'performance-bar-warnings' into 'master'Stan Hu
Add warnings to performance bar response See merge request gitlab-org/gitlab-ce!31054
2019-08-28Add top-level warnings key to performance bar responseSean McGivern
This key is useful to reduce the amount of logic needed on the frontend: if `has_warnings` is true, then the frontend knows that the request in question has warnings for some metric.
2019-08-28Remove csslabArun Kumar Mohan
2019-08-27Replace prepend_entity with prepend_if_eeWinnie Hellmann
(cherry picked from commit 897a9d308db46b620b738b98f2b0e5630ac7d2dd)
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-27Modified route to nest under -Aishwarya Subramanian
2019-08-26Added routes for trial registration apiAishwarya Subramanian
2019-08-24Add support for using a Camo proxy serverBrett Walker
User images and videos will get proxied through the Camo server in order to keep malicious sites from collecting the IP address of users.
2019-08-23Move visual review toolbar to NPMshampton
Remove the visual review toolbar code in favor of using the NPM package.
2019-08-23Add cache tracing and Redis tracingAndrew Newdigate
This change adds Distributed Tracing support for two new types of events 1. Redis Calls 1. ActiveSupport (Rails) Caching Operations The intention is to help application developers and infrastructure SREs to understand the pressure that caching operations can have on the application when running at scale. The Redis and Caching spans can be viewed in the Jaeger UI by clicking the "Trace" link in the performance bar when running on GDK.
2019-08-23Add direct upload support for personal snippetsJan Provaznik
2019-08-23Merge branch 'sh-revert-redis-cache-store' into 'master'Mayra Cabrera
Fix "ERR value is not an integer or out of range" errors Closes #66449 See merge request gitlab-org/gitlab-ce!32126
2019-08-23Fix "ERR value is not an integer or out of range" errorsStan Hu
`ActiveSupport::Cache::RedisCacheStore` is not compatible with the version of Rack Attack we are using (v4.4.1) per https://github.com/kickstarter/rack-attack/issues/281. Users that had rate limits enabled might see `Redis::CommandError: ERR value is not an integer or out of range` because the `raw` parameter wasn't passed along properly. As a result, the Rack Attack entry would be stored as an `ActiveSupport::Cache::Entry` instead of a raw string holding an integer value. Let's partially revert the change in https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/30966 to use the original cache store until we can update to Rack Attack v5.2.3 that has support for `ActiveSupport::Cache::RedisCacheStore` via https://github.com/kickstarter/rack-attack/pull/350. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/66449
2019-08-22Enable CSP in gitlab.yml.exampleHeinrich Lee Yu
This enables CSP in dev and CI
2019-08-22Merge branch 'patch-73' into 'master'Stan Hu
Fix typo in Content Security Policy example See merge request gitlab-org/gitlab-ce!32103
2019-08-22Fix typo in Content Security Policy exampleJ0WI
2019-08-22Issue #39099: Add links for latest pipelinesAlex Ives
2019-08-22Merge branch 'feat/smime-signed-notification-emails' into 'master'Sean McGivern
feat: smime signed notification emails See merge request gitlab-org/gitlab-ce!30644
2019-08-21Merge branch '328-other-ee' into 'master'Stan Hu
Port of EE "Elasticsearch versioned schema for other ActiveRecord models" See merge request gitlab-org/gitlab-ce!31660
2019-08-21Merge branch 'sidekiq-interrupt-running-jobs' into 'master'Stan Hu
Allow to interrupt running sidekiq jobs See merge request gitlab-org/gitlab-ce!31818
2019-08-21This commit adds a new time series componentMiguel Rincon
Adds a time series component for line and area charts. Displays new charts in the dashboard. - Use dynamic components for line/area swapping - Add new line charts to dashboard in 2 panels
2019-08-21Properly handle `sidekiq` skipKamil Trzciński
Transform `CancelledError` into `JobRetry::Skip`
2019-08-21Rework `Sidekiq::JobsThreads` into `Monitor`Kamil Trzciński
This makes: - very shallow `Middleware::Monitor` to only request tracking of sidekiq jobs, - `SidekiqStatus::Monitor` to be responsible to maintain persistent connection to receive messages, - `SidekiqStatus::Monitor` to always use structured logging and instance variables
2019-08-21Allow to interrupt running jobsKamil Trzciński
This adds a middleware to track all threads for running jobs. This makes sidekiq to watch for redis-delivered notifications. This makes be able to send notification to interrupt running sidekiq jobs. This does not take into account any native code, as `Thread.raise` generates exception once the control gets back to Ruby. The separate measure should be taken to interrupt gRPC, shellouts, or anything else that escapes Ruby.
2019-08-21ES: sync with EEMark Chao
Doc for multi-indices archtecture
2019-08-21Column was renamed in 12.2Thong Kuah
2019-08-21Override hostname when connecting via KubeclientThong Kuah
Kubeclient uses rest-client. We hack into to access the net/http object so that we can patch to connect to the resolved IP + set hostname_override. Add specs for discord. The discord integration also uses rest-client, so since we patched rest-client, spec that the DNS rebinding protection works
2019-08-21New wiki page redirects user to random slugLuke Duncalfe
Previously we asked a user to enter a new slug before taking them to the Create Page page. As a UX improvement, we now take them to a randomly generated URI so they can begin creating their new page. https://gitlab.com/gitlab-org/gitlab-ce/issues/46299