Releases: mainmatter/ember-simple-auth
Releases · mainmatter/ember-simple-auth
1.9.1
1.9.0
🚀 Enhancement
- #1885 oauth2-password-grant: Convert
tokenRefreshOffset
to a native getter (@Turbo87) - #1886 session-stores/cookie: Convert private volatile properties to methods (@Turbo87)
🐛 Bug Fix
📝 Documentation
- #1894 Update Changelog and introduce lerna-changelog (@Turbo87)
- #1887 Use async/await when loading current user (@nbenz)
- #1870 Fix wrong deprecation URL (@bartocc)
- #1861 Update broken syntax in readme's routes examples (@kamilogorek)
- #1698 Add documentation how to use it with ember-fetch (@marcoow)
🏠 Internal
- #1893 yarn: Deduplicate transitive dependencies (@Turbo87)
- #1884 Remove unused
mocha-only-detector
dev dependency (@Turbo87) - #1883 Update
ember-data
to v3.10.0 (@Turbo87) - #1879 CI: Use
--no-lockfile
only in "floating dependencies" job (@Turbo87) - #1878 CI: Run deployment job only when a tag is present (@Turbo87)
- #1877 Replace
ember-cli-eslint
with regular ESLint (@Turbo87) - #1876 CI: Only run for
master
branch, version tags and PRs (@Turbo87) - #1875 Fix TravisCI builds (@Turbo87)
- #1850 Fix CI (@marcoow)
- #1787 lock jsdom to ^11.10.0 (@marcoow)
- #1751 Revert "build(travis): fix failing ember-release build step" (@marcoow)
- #1752 Use Sinon sandbox (@marcoow)
Committers: 9
- Andy Brown (@geekygrappler)
- Erik Kristensen (@ekristen)
- Jessica Jordan (@jessica-jordan)
- Julien Palmas (@bartocc)
- Kamil Ogórek (@kamilogorek)
- Marco Otte-Witte (@marcoow)
- Nate Benz (@nbenz)
- Tobias Bieniek (@Turbo87)
- @arnebit
1.8.2
- Support for ember-cookies 0.4.0 which clears a deprecation, see #1746.
This release would not have been possible without the contributions by @jessica-jordan, @Alonski and @marcoow. Thanks a lot!
1.8.1
- Additional patch fix for deprecation warning for Evented#off method on Ember 3.6+, see #1725
This release would not have been possible without the contributions by @MichalBryxi and @richard-viney.
Thanks a lot! ✨
1.8.0
- Fixes deprecation warning for Evented#off method on Ember 3.6+, see #1722
- Support for ember-fetch 6.0+, see #1713
- Fixes error handling for the Torii authenticator, making errors throw as expected
if a Promise is rejected, see #1696 - Updates ember-try test scenarios with Ember 3.0, see this commit
This release would not have been possible without the contributions by @marcoow, @mike-north, @jfschaff, @geekygrappler, @quaertym, @runspired, @kevinansfield, @drewchandler, @andreyfel, @Turbo87, @MichalBryxi and @richard-viney.
Thanks a lot! ✨
1.7.0
- The
baseURL
configuration property is now deprecated; use therootUrl
property instead, see #1597. - ESA works with ember-fetch@"^2.1.0 || ^3.0.0 || ^4.0.0 || ^5.0.0" now, see #1608.
- Session events are now bound to methods on the
application
route correctly, see #1604. - The repeated
isFastBoot
properties used in various places in the codebase have been replaced with a computed property macro, see #1623. - The
broccoli-file-creator
dependency has been raised to^2.0.0
, see #1636. - The API docs and README habe been improved for greater clarity and better examples, see #1583, #1591, #1631, #1598.
- The dummy app now implements remember-me functionality, see #1606.
1.6.0
- Authorizers are now deprecated, see #1532. For more information on the deprecation, refer to the
deprecation guide. - The session service's
invalidate
method can now be called when the session is already invalidated, and would simply do nothing in that case, see #1555. - The previously removed
ember-simple-auth
instance initializer has been added again which fixes a regression in applications that relied on its existence, see #1565. - Usage of the private
beginPropertyChanges
/endPropertyChanges
methods has been removed, see #1554.
1.5.1
1.5.0
- The acceptance test helpers no longer rely on the global
wait
test helper, see #1516. - A new set of acceptance test helpers was introduced that is imported from the
ember-simple-auth
module namespaces and supports Ember's new testing model, see #1536. - The
ember-cookies
dependency now allows^0.1.0
as well as^0.2.0
, see #1538.