This is an automated email from the ASF dual-hosted git repository.
yzheng pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/polaris.git
The following commit(s) were added to refs/heads/main by this push:
new 5e5779f11 Fix renovate syntax (#3471)
5e5779f11 is described below
commit 5e5779f115472fa8614a6820b1e178520d927012
Author: Yong Zheng <[email protected]>
AuthorDate: Mon Jan 19 09:07:41 2026 -0600
Fix renovate syntax (#3471)
---
.github/renovate.json5 | 26 +++++++++++---------------
1 file changed, 11 insertions(+), 15 deletions(-)
diff --git a/.github/renovate.json5 b/.github/renovate.json5
index 9a9eed8e1..a4688c675 100644
--- a/.github/renovate.json5
+++ b/.github/renovate.json5
@@ -19,7 +19,7 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
extends: [
- "config:base",
+ "config:recommended",
// Required to not pin dependencies to _exact_ versions (pip)
":preserveSemverRanges",
"group:monorepos",
@@ -31,21 +31,18 @@
// Added for posterity how to let Renovate manage version-branches, assuming
that release branches
// have the `release/` prefix.
// BE CAREFUL WITH THIS OPTION and make sure that the changes work.
- baseBranches: [
+ baseBranchPatterns: [
"main",
],
pip_requirements: {
// fileMatch default: (^|/)([\\w-]*)requirements\\.(txt|pip)$
- "fileMatch": ["(^|/)([\\w-]*)requirements.*\\.txt$"],
+ "managerFilePatterns": ["(^|/)([\\w-]*)requirements.*\\.txt$"],
},
- docker: {
- fileMatch: [
- "(^|/)Dockerfile$",
- "(^|/)Dockerfile\\.[^/]*$",
- "(^|/)Dockerfile-[^/]*$"
- ]
+ dockerfile: {
+ // Update all dockerfiles
+ "ignorePaths": []
},
packageRules: [
@@ -59,21 +56,19 @@
"github-actions"],
automerge: false, // just be explicit (false is the default)
},
-
// Reduce update frequency for a few dependencies that have a quite high
release frequency.
- // awssdk (release frequency: daily)
+ // awssdk (release frequency: daily)
{
matchManagers: ["gradle"],
- matchPackagePrefixes: ["software.amazon.awssdk"],
+ matchPackageNames: ["software.amazon.awssdk{/,}**"],
extends: ["schedule:weekly"],
},
- // boto3 (release frequency: multiple times per week)
+ // boto3 (release frequency: multiple times per week)
{
matchManagers: ["pip_requirements", "pip_setup", "uv"],
- matchPackagePrefixes: ["boto3"],
+ matchPackageNames: ["boto3{/,}**"],
extends: ["schedule:weekly"],
},
-
// Quarkus platform + plugin together
{
groupName: "Quarkus Platform and Group",
@@ -85,6 +80,7 @@
"io.quarkus:io.quarkus.gradle.plugin",
],
},
+ // Disable update for openapi-generator-cli due to our OpenAPI spec version
{
matchPackageNames: ["openapi-generator-cli"],
enabled: false