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
2017-10-23Fix the writing of invalid environment refsStan Hu
Environment names that contained a space would cause an error in GitLab 10.1 because a new guard clause was introduced in Repository#write_ref to prevent such references from existing. Use the slug instead to ensure that the name is valid. Closes #39182
2017-09-08Merge branch '29943-environment-folder' into 'security-9-5'Kamil Trzciński
Do not use `location.pathname` when accessing environments folders See merge request !2147
2017-08-03Change all `:empty_project` to `:project`Robert Speicher
2017-08-01Ensure all project factories use `:repository` trait or `:empty_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-06-30Remove unnecessary contextsJacob Vosmaer
2017-06-16move additional_metrics.yaml into prometheus/ config folderPawel Chojnacki
2017-06-16Merge remote-tracking branch 'upstream/master' into ↵Pawel Chojnacki
28717-additional-metrics-review-branch
2017-06-13Do not show manual actions that cannot be runKamil Trzcinski
2017-06-07Merge remote-tracking branch 'upstream/master' into ↵Pawel Chojnacki
28717-additional-metrics-review-branch # Conflicts: # app/models/project_services/prometheus_service.rb # app/views/projects/services/_form.html.haml
2017-06-07Remove unecessary before blockPawel Chojnacki
2017-06-07Use explicit instance of prometheus service and add access methods to itPawel Chojnacki
2017-06-06expand Namespaces:: and refactoring yaml parsing out of MetricGroup classPawel Chojnacki
2017-06-05Environments#additional_metrics testsPawel Chojnacki
2017-06-01Merge branch 'master' into zj-realtime-env-listZ.J. van de Weg
2017-05-31Test etag cache key changing valueZ.J. van de Weg
2017-05-31Fix environment model specs related to protected actionsGrzegorz Bizon
2017-05-22Use etag caching for environments JSONZ.J. van de Weg
For the index view, the environments can now be requested every 15 seconds. Any transition state of a projects environments will trigger a cache invalidation action. Fixes gitlab-org/gitlab-ce#31701
2017-05-12Keep presentation logic in one place and remove unecessary arguments.Pawel Chojnacki
+ fix tests
2017-05-10Enable the Style/TrailingCommaInLiteral copRémy Coutable
Use the EnforcedStyleForMultiline: no_comma option. Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-04-13Merge branch 'master' into ↵Grzegorz Bizon
feature/gb/manual-actions-protected-branches-permissions * master: (641 commits) Revert "Fix registry for projects with uppercases in path" Fix registry for projects with uppercases in path Move event icons into events_helper Reset New branch button when issue state changes Add link to environments on kubernetes.md Indent system notes on desktop screens Improve webpack-dev-server compatibility with non-localhost setups. Add changelog entry Fix recent searches icon alignment in Safari Use preload to avoid Rails using JOIN Fix NUMBER_OF_TRUNCATED_DIFF_LINES re-definition error Prepare for zero downtime migrations Fix filtered search input width for IE Fix the `gitlab:gitlab_shell:check` task Fixed random failures with Poll spec Include CONTRIBUTING.md file when importing .gitlab-ci.yml templates Let uses hide verbose output by default Separate examples for each other Collapse similar sibling scenarios Use empty_project for resources that are independent of the repo ... Conflicts: app/views/projects/ci/builds/_build.html.haml
2017-04-12Use build policy to determine if user can play buildGrzegorz Bizon
2017-04-11Setup and run a Gitaly server for testing if GitalyClient is enabledAlejandro Rodríguez
2017-04-06Take branch access into account when stopping environmentGrzegorz Bizon
2017-04-06Fix specs related to new manual actions permissionsGrzegorz Bizon
2017-04-06Hopefully this worksKim "BKC" Carlbäcker
2017-04-06CleanupKim "BKC" Carlbäcker
2017-04-06rubocopKim "BKC" Carlbäcker
2017-04-06Use Gitaly for Environment#first_deployment_forKim "BKC" Carlbäcker
2017-03-16Futher rename the CI variablesZ.J. van de Weg
2017-03-07Added Prometheus Service and Prometheus graphsKamil Trzciński
2017-02-23Revert "Prefer leading style for Style/DotPosition"Douwe Maan
This reverts commit cb10b725c8929b8b4460f89c9d96c773af39ba6b.
2017-02-23Enable Style/MultilineHashBraceLayoutDouwe Maan
2017-02-23Prefer leading style for Style/DotPositionDouwe Maan
2017-02-23Enable Style/MutableConstantDouwe Maan
2017-02-13Fix envs and deploys specs related to build retryGrzegorz Bizon
2017-02-07Merge branch 'route-map' into 'master' Robert Speicher
Add 'View on [env]' link to blobs and individual files in diffs See merge request !8867
2017-02-07Fix stoppable?Kamil Trzcinski
2017-02-07Update outdated specDouwe Maan
2017-02-07Tweak test to verify there are no duplicatesDouwe Maan
2017-02-07Improve performance of finding last deployed environmentDouwe Maan
2017-02-07Add testsDouwe Maan
2017-02-06Update changesKamil Trzcinski
2017-02-06Merge remote-tracking branch 'origin/master' into 24147-delete-env-buttonKamil Trzcinski
2017-01-31Merge branch '26852-fix-slug-for-openshift' into 'master' Kamil Trzciński
Avoid repeated dashes in $CI_ENVIRONMENT_SLUG Closes #26852 See merge request !8638
2017-01-27Use `:empty_project` where possible in model specsRobert Speicher
2017-01-24Merge remote-tracking branch 'origin/master' into 24147-delete-env-buttonKamil Trzcinski
2017-01-23Avoid repeated dashes in $CI_ENVIRONMENT_SLUGNick Thomas
2017-01-09Treat environments matching `production/*` as ProductionToon Claes
For Cycle Analytics, the environment `production` is treated as a special case, and used to update the `first_deployed_to_production_at` metric. With the Review Apps changes, slash syntax is used to group related environments in the list. This is mostly used for `review/<branch>` environments, but it's possible for people to have multiple production environments, and someone might then want to group them like `production/eu`, `production/us`, or even just make it look prettier with `production/www.example.com`. In any of these cases, the first deploy to one of these `production/*` environments now is treated as a Production deploy.
2016-12-19Add terminals to the Kubernetes deployment serviceNick Thomas