Skip to content

Commit

Permalink
Fixes and include MongoDB driver
Browse files Browse the repository at this point in the history
  • Loading branch information
asimmon committed Sep 23, 2024
1 parent 2606985 commit 38c618d
Showing 1 changed file with 16 additions and 9 deletions.
25 changes: 16 additions & 9 deletions default.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@
"groupName": "Allow Workleap's NuGet and NPM packages to be updated immediately",
"minimumReleaseAge": "0 days",
"matchPackageNames": [
"/^[wW]orkleap\\./",
"/^[oO]ffice[vV]ibe\\./",
"/^[sS]share[gG]ate\\./",
"/^Workleap\\./i",
"/^Officevibe\\./i",
"/^Sharegate\\./i",
"/^@workleap",
"/^@sharegate",
"/^@officevibe",
Expand All @@ -73,11 +73,12 @@
"mcr.microsoft.com/dotnet/runtime",
"mcr.microsoft.com/dotnet/runtime-deps",
"Azure.Identity",
"/^[mM]icrosoft\\./",
"/^[sS]ystem\\./",
"/^Microsoft\\./i",
"/^System\\./i",
"coverlet.collector",
"xunit",
"/^xunit\\./"
"/^xunit\\./i",
"/^MongoDB\\./i"
]
},
{
Expand Down Expand Up @@ -107,8 +108,8 @@
{
"groupName": "microsoft",
"matchPackageNames": [
"/^[mM]icrosoft\\./",
"/^[sS]ystem\\./"
"/^Microsoft\\./i",
"/^System\\./i"
],
"extends": [
":separateMajorReleases"
Expand All @@ -118,7 +119,13 @@
"groupName": "hangfire monorepo",
"description": "Group Hangfire dependencies to make sure the build succeeds since they have strict version restrictions",
"matchManagers": ["nuget"],
"matchPackageNames": ["/^[hH]angfire(\\.|$)/"]
"matchPackageNames": ["/^Hangfire(\\.|$)/i"]
},
{
"groupName": "mongodb monorepo",
"description": "Group MongoDB dependencies update in a single PR to avoid conflicts",
"matchManagers": ["nuget"],
"matchPackageNames": ["/^MongoDB\\./i"]
},
{
"groupName": "pipeline dependencies",
Expand Down

0 comments on commit 38c618d

Please sign in to comment.