Skip to content

Commit

Permalink
chore(config): migrate config renovate.json (#5949)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Jan 30, 2025
1 parent 750ae9f commit f0a2429
Showing 1 changed file with 105 additions and 43 deletions.
148 changes: 105 additions & 43 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"config:recommended"
],
"enabledManagers": [
"npm", "maven"
"npm",
"maven"
],
"dependencyDashboard": true,
"rangeStrategy": "bump",
Expand All @@ -22,136 +23,197 @@
"packageRules": [
{
"groupName": "Dependencies: Maven App: All",
"matchPaths": [
"matchFileNames": [
"**/pom.xml"
],
"enabled": true,
"matchUpdateTypes": ["minor", "patch"]
"matchUpdateTypes": [
"minor",
"patch"
]
},
{
"groupName": "Dependencies: Maven App: All (Major)",
"matchPaths": [
"matchFileNames": [
"**/pom.xml"
],
"enabled": true,
"matchUpdateTypes": ["major"],
"schedule": [ "* 0 1 * *" ]
"matchUpdateTypes": [
"major"
],
"schedule": [
"* 0 1 * *"
]
},
{
"groupName": "Dependencies: Maven App: Quarkus",
"matchPaths": [
"matchFileNames": [
"**/pom.xml"
],
"matchPackageNames": ["io.quarkus:*"],
"matchPackageNames": [
"io.quarkus:*"
],
"enabled": true,
"matchUpdateTypes": ["minor", "patch"],
"schedule": [ "* 0 1 * *" ]
"matchUpdateTypes": [
"minor",
"patch"
],
"schedule": [
"* 0 1 * *"
]
},
{
"groupName": "Dependencies: Maven App: Quarkus (Major)",
"matchPaths": [
"matchFileNames": [
"**/pom.xml"
],
"matchPackageNames": ["io.quarkus:*"],
"matchPackageNames": [
"io.quarkus:*"
],
"enabled": false,
"matchUpdateTypes": ["major"]
"matchUpdateTypes": [
"major"
]
},
{
"groupName": "Dependencies: Maven App: Confluent",
"matchPaths": [
"matchFileNames": [
"**/pom.xml"
],
"matchPackageNames": ["io.confluent:*"],
"matchPackageNames": [
"io.confluent:*"
],
"enabled": false,
"matchUpdateTypes": ["minor", "patch"],
"schedule": [ "* 0 1 * *" ]
"matchUpdateTypes": [
"minor",
"patch"
],
"schedule": [
"* 0 1 * *"
]
},
{
"groupName": "Dependencies: Maven App: Confluent (Major)",
"matchPaths": [
"matchFileNames": [
"**/pom.xml"
],
"matchPackageNames": ["io.confluent:*"],
"matchPackageNames": [
"io.confluent:*"
],
"enabled": false,
"matchUpdateTypes": ["major"]
"matchUpdateTypes": [
"major"
]
},
{
"groupName": "Dependencies: UI App",
"matchPaths": [
"matchFileNames": [
"ui/ui-app/**"
],
"enabled": true,
"matchUpdateTypes": ["minor", "patch"]
"matchUpdateTypes": [
"minor",
"patch"
]
},
{
"groupName": "Dependencies: UI App (Major)",
"matchPaths": [
"matchFileNames": [
"ui/ui-app/**"
],
"enabled": true,
"matchUpdateTypes": ["major"],
"schedule": [ "* 0 15 * *" ]
"matchUpdateTypes": [
"major"
],
"schedule": [
"* 0 15 * *"
]
},
{
"groupName": "Dependencies: Typescript SDK",
"matchPaths": [
"matchFileNames": [
"typescript-sdk/**"
],
"enabled": true,
"matchUpdateTypes": ["minor", "patch"]
"matchUpdateTypes": [
"minor",
"patch"
]
},
{
"groupName": "Dependencies: Typescript SDK (Major)",
"matchPaths": [
"matchFileNames": [
"typescript-sdk/**"
],
"enabled": true,
"matchUpdateTypes": ["major"],
"schedule": [ "* 0 15 * *" ]
"matchUpdateTypes": [
"major"
],
"schedule": [
"* 0 15 * *"
]
},
{
"groupName": "Dependencies: Kiota (Typescript)",
"matchPaths": [
"matchFileNames": [
"typescript-sdk/**",
"ui/ui-app/**"
],
"matchPackageNames": ["@microsoft/kiota-*"],
"matchPackageNames": [
"@microsoft/kiota-*"
],
"enabled": true,
"schedule": [ "* 0 15 * *" ]
"schedule": [
"* 0 15 * *"
]
},
{
"groupName": "Dependencies: UI Tests",
"matchPaths": [
"matchFileNames": [
"ui/tests/**"
],
"enabled": true,
"matchUpdateTypes": ["minor", "patch"]
"matchUpdateTypes": [
"minor",
"patch"
]
},
{
"groupName": "Dependencies: UI Tests (Major)",
"matchPaths": [
"matchFileNames": [
"ui/tests/**"
],
"enabled": true,
"matchUpdateTypes": ["major"],
"schedule": [ "* 0 15 * *" ]
"matchUpdateTypes": [
"major"
],
"schedule": [
"* 0 15 * *"
]
},
{
"groupName": "Dependencies: UI Docs",
"matchPaths": [
"matchFileNames": [
"ui/ui-docs/**"
],
"enabled": true,
"matchUpdateTypes": ["minor", "patch"]
"matchUpdateTypes": [
"minor",
"patch"
]
},
{
"groupName": "Dependencies: UI Docs (Major)",
"matchPaths": [
"matchFileNames": [
"ui/ui-docs/**"
],
"enabled": true,
"matchUpdateTypes": ["major"],
"schedule": [ "* 0 15 * *" ]
"matchUpdateTypes": [
"major"
],
"schedule": [
"* 0 15 * *"
]
}
]
}

0 comments on commit f0a2429

Please sign in to comment.