-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
86 changed files
with
3,862 additions
and
428 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
name: "🚀Feature Request" | ||
about: Make a feature request for React Native Firebase. | ||
title: "\U0001F41B [PACKAGE_NAME_HERE] Your feature request title here" | ||
labels: 'Needs Attention, type: enhancement' | ||
assignees: '' | ||
|
||
--- | ||
|
||
## What feature would you like to see? | ||
|
||
Is there a missing a feature that is supported on an underlying SDK? Or is there a feature that you think would be useful to have in React Native Firebase? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: Update labels on issues with OP response | ||
|
||
on: | ||
issue_comment: | ||
types: [created] | ||
|
||
jobs: | ||
label-op-response: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check if the comment is from the OP | ||
id: check-op | ||
run: | | ||
OP=${{ github.event.issue.user.login }} | ||
COMMENTER=${{ github.event.comment.user.login }} | ||
if [ "$OP" = "$COMMENTER" ]; then | ||
echo "op_comment=true" >> $GITHUB_ENV | ||
else | ||
echo "op_comment=false" >> $GITHUB_ENV | ||
fi | ||
- name: Add 'Needs Attention' label if OP responded | ||
if: env.op_comment == 'true' | ||
uses: actions-ecosystem/action-add-labels@v1 | ||
with: | ||
labels: 'Needs Attention' | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | ||
- name: Remove 'blocked customer-response' label if OP responded | ||
if: env.op_comment == 'true' | ||
uses: actions-ecosystem/action-remove-labels@v1 | ||
with: | ||
labels: 'blocked: customer-response' | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@react-native-firebase/analytics", | ||
"version": "20.3.0", | ||
"version": "20.4.0", | ||
"author": "Invertase <[email protected]> (http://invertase.io)", | ||
"description": "React Native Firebase - The analytics module provides out of the box support with Google Analytics for Firebase. Integration with the Android & iOS allows for in-depth analytical insight reporting, such as device information, location, user actions and more.", | ||
"main": "lib/index.js", | ||
|
@@ -22,7 +22,7 @@ | |
"analytics" | ||
], | ||
"peerDependencies": { | ||
"@react-native-firebase/app": "20.3.0" | ||
"@react-native-firebase/app": "20.4.0" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@react-native-firebase/app-check", | ||
"version": "20.3.0", | ||
"version": "20.4.0", | ||
"author": "Invertase <[email protected]> (http://invertase.io)", | ||
"description": "React Native Firebase - App Check", | ||
"main": "lib/index.js", | ||
|
@@ -25,7 +25,7 @@ | |
"appCheck" | ||
], | ||
"peerDependencies": { | ||
"@react-native-firebase/app": "20.3.0", | ||
"@react-native-firebase/app": "20.4.0", | ||
"expo": ">=47.0.0" | ||
}, | ||
"devDependencies": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@react-native-firebase/app-distribution", | ||
"version": "20.3.0", | ||
"version": "20.4.0", | ||
"author": "Invertase <[email protected]> (http://invertase.io)", | ||
"description": "React Native Firebase - App Distribution", | ||
"main": "lib/index.js", | ||
|
@@ -22,7 +22,7 @@ | |
"app-distribution" | ||
], | ||
"peerDependencies": { | ||
"@react-native-firebase/app": "20.3.0" | ||
"@react-native-firebase/app": "20.4.0" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@react-native-firebase/app", | ||
"version": "20.3.0", | ||
"version": "20.4.0", | ||
"author": "Invertase <[email protected]> (http://invertase.io)", | ||
"description": "A well tested, feature rich Firebase implementation for React Native, supporting iOS & Android. Individual module support for Admob, Analytics, Auth, Crash Reporting, Cloud Firestore, Database, Dynamic Links, Functions, Messaging (FCM), Remote Config, Storage and more.", | ||
"main": "lib/index.js", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@react-native-firebase/auth", | ||
"version": "20.3.0", | ||
"version": "20.4.0", | ||
"author": "Invertase <[email protected]> (http://invertase.io)", | ||
"description": "React Native Firebase - The authentication module provides an easy-to-use API to integrate an authentication workflow into new and existing applications. React Native Firebase provides access to all Firebase authentication methods and identity providers.", | ||
"main": "lib/index.js", | ||
|
@@ -27,7 +27,7 @@ | |
"plist": "^3.1.0" | ||
}, | ||
"peerDependencies": { | ||
"@react-native-firebase/app": "20.3.0", | ||
"@react-native-firebase/app": "20.4.0", | ||
"expo": ">=47.0.0" | ||
}, | ||
"devDependencies": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.