Skip to content

Commit f9fa66a

Browse files
authored
ReactFire v4 release (#426)
* update firebase and rxfire * remove experimental note on readme
1 parent 3cb4468 commit f9fa66a

File tree

2 files changed

+5
-15
lines changed

2 files changed

+5
-15
lines changed

README.md

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,6 @@
33
Hooks, Context Providers, and Components that make it easy to interact with
44
Firebase.
55

6-
---
7-
8-
> **WARNING**: This branch is the work in progress for version 4 of ReactFire. [You can find version 3 here](https://github.com/firebaseextended/reactfire/tree/v3), if you're looking for documentation or to contribute to stable.
9-
10-
---
11-
126
## What is ReactFire?
137

148
- **Easy realtime updates for your function components** - Hooks
@@ -21,12 +15,12 @@ Firebase.
2115

2216
```bash
2317
# npm
24-
npm install --save reactfire@exp firebase@exp
18+
npm install --save firebase reactfire
2519

2620
# or
2721

2822
# yarn
29-
yarn add reactfire@exp firebase@exp
23+
yarn add firebase reactfire
3024
```
3125

3226
Depending on your targeted platforms you may need to install polyfills. The most commonly needed will be [globalThis](https://caniuse.com/#search=globalThis) and [Proxy](https://caniuse.com/#search=Proxy).
@@ -90,10 +84,6 @@ render(
9084

9185
---
9286

93-
> If you're looking for docs for the _deprecated_ ReactFire v1 (the one that
94-
> uses mixins), click
95-
> [here](https://github.com/FirebaseExtended/reactfire/tree/v1.0.0)
96-
9787
## Status
9888

9989
![Status: Experimental](https://img.shields.io/badge/Status-Experimental-blue)

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"docs": "typedoc --options typedoc.json && markdown-toc -i docs/use.md"
2727
},
2828
"peerDependencies": {
29-
"firebase": "9.0.0-2021720181311",
29+
"firebase": "^9.0.0",
3030
"react": ">=16 || experimental"
3131
},
3232
"husky": {
@@ -81,7 +81,7 @@
8181
"babel-jest": "^26.6.3",
8282
"babel-plugin-minify-replace": "^0.5.0",
8383
"eslint-plugin-no-only-tests": "^2.6.0",
84-
"firebase": "9.0.0-2021720181311",
84+
"firebase": "^9.0.0",
8585
"firebase-tools": "^9.16.0",
8686
"globalthis": "^1.0.1",
8787
"husky": "^4.3.0",
@@ -99,7 +99,7 @@
9999
"typescript": "^4.2.4"
100100
},
101101
"dependencies": {
102-
"rxfire": "6.0.0-rc.2",
102+
"rxfire": "^6.0.0",
103103
"rxjs": "^6.6.3 || ^7.0.1"
104104
},
105105
"resolutions": {

0 commit comments

Comments
 (0)