Releases: nikolaydubina/smrcptr
Releases · nikolaydubina/smrcptr
v1.4.1
v1.4.0
- regexp notation for constructor selection
- regexp notation for function skipping
v1.3.2
What's Changed
- Bump golang.org/x/tools from 0.19.0 to 0.20.0 by @dependabot in #6
Full Changelog: v1.3.1...v1.3.2
v1.3.1
ossf
Skipping generated files
- using
go/ast
standard generated file detector - requires
[email protected]
🥞 Simpler implementation of filter selection
New approach better reflects business logic and is more data-driven pattern.
🥞 Skipping methods from standard packages
Improving major source of false positives. These standard methods has to be pointers and okay if other methods are value receivers.
🥞 Performance Optimisation
- using pointer for function map to avoid copy and speed up processing (if we don't use pointers in AST, then the size of structures equal or larger the size of source code files, which is big! this must be reason why AST uses so many pointers). there is safety check already for non-nil pointers in main.
🥞 First release
- basic version works