File tree 3 files changed +21
-2
lines changed
3 files changed +21
-2
lines changed Original file line number Diff line number Diff line change
1
+ ## v0.16.0 (2025-04-24)
2
+
3
+ ### Feat
4
+
5
+ - detect vulnerable GitHub Actions (#1021 )
6
+ - check PyPI registry when deps.dev fails to find a source repository (#982 )
7
+ - add callgraph and build cmd detection for Jenkins (#977 )
8
+
9
+ ### Fix
10
+
11
+ - fix incorrect skip result evaluation causing false positives in PyPI malware reporting (#1031 )
12
+ - use 'isDefault' version from deps dev api (#1019 )
13
+
14
+ ### Refactor
15
+
16
+ - log the SLSA summary in verbose mode only (#1063 )
17
+ - log relative paths for file (#1032 )
18
+ - use problog for suspicious combinations (#997 )
19
+
1
20
## v0.15.0 (2025-03-10)
2
21
3
22
### Feat
Original file line number Diff line number Diff line change @@ -138,7 +138,7 @@ version_files = [
138
138
" src/macaron/__init__.py:__version__" ,
139
139
]
140
140
major_version_zero = true
141
- version = " 0.15 .0"
141
+ version = " 0.16 .0"
142
142
143
143
144
144
# https://github.com/pytest-dev/pytest-cov
Original file line number Diff line number Diff line change 8
8
# The version of this package. There's no comprehensive, official list of other
9
9
# magic constants, so we stick with this one only for now. See also this conversation:
10
10
# https://stackoverflow.com/questions/38344848/is-there-a-comprehensive-table-of-pythons-magic-constants
11
- __version__ = "0.15 .0"
11
+ __version__ = "0.16 .0"
12
12
13
13
# The path to the Macaron package.
14
14
MACARON_PATH = os .path .dirname (os .path .abspath (__file__ ))
You can’t perform that action at this time.
0 commit comments