|
4 | 4 | "config:recommended",
|
5 | 5 | ":semanticCommitsDisabled",
|
6 | 6 | ":label(dependencies)",
|
7 |
| - ":automergeStableNonMajor", |
8 | 7 | ":reviewer(Mr3zee)",
|
9 | 8 | ],
|
10 | 9 | "packageRules": [
|
|
28 | 27 | "groupSlug": "core-non-major",
|
29 | 28 | },
|
30 | 29 | {
|
31 |
| - "description": "Update Sample dependencies in batch", |
| 30 | + "description": "Update Samples dependencies in batch", |
32 | 31 | "matchUpdateTypes": [
|
33 | 32 | "patch",
|
34 | 33 | "minor",
|
35 |
| - "minor", |
| 34 | + "major", |
36 | 35 | ],
|
37 | 36 | "matchFileNames": [
|
38 | 37 | "samples/**",
|
39 | 38 | ],
|
40 | 39 | "matchPackageNames": [
|
41 | 40 | "*",
|
42 | 41 | ],
|
43 |
| - "groupName": "Sample dependencies", |
44 |
| - "groupSlug": "sample" |
| 42 | + "matchDepNames": [ |
| 43 | + "!/org.jetbrains.kotlin(:|\\.).*/", |
| 44 | + ], |
| 45 | + "groupName": "Samples dependencies", |
| 46 | + "groupSlug": "samples" |
45 | 47 | },
|
46 | 48 | {
|
47 | 49 | // Reason: Kotlin updates require additional work on compiler plugins
|
48 | 50 | "description": "Ignore Kotlin updates",
|
49 | 51 | "matchDepNames": [
|
50 |
| - "org.jetbrains.kotlin(:|.)*", |
| 52 | + "/org.jetbrains.kotlin(:|\\.).*/", |
| 53 | + ], |
| 54 | + "enabled": false, |
| 55 | + }, |
| 56 | + { |
| 57 | + // Reason: we support java 8, logback 1.4 or later switched to java 11 |
| 58 | + "description": "Ignore logback in Core", |
| 59 | + matchFileNames: [ |
| 60 | + "!samples/**", |
| 61 | + ], |
| 62 | + "matchDepNames": [ |
| 63 | + "ch.qos.logback:logback-classic*", |
| 64 | + ], |
| 65 | + "allowedVersions": "<1.4.0", |
| 66 | + "enabled": false, |
| 67 | + }, |
| 68 | + { |
| 69 | + // Reason: internal deps |
| 70 | + "description": "Ignore conventions plugins", |
| 71 | + "matchDepNames": [ |
| 72 | + "/^conventions-.*/", |
| 73 | + "/^compiler-specific-module-.*/", |
| 74 | + ], |
| 75 | + "enabled": false, |
| 76 | + }, |
| 77 | + { |
| 78 | + // Reason: old versioning |
| 79 | + "description": "Ignore old kotlinx-atomicfu", |
| 80 | + "matchDepNames": [ |
| 81 | + "/^kotlinx-atomicfu.*/", |
51 | 82 | ],
|
52 | 83 | "enabled": false,
|
53 | 84 | },
|
54 | 85 | {
|
55 | 86 | // Reason: May break compiler plugin tests, manual updates are just fine
|
56 |
| - "description": "Ignore Intellij Platform ", |
| 87 | + "description": "Ignore Intellij Platform", |
57 | 88 | "matchDepNames": [
|
58 | 89 | "com.jetbrains.intellij.platform*",
|
59 | 90 | ],
|
60 | 91 | "enabled": false,
|
61 | 92 | },
|
| 93 | + { |
| 94 | + // Reason: Server may not support a newer version |
| 95 | + "description": "Ignore Develocity updates", |
| 96 | + "matchDepNames": [ |
| 97 | + "com.gradle:develocity-gradle-plugin*", |
| 98 | + ], |
| 99 | + "enabled": false, |
| 100 | + }, |
62 | 101 | {
|
63 | 102 | // Reason: Gradle version updates may break existing configurations
|
64 | 103 | "description": "Ignore Gradle updates in Core",
|
|
0 commit comments