Skip to content
This repository was archived by the owner on Apr 2, 2026. It is now read-only.

Release 5.0.0

Choose a tag to compare

@sandydoo sandydoo released this 22 Nov 11:33
· 146 commits to main since this release
d6b5e3f

💥 Breaking changes

  • #161 Drop support for @classNames. Use class instead. (@sandydoo)

    If you had the following:

    <GMap @classNames="my-custom-class" />

    Replace @classNames with the class attribute:

    <GMap class="my-custom-class" />
  • #160 Drop support for the onLoad event (@sandydoo)

    The onLoad event has been removed. You should replace it with onceOnIdle.

    If you had the following:

    <GMap @lat={{this.lat}} @lng={{this.lng}} @onLoad={{this.didLoadMap}} />

    Replace it with:

    <GMap @lat={{this.lat}} @lng={{this.lng}} @onceOnIdle={{this.didLoadMap}} />
  • #158 Drop support for Ember <3.24 and Node 10 (@sandydoo)

Internal

Committers: 1