Releases: tprzytula/Meteor-Remember-Me
Releases · tprzytula/Meteor-Remember-Me
Release 1.0.2
Release 1.0.1
Fixes:
- add support to accounts that are identified by email (fixes #16)
Release 1.0.0
- Dependency was refactored
Important changes:
- All log ins made by the default Meteor.loginWithPassword method won't be affected anymore by this dependency. Every client who did not report the rememberMe setting will stay logged in to match the default Meteor's behaviour.
Breaking changes:
activate
method was removed. There is no need to activate RememberMe on the server anymore.changeAccountsSystem
will now throw an error when provided parameter is not a valid instance of the AccountsClient
Release 0.2.1
- Change client methods to arrow functions to prevent wrong context issues (Issue #6)
- loginWithPassword method for custom accounts was throwing an error if accounts were not stored in Meteor.remoteUsers (whoops!)
Release 0.2.0
New feature:
- Add support for custom AccountsClient (introduction)
Related improvements:
- Check if onLogin callback from the dependency is already present
- Check if loginAttempt method was already overridden in provided instance
Release 0.1.3
- inform client about the functionality being inactive on server
- client side unit tests
Release 0.1.2
- remove lodash dependency
- remove crypto-js dependency
Release 0.1.1
- Print correct error in case of already disallowed attempt
- Add server side tests
Release 0.1.0
- Initial release