Release 0.7.1 is a minor release and contains several documentation improvements and a new feature:
- Feature #334: Added Enum (Python 3.4+:
enum
Python 2.7:enum34
) support (thanks @artofhuman and @justinttl) - Replaced test framework
nosetests
withpytest
(thanks @artofhuman) - Extended
add_ordered_transitions
documentation inReadme.md
- Collected code snippets from earlier discussions in
examples/Frequently asked questions.ipynb
- Improved stripping of
long_description
insetup.py
(thanks @artofhuman)
Release 0.7.0 is a major release with fundamental changes to the diagram extension. It also introduces an intermediate MarkupMachine
which can be used to transfer and (re-)initialize machine configurations.
- Feature #263:
MarkupMachine
can be used to retrieve a Machine's dictionary representationGraphMachine
uses this representation for Graphs now and does not rely onMachine
attributes any longer
- Feature: The default value of
State.ignore_invalid_triggers
changed toNone
. If it is not explicitly set, theMachine
's value is used instead. - Feature #325: transitions now supports
pygraphviz
andgraphviz
for the creation of diagrams. Currently,GraphMachine
will check forpygraphviz
first and fall back tographviz
. To usegraphviz
directly passuse_pygraphiv=False
to the constructor ofGraphMachine
- Diagram style has been overhauled. Have a look at
GraphMachine
's attributesmachine_attributes
andstyle_attributes
to adjust it to your needs. - Feature #305: Timeouts and other features are now marked in the graphs
- Bugfix #343:
get_graph
was not assigned to models added during machine runtime
Release 0.6.9 is a minor release and contains two bugfixes:
- Bugfix #314: Do not override already defined model functions with convenience functions (thanks @Arkanayan)
- Bugfix #316:
state.Error
did not call parent'senter
method (thanks @potens1)
Release 0.6.8 is a minor release and contains a critical bugfix:
- Bugfix #301: Reading
Readme.md
insetup.py
causes aUnicodeDecodeError
in non-UTF8-locale environments (thanks @jodal)
Release 0.6.7 is identical to 0.6.6. A release had been necessary due to #294 related to PyPI.
Release 0.6.6 is a minor release and contains several bugfixes and new features:
- Bugfix:
HierarchicalMachine
now considers the initial state ofNestedState
instances/names passed toinitial
. - Bugfix:
HierarchicalMachine
used to ignore children whenNestedStates
were added to the machine. - Bugfix #300: Fixed missing brackets in
TimeoutState
(thanks @Synss) - Feature #289: Introduced
Machine.resolve_callable(func, event_data)
to enable customization of callback definitions (thanks @ollamh and @paulbovbel) - Feature #299: Added support for internal transitions with
dest=None
(thanks @maueki) - Feature: Added
Machine.dispatch
to trigger events on all models assigned toMachine
Release 0.6.5 is a minor release and contains a new feature and a bugfix:
- Feature #287: Embedding
HierarchicalMachine
will now reuse the machine'sinitial
state. Passinginitial: False
overrides this (thanks @mrjogo). - Bugfix #292: Models using
GraphMashine
were not picklable in the past due tograph
property. Graphs for each model are now stored inGraphMachine.model_graphs
(thanks @ansumanm).
Release 0.6.4 is a minor release and contains a new feature and two bug fixes related to HierachicalMachine
:
- Bugfix #274:
initial
has not been passed to super inHierachicalMachine.add_model
(thanks to @illes). - Feature #275:
HierarchicalMachine.add_states
now supports keywordparent
to be aNestedState
or a string. - Bugfix #278:
NestedState
has not been exited correctly during reflexive triggering (thanks to @hrsmanian).
Release 0.6.3 is a minor release and contains a new feature and two bug fixes:
- Bugfix #268:
Machine.add_ordered_transitions
changed states' order ifinitial
is not the first or last state (thanks to @janekbaraniewski). - Bugfix #265: Renamed
HierarchicalMachine.to
toto_state
to prevent warnings when HSM is used as a model. - Feature #266: Introduce
Machine.get_transitions
to get a list of transitions for alteration (thanks to @Synss).
Release 0.6.2 is a minor release and contains new features and bug fixes but also several internal changes:
- Documentation: Add docstring to every public method
- Bugfix #257: Readme example variable had been capitalized (thanks to @fedesismo)
- Add
appveyor.yml
for Windows testing; However, Windows testing is disabled due to #258 - Bugfix #262: Timeout threads prevented program from execution when main thread ended (thanks to @tkuester)
prep_ordered_arg
is now protected incore
- Convert
logger
instances to_LOGGER
to comply with protected module constant naming standards traverse
is now protected inHierarchicalMachine
- Remove abstract class
Diagram
since it did not add functionality todiagrams
- Specify several overrides of
add_state
oradd_transition
to keep the base class parameters instead of*args
and**kwargs
- Change several
if len(x) > 0:
checks toif x:
as suggested by the static code analysis to make use of falsy empty lists/strings.
Release 0.6.1 is a minor release and contains new features as well as bug fixes:
- Feature #245: Callback definitions ('before', 'on_enter', ...) have been moved to classes
Transition
andState
- Bugfix #253:
Machine.remove_transitions
converteddefaultdict
into dict (thanks @Synss) - Bugfix #248:
HierarchicalStateMachine
's copy procedure used to cause issues with function callbacks and object references (thanks @Grey-Bit) - Renamed
Machine.id
toMachine.name
to be consistent with the constructor parametername
- Add
Machine.add_transitions
for adding multiple transitions at once (thanks @Synss)
Release 0.6.0 is a major release and introduces new state features and bug fixes:
add_state_features
convenience decorator supports creation of custom statesTags
makes states taggableError
checks for error states (not accepted states that cannot be left); subclass ofTags
Volatile
enables scoped/temporary state objects to handle context parameters- Removed
add_self
fromMachine
constructor pygraphviz
is now optional; usepip install transitions[diagrams]
to install it- Narrowed warnings filter to prevent output cluttering by other 3rd party modules (thanks to @ksandeep)
- Reword HSM exception when wrong state object had been passedn (thanks to @Blindfreddy)
- Improved handling of partials during graph generation (thanks to @Synss)
- Introduced check to allow explicit passing of callback functions which match the
on_enter_<state>
scheme (thanks to @termim) - Bug #243: on_enter/exit callbacks defined in dictionaries had not been assigned correctly in HSMs (thanks to @Blindfreddy)
- Introduced workaround for Python 3 versions older than 3.4 to support dill version 0.2.7 and higher (thanks to @mmckerns)
- Improved manifest (#242) to comply with distribution standards (thanks to @jodal)
Release 0.5.3 is a minor release and contains several bug fixes:
- Bug #214:
LockedMachine
as a model prevented correct addition ofon_enter/exit_<state>
(thanks to @kr2) - Bug #217: Filtering rules for auto transitions in graphs falsely filtered certain transitions (thanks to @KarolOlko)
- Bug #218: Uninitialized
EventData.transition
causedAttributeError
inEventData.__repr__
(thanks to @kunalbhagawati) - Bug #215: State instances passed to
initial
parameter ofMachine
constructor had not been processed properly (thanks @mathiasimmer)
Release 0.5.2 is a minor release and contains a bug fix:
- Bug #213: prevent
LICENSE
to be installed to root of installation path
Release 0.5.1 is a minor release and contains new features and bug fixes:
- Added reflexive transitions (thanks to @janLo)
- Wildcards for reflexive (
wildcard_same
) and all (wildcard_all
) destinations areMachine
class variables now which can be altered if necessary. - Add LICENSE to packaged distribution (thanks to @bachp)
- Bug #211:
prepare
andfinalized
had not been called for HierarchicalMachines (thanks to @booware)
Release 0.5.0 is a major release:
- CHANGED API:
MachineError
is now limited to internal error and has been replaced byAttributeError
andValueError
where applicable (thanks to @ankostis) - CHANGED API: Phasing out
add_self
;model=None
will add NO model starting from next major release; usemodel='self'
instead. - Introduced deprecation warnings for upcoming changes concerning
Machine
keywordsmodel
andadd_self
- Introduced
Machine.remove_transition
(thanks to @PaleNeutron) - Introduced
Machine._create_state
for easier subclassing of states LockedMachine
now supports custom context managers for each model (thanks to @paulbovbel)Machine.before/after_state_change
can now be altered dynamically (thanks to @peendebak)Machine.add_ordered_transitions
now supportsprepare
,conditons
,unless
,before
andafter
(thanks to @aforren1)- New
prepare_event
andfinalize_event
keywords to handle transitions globally (thanks to @ankostis) - New
show_auto_transitions
keyword forGraphMachine.__init__
(defaultFalse
); if enabled, show auto transitions in graph - New
show_roi
keyword forGraphMachine._get_graph
(defaultFalse
); ifTrue
, show only reachable states in retrieved graph - Test suite now skips contextual tests (e.g. pygraphviz) if dependencies cannot be found (thanks to @ankostis)
- Improved string representation of several classes (thanks to @ankostis)
- Improved
LockedMachine
performance by removing recursive locking - Improved graph layout for nested graphs
transitions.extensions.nesting.AGraph
has been split up intoGraph
andNestedGraph
for easier maintenance- Fixed bug related to pickling
RLock
in nesting - Fixed order of callback execution (thanks to @ankostis)
- Fixed representation of condition names in graphs (thanks to @cemoody)
Release 0.4.3 is a minor release and contains bug fixes and several new features:
- Support dynamic model addition via
Machine.add_model
(thanks to @paulbovbel) - Allow user to explicitly pass a lock instance or context manager to LockedMachine (thanks to @paulbovbel)
- Fixed issue related to parsing of HSMs (thanks to @steval and @user2154065 from SO)
- When
State
is passed toMachine.add_transition
, it will check if the state (and not just the name) is known to the machine
Release 0.4.2 contains several new features and bugfixes:
- Machines can work with multiple models now (thanks to @gemerden)
- New
initial
keyword for nested states to automatically enter a child - New
Machine.trigger
method to trigger events by name (thanks to @IwanLD) - Bug fixes related to remapping in nested (thanks to @imbaczek)
- Log messages in
Transition.execute
andMachine.__init__
have been reassigned to DEBUG log level (thanks to @ankostis) - New
Machine.get_triggers
method to return all valid transitions from (a) certain state(s) (thanks to @limdauto and @guilhermecgs)
Release 0.4.1 is a minor release containing bug fixes, minor API changes, and community feedback:
-
async
is renamed toqueued
since it describes the mechanism better -
HierarchicalStateMachine.is_state now provides
allow_substates
as an optional argument(thanks to @jonathanunderwood) -
Machine can now be used in scenarios where multiple inheritance is required (thanks to @jonathanunderwood)
-
Adds support for tox (thanks to @medecau and @aisbaa)
-
Bug fixes:
- Problems with conditions shown multiple times in graphs
- Bug which omitted transitions with same source and destination in diagrams (thanks to @aisbaa)
- Conditions passed incorrectly when HSMs are used as a nested state
- Class nesting issue that prevented pickling with dill
- Two bugs in HierarchicalStateMachine (thanks to @ajax2leet)
- Avoided recursion error when naming a transition 'process' (thanks to @dceresuela)
-
Minor PEP8 fixes (thanks to @medecau)
Release 0.4 is a major release that includes several new features:
- New
async
Machine keyword allows queueing of transitions (thanks to @khigia) - New
name
Machine keyword customizes transitions logger output for easier debugging of multiple running instances - New
prepare
Transition keyword for callbacks before any 'conditions' are checked (thanks to @TheMysteriousX) - New
show_conditions
GraphSupport keyword adds condition checks to dot graph edges (thanks to @khigia) - Nesting now supports custom (unicode) substate separators
- Nesting no longer requires a leaf state (e.g. to_C() does not enter C_1 automatically)
- Factory for convenient extension mixins
- Numerous minor improvements and bug fixes
Mostly a bug fix release. Changes include:
- Fixes graphing bug introduced in 0.3.0 (thanks to @wtgee)
- Fixes bug in dynamic addition of before/after callbacks (though this is a currently undocumented feature)
- Adds coveralls support and badge
- Adds a few tests to achieve near-100% coverage
Release 0.3 includes a number of new features (nesting, multithreading, and graphing) as well as bug fixes and minor improvements:
- Support for nested states (thanks to @aleneum)
- Basic multithreading support for function access (thanks to @aleneum)
- Basic graphing support via graphviz (thanks to @svdgraaf)
- Stylistic edits, minor fixes, and improvements to README
- Expanded and refactored tests
- Minor bug fixes
- Enabled pickling in Python 3.4 (and in < 3.4 with the dill module)
- Added reference to generating Transition in EventData objects
- Fixed minor bugs
- README improvements, added TOC, and typo fixes
- Condition checks now receive optional data
- Removed invasive basicConfig() call introduced with logging in 0.2.6
- Fixed import bug that prevented dependency installation at setup
- Added rudimentary logging for key transition and state change events
- Added generic before/after callbacks that apply to all state changes
- Ensured string type compatibility across Python 2 and 3
- Added ability to suppress invalid trigger calls
- Shorthand definition of transitions via lists
- Automatic detection of predefined state callbacks
- Fixed bug in automatic transition creation
- Added Changelog
- Added travis-ci support
- Cleaned up and PEP8fied code
- Added 'unless' argument to transitions that mirrors 'conditions'
- Python 2/3 compatibility
- Added automatic to_{state}() methods
- Added ability to easily add ordered transitions