Skip to content
This repository was archived by the owner on Jun 19, 2023. It is now read-only.

Tags: opencollective/react-redux-firebase

Tags

v1.4.2

Toggle v1.4.2's commit message
Version v1.4.2 (prescottprue#164)

* Fixes an issue that when attempting to query on Windows in Internet Explorer would cause error with message "isNan is not a method of Number"

v2.0.0-alpha

Toggle v2.0.0-alpha's commit message
v2.0.0 alpha (prescottprue#162)

* Basic Population working with new syntax (`populate`)
* Material example uses new syntax (no helpers)
* A firebase instance can be passed (pass Firebase instance as first argument for `reactReduxFirebase` when creating store)
* Unused helpers removed (`populatedDataToJS`, `dataToJS`, `customToJS`)

v1.4.1

Toggle v1.4.1's commit message
Version v1.4.1 (prescottprue#159)

* Adds `transform-object-assign` to babel plugins to fix issue with IE - prescottprue#158 
* Removes npm publish  from `.travis.yml` (handled manually so that flags can be used) -
 prescottprue#155
* Removes duplicate API docs from `book` folder (introduced in prescottprue#156)

v1.5.0-beta.3

Toggle v1.5.0-beta.3's commit message
Version v1.5.0 Beta 3 (prescottprue#154)

* Switched to using `.npmignore` instead of `files` and `filesMap` fields in package.json to get typescript typings to be published - prescottprue#142

v1.5.0-alpha.2

Toggle v1.5.0-alpha.2's commit message
v1.5.0-alpha.2 (prescottprue#146)

### Description
Removed `browser` field from `package.json` in attempt to solve prescottprue#128 

### Check List

- [X] All tests passing
- [X] Docs updated with any changes or examples

### Relevant Issues
* [prescottprue#128](https://github.com/prescottprue/react-redux-firebase/issues/#128)

v1.5.0-beta.2

Toggle v1.5.0-beta.2's commit message
Fixed typo in connect docs

* fixes  prescottprue#141, prescottprue#145

v1.5.0-beta

Toggle v1.5.0-beta's commit message
Fixed typo in connect docs

* fixes  prescottprue#141, prescottprue#145

v1.5.0-alpha

Toggle v1.5.0-alpha's commit message
Version v1.5.0-alpha (prescottprue#136)

### Description
* Adds `updateProfile`, `updateAuth`, and `updateEmail` methods that dispatch associated start/success/failure actions
* Adds multiple features to populate - prescottprue#132
* Uses `prop-types` instead of importing from react - prescottprue#122 
* `distpatchOnUnsetListener` fixed to be `dispatchOnUnsetListener` (depreciation warning added along with a test confirm it is displayed)
* Do not include `dbPath` in response from `deleteFile` method if it is undefined (test added to check this case)
* `.eslintrc` file now using yaml format instead of JSON format (easier to read)
* Unnessesary global eslint comments removed from tests (no longer needed due to globals being moved to `.eslintrc`)
* `enableEmptyAuthChanges` config option added - prescottprue#137

### Check List

- [X] All tests passing
- [X] Docs updated with any changes or examples
- [X] Added tests to ensure feature(s) work properly

### Relevant Issues
* [prescottprue#122](https://github.com/prescottprue/react-redux-firebase/issues/#122)
* [prescottprue#132](https://github.com/prescottprue/react-redux-firebase/issues/#132)
* [prescottprue#137](https://github.com/prescottprue/react-redux-firebase/issues/#137)

v1.4.0

Toggle v1.4.0's commit message
Version v1.4.0 (prescottprue#133)

* `react-native` support (including [complete example](https://github.com/prescottprue/react-redux-firebase/tree/v1.4.0-beta/examples/complete/react-native) app as well as a [create your own recipe](/docs/recipes/react-native.md))
* Server Side Rendering Support ([prescottprue#72](prescottprue#72))
* Support for Boilerplates ([prescottprue#53](prescottprue#53))
* `pushWithMeta`, `setWithMeta`, and `updateWithMeta` methods added - write to firebase with createdAt/updatedAt and createdBy/updatedBy
* Fix for `unWatchEvent` helper dispatch mapping (prescottprue#82)
* `populatedDataToJS` triggers `isLoaded` to be true only when all data is populated (instead of once for unpopulated data) [prescottprue#121](prescottprue#121)
* Support for `provider.setCustomParameters` on external auth providers (i.e. `provider.setCustomParameters({ prompt: 'select_account' })`)
* `notParsed` query param option added for not parsing when using `equalTo` (for searching numbers stored as strings)
* `profileParamsToPopulate` now works for `$key: true` lists (thanks @fej-snikduj)
* `onRedirectResult` config option added (runs when redirect result occurs)

* Improvements to Material Example
  * Projects route is now protected (using `UserIsAuthenticated` HOC from `utils/router`)
  * Todos list only displays first 8 (first at the top) - shows using ordering query params
  * Most main routes are now sync (more simple)
* Firebase Library dependency updated to [`v3.9.0`](https://firebase.google.com/support/release-notes/js)
* Fix for `unWatchEvent` helper dispatch mapping ([prescottprue#82](prescottprue#82))
* Firebase version is no longer fixed ([prescottprue#109](prescottprue#109))
* Only used parts of Firebase Library imported (shrinks bundle size)
* `build:size` npm script added to generate size report for minified bundle ([prescottprue#107](prescottprue#107))
* `user` and `credential` are now returned from login method (solves [prescottprue#106](prescottprue#106))
* `yarn.lock` file added
* Compose tests improved promise handling (better use of chai-as-promised)
* `profileParamsToPopulate` now accepts `key: true` lists - thanks [@fej-snikduj](https://github.com/fej-snikduj)

v1.4.0-rc.3

Toggle v1.4.0-rc.3's commit message
Version v1.4.0-rc.3 (prescottprue#128) (prescottprue#134)

* Switched back to importing PropTypes from react due to (prescottprue#128)
* Roadmap updated with population features coming in `v1.5.0`