Skip to content

Commit

Permalink
document skipping protos
Browse files Browse the repository at this point in the history
  • Loading branch information
nakulj committed Jul 3, 2024
1 parent 0431aa5 commit c00543f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/scripts/backwards_compatibility_check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,10 @@ find_removed_methods() {
jar tf $LATEST_JAR |
grep .class |
tr / . | sed 's/\.class$//' |
# skip generated proto classes since these have a lot of inherited methods that are not outputted by javap.
# skip generated proto classes since these have a lot of inherited methods
# that are not outputted by javap. besides, generated java code is not a
# good indicator of proto compatibility- it will not capture reserved
# tags or deprecated fields.
grep -v 'software\.amazon\.kinesis\.retrieval\.kpl\.Messages')
for class in $latest_classes
do
Expand Down

0 comments on commit c00543f

Please sign in to comment.