Skip to content

Releases: alexlafroscia/ember-steps

Octane-ify

12 Jun 18:52
9d0ee9f
Compare
Choose a tag to compare

⚠ BREAKING CHANGES

  • The Step component is now yielded as w.Step, using the capitalization to denote the fact that the thing being yielded is a component
  • This addon now requires an Octane-compatible version of Ember (3.13+)

K.I.S.S

19 Jun 22:39
Compare
Choose a tag to compare

Bug Fixes

  • eslint ignore node_modules (7c35d33)
  • fastboot testing (cc8b36c)
  • move ember-decorators-polyfill to dependencies (7dc7857)

Chores

Features

  • one-way-bind the currentStep property (72efb43)

BREAKING CHANGES

  • onActivate and onDeactivate should instead be called by did-insert or will-destroy on element inside the step definition.
  • currentStep no longer updates the value passed in; it is a one-way binding from the context down to the component. If you need to bind a value to the currentStep, you can use onTransition and the mut helper.
  • Package no longer provides TypeScript definitions for components. This is unlikely to actually be a breaking change for anyone, but it is better to err on the safe side.

v8.0.2

20 Mar 23:58
Compare
Choose a tag to compare

8.0.2 (2019-03-15)

Bug Fixes

  • avoid resetting the step manager on any attribute changes (569991a)

v8.0.1

28 Feb 00:11
Compare
Choose a tag to compare

8.0.1 (2019-02-28)

Chores

  • removes inheritance from EmberObject from StepNode (c4f8e8)

v8.0.0

22 Jan 23:57
Compare
Choose a tag to compare

8.0.0 (2019-01-22)

Chores

  • deps: externalize ember-native-class-polyfill (904cd97)

BREAKING CHANGES

  • deps: For Ember 3.4 and 3.5 compatibility, you must install ember-native-class-polyfill in your application. This was previously brought in as a dependency, but should now be supplied by the host app.

v7.0.0

30 Dec 18:03
Compare
Choose a tag to compare

7.0.0 (2018-12-30)

Chores

  • deps: upgrade to ember-cli-typescript@rc.1 (0c919c4)

BREAKING CHANGES

  • deps: Increased the minimum supported version of Ember to
    3.4.0 to align with what native Classes are well-supported by at
    this time. This was necessary to fix a number of issues that arose
    with the upgraded version of ember-cli-typescript

v6.1.3

04 Dec 19:28
Compare
Choose a tag to compare

6.1.3 (2018-12-04)

  • Upgrade ember-decorators dependencies - Closes #128

v6.1.2

04 Nov 22:34
Compare
Choose a tag to compare

6.1.2 (2018-11-04)

Bug Fixes

  • add action hooks when current step property changes (1ddda66)
  • add compatibility with Ember 3.6+ (3523a4c)

v6.1.1

15 Oct 20:28
Compare
Choose a tag to compare

6.1.1 (2018-10-15)

Bug Fixes

  • prevent TypeScript compilation error (22b94d4)

v6.0.2

28 Aug 20:13
Compare
Choose a tag to compare

6.0.2 (2018-08-28)

Bug Fixes

  • add better checking against undefined (9e88557), closes #112