meteor-react-native icon indicating copy to clipboard operation
meteor-react-native copied to clipboard

Meteor client for React Native matching Meteor Spec

Results 33 meteor-react-native issues
Sort by recently updated
recently updated
newest added
trafficstars

**Describe the bug** ``` const myValue = Meteor.useTracker(() => { console.log("Called"); return false }, []); ``` I am getting "Called" multiple times in the console at every re-render **Expected behavior**...

bug

## Summary Fixes a potential prototype pollution in collection ## Linked issue(s) https://github.com/meteorrn/meteor-react-native/security/code-scanning/18 https://github.com/meteorrn/meteor-react-native/security/code-scanning/16 ## Involved parts of the project Collection ## Added tests? yes ## Targeted Meteor release version...

## Summary in order to make big changes/improvements/fixes without regression we need better test coverage :umbrella: > NOTE! By writing the tests there were mutliple issues that have been detected...

## Summary Fixes the issue where `autoConnect: false` did not 100% prevent auto-connect ## Linked issue(s) #150 ## Involved parts of the project Meteor, DDP ## Added tests? Yes ##...

**Is your feature request related to a problem? Please describe.** We still do not catch all potential regressions as we still have insufficient coverage: ```shell -------------------------|---------|----------|---------|---------|----------------------------------------------------------------------------------------------------- File | % Stmts...

**Describe the bug** ```js _startLoggingIn() { this._reactiveDict.set('_loggingIn', true); Data.notify('loggingIn'); }, _startLoggingOut() { User._isLoggingOut = true; Data.notify('loggingOut'); }, _endLoggingIn() { this._reactiveDict.set('_loggingIn', false); Data.notify('loggingIn'); }, _endLoggingOut() { User._isLoggingOut = false; Data.notify('loggingOut'); },...

bug

**Describe the bug** setting `autoConnect` to false will still cause an auto connect. This is, because autoConnect is implemented in DDP and Meteor.connect and while in DDP class it will...

bug

Hi there, so far I am using the react-native-meteor npm package and am experiencing the issue of too many callbacks on starting the app (apparently react-native only allows for 500...

Bumps the npm_and_yarn group with 2 updates in the / directory: [braces](https://github.com/micromatch/braces) and [lint-staged](https://github.com/okonet/lint-staged). Updates `braces` from 3.0.2 to 3.0.3 Commits 74b2db2 3.0.3 88f1429 update eslint. lint, fix unit tests....

dependencies

**Describe the bug** If you actively disconnect your client (eg. via AppState events) via `Meteor.disconnect()` and then resume the session via `Meteor.reconnect()`, the value of `autoReconnect` is set to `false`,...

bug