-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathrenovate.json5
132 lines (132 loc) · 3.29 KB
/
renovate.json5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":semanticCommitsDisabled",
":label(dependencies)",
":reviewer(Mr3zee)",
],
"packageRules": [
{
"description": "Update Core minor and patch dependencies in batch",
"matchUpdateTypes": [
"patch",
"minor",
],
"matchPackageNames": [
"*",
],
matchFileNames: [
"!samples/**",
// Samples have separate config
"**/*.gradle.kts",
"**/gradle.properties",
"versions-root/libs.versions.toml",
],
"groupName": "Core dependencies (non-major)",
"groupSlug": "core-non-major",
},
{
"description": "Update Samples dependencies in batch",
"matchUpdateTypes": [
"patch",
"minor",
"major",
],
"matchFileNames": [
"samples/**",
],
"matchPackageNames": [
"*",
],
"matchDepNames": [
"!/org.jetbrains.kotlin(:|\\.).*/",
],
"groupName": "Samples dependencies",
"groupSlug": "samples"
},
{
// Reason: Kotlin updates require additional work on compiler plugins
"description": "Ignore Kotlin updates",
"matchDepNames": [
"/org.jetbrains.kotlin(:|\\.).*/",
],
"enabled": false,
},
{
// Reason: we support java 8, logback 1.4 or later switched to java 11
"description": "Ignore logback in Core",
matchFileNames: [
"!samples/**",
],
"matchDepNames": [
"ch.qos.logback:logback-classic*",
],
"allowedVersions": "<1.4.0",
"enabled": false,
},
{
// Reason: internal deps
"description": "Ignore conventions plugins",
"matchDepNames": [
"/^conventions.*/",
"/^compiler-specific-module.*/",
],
"enabled": false,
},
{
// Reason: old versioning
"description": "Ignore old kotlinx-atomicfu",
"matchDepNames": [
"/^kotlinx-atomicfu.*/",
],
"enabled": false,
},
{
// Reason: May break compiler plugin tests, manual updates are just fine
"description": "Ignore Intellij Platform",
"matchDepNames": [
"com.jetbrains.intellij.platform*",
],
"enabled": false,
},
{
// Reason: Server may not support a newer version
"description": "Ignore Develocity updates",
"matchDepNames": [
"com.gradle:develocity-gradle-plugin*",
],
"enabled": false,
},
{
// Reason: Gradle version updates may break existing configurations
"description": "Ignore Gradle updates in Core",
"matchFileNames": [
"gradle/wrapper/gradle-wrapper.properties",
],
"enabled": false,
},
{
"description": "Ignore 0.0.0 version in Kotlin-specific versions",
"matchCurrentVersion": "0.0.0",
"enabled": false,
},
{
"description": "Update Python Monitor Dependencies",
"matchUpdateTypes": [
"patch",
"minor",
"major",
],
"matchPackageNames": [
"*",
],
matchFileNames: [
"monitor/**",
],
"groupName": "Python Monitor Dependencies",
"groupSlug": "python-monitor-deps",
"automerge": true,
}
]
}