|
2 | 2 | "$schema": "https://docs.renovatebot.com/renovate-schema.json", |
3 | 3 | "extends": ["config:best-practices", ":semanticCommits"], |
4 | 4 | "enabledManagers": ["pre-commit", "custom.regex"], |
| 5 | + "pre-commit": { |
| 6 | + "enabled": true |
| 7 | + }, |
5 | 8 | "repositories": ["ArduPilot/MethodicConfigurator"], |
6 | 9 | "platform": "github", |
7 | 10 | "includePaths": [ |
|
48 | 51 | "pin": {"enabled": true}, |
49 | 52 | "dependencyDashboard": true, |
50 | 53 | "osvVulnerabilityAlerts": true, |
51 | | - "vulnerabilityAlerts": { |
52 | | - "enabled": true |
53 | | - }, |
| 54 | + "vulnerabilityAlerts": {"enabled": true}, |
54 | 55 | "ignorePaths": ["**/node_modules/**", "**/bower_components/**", "**/.git/**"], |
55 | 56 | "customManagers": [ |
56 | 57 | { |
|
119 | 120 | "datasourceTemplate": "pypi", |
120 | 121 | "currentValueTemplate": "latest" |
121 | 122 | }, |
| 123 | + { |
| 124 | + "customType": "regex", |
| 125 | + "managerFilePatterns": ["/\\.sh$/", "/\\.bash$/"], |
| 126 | + "matchStrings": ["uv pip install[^\"\\n]*\"(?<depName>[^\"=]+)==(?<currentValue>[^\"]+)\""], |
| 127 | + "datasourceTemplate": "pypi" |
| 128 | + }, |
122 | 129 | { |
123 | 130 | "customType": "regex", |
124 | 131 | "managerFilePatterns": ["/\\.bat$/"], |
|
139 | 146 | { |
140 | 147 | "customType": "regex", |
141 | 148 | "managerFilePatterns": ["/\\.py$/"], |
142 | | - "matchStrings": ["required_packages = \\[[^\\]]*\"(?<depName>[^\"]+)\""], |
| 149 | + "matchStrings": ["required_packages = \\[[^\\]]*\"(?<depName>[^\"=]+)==(?<currentValue>[^\"]+)\""], |
143 | 150 | "datasourceTemplate": "pypi", |
144 | 151 | "currentValueTemplate": "latest" |
145 | 152 | }, |
|
0 commit comments