All Versions
60
Latest Version
Avg Release Cycle
43 days
Latest Release
1099 days ago
Changelog History
Page 2
Changelog History
Page 2
-
v7.2.0 Changes
May 19, 2020 -
v7.1.0 Changes
February 10, 2020- 🛠 Fix
to_s
onTransitionFailedError
&GuardFailedError
..message
and.to_s
diverged whenfrom
andto
accessors where added in v4.1.3
- 🛠 Fix
-
v7.0.1 Changes
January 08, 2020- 🛠 Fix deprecation warning with Ruby 2.7 #386
-
v7.0.0 Changes
January 08, 2020💥 Breaking changes
- ⬇️ Drop official support for Rails 4.2, 5.0 and 5.1, following our compatibility policy.
-
v6.0.0 Changes
December 20, 2019💥 Breaking changes
- ⬇️ Drop official support for Ruby 2.2 and 2.3 following our compatibility policy.
-
v5.2.0 Changes
December 17, 2019v5.2.0, 17th December 2019
- Issue
most_recent_transition_join
query as a single-line string #381
- Issue
-
v5.1.0 Changes
November 22, 2019- Correct
Statesman::Adapters::ActiveRecordQueries
error text @Bramjetten - ✂ Removes duplicate
map
call Isaac Seymour - ⚡️ Update changelog with instructions of how to use
ActiveRecordQueries
added
in v5.0.0 - Pass exception into
after_transition_failure
andafter_guard_failure
callbacks @credric-cordenier
- Correct
-
v5.0.0 Changes
November 11, 2019- Adds new syntax and restrictions to ActiveRecordQueries PR#358. With the introduction of this, defining
self.transition_class
orself.initial_state
is deprecated and will be removed in the next major release. Changeruby include Statesman::Adapters::ActiveRecordQueries def self.initial_state :initial end def self.transition_class MyTransition end
toruby include Statesman::Adapters::ActiveRecordQueries[ initial_state: :initial, transition_class: MyTransition ]
- Adds new syntax and restrictions to ActiveRecordQueries PR#358. With the introduction of this, defining
-
v4.1.4 Changes
November 11, 2019- 🛠 Reverts the breaking changes from PR#358 &
v4.1.3
that where included in the last minor release. If you have changed your code to work with these changesv5.0.0
will be a copy ofv4.1.3
with a bugfix applied.
- 🛠 Reverts the breaking changes from PR#358 &
-
v4.1.3 Changes
November 06, 2019- ➕ Add accessible from / to state attributes on the
TransitionFailedError
to avoid parsing strings @ahjmorton - Add
after_transition_failure
mechanism @credric-cordenier
- ➕ Add accessible from / to state attributes on the