{"$schema":"https://json.schemastore.org/sarif-2.1.0.json","version":"2.1.0","runs":[{"tool":{"driver":{"name":"codehealth","informationUri":"https://codehealth.canine.dev","rules":[{"id":"D1","name":"Cyclomatic Complexity","shortDescription":{"text":"Cyclomatic Complexity"},"helpUri":"https://codehealth.canine.dev/dimensions/D1"},{"id":"D2","name":"Cognitive Complexity","shortDescription":{"text":"Cognitive Complexity"},"helpUri":"https://codehealth.canine.dev/dimensions/D2"},{"id":"D3","name":"God Classes","shortDescription":{"text":"God Classes"},"helpUri":"https://codehealth.canine.dev/dimensions/D3"},{"id":"D4","name":"Code Duplication","shortDescription":{"text":"Code Duplication"},"helpUri":"https://codehealth.canine.dev/dimensions/D4"},{"id":"D13","name":"Secret Scanning","shortDescription":{"text":"Secret Scanning"},"helpUri":"https://codehealth.canine.dev/dimensions/D13","relationships":[{"target":{"id":"CWE-798","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]},{"target":{"id":"CWE-259","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]}],"properties":{"cwe":["CWE-798","CWE-259"]}},{"id":"D15","name":"Churn \u00D7 Complexity Hotspots","shortDescription":{"text":"Churn \u00D7 Complexity Hotspots"},"helpUri":"https://codehealth.canine.dev/dimensions/D15"},{"id":"D16","name":"Bus Factor","shortDescription":{"text":"Bus Factor"},"helpUri":"https://codehealth.canine.dev/dimensions/D16"},{"id":"D19","name":"Documentation Quality","shortDescription":{"text":"Documentation Quality"},"helpUri":"https://codehealth.canine.dev/dimensions/D19"},{"id":"D21","name":"Naming Consistency","shortDescription":{"text":"Naming Consistency"},"helpUri":"https://codehealth.canine.dev/dimensions/D21"},{"id":"D28","name":"Secrets (history)","shortDescription":{"text":"Secrets (history)"},"helpUri":"https://codehealth.canine.dev/dimensions/D28","relationships":[{"target":{"id":"CWE-798","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]},{"target":{"id":"CWE-259","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]}],"properties":{"cwe":["CWE-798","CWE-259"]}},{"id":"D29","name":"Static Analysis (SAST)","shortDescription":{"text":"Static Analysis (SAST)"},"helpUri":"https://codehealth.canine.dev/dimensions/D29","relationships":[{"target":{"id":"CWE-79","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]},{"target":{"id":"CWE-89","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]},{"target":{"id":"CWE-78","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]},{"target":{"id":"CWE-94","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]},{"target":{"id":"CWE-77","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]}],"properties":{"cwe":["CWE-79","CWE-89","CWE-78","CWE-94","CWE-77"]}},{"id":"D34","name":"Knowledge Freshness","shortDescription":{"text":"Knowledge Freshness"},"helpUri":"https://codehealth.canine.dev/dimensions/D34"},{"id":"D35","name":"Change Coupling","shortDescription":{"text":"Change Coupling"},"helpUri":"https://codehealth.canine.dev/dimensions/D35"},{"id":"D36","name":"Supply-chain Provenance \u0026 Signing","shortDescription":{"text":"Supply-chain Provenance \u0026 Signing"},"helpUri":"https://codehealth.canine.dev/dimensions/D36","relationships":[{"target":{"id":"CWE-1357","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]},{"target":{"id":"CWE-494","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]}],"properties":{"cwe":["CWE-1357","CWE-494"]}}]}},"results":[{"ruleId":"D1","level":"warning","message":{"text":"MySqlConnectionFactoryProvider.splitVariables (cyclomatic 42): MySqlConnectionFactoryProvider.splitVariables has cyclomatic complexity 42 (threshold 15). To reduce it, keep the dispatch but shrink the arms: move each non-trivial case body into its own named function (or onto the value being matched) so the dispatch reads one line per case, and group related cases into a sub-dispatch. Where every arm is uniform \u2014 the same kind of value, with no behaviour of its own \u2014 a table keyed by the case is the shorter form; wherever the arms carry different data or different behaviour, keep them as cases, because collapsing those trades an explicit, reviewable set of cases for nothing."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/MySqlConnectionFactoryProvider.java"},"region":{"startLine":505}}}],"partialFingerprints":{"codehealthFindingId/v1":"dce7db032f9f70bc51a488c641aeb7c22bd6c913d31f46933a4f9dd094954ab8"}},{"ruleId":"D1","level":"warning","message":{"text":"MySqlType.of (cyclomatic 40): MySqlType.of has cyclomatic complexity 40 (threshold 15). To reduce it, keep the dispatch but shrink the arms: move each non-trivial case body into its own named function (or onto the value being matched) so the dispatch reads one line per case, and group related cases into a sub-dispatch. Where every arm is uniform \u2014 the same kind of value, with no behaviour of its own \u2014 a table keyed by the case is the shorter form; wherever the arms carry different data or different behaviour, keep them as cases, because collapsing those trades an explicit, reviewable set of cases for nothing."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/constant/MySqlType.java"},"region":{"startLine":674}}}],"partialFingerprints":{"codehealthFindingId/v1":"7a8df524fc81d26219c96cc6b6295aa5373567ccee1fa881a0aaa437cf2e04c2"}},{"ruleId":"D1","level":"warning","message":{"text":"Query.findParamMark (cyclomatic 23): Query.findParamMark has cyclomatic complexity 23 (threshold 15). To reduce it, separate the cases: extract each independent branch into its own named function, and where the body has guards that only reject input, fold those into early returns at the top."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/Query.java"},"region":{"startLine":244}}}],"partialFingerprints":{"codehealthFindingId/v1":"25c668d8a380809c92b76385a6e17a755f93ec89d5152af0dbf1318591ebaea3"}},{"ruleId":"D1","level":"warning","message":{"text":"PrepareExchangeable.accept (cyclomatic 19): PrepareExchangeable.accept has cyclomatic complexity 19 (threshold 15). To reduce it, separate the cases: extract each independent branch into its own named function, and where the body has guards that only reject input, fold those into early returns at the top."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/QueryFlow.java"},"region":{"startLine":638}}}],"partialFingerprints":{"codehealthFindingId/v1":"9f80fb9131b5b4618beebc65b44fdd4f05ee95d9d1b0fb773d0edf1d3d81740e"}},{"ruleId":"D2","level":"warning","message":{"text":"MySqlConnectionFactoryProvider.splitVariables (cognitive 53): MySqlConnectionFactoryProvider.splitVariables has cognitive complexity 53 (threshold 15). Drivers by points: if/else 29, match/switch 23, loops 1 (nesting depth added 35). To reduce it, split the body into named stages: move each independent step or branch into its own named function so the body reads as a short sequence of named calls rather than one long body."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/MySqlConnectionFactoryProvider.java"},"region":{"startLine":505}}}],"partialFingerprints":{"codehealthFindingId/v1":"f9251cdd65143764ca80233481715d375da729483350ec0965eb5ab81f5a923f"}},{"ruleId":"D2","level":"warning","message":{"text":"Query.findParamMark (cognitive 52): Query.findParamMark has cognitive complexity 52 (threshold 15). Drivers by points: if/else 34, loops 12, boolean chains 4, match/switch 2 (nesting depth added 34). To reduce it, split the body into named stages: move each independent step or branch into its own named function so the body reads as a short sequence of named calls rather than one long body."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/Query.java"},"region":{"startLine":244}}}],"partialFingerprints":{"codehealthFindingId/v1":"55f03d8f7b2dc66c528790d2bdcd16c15c7b71508842fd07466f6beb11dcd0e9"}},{"ruleId":"D2","level":"warning","message":{"text":"PrepareExchangeable.accept (cognitive 44): PrepareExchangeable.accept has cognitive complexity 44 (threshold 15). Drivers by points: if/else 40, boolean chains 3, match/switch 1 (nesting depth added 24). To reduce it, split the body into named stages: move each independent step or branch into its own named function so the body reads as a short sequence of named calls rather than one long body."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/QueryFlow.java"},"region":{"startLine":638}}}],"partialFingerprints":{"codehealthFindingId/v1":"3e4057216419751a59cf219ce40843076f34d423ff0d547db4037d92ca613675"}},{"ruleId":"D2","level":"warning","message":{"text":"DefaultHostnameVerifier.extractSans (cognitive 24): DefaultHostnameVerifier.extractSans has cognitive complexity 24 (threshold 15). Drivers by points: if/else 16, error handling 4, boolean chains 3, loops 1 (nesting depth added 8). To reduce it, split the body into named stages: move each independent step or branch into its own named function so the body reads as a short sequence of named calls rather than one long body."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/client/DefaultHostnameVerifier.java"},"region":{"startLine":251}}}],"partialFingerprints":{"codehealthFindingId/v1":"b34de671ee5065ab9c8c475b4e1275206afa9260ad8f056c1236cabd8fc4e45b"}},{"ruleId":"D2","level":"warning","message":{"text":"DefaultCodecs.decodeLastInsertId (cognitive 24): DefaultCodecs.decodeLastInsertId has cognitive complexity 24 (threshold 15). Drivers by points: if/else 19, boolean chains 4, ternaries 1 (nesting depth added 11). To reduce it, split the body into named stages: move each independent step or branch into its own named function so the body reads as a short sequence of named calls rather than one long body."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/codec/DefaultCodecs.java"},"region":{"startLine":189}}}],"partialFingerprints":{"codehealthFindingId/v1":"359caa17f779a425ee09c33449b55a622c9b6e85f2b2f746917d6ea564d78e2e"}},{"ruleId":"D2","level":"warning","message":{"text":"MySqlSslContextSpec.forClient (cognitive 23): MySqlSslContextSpec.forClient has cognitive complexity 23 (threshold 15). Drivers by points: if/else 15, ternaries 7, boolean chains 1 (nesting depth added 9). To reduce it, split the body into named stages: move each independent step or branch into its own named function so the body reads as a short sequence of named calls rather than one long body."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/client/SslBridgeHandler.java"},"region":{"startLine":218}}}],"partialFingerprints":{"codehealthFindingId/v1":"b90ddb2cca4c6d1096cb06af59f91fd0b8ad67c2cac03a605a91dd0870e3d6e6"}},{"ruleId":"D2","level":"warning","message":{"text":"MySqlType.of (cognitive 23): MySqlType.of has cognitive complexity 23 (threshold 15). Drivers by points: ternaries 20, if/else 2, match/switch 1 (nesting depth added 10). To reduce it, split the body into named stages: move each independent step or branch into its own named function so the body reads as a short sequence of named calls rather than one long body."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/constant/MySqlType.java"},"region":{"startLine":674}}}],"partialFingerprints":{"codehealthFindingId/v1":"ff4c6e99f2b843156528ed62db84f9691e9b6b9cc2f1d26fd9c365e09c55ffcf"}},{"ruleId":"D2","level":"warning","message":{"text":"HandshakeExchangeable.accept (cognitive 23): HandshakeExchangeable.accept has cognitive complexity 23 (threshold 15). Drivers by points: if/else 23 (nesting depth added 10). To reduce it, split the body into named stages: move each independent step or branch into its own named function so the body reads as a short sequence of named calls rather than one long body."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/InitFlow.java"},"region":{"startLine":540}}}],"partialFingerprints":{"codehealthFindingId/v1":"6cd409b79670c0ae464ec3af8ae9bff28fcf0f0ba1482c82db0eec1ea6d41b8d"}},{"ruleId":"D2","level":"warning","message":{"text":"Query.parse (cognitive 23): Query.parse has cognitive complexity 23 (threshold 15). Drivers by points: if/else 16, loops 5, boolean chains 2 (nesting depth added 12). To reduce it, split the body into named stages: move each independent step or branch into its own named function so the body reads as a short sequence of named calls rather than one long body."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/Query.java"},"region":{"startLine":162}}}],"partialFingerprints":{"codehealthFindingId/v1":"9fefe528d64cab7d43c9039d910f480961f882dca3e7e0b3d359c9ad2ec3dfe4"}},{"ruleId":"D2","level":"warning","message":{"text":"HandshakeExchangeable.clientCapability (cognitive 22): HandshakeExchangeable.clientCapability has cognitive complexity 22 (threshold 15). Drivers by points: if/else 22 (nesting depth added 5). To reduce it, split the body: most of this score is breadth rather than depth \u2014 checks laid out side by side rather than stacked \u2014 so group the statements between the checks into named steps and move each step into its own function. Some of it IS depth: where a check sits inside another whose only job is to reach it, merge the two into one condition, and where an else follows a branch that already returns, drop the trailing else and let the rest of the body continue at one level."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/InitFlow.java"},"region":{"startLine":626}}}],"partialFingerprints":{"codehealthFindingId/v1":"bf147fff426de3c9a0d979de8f8cdb6b44af94e4103e75dec94056650eb4ed45"}},{"ruleId":"D2","level":"warning","message":{"text":"MySqlSegments.accept (cognitive 21): MySqlSegments.accept has cognitive complexity 21 (threshold 15). Drivers by points: if/else 15, ternaries 5, boolean chains 1 (nesting depth added 10). To reduce it, split the body into named stages: move each independent step or branch into its own named function so the body reads as a short sequence of named calls rather than one long body."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/MySqlSegmentResult.java"},"region":{"startLine":292}}}],"partialFingerprints":{"codehealthFindingId/v1":"b27b684c614ab82ce25d72763fd9e5dc1c29f1f9b5101339b9d99a425aa6a52b"}},{"ruleId":"D2","level":"warning","message":{"text":"Source.prepare (cognitive 20): Source.prepare has cognitive complexity 20 (threshold 15). Drivers by points: if/else 16, error handling 4 (nesting depth added 10). To reduce it, split the body into named stages: move each independent step or branch into its own named function so the body reads as a short sequence of named calls rather than one long body."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/OptionMapper.java"},"region":{"startLine":202}}}],"partialFingerprints":{"codehealthFindingId/v1":"9cc2cd2674ae27c054e0d4838a681c2e5564dded5240a85a64e7491d223c8cb8"}},{"ruleId":"D2","level":"warning","message":{"text":"BooleanCodec.decode (cognitive 19): BooleanCodec.decode has cognitive complexity 19 (threshold 15). Drivers by points: if/else 14, boolean chains 4, ternaries 1 (nesting depth added 7). To reduce it, split the body into named stages: move each independent step or branch into its own named function so the body reads as a short sequence of named calls rather than one long body."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/codec/BooleanCodec.java"},"region":{"startLine":44}}}],"partialFingerprints":{"codehealthFindingId/v1":"6cf8d871f03a7d201768098e504c3195e176590cf72a64a02a00a0b6878cc882"}},{"ruleId":"D2","level":"warning","message":{"text":"MetadataDecodeContext.putPart (cognitive 18): MetadataDecodeContext.putPart has cognitive complexity 18 (threshold 15). Drivers by points: if/else 18 (nesting depth added 10). To reduce it, split the body into named stages: move each independent step or branch into its own named function so the body reads as a short sequence of named calls rather than one long body."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/message/server/MetadataDecodeContext.java"},"region":{"startLine":39}}}],"partialFingerprints":{"codehealthFindingId/v1":"e8572a38144fbe6f9e015d220b2b325614d01be51df22a055dbb50706f4844d3"}},{"ruleId":"D2","level":"warning","message":{"text":"OkMessage.decode (cognitive 18): OkMessage.decode has cognitive complexity 18 (threshold 15). Drivers by points: if/else 13, loops 5 (nesting depth added 8). To reduce it, split the body into named stages: move each independent step or branch into its own named function so the body reads as a short sequence of named calls rather than one long body."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/message/server/OkMessage.java"},"region":{"startLine":162}}}],"partialFingerprints":{"codehealthFindingId/v1":"5cdd322b37d4ac6006fe2409afd35fe0d28bd56ce1a567b72777653f39081910"}},{"ruleId":"D2","level":"warning","message":{"text":"StartTransactionState.buildStartTransaction (cognitive 16): StartTransactionState.buildStartTransaction has cognitive complexity 16 (threshold 15). Drivers by points: if/else 13, ternaries 2, boolean chains 1 (nesting depth added 5). To reduce it, split the body into named stages: move each independent step or branch into its own named function so the body reads as a short sequence of named calls rather than one long body."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/QueryFlow.java"},"region":{"startLine":1050}}}],"partialFingerprints":{"codehealthFindingId/v1":"86c0ad9638646e9cd8b3d33d265ef5540b7c1b48c2212428bba73421761d6589"}},{"ruleId":"D3","level":"warning","message":{"text":"TooManyMethods: Builder: TooManyMethods \u2014 47 methods. To reduce it, group the members that share the same data into a smaller type of their own and delegate to it, so no single type carries every responsibility."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/MySqlConnectionConfiguration.java"},"region":{"startLine":439}}}],"partialFingerprints":{"codehealthFindingId/v1":"04697dd88cd2cdd7a49c31aa6ac3423ac62cd42792bfd8b7493684404e9f62b9"}},{"ruleId":"D3","level":"warning","message":{"text":"FileTooLong: mysql/QueryFlow.java: FileTooLong \u2014 649 significant lines (blank, comment-only and punctuation-only lines excluded). To reduce it, split the file along the responsibilities already in it: move each cohesive group of declarations into its own sibling file in the same module or package, so no one file has to be read whole to change one of them."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/QueryFlow.java"},"region":{"startLine":1}}}],"partialFingerprints":{"codehealthFindingId/v1":"9667092c6555f1c2d9381b3845132846dd6238eddeccad6c1840bc7c562fd7f2"}},{"ruleId":"D3","level":"warning","message":{"text":"TooManyMethods: MySqlConnectionConfiguration: TooManyMethods \u2014 38 methods. To reduce it, group the members that share the same data into a smaller type of their own and delegate to it, so no single type carries every responsibility."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/MySqlConnectionConfiguration.java"},"region":{"startLine":56}}}],"partialFingerprints":{"codehealthFindingId/v1":"2185323e34dde21b3b3fd4856a9ece0f83cf668cd0b287a3d738a1a6d5fb475f"}},{"ruleId":"D3","level":"warning","message":{"text":"TooManyMethods: ConnectionContext: TooManyMethods \u2014 34 methods. To reduce it, group the members that share the same data into a smaller type of their own and delegate to it, so no single type carries every responsibility."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/ConnectionContext.java"},"region":{"startLine":39}}}],"partialFingerprints":{"codehealthFindingId/v1":"16e8aeb9211c30a3fba992a492078513e5486278bb392736aa863a0133224b3a"}},{"ruleId":"D3","level":"warning","message":{"text":"FileTooLong: mysql/MySqlConnectionConfiguration.java: FileTooLong \u2014 539 significant lines (blank, comment-only and punctuation-only lines excluded), about 94% of them inside a single declaration: MySqlConnectionConfiguration (56-1280). Moving the declarations that sit BESIDE it into sibling files will not shorten this file. Extract from INSIDE that declaration instead: lift each cohesive group of its body \u2014 the parts that share the same inputs and are named together \u2014 into its own unit in a sibling file, and have the original call them."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/MySqlConnectionConfiguration.java"},"region":{"startLine":1}}}],"partialFingerprints":{"codehealthFindingId/v1":"340863cab2058355cd8632f18723845247ad31ccdd5e21813df551050caae43c"}},{"ruleId":"D3","level":"warning","message":{"text":"TooManyMethods: ParamWriter: TooManyMethods \u2014 32 methods. To reduce it, group the members that share the same data into a smaller type of their own and delegate to it, so no single type carries every responsibility."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/message/client/ParamWriter.java"},"region":{"startLine":39}}}],"partialFingerprints":{"codehealthFindingId/v1":"53f7abbcd48a46c7e10951455e875ac398af805afb92b7cf3a4c9dde291ab85f"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (18 lines \u00D7 2): r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/MySqlConnectionFactoryProvider.java:584-601 | r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/MySqlConnectionFactoryProvider.java:602-619 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited. Read the line range as the matched WINDOW rather than a finished unit: at \u0060r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/MySqlConnectionFactoryProvider.java:584\u0060 it begins part-way through the construct above it, so those exact lines cannot be lifted as they stand \u2014 widen the region to the smallest complete statement or declaration that contains it, and extract that. The matched lines also transfer control out of the body holding them, which cannot survive a move into a called unit unchanged: have the extracted unit return that decision and let each site act on it."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/MySqlConnectionFactoryProvider.java"},"region":{"startLine":584}}}],"partialFingerprints":{"codehealthFindingId/v1":"0f2cab78dcbef647aef55332225b58b2bf7912c44f054616b496377e4fd120f7"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (14 lines \u00D7 2): r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/codec/DoubleCodec.java:84-97 | r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/codec/FloatCodec.java:84-97 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once. The matched lines also transfer control out of the body holding them, which cannot survive a move into a called unit unchanged: have the extracted unit return that decision and let each site act on it."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/codec/DoubleCodec.java"},"region":{"startLine":84}}}],"partialFingerprints":{"codehealthFindingId/v1":"ddec3b3b5fd9569aa37320982002ac5b17d7cfe69aea9fb3532fb0f44ffbee5a"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (10 lines \u00D7 2): r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/client/ZlibCompressor.java:46-55 | r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/client/ZlibCompressor.java:90-99 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited. Read the line range as the matched WINDOW rather than a finished unit: at \u0060r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/client/ZlibCompressor.java:46\u0060 it does not close everything it opens, so those exact lines cannot be lifted as they stand \u2014 widen the region to the smallest complete statement or declaration that contains it, and extract that."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/client/ZlibCompressor.java"},"region":{"startLine":46}}}],"partialFingerprints":{"codehealthFindingId/v1":"d74cf76122f1fb5e285e56a8ab2132c5ed36f560eba15d77919ce1ce892ae1f3"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (10 lines \u00D7 2): r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/MySqlSegmentResult.java:91-100 | r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/MySqlSegmentResult.java:110-119 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited. Read the line range as the matched WINDOW rather than a finished unit: at \u0060r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/MySqlSegmentResult.java:91\u0060 it begins part-way through the construct above it, so those exact lines cannot be lifted as they stand \u2014 widen the region to the smallest complete statement or declaration that contains it, and extract that."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/MySqlSegmentResult.java"},"region":{"startLine":91}}}],"partialFingerprints":{"codehealthFindingId/v1":"10259524c665fc1d2866fa6430035da3d7e4135514522bb532d1c58b04df468c"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (9 lines \u00D7 2): r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/cache/PrepareBoundedCache.java:132-140 | r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/cache/QueryBoundedCache.java:158-166 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/cache/PrepareBoundedCache.java"},"region":{"startLine":132}}}],"partialFingerprints":{"codehealthFindingId/v1":"4fea6d78999cc7bb5d3c7a99aa76481cbe6824b50ef41e4ab1f7279920b7c0c1"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (9 lines \u00D7 2): r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/codec/BlobCodec.java:131-139 | r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/codec/ClobCodec.java:111-119 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once. Read the line range as the matched WINDOW rather than a finished unit: at \u0060r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/codec/BlobCodec.java:131\u0060 it begins part-way through the construct above it, so those exact lines cannot be lifted as they stand \u2014 widen the region to the smallest complete statement or declaration that contains it, and extract that."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/codec/BlobCodec.java"},"region":{"startLine":131}}}],"partialFingerprints":{"codehealthFindingId/v1":"b5daca14d27b123b3c545037512297e7a0469e3d4271de09686f7399e85e42c6"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (6 lines \u00D7 2): r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/codec/DefaultCodecs.java:158-164 | r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/codec/DefaultCodecs.java:179-184 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited. Read the line range as the matched WINDOW rather than a finished unit: at \u0060r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/codec/DefaultCodecs.java:179\u0060 it begins part-way through the construct above it, so those exact lines cannot be lifted as they stand \u2014 widen the region to the smallest complete statement or declaration that contains it, and extract that."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/codec/DefaultCodecs.java"},"region":{"startLine":158}}}],"partialFingerprints":{"codehealthFindingId/v1":"e149fd49249c13acbf57abfca6a0929102dba617dd7be75984395b805deff474"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (6 lines \u00D7 2): r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/collation/CharCollations.java:297-302 | r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/collation/CharCollations.java:400-405 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/collation/CharCollations.java"},"region":{"startLine":297}}}],"partialFingerprints":{"codehealthFindingId/v1":"3a7e415082f96d99d2f7ec0315070084f350dc4a24e64038ba29df9eb994093a"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (6 lines \u00D7 2): r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/collation/CharCollations.java:322-327 | r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/collation/CharCollations.java:351-356 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/collation/CharCollations.java"},"region":{"startLine":322}}}],"partialFingerprints":{"codehealthFindingId/v1":"52c323f7bf050ad2b6f2e00fccb234978bd2fe27d93bafd2922c6f787e54ef16"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (5 lines \u00D7 2): r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/cache/PrepareBoundedCache.java:40-44 | r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/cache/QueryBoundedCache.java:48-52 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/cache/PrepareBoundedCache.java"},"region":{"startLine":40}}}],"partialFingerprints":{"codehealthFindingId/v1":"7f1fae623bd7b56774bf1ba43e5817ff98cc51b3b4aedf5f1ee0ffe9a229a4cd"}},{"ruleId":"D16","level":"note","message":{"text":"Off-boarding risk: anonymized user #1: If anonymized user #1 becomes unavailable, 1 significant file(s) lose their only recent owner: r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/client/SslBridgeHandler.java. Pair on, review, or document these before any departure."},"locations":[],"partialFingerprints":{"codehealthFindingId/v1":"c1a16d87c0f121e3a7bbf1f9d6bed3eb4bc1b60b5431cc2229d17387880241ec"}},{"ruleId":"D19","level":"note","message":{"text":"The version compatibility table lists r2dbc-mysql 1.4.2 for Spring Boot 4.0/7 but does not state which versions of spring-boot-starter-data-r2dbc and spring-data-r2dbc are compatible with that driver.: Add a note under the compatibility table stating which versions of spring-boot-starter-data-r2dbc and spring-data-r2dbc (and their dependencies) are compatible with r2dbc-mysql 1.4.2."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"README.md"},"region":{"startLine":1}}}],"partialFingerprints":{"codehealthFindingId/v1":"72e2003854af0681f787cdd372104a7fa3089201ebd3fadd8b1db68bbae40635"}},{"ruleId":"D29","level":"error","message":{"text":"A security finding was recorded here. Its details are withheld on the public artifact \u2014 ask the repository owner for the full report."},"partialFingerprints":{"codehealthFindingId/v1":"d2d38e417b1e4e1080d0705931bbdc73065a1a2c530a2f141c72126dd74cee42"},"taxa":[{"id":"CWE-1357","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},{"id":"CWE-353","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}}]},{"ruleId":"D29","level":"error","message":{"text":"A security finding was recorded here. Its details are withheld on the public artifact \u2014 ask the repository owner for the full report."},"partialFingerprints":{"codehealthFindingId/v1":"b2d8fd8ebaaaca44f5fdfc402dce2534a2ef3c82df0ffa17a7c531ca431bf2dc"},"taxa":[{"id":"CWE-1357","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},{"id":"CWE-353","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}}]},{"ruleId":"D29","level":"error","message":{"text":"A security finding was recorded here. Its details are withheld on the public artifact \u2014 ask the repository owner for the full report."},"partialFingerprints":{"codehealthFindingId/v1":"492ecab91e6f9bec97d89a5c5207fbbb65c0b49d570cc0099351c305ab96dbd9"},"taxa":[{"id":"CWE-1357","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},{"id":"CWE-353","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}}]},{"ruleId":"D29","level":"error","message":{"text":"A security finding was recorded here. Its details are withheld on the public artifact \u2014 ask the repository owner for the full report."},"partialFingerprints":{"codehealthFindingId/v1":"6e98ce87bd638f98e6a6e95066bfd2e5d11440a9f63476859a0dd406f594fb51"},"taxa":[{"id":"CWE-1357","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},{"id":"CWE-353","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}}]},{"ruleId":"D29","level":"error","message":{"text":"A security finding was recorded here. Its details are withheld on the public artifact \u2014 ask the repository owner for the full report."},"partialFingerprints":{"codehealthFindingId/v1":"5f8d5e9f25036be9c7362f87c764059427cbe469a453153bc65b59a2d03fbdfa"},"taxa":[{"id":"CWE-1357","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},{"id":"CWE-353","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}}]},{"ruleId":"D29","level":"error","message":{"text":"A security finding was recorded here. Its details are withheld on the public artifact \u2014 ask the repository owner for the full report."},"partialFingerprints":{"codehealthFindingId/v1":"0fca508bc00f6a691701fd53af2d2b4e0d251bcfbfe6a063d2218884c912b90d"},"taxa":[{"id":"CWE-1357","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},{"id":"CWE-353","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}}]},{"ruleId":"D29","level":"error","message":{"text":"A security finding was recorded here. Its details are withheld on the public artifact \u2014 ask the repository owner for the full report."},"partialFingerprints":{"codehealthFindingId/v1":"eea49c80864df013a72d3f15edb45042c3e1a93e768a85f5b29dcc9d7c01ad11"},"taxa":[{"id":"CWE-1357","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},{"id":"CWE-353","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}}]},{"ruleId":"D29","level":"error","message":{"text":"A security finding was recorded here. Its details are withheld on the public artifact \u2014 ask the repository owner for the full report."},"partialFingerprints":{"codehealthFindingId/v1":"17709b297b1d7187f191c54a8319199427c3c24eaf258352623cdc054d078f5a"},"taxa":[{"id":"CWE-1357","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},{"id":"CWE-353","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}}]},{"ruleId":"D29","level":"error","message":{"text":"A security finding was recorded here. Its details are withheld on the public artifact \u2014 ask the repository owner for the full report."},"partialFingerprints":{"codehealthFindingId/v1":"b527047f9ee60ee89c0e52ca8f65a7dca6c5417bb26977ea3229ad9a1574ae69"},"taxa":[{"id":"CWE-1357","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},{"id":"CWE-353","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}}]},{"ruleId":"D29","level":"error","message":{"text":"A security finding was recorded here. Its details are withheld on the public artifact \u2014 ask the repository owner for the full report."},"partialFingerprints":{"codehealthFindingId/v1":"b3a8b3afd1af86dd9ca400cecd4d6ad7d0dae17a159f8a14866a3ef640b187ec"},"taxa":[{"id":"CWE-1357","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},{"id":"CWE-353","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}}]},{"ruleId":"D29","level":"error","message":{"text":"A security finding was recorded here. Its details are withheld on the public artifact \u2014 ask the repository owner for the full report."},"partialFingerprints":{"codehealthFindingId/v1":"dd35be5bd708d032b1ca3e4f4c14503aefb1dca98e1436514a074150ec87085f"},"taxa":[{"id":"CWE-1357","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},{"id":"CWE-353","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}}]},{"ruleId":"D29","level":"error","message":{"text":"A security finding was recorded here. Its details are withheld on the public artifact \u2014 ask the repository owner for the full report."},"partialFingerprints":{"codehealthFindingId/v1":"cc09b666c3347be1926eeb6994cff596082b4c68ab8c591e109156722d269725"},"taxa":[{"id":"CWE-1357","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},{"id":"CWE-353","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}}]},{"ruleId":"D29","level":"error","message":{"text":"A security finding was recorded here. Its details are withheld on the public artifact \u2014 ask the repository owner for the full report."},"partialFingerprints":{"codehealthFindingId/v1":"f004b67aa68bde1448bf736a819dcc8804cb1d01394c04b7258349829961d72c"},"taxa":[{"id":"CWE-1357","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},{"id":"CWE-353","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}}]},{"ruleId":"D29","level":"error","message":{"text":"A security finding was recorded here. Its details are withheld on the public artifact \u2014 ask the repository owner for the full report."},"partialFingerprints":{"codehealthFindingId/v1":"cb8f6cd8fad3163e7e2c488ae48ae0394f53be07e9d16aad5f2ae60cdeea870c"},"taxa":[{"id":"CWE-1357","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},{"id":"CWE-353","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}}]},{"ruleId":"D29","level":"error","message":{"text":"A security finding was recorded here. Its details are withheld on the public artifact \u2014 ask the repository owner for the full report."},"partialFingerprints":{"codehealthFindingId/v1":"e2959c5c61e701be8530209558206776430037988ee8f324624e0f408268af18"},"taxa":[{"id":"CWE-1357","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},{"id":"CWE-353","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}}]},{"ruleId":"D29","level":"error","message":{"text":"A security finding was recorded here. Its details are withheld on the public artifact \u2014 ask the repository owner for the full report."},"partialFingerprints":{"codehealthFindingId/v1":"554be1127a82ed943cfba0c877f6a300b6164a947a091ff25964a424d053ab10"},"taxa":[{"id":"CWE-1357","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},{"id":"CWE-353","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}}]},{"ruleId":"D29","level":"error","message":{"text":"A security finding was recorded here. Its details are withheld on the public artifact \u2014 ask the repository owner for the full report."},"partialFingerprints":{"codehealthFindingId/v1":"a555e2d6b88b4db3ab183c69cad4e567d07ba5898accda26b9aabf408d37de7a"},"taxa":[{"id":"CWE-1357","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},{"id":"CWE-353","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}}]},{"ruleId":"D34","level":"error","message":{"text":"Orphaned knowledge: No living knowledge remains for this large file \u2014 its last meaningful change has decayed away; if it breaks, no one currently understands it. Schedule a read-through / add characterisation tests before it bites."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/QueryFlow.java"},"region":{"startLine":1}}}],"partialFingerprints":{"codehealthFindingId/v1":"ed2add1ae3bcf54551a60d61e7a6440c054f64c8f9a83aac635c8b2071251304"}},{"ruleId":"D34","level":"error","message":{"text":"Orphaned knowledge: No living knowledge remains for this large file \u2014 its last meaningful change has decayed away; if it breaks, no one currently understands it. Schedule a read-through / add characterisation tests before it bites."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/InitFlow.java"},"region":{"startLine":1}}}],"partialFingerprints":{"codehealthFindingId/v1":"65b3f54dfb3d222cf71f8ed15c7f8cab9d4cdf22c46c7c34364e2a81f7913d2b"}},{"ruleId":"D34","level":"note","message":{"text":"Further orphaned files (smaller): 57 smaller file(s) also have no living knowledge \u2014 folded into the freshness score and metrics rather than listed individually (59 orphaned of 129 analysed files in total, counted over production source files of roughly 100 lines or more, excluding tests, vendored, generated and example/demo trees, largest first)."},"locations":[],"partialFingerprints":{"codehealthFindingId/v1":"ce861fd78f6935114d3a342cb90ad25870f984e1042954fcbbe27c0e23be3658"}},{"ruleId":"D36","level":"note","message":{"text":"A security finding was recorded here. Its details are withheld on the public artifact \u2014 ask the repository owner for the full report."},"partialFingerprints":{"codehealthFindingId/v1":"1b213f6eedd4b140d0bc37bdf1496f72811a643f34064f12518b32e9e83bcfc7"}},{"ruleId":"D36","level":"note","message":{"text":"A security finding was recorded here. Its details are withheld on the public artifact \u2014 ask the repository owner for the full report."},"partialFingerprints":{"codehealthFindingId/v1":"eb00976a698a5d68999b7ee6d27206fd374e916853e7ff1ead5eed42386f043f"}},{"ruleId":"D36","level":"warning","message":{"text":"A security finding was recorded here. Its details are withheld on the public artifact \u2014 ask the repository owner for the full report."},"partialFingerprints":{"codehealthFindingId/v1":"90f83b4fa27db32740afe9540c905f3c0499caed87f61049a8a903ecc95b41c3"}},{"ruleId":"D36","level":"warning","message":{"text":"A security finding was recorded here. Its details are withheld on the public artifact \u2014 ask the repository owner for the full report."},"partialFingerprints":{"codehealthFindingId/v1":"0752d0df7434000fcabf1048e2de30a7a1a8b982b3db9a19898c4dec199856b4"}}],"taxonomies":[{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d","organization":"MITRE","informationUri":"https://cwe.mitre.org/","isComprehensive":false,"shortDescription":{"text":"The MITRE Common Weakness Enumeration (CWE)."},"taxa":[{"id":"CWE-1357","guid":"e4d2e772-757e-0a5c-bd7d-77052949d866","name":"Reliance on Insufficiently Trustworthy Component","shortDescription":{"text":"Reliance on Insufficiently Trustworthy Component"},"helpUri":"https://cwe.mitre.org/data/definitions/1357.html"},{"id":"CWE-259","guid":"ae9ad959-fbb6-9d5e-892d-3dca66da0b69","name":"Use of Hard-coded Password","shortDescription":{"text":"Use of Hard-coded Password"},"helpUri":"https://cwe.mitre.org/data/definitions/259.html"},{"id":"CWE-353","guid":"09d7e902-d4ee-f05d-ae6c-0a1554d0c18f","name":"CWE-353","shortDescription":{"text":"CWE-353"},"helpUri":"https://cwe.mitre.org/data/definitions/353.html"},{"id":"CWE-494","guid":"b8a65e0d-e459-4a55-a931-fc1136482375","name":"Download of Code Without Integrity Check","shortDescription":{"text":"Download of Code Without Integrity Check"},"helpUri":"https://cwe.mitre.org/data/definitions/494.html"},{"id":"CWE-77","guid":"332c8ade-6612-9f56-a06b-d8d90b1a8750","name":"Command Injection","shortDescription":{"text":"Command Injection"},"helpUri":"https://cwe.mitre.org/data/definitions/77.html"},{"id":"CWE-78","guid":"2e31ceaf-c7ae-2e5e-9661-cfb1362789cf","name":"OS Command Injection","shortDescription":{"text":"OS Command Injection"},"helpUri":"https://cwe.mitre.org/data/definitions/78.html"},{"id":"CWE-79","guid":"fd45580b-e8c4-fc5e-8c2f-aa8fab0b4dbf","name":"Cross-site Scripting (XSS)","shortDescription":{"text":"Cross-site Scripting (XSS)"},"helpUri":"https://cwe.mitre.org/data/definitions/79.html"},{"id":"CWE-798","guid":"5e8f057d-fee3-995a-a0cb-9fc5b0d174d1","name":"Use of Hard-coded Credentials","shortDescription":{"text":"Use of Hard-coded Credentials"},"helpUri":"https://cwe.mitre.org/data/definitions/798.html"},{"id":"CWE-89","guid":"6d08fdad-37eb-c150-bbf0-d7d946863407","name":"SQL Injection","shortDescription":{"text":"SQL Injection"},"helpUri":"https://cwe.mitre.org/data/definitions/89.html"},{"id":"CWE-94","guid":"75e7f50c-6c2f-dd52-bf40-bf6c52b861fd","name":"Code Injection","shortDescription":{"text":"Code Injection"},"helpUri":"https://cwe.mitre.org/data/definitions/94.html"}]}],"properties":{"codehealthPublication":{"public":true,"notice":"This is the PUBLIC form of this artifact. Findings are listed in full, but the details of SECURITY findings \u2014 which rule fired, in which file, on which line, and how to fix it \u2014 are deliberately withheld, and any secret-scanner results are excluded entirely. Where detail is absent here it was REMOVED FOR PUBLICATION; it is not missing from the analysis. The complete artifact is available from the repository owner.","securityFindingsRedacted":21,"secretScannerRunsExcluded":0}},"redactionTokens":["A security finding was recorded here. Its details are withheld on the public artifact \u2014 ask the repository owner for the full report."]}]}