Skip to content

Commit a13bb11

Browse files
authored
chore(deps): do not attempt to update nginx (#2017) (#2018)
<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Introduced a new configuration file for automated dependency updates, enhancing version management. - Implemented specific rules to preserve compatibility with legacy systems by restricting updates for certain packages. - **Documentation** - Updated documentation to clarify the importance of maintaining legacy dependencies for older clients. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
2 parents dd30ceb + 9cbbbf3 commit a13bb11

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.renovaterc.json5

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"extends": [
3+
"config:best-practices",
4+
":automergeStableNonMajor"
5+
],
6+
"packageRules": [
7+
{
8+
"allowedVersions": "1.9.8",
9+
"matchDatasources": [
10+
"docker"
11+
],
12+
"matchPackageNames": [
13+
// Prevent automatic updates from nginx:1.9.8
14+
// While this image can still be found on DockerHub,
15+
// it is also archived at https://archive.org/details/nginx_1.9.8.tar
16+
// This is required to serve as a proxy to the [SChannel](https://web.archive.org/web/20230402130420/https://learn.microsoft.com/en-us/windows/win32/com/schannel) that Windows XP uses.
17+
// Windows XP is required support since the legacy client can not be upgraded or modified.
18+
"nginx"
19+
]
20+
}
21+
],
22+
}

0 commit comments

Comments
 (0)