Skip to content

Commit

Permalink
chore(config): migrate renovate config (#976)
Browse files Browse the repository at this point in the history
The Renovate config in this repository needs migrating. Typically this is because one or more configuration options you are using have been renamed.

  You don't need to merge this PR right away, because Renovate will continue to migrate these fields internally each time it runs. But later some of these fields may be fully deprecated and the migrations removed. So it's a good idea to merge this migration PR soon. 





🔕 **Ignore**: Close this PR and you won't be reminded about config migration again, but one day your current config may no longer be valid.

❓ Got questions? Does something look wrong to you? Please don't hesitate to [request help here](https://github.com/renovatebot/renovate/discussions).


---

This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/googleapis/java-shared-config).
  • Loading branch information
renovate-bot authored Feb 4, 2025
1 parent 8d7c796 commit 8acccc3
Showing 1 changed file with 51 additions and 48 deletions.
99 changes: 51 additions & 48 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,76 +7,79 @@
":updateNotScheduled",
":automergeDisabled",
":ignoreModulesAndTests",
":maintainLockFilesDisabled",
":autodetectPinVersions"
":maintainLockFilesDisabled"
],
"ignorePaths": [
".kokoro/requirements.txt"
],
"ignoreDeps": [
"org.codehaus.mojo:flatten-maven-plugin"
],
"ignorePaths": [".kokoro/requirements.txt"],
"ignoreDeps": ["org.codehaus.mojo:flatten-maven-plugin"],
"packageRules": [
{
"packagePatterns": [
"^com.google.auto.value:"
],
"enabled": false
"enabled": false,
"matchPackageNames": [
"/^com.google.auto.value:/"
]
},
{
"packagePatterns": [
"*"
],
"semanticCommitType": "deps",
"semanticCommitScope": null
"semanticCommitScope": null,
"matchPackageNames": [
"*"
]
},
{
"packagePatterns": [
"^org.apache.maven",
"^org.jacoco:",
"^org.codehaus.mojo:",
"^org.sonatype.plugins:",
"^com.coveo:",
"^com.google.cloud:google-cloud-shared-config"
],
"semanticCommitType": "build",
"semanticCommitScope": "deps"
"semanticCommitScope": "deps",
"matchPackageNames": [
"/^org.apache.maven/",
"/^org.jacoco:/",
"/^org.codehaus.mojo:/",
"/^org.sonatype.plugins:/",
"/^com.coveo:/",
"/^com.google.cloud:google-cloud-shared-config/"
]
},
{
"packagePatterns": [
"^com.google.cloud:google-cloud-shared-config",
"^com.google.cloud:libraries-bom",
"^com.google.cloud.samples:shared-configuration"
],
"semanticCommitType": "chore",
"semanticCommitScope": "deps"
"semanticCommitScope": "deps",
"matchPackageNames": [
"/^com.google.cloud:google-cloud-shared-config/",
"/^com.google.cloud:libraries-bom/",
"/^com.google.cloud.samples:shared-configuration/"
]
},
{
"packagePatterns": [
"^junit:junit",
"^com.google.truth:truth",
"^org.mockito:mockito-core",
"^org.objenesis:objenesis",
"^com.google.cloud:google-cloud-conformance-tests"
],
"semanticCommitType": "test",
"semanticCommitScope": "deps"
"semanticCommitScope": "deps",
"matchPackageNames": [
"/^junit:junit/",
"/^com.google.truth:truth/",
"/^org.mockito:mockito-core/",
"/^org.objenesis:objenesis/",
"/^com.google.cloud:google-cloud-conformance-tests/"
]
},
{
"packagePatterns": [
"^com.google.cloud:google-cloud-"
],
"ignoreUnstable": false
"ignoreUnstable": false,
"matchPackageNames": [
"/^com.google.cloud:google-cloud-/"
]
},
{
"packagePatterns": [
"^com.fasterxml.jackson.core"
],
"groupName": "jackson dependencies"
"groupName": "jackson dependencies",
"matchPackageNames": [
"/^com.fasterxml.jackson.core/"
]
},
{
"packagePatterns": [
"^org.graalvm.buildtools"
],
"groupName": "GraalVM native-image dependencies"
"groupName": "GraalVM native-image dependencies",
"matchPackageNames": [
"/^org.graalvm.buildtools/"
]
}
],
"semanticCommits": true,
"semanticCommits": "enabled",
"dependencyDashboard": true
}

0 comments on commit 8acccc3

Please sign in to comment.