mirror of
https://github.com/owncast/owncast.git
synced 2024-11-21 12:18:02 +03:00
fix(deps): do not allow statically assigned versions to auto-update. See #4010
This commit is contained in:
parent
37c18ec8ab
commit
aecf7aa9bb
2 changed files with 12 additions and 9 deletions
|
@ -38,13 +38,6 @@
|
||||||
"platformAutomerge": true,
|
"platformAutomerge": true,
|
||||||
"dependencyDashboardApproval": false
|
"dependencyDashboardApproval": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"description": "Require approval for every Go language update",
|
|
||||||
"dependencyDashboardApproval": true,
|
|
||||||
"matchPackagePatterns": [
|
|
||||||
"go"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"description": "Ignore the old pre-0.1.0 web packages",
|
"description": "Ignore the old pre-0.1.0 web packages",
|
||||||
"matchPackageNames": [
|
"matchPackageNames": [
|
||||||
|
@ -59,6 +52,16 @@
|
||||||
"preact"
|
"preact"
|
||||||
],
|
],
|
||||||
"enabled": false
|
"enabled": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"description": "Do not auto-merge statically assigned versions in npm",
|
||||||
|
"matchManagers": [
|
||||||
|
"npm"
|
||||||
|
],
|
||||||
|
"matchCurrentVersion": "^[0-9]+\\.[0-9]+\\.[0-9]+$",
|
||||||
|
"automerge": false,
|
||||||
|
"platformAutomerge": false,
|
||||||
|
"dependencyDashboardApproval": true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
|
@ -141,7 +141,7 @@
|
||||||
},
|
},
|
||||||
"overrides": {
|
"overrides": {
|
||||||
"@emoji-mart/react": {
|
"@emoji-mart/react": {
|
||||||
"emoji-mart": "5.6.0"
|
"emoji-mart": "5.2.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue