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-06-21Extract common validations from ci servicesRaphael Tweitmann
DroneCI and TeamCity shared the same validations methods on the data received. These validations were extracted into a concern
2019-06-21Skip TeamCity on branch delete and add MR triggerNikolay Novikov
This is a take over from a community contribution: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/20990 Skip TeamCity push event when related to branch delete Support merge request events for TeamCity service. Add checkbox for merge request triggers in the TeamCity configuration page.
2019-05-30Protect Gitlab::HTTP against DNS rebinding attackDouwe Maan
Gitlab::HTTP now resolves the hostname only once, verifies the IP is not blocked, and then uses the same IP to perform the actual request, while passing the original hostname in the `Host` header and SSL SNI field.
2019-04-01Add # frozen_string_literal to spec/modelsThong Kuah
Adds `# frozen_string_literal: true` to spec/models ruby files
2019-01-10Use revision instead of build number for TC query.Willi Nesensohn
2017-08-03Change all `:empty_project` to `:project`Robert Speicher
2017-07-27Remove superfluous lib: true, type: redis, service: true, models: true, ↵Rémy Coutable
services: true, no_db: true, api: true Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-07-11Support multiple Redis instances based on queue typePaul Charlton
2017-06-27rm use of deprecated webmock api in teamcity_service_spechttp://jneen.net/
2017-06-14Correct RSpec/SingleLineHook cop offensesRobert Speicher
2017-02-23Revert "Enable Style/BarePercentLiterals"Douwe Maan
This reverts commit 96bef54154e669f9a3e92c3a4bc76c0be3a52e48.
2017-02-23Enable Style/BarePercentLiteralsDouwe Maan
2017-01-13Merge branch '24185-legacy-ci-status-reactive-cache' into 'security'Robert Speicher
Use ReactiveCaching to update external CI status asynchronously See https://dev.gitlab.org/gitlab/gitlabhq/merge_requests/2055
2016-09-16Remove schema annotations completelyValery Sizov
2016-06-14Fix broken URI joining for `teamcity_url` with suffixesRémy Coutable
If one had configured a `teamcity_url` like http://foo.bar/teamcity in the previous implementation the plugin directed it's request i.e. to http://foo.bar/httpAuth/... instead of http://foo.bar/teamcity/httpAuth/... `URI.join` only works correctly, if the prefix URL has - at least one or more trailing '/' - the appended parts are _not_ prefixed with '/' The current implementation should work with all sorts of TeamCity base URLs. Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-06-10Fixing specs stubbed objects cannot access databasePaco Guzman
2016-04-25Ensure URL in all Service subclasses are validRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-04-13Improve TeamcityService and its specsRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2015-10-15Improve invalidation of stored service password if the endpoint URL is changedAlex Lossent
Password can now be specified at the same time as the new URL, and the service template admin pages now work.
2015-10-12Invalidate stored service password if the endpoint URL is changedValery Sizov