From d24145831bf81f078d47e6cdc5b0ab062936dfb7 Mon Sep 17 00:00:00 2001 From: Anders Schack-Mulligen Date: Fri, 23 Nov 2018 14:21:30 +0100 Subject: [PATCH] Java: Add change note for #459. --- change-notes/1.19/analysis-java.md | 1 + 1 file changed, 1 insertion(+) diff --git a/change-notes/1.19/analysis-java.md b/change-notes/1.19/analysis-java.md index 6458ff1d0101..e9594966b6e0 100644 --- a/change-notes/1.19/analysis-java.md +++ b/change-notes/1.19/analysis-java.md @@ -16,6 +16,7 @@ | **Query** | **Expected impact** | **Change** | |----------------------------|------------------------|------------------------------------------------------------------| | Array index out of bounds (`java/index-out-of-bounds`) | Fewer false positive results | False positives involving arrays with a length evenly divisible by 3 or some greater number and an index being increased with a similar stride length are no longer reported. | +| Confusing overloading of methods (`java/confusing-method-signature`) | Fewer false positive results | A bugfix in the inheritance relation ensures that spurious results on certain generic classes no longer occur. | | Query built from user-controlled sources (`java/sql-injection`) | More results | Sql injection sinks from the Spring JDBC, MyBatis, and Hibernate frameworks are now reported. | | Query built without neutralizing special characters (`java/concatenated-sql-query`) | More results | Sql injection sinks from the Spring JDBC, MyBatis, and Hibernate frameworks are now reported. | | Unreachable catch clause (`java/unreachable-catch-clause`) | Fewer false positive results | This rule now accounts for calls to generic methods that throw generic exceptions. |