Merge pull request 'chore(config): migrate renovate config' (#186) from renovate/migrate-config into main

Reviewed-on: #186
This commit was merged in pull request #186.
This commit is contained in:
2025-09-06 05:15:37 -04:00
+40 -14
View File
@@ -16,45 +16,71 @@
"packageRules": [ "packageRules": [
{ {
"description": "Pin ClickHouse to the exact version used by Signoz", "description": "Pin ClickHouse to the exact version used by Signoz",
"matchPackageNames": ["clickhouse/clickhouse-server"], "matchPackageNames": [
"pin": true, "clickhouse/clickhouse-server"
],
"pin": {
"enabled": true
},
"semanticCommitScope": "signoz-clickhouse" "semanticCommitScope": "signoz-clickhouse"
}, },
{ {
"description": "Pin Zookeeper to the exact version used by Signoz", "description": "Pin Zookeeper to the exact version used by Signoz",
"matchPackageNames": ["bitnami/zookeeper"], "matchPackageNames": [
"pin": true, "bitnami/zookeeper"
],
"pin": {
"enabled": true
},
"semanticCommitScope": "signoz-zookeeper-1" "semanticCommitScope": "signoz-zookeeper-1"
}, },
{ {
"description": "Allow only Alpine tag upgrades for all Alpine-based images", "description": "Allow only Alpine tag upgrades for all Alpine-based images",
"matchDatasources": ["docker"], "matchDatasources": [
"packagePatterns": [".*alpine.*"], "docker"
],
"allowedVersions": "/.*alpine.*/", "allowedVersions": "/.*alpine.*/",
"groupName": "alpine-upgrades", "groupName": "alpine-upgrades",
"semanticCommitScope": "{{depName}}" "semanticCommitScope": "{{depName}}",
"matchPackageNames": [
"/.*alpine.*/"
]
}, },
{ {
"description": "Pin postgres image never upgrade", "description": "Pin postgres image never upgrade",
"matchPackageNames": ["postgres"], "matchPackageNames": [
"pin": true, "postgres"
],
"pin": {
"enabled": true
},
"semanticCommitScope": "postgres" "semanticCommitScope": "postgres"
}, },
{ {
"description": "Pin pgvector image never upgrade", "description": "Pin pgvector image never upgrade",
"matchPackageNames": ["pgvector/pgvector"], "matchPackageNames": [
"pin": true, "pgvector/pgvector"
],
"pin": {
"enabled": true
},
"semanticCommitScope": "pgvector" "semanticCommitScope": "pgvector"
}, },
{ {
"description": "Pin pgvectors image never upgrade", "description": "Pin pgvectors image never upgrade",
"matchPackageNames": ["pgvecto-rs/pgvecto-rs"], "matchPackageNames": [
"pin": true, "pgvecto-rs/pgvecto-rs"
],
"pin": {
"enabled": true
},
"semanticCommitScope": "pgvecto-rs" "semanticCommitScope": "pgvecto-rs"
}, },
{ {
"description": "Default rule for all remaining Docker images", "description": "Default rule for all remaining Docker images",
"matchDatasources": ["docker"], "matchDatasources": [
"docker"
],
"groupName": "docker-images", "groupName": "docker-images",
"semanticCommitScope": "{{depName}}" "semanticCommitScope": "{{depName}}"
} }