Warn about bundled provide version bumps and backouts in openjdk_news.sh

- Warn about bundled provide version bumps and backouts in openjdk_news.sh

Related: RHEL-73545
This commit is contained in:
Thomas Fitzsimmons 2024-10-17 12:47:59 -04:00
parent e0f1f7a9ee
commit 797e33c64a
2 changed files with 10 additions and 0 deletions

View File

@ -2497,6 +2497,7 @@ require "copy_jdk_configs.lua"
- Double percent signs consistently throughout comments
- Set bundled giflib provide version to 5.2.2
- Set bundled libpng provide version to 1.6.43
- Warn about bundled provide version bumps and backouts in openjdk_news.sh
* Wed Oct 9 2024 Thomas Fitzsimmons <fitzsim@redhat.com> - 1:17.0.13.0.11-3
- Correct version suffix in "Update to jdk-17.0.13+11 (GA)" changelog entry

View File

@ -72,6 +72,15 @@ done
sort "${TMPDIR}/fixes2" "${TMPDIR}/fixes3" | uniq > "${TMPDIR}/fixes"
rm -f "${TMPDIR}/fixes2" "${TMPDIR}/fixes3"
if grep -i 'backout' "${TMPDIR}/fixes"
then
echo "WARNING: Review the preceding backouts"
fi
if grep -iE ': update.*(freetype|gif|harfbuzz|lcms|jpeg|png|zlib)' "${TMPDIR}/fixes"
then
echo "WARNING: Review the preceding with respect to bundled provides"
fi
echo "In ${TMPDIR}/fixes:"
cat "${TMPDIR}/fixes"