Skip to content

Releases: yapplabs/ember-wormhole

Octane Tested

29 Oct 21:51
Compare
Choose a tag to compare
0.6.0

tag for release

Eurostar (0.5.4)

09 Dec 23:07
Compare
Choose a tag to compare

Fwango (0.5.3)

22 Nov 05:25
Compare
Choose a tag to compare

Spikeball (0.5.2)

12 Jun 02:11
Compare
Choose a tag to compare

Glimbo

30 Nov 15:45
Compare
Choose a tag to compare

Merged pull requests:

  • Fix some issues with Glimmer2 usage. #75 (rwjblue)

Note: This release is the first that is compatible with Ember 2.10 (Glimmer 2). However, there is a caveat:

With latest ember-wormhole and ember@2.10, you need to have a stable root element inside the wormhole block. This is something that the Ember Core team will continue to iterate and work on, but for now the work around is fairly straightforward.

Change:

{{#ember-wormhole to="worm"}}
  {{#if foo}}

  {{/if}}
  <p>Other content, whatever</p>
{{/ember-wormhole}}
To:

{{#ember-wormhole to="worm"}}
  <div>
    {{#if foo}}

    {{/if}}
    <p>Other content, whatever</p>
  </div>
{{/ember-wormhole}}

A Mote in God's Eye

18 Oct 19:51
Compare
Choose a tag to compare

Merged pull requests:

  • [Glimmer2] Use the document service for glimmer #73 (chadhietala)
  • Update ember-cli to 2.8.0 and associated dependencies and files. #72 (runspired)
  • Test for dynamic content in Glimmer2 #68 (simonihmig)

Is That A Glimmer In Your Eye?

12 Sep 14:47
Compare
Choose a tag to compare

Includes a fix for compatibility with Glimmer2. Note that at least one compatibility issue remains, see #66

Closed issues:

  • [Glimmer] Doesn't work in canary since glimmer was enabled #64
  • Explicitly define compatibility with Ember 1.13+ #62
  • Allow users to handle "failed to render into" errors #58

Merged pull requests:

  • Use getDOM util to get dom reference in glimmer2 #65 (bantic)
  • [DOC] Add Ember version compatibility to README #63 (lukemelia)
  • Use native doc.getElementById when available #61 (bantic)
  • Test ember-alpha in CI. #60 (rwjblue)

0.4.0

08 Jun 19:37
Compare
Choose a tag to compare

Full Changelog

Breaking changes:

This release includes changes for FastBoot compatibility. You may need to make changes in your application if you have subclassed the ember-wormhole component in versions prior to 0.4.0.

Closed issues:

  • Call an user-provided action on didInsertElement/willDestroyElement #49
  • Ability to replace content instead of appending #48
  • fastboot compatibility #47
  • Render a child view after target instead of inside it #45

Merged pull requests:

  • Fix initializer arity deprecation #56 (bantic)
  • Remove needsBindAttr from x-favicon component in tests #55 (bantic)
  • Refactor to public APIs for head/tail #54 (mixonic)
  • Update ember-cli 1.13.7 to 2.5.1 #53 (mixonic)

0.3.6

02 Jun 15:32
Compare
Choose a tag to compare

Full Changelog

Closed issues:

  • [Feature] Destination component which fires up an action when wormhole is mounted #44
  • How do I hook in to the render/move life event? #43
  • Is there a callback (action) when the rendering has been done #42
  • Packaged versions of ember wormhole lose focus on "wormholing" #41
  • Inner component action sent to wormhole component instead of outer component (canary) #33

Merged pull requests:

  • Avoid bind-attr in tests for newer Ember #51 (bantic)
  • Update ember-code-snippet to ^1.3.0 #50 (bantic)

0.3.5

02 Jun 15:31
Compare
Choose a tag to compare

Full Changelog

Closed issues:

  • [Idea] component for the wormhole output #39
  • "wormholing" elements destroys focus, selection #22

Merged pull requests: