File tree Expand file tree Collapse file tree 2 files changed +19
-2
lines changed
rules/default/security/privacy Expand file tree Collapse file tree 2 files changed +19
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.1.0/ ) ,
5
5
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
7
+ ## [ 1.0.41] - 2024-08-23
8
+ ## Rules
9
+ Extend the false positive fix for the issue reported in #548 to Sdk-style msbuild projects.
10
+
7
11
## [ 1.0.40] - 2024-7-08
8
12
## Fix
9
13
Fixes extraneous printing of git errors when git ignore checking is enabled during analysis.
Original file line number Diff line number Diff line change 31
31
},
32
32
"negate_finding" : true ,
33
33
"search_in" : " same-line"
34
+ },
35
+ {
36
+ "pattern" :
37
+ {
38
+ "pattern" : " <InternalsVisibleTo Include=" ,
39
+ "type" : " substring" ,
40
+ "scopes" : [
41
+ " code"
42
+ ]
43
+ },
44
+ "negate_finding" : true ,
45
+ "search_in" : " same-line"
34
46
}
35
47
],
36
48
"must-match" : [
37
49
" var hash = \" 121212121212121212121212121212\" "
38
50
],
39
51
"must-not-match" : [
40
- " [assembly: InternalsVisibleTo(\" Application.Tests, PublicKey=1234567890abcd\" )]"
52
+ " [assembly: InternalsVisibleTo(\" Application.Tests, PublicKey=1234567890abcd\" )]" ,
53
+ " <InternalsVisibleTo Include=\" Application.Tests\" Key=\" 1234567890abcd\" />"
41
54
]
42
55
},
43
56
{
69
82
"must-not-match" : [
70
83
]
71
84
}
72
- ]
85
+ ]
You can’t perform that action at this time.
0 commit comments