-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(deps): update dependency com.github.spotbugs:spotbugs-annotations to v4.9.0 #8374
base: 4.8.x
Are you sure you want to change the base?
Conversation
dee83c2
to
244fdc5
Compare
244fdc5
to
4d60279
Compare
4d60279
to
146b9c4
Compare
146b9c4
to
888aed7
Compare
210144b
to
a5558fc
Compare
❌ GraalVM CE CI 17 dev failed: |
a5558fc
to
aa318cb
Compare
aa318cb
to
50ffcd1
Compare
50ffcd1
to
4242165
Compare
f23a1c1
to
5e220fa
Compare
Kudos, SonarCloud Quality Gate passed! |
5e220fa
to
c48ae44
Compare
c48ae44
to
ede60ae
Compare
ede60ae
to
8875e69
Compare
8875e69
to
1c5abc6
Compare
1c5abc6
to
1fef6db
Compare
07909ed
to
2615184
Compare
2615184
to
8135c26
Compare
Quality Gate passedIssues Measures |
8135c26
to
1b22ef1
Compare
Quality Gate passedIssues Measures |
1b22ef1
to
f5bd22f
Compare
f5bd22f
to
4f033bb
Compare
0016911
to
bc65075
Compare
Quality Gate passedIssues Measures |
bc65075
to
22f9cd7
Compare
22f9cd7
to
bc1ab6c
Compare
bc1ab6c
to
df5d52a
Compare
Quality Gate passedIssues Measures |
This PR contains the following updates:
4.7.1
->4.9.0
Release Notes
spotbugs/spotbugs (com.github.spotbugs:spotbugs-annotations)
v4.9.0
Compare Source
Added
SuppressFBWarnings
annotation to support finer grained bug suppressions (#3102)ResourceInMultipleThreadsDetector
and introduced new bug type:AT_UNSAFE_RESOURCE_ACCESS_IN_THREAD
is reported in case of unsafe resource access in multiple threads.Fixed
MC_OVERRIDABLE_METHOD_CALL_IN_READ_OBJECT
when calling own methods (#2957)findbugs.refcomp.reportAll
is now being used. For some new conditions, it will emit an experimental warning (#2988)-version
flag prints the version to the standard output (#2797)SING_SINGLETON_GETTER_NOT_SYNCHRONIZED
report when the synchronization is in a called method (#3045)BetterCFGBuilder2.isPEI
handledup2
bytecode used by Spring AOT (#3059)EI_EXPOSE_REP
when there are multiple immutable assignments (#3023)NP_NONNULL_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR
for Kotlin, handle Kotlin'sIntrinsics.checkNotNullParameter()
(#3094)FindReturnRef
not finding references exposed from nested and inner classes (#2042)FI_FINALIZER_NULLS_FIELDS
FPs for functions called finalize() but not with the correct signature. (#3207)ThrowingExceptions
by removing false positive reports, such as synthetic methods (lambdas), methods which inherited their exception specifications and methods which call throwing methods (#2040)DP_DO_INSIDE_DO_PRIVILEGED
,DP_CREATE_CLASSLOADER_INSIDE_DO_PRIVILEGED
andUSC_POTENTIAL_SECURITY_CHECK_BASED_ON_UNTRUSTED_SOURCE
in code targeting Java 17 and above, since it advises the usage of deprecated method (#1515).RV_RETURN_VALUE_IGNORED_NO_SIDE_EFFECT
false positive for a builder delegating to another builder (#3235)Cleanup
Collection.isEmpty()
orString.isEmpty()
to test for emptiness (#3180, #3219)Boolean.parseBoolean()
for string-to-boolean conversion. (#3217)Changed
v4.8.6
Compare Source
Fixed
IGNORED_PRIORITY
(#2994)v4.8.5
Compare Source
Fixed
SING_SINGLETON_GETTER_NOT_SYNCHRONIZED
with eager instances (#2932)SE_BAD_FIELD
for record fields (#2935)v4.8.4
Compare Source
Fixed
executionSuccessful
flag in SARIF report being set to false when bugs were found (#2116)exitSignalName
toexitCodeDescription
(#2739)Added
MultipleInstantiationsOfSingletons
and introduced new bug types:SING_SINGLETON_HAS_NONPRIVATE_CONSTRUCTOR
is reported in case of a non-private constructor,SING_SINGLETON_IMPLEMENTS_CLONEABLE
is reported in case of a class directly implementing theCloneable
interface,SING_SINGLETON_INDIRECTLY_IMPLEMENTS_CLONEABLE
is reported when a class indirectly implements theCloneable
interface,SING_SINGLETON_IMPLEMENTS_CLONE_METHOD
is reported when a class does not implement theCloneable
interface, but has aclone()
method,SING_SINGLETON_IMPLEMENTS_SERIALIZABLE
is reported when a class directly or indirectly implements theSerializable
interface andSING_SINGLETON_GETTER_NOT_SYNCHRONIZED
is reported when the instance-getter method of the singleton class is not synchronized.(See SEI CERT MSC07-J)
FindOverridableMethodCall
detector with new bug type:MC_OVERRIDABLE_METHOD_CALL_IN_READ_OBJECT
. It's reported when an overridable method is called fromreadObject()
, according to SEI CERT rule SER09-J. Do not invoke overridable methods from the readObject() method.Changed
Build
v4.8.3
Compare Source
Fixed
Changed
v4.8.2
Compare Source
Fixed
Added
System.getenv()
calls, where the corresponding Java property could be used (See ENV02-J).Build
v4.8.1
Compare Source
Fixed
PA_PUBLIC_MUTABLE_OBJECT_ATTRIBUTE
bug (#2652)Build
v4.8.0
Compare Source
Changed
Fixed
RandomOnceSubDetector
to not report whendoubles
,ints
, orlongs
are called on a newRandom
orSecureRandom
(#2370)TestASM
throwing error during analysis, because it doesn't note that it reports bugs.Added
classAnnotationNames
). For example, use like in an excludeFilter.xml to ignore classes generated by the Immutable framework. This ignores all class, method or field bugs in classes with that annotation.FindAssertionsWithSideEffects
detecting bugASSERTION_WITH_SIDE_EFFECT
andASSERTION_WITH_SIDE_EFFECT_METHOD
in case of assertions which may have side effects (See EXP06-J. Expressions used in assertions must not produce side effects)PA_PUBLIC_PRIMITIVE_ATTRIBUTE
,PA_PUBLIC_ARRAY_ATTRIBUTE
andPA_PUBLIC_MUTABLE_OBJECT_ATTRIBUTE
to warn for public attributes which are written by the methods of the class. This rule is loosely based on the SEI CERT rule OBJ01-J Limit accessibility of fields. (#OBJ01-J)SerializableIdiom
detector with new bug type:SE_PREVENT_EXT_OBJ_OVERWRITE
. It's reported in case of thereadExternal()
method allows any caller to reset any value of an objectFindVulnerableSecurityCheckMethods
for new bug typeVSC_VULNERABLE_SECURITY_CHECK_METHODS
. This bug is reported whenever a non-final and non-private method of a non-final class performs a security check using thejava.lang.SecurityManager
. (See [SEI CERT MET03-J] (https://wiki.sei.cmu.edu/confluence/display/java/MET03-J.+Methods+that+perform+a+security+check+must+be+declared+private+or+final))SynchronizationOnSharedBuiltinConstant
to detectDL_SYNCHRONIZATION_ON_INTERNED_STRING
(#2266)FindArgumentAssertions
detecting bugASSERTION_OF_ARGUMENTS
in case of validation of arguments of public functions using assertions (See MET01-J. Never use assertions to validate method arguments)CT_CONSTRUCTOR_THROW
for detecting constructors that throw exceptions.DontReusePublicIdentifiers
for new bug typePI_DO_NOT_REUSE_PUBLIC_IDENTIFIERS
. This bug is reported whenever a new class, interface, field, method or variable is created reusing an identifier from the Java Standard Library . (See SEI CERT rule DCL01-J)Security
Build
v4.7.3
Compare Source
Fixed
DontUseFloatsAsLoopCounters
to prevent false positives. (#2126)4.7.2
caused by (#2141)UncallableMethodOfAnonymousClass
to not report unused methods of method-local enumerations and records (#2120)FindSqlInjection
to detect bugSQL_NONCONSTANT_STRING_PASSED_TO_EXECUTE SQL
with high priority in case of unsafe appends also in Java 11 and above (#2183)StringConcatenation
to detect bugSBSC_USE_STRINGBUFFER_CONCATENATION
also in Java 11 and above (#2182)OpcodeStackDetector
to to handle propagation of taints properly in case of string concatenation in Java 9 and above (#2195)2.19.0
ViewCFG
to generate file names that are also valid on Windows (#2209)v4.7.2
Compare Source
Fixed
2.0.0
1.4.0
2.18.0
11.4
(#2160)SA_FIELD_SELF_ASSIGNMENT
is now reported from nested classes as well (#2142)EI_EXPOSE_REP
thrown in case of fields initialized by theof
orcopyOf
method of aList
,Map
orSet
(#1771)dup_x2
is used to swap the reference and wide-value (double, long) in the stack (#2146)Configuration
📅 Schedule: Branch creation - "after 10pm" in timezone Europe/Prague, Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.