Warn about bundled provide version bumps and backouts in openjdk_news.sh
Related: RHEL-103209
This commit is contained in:
parent
f6207c7157
commit
5310bcb1e9
@ -2563,6 +2563,10 @@ cjc.mainProgram(args)
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Jul 09 2025 Thomas Fitzsimmons <fitzsim@redhat.com> - 1:21.0.8.0.1-0.1.ea
|
||||||
|
- Warn about bundled provide version bumps and backouts in openjdk_news.sh
|
||||||
|
- Related: RHEL-103209
|
||||||
|
|
||||||
* Wed Jul 09 2025 Andrew Hughes <gnu.andrew@redhat.com> - 1:21.0.8.0.1-0.1.ea
|
* Wed Jul 09 2025 Andrew Hughes <gnu.andrew@redhat.com> - 1:21.0.8.0.1-0.1.ea
|
||||||
- Update to jdk-21.0.8+1 (EA)
|
- Update to jdk-21.0.8+1 (EA)
|
||||||
- Update release notes to 21.0.8+1
|
- Update release notes to 21.0.8+1
|
||||||
|
@ -72,6 +72,15 @@ done
|
|||||||
sort "${TMPDIR}/fixes2" "${TMPDIR}/fixes3" | uniq > "${TMPDIR}/fixes"
|
sort "${TMPDIR}/fixes2" "${TMPDIR}/fixes3" | uniq > "${TMPDIR}/fixes"
|
||||||
rm -f "${TMPDIR}/fixes2" "${TMPDIR}/fixes3"
|
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:"
|
echo "In ${TMPDIR}/fixes:"
|
||||||
cat "${TMPDIR}/fixes"
|
cat "${TMPDIR}/fixes"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user