Releases: inProgress-team/react-native-meteor
Releases · inProgress-team/react-native-meteor
1.0.0-beta4
- Prevents listeners to be triggered if component is unmounted
1.0.0-beta3
- find now accepts strings (cf meteor documentation)
- exposes ddp to Meteor (Meteor.ddp)
1.0.0-beta2
- removed react-mixin dependency and added connectMeteor decorator
v1.0.0-beta1
Goal
The purpose of this release is to match with Meteor documentation (docs.meteor.com).
- Exposes MeteorMixin which listens to startMeteorSubscriptions() and getMeteorData() methods
- startMeteorSubscriptions() lets the user create subscriptions in each component.
- getMeteorData() can access these reactive data sources :
- Meteor.collection(collectionName)
- Meteor.user()
- Meteor.userId()
- Meteor.status()
- Meteor.loggingIn()
- Exposes API Methods
- Meteor.call
- Meteor.loginWithPassword
- Meteor.logout
- User is now auto-resigned in thanks to React Native "AsyncStorage" module.