We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7d1d8bc + a61dc60 commit 7a7e0cbCopy full SHA for 7a7e0cb
.github/workflows/update-deps.py
@@ -138,6 +138,12 @@ def select_new_version(
138
log.info(f"Skipping version {new_version} for package {package_name}")
139
continue
140
141
+ if package_name == "php" and bump_version == "minor":
142
+ """For php, a bump in what is normally considered the minor version,
143
+ can contain breaking changes. So for minor package updates, we will
144
+ only bump the last number."""
145
+ bump_version = "patch"
146
+
147
if bump_version == "major":
148
return new_version
149
if bump_version == "minor" and old_split[:1] == new_split[:1]:
0 commit comments