FAQ | This is a LIVE service | Changelog

Skip to content
Commits on Source (7)
include:
- project: "uis/devops/continuous-delivery/ci-templates"
file: "auto-devops-stages.yml"
ref: "v4.6.0"
- project: "uis/devops/continuous-delivery/ci-templates"
file: "auto-devops/python-tox.yml"
ref: "v4.6.0"
python:tox:
services:
......
......@@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [2.1.0] - 2024-09-26
### Added
- Add starting renovatebot configuration which includes automatic freshening of the tox and poetry
versions used for CI.
### Fixed
- Pin CI template versions
## [2.0.1] - 2024-03-14
### Fixed
......
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"local>uis/devops/renovate-config"
],
"ignorePaths": [
"**/template/**"
]
}
......@@ -94,7 +94,7 @@ services:
GATEWAY_SCOPES: "{{ project_slug }}"
GATEWAY_PROXY_DESTINATION_URL: "http://webapp:8000/"
healthcheck:
test: ["CMD", "wget", "--spider", "http://localhost:9001/proxy/status"]
test: ["CMD", "wget", "--spider", "http://127.0.0.1:9001/proxy/status"]
interval: 10s
ports:
- 8000:9000
......
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"local>uis/devops/renovate-config"
],
"customManagers": [
{
"customType": "regex",
"fileMatch": [
"^\\.gitlab/webapp\\.gitlab-ci\\.yml$",
"^\\.gitlab-ci\\.yml$"
],
"matchStringsStrategy": "recursive",
"matchStrings": [
"(TOX_REQUIREMENT|TOX_ADDITIONAL_REQUIREMENTS):\\s*\"?.*\"?",
"(?<depName>[^\\s\"]+)\\s*==\\s*(?<currentValue>[^\\s\"]+)"
],
"datasourceTemplate": "pypi"
}
]
}