Changelog¶
2.1.0 - 2024-10-08¶
Added¶
- Add
send_random
method toInstance
. PR #27 by @Adamasterr.
Changed¶
- Create a random number generator in
__init__
. PR #30 by @Adamasterr.
Fixed¶
- Fix
AttributeError
when stopping a remoteInstance / Analyzer
. PR #26 by @Adamasterr
2.0.0 - 2024-07-08¶
If you are upgrading: please see UPGRADING.md
.
Added¶
- Add Material for MkDocs documentation.
- Add
"image"
to allowed response types. - Add docstrings to errors.
- Add named parameters to some errors.
Changed¶
- Breaking: Change minimal python version to 3.8.
- Breaking: Move
Instance
toinstance.py
. - Breaking: Move errors to
errors.py
. - Breaking: Change return type of
Instance.analyze
to new typeResult(NamedTuple)
. - Change docstring style to
google
. - Simplify
README.md
.
Removed¶
- Breaking: Remove the
password
andapi_key
parameters. - Remove unused
CannotBeTerminated
exception.
Fixed¶
- Fix
Instance.stop()
method trying to stop analready_running
project. - Fix
Instance(already_running=False)
not searching default install dir on Linux. - Fix project path not accepting
~
as a home directory.