- Fix caching in the Rust backend. The backend was recomputing data that was supposed to be cached. (#1343)
- Ignore
log
macros (debug!
,error!
,info!
,trace!
, andwarn!
) in the Rust backend (#1344) - Update
swc_core
to version 4 (#1345) - BREAKING CHANGE: Make walking local functions opt-in rather than the default. Version 0.7.0 made walking local functions the default. However, this caused problems in languages such as Rust, where test and non-test functions could be declared within the same file. Specifically, the non-test functions would be walked, creating unnecessary noise. PR #1351 requires users to name the functions that should be walked, rather than assume they all should be. (#1351)
- Update
tree-sitter
to version 0.24 (#1326) - Update
swc_core
to version 1.0 (#1327) - Update documentation (#1328)
- Fix a bug in the Anchor backend causing it to rebuild only Rust source files and not TypeScript source files (cf36b40)
- Update
libsqlite3-sys
to version 0.30 (#1260) - Update
swc_core
to version 0.102 (#1263) - Do not consider
TestMain
a test in Go backend (#1266) - Add
Helper
as an ignored method in the Go backend (#1276) - FEATURE: Walk functions that are declared within the same files as the tests that call them (#1268)
- Update
tree-sitter
andtree-sitter-go
to version 0.23 (#1279)
- Update
windows-sys
to version 0.59 (#1231) - Update
libsqlite3-sys
to version 0.29 (#1233) - Update
swc_core
to version 0.101 (#1246)
- Update
swc_core
to version 0.96 (#1178) - Fix a bug causing Necessist to fail to build tests with recent versions of Foundry (af5098f)
- Improve Foundry test detection, i.e., when "Failed to run test..." warnings should be emitted (#1186)
- Fix
necessist-backend
'srerun-if-changed
instructions, whose mention of a nonexistent file was causing the package to be unnecessarily rebuilt (#1187) - Shorten
--framework
valuesanchor-ts
andhardhat-ts
to justanchor
andhardhat
(respectively).anchor-ts
andhardhat-ts
continue to work as aliases for the shortened values. (de21f2e) - Improve error messages when certain Anchor and Hardhat files cannot be found (e6e756e)
- Don't remove
const
andtype
declarations in Go code (#1139) - Update
swc_core
to version 0.95 (#1146) - FEATURE: Use mutant schemata in the spirit of Untch, et al. '93 when removing statements. This should make running Necessist faster. (252ed2e)
- Update
solang-parser
to version 0.3.4 (#1132)
- Fix mishandling of multibyte characters in the Go framework (#1127)
- FEATURE: More informative summaries, e.g., "k removal candidates in m tests in n test files". Also, tests and test files are counted even if they contain no removal candidates. (fixes #850) (#1128)
- Update
swc_core
to version 0.91 (#1085)
- Update
libsqlite3-sys
to version 0.28 (#1048) - Update
tree-sitter
to version 0.22 (674f1ff) - Update
tree-sitter-go
to version 0.21 (48f716f)
- Update
heck
to version 0.5 (#1034)
- Eliminate reliance on
is-terminal
(#1008 and 7878f3e) - Fix README.md table of contents (f0c3c7a)
- Add readme explaining origin of pt.rs file (#1015)
- Update
toml_edit
to version 0.22 (#1026)
- Update
strum_macros
to version 0.26 (#975) - Update
swc_core
to version 0.90 (#976 and #992) - Update
strum
to version 0.26 (#978) - Include a copy of Solang's pt.rs in the repository, rather than download it when building (#986)
- Update
swc_core
to version 0.88.1 (#963) - Update
shlex
to version 1.3.0 (#967) - Update
env_logger
to version 0.11.0 (#969)
- Give an example when "configuration or test files have changed" (fix #248) (#936)
- Make
--resume
work correctly following a dry run failure (fix #249) (#936) - Make parsing failures warnings instead of hard errors (fix #245) (#947)
- Update
windows-sys
to version 0.52.0 (#911)
- Fix link to README.md (#887)
- Strip ANSI escapes from build and test command output (a problem affecting
forge
, for example) (#886)
- Fix a bug involving the Foundry framework's handling of extra arguments (#884)
- Update list of ignored Rust methods (51a0ec4)
- Ignore
Skip
,Skipf
, andSkipNow
methods in Go framework (#759 and #760) - 94e81c6 unintentionally removed
recursive_kill
's post-visit behavior. 381a0ff restores the post-visit behavior, but retains the non-recursiveness that 94e81c6 introduced. (381a0ff) - Add ability to ignore tests (#798)
- Lock project's root directory to help protect against concurrent uses of Necessist (#791)
- Limit the number of threads a test can allocate (275b097)
- Make one recursive function not recursive to reduce the likelihood of a stack overflow (94e81c6)
- Use
pnpm
if a pnpm-lock.yaml file exists (bfb30b0)
- Fix a bug involving the Foundry framework's handling of trailing semicolons (#663)
- Add Anchor framework (#587)
- Verify that package.json exists before installing Node modules (#580)
- Initial release