mirror of
https://github.com/zhigang1992/react-native-firebase.git
synced 2026-01-12 22:50:20 +08:00
feat: independently version packages (#3513)
* feat: remove core version lock * chore: v6.4.1 * chore: v6.4.1 * chore: configure lerna for independent versions * chore: configure lerna for independent versions * chore: only check docs folder skipping elsewhere due to generated files such as changelogs
This commit is contained in:
11
.github/workflows/docs.yml
vendored
11
.github/workflows/docs.yml
vendored
@@ -1,14 +1,9 @@
|
||||
name: Documentation
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
paths:
|
||||
- '**/*.md'
|
||||
pull_request:
|
||||
paths:
|
||||
- '**/*.md'
|
||||
branches:
|
||||
- '**'
|
||||
|
||||
jobs:
|
||||
spelling:
|
||||
@@ -21,4 +16,4 @@ jobs:
|
||||
sudo npm install --global spellchecker-cli
|
||||
- name: Spell check
|
||||
run: |
|
||||
spellchecker --quiet --files="**/*.md" --dictionaries="./.spellcheck.dict.txt" --reports="spelling.json" --plugins spell indefinite-article repeated-words syntax-mentions syntax-urls frontmatter
|
||||
spellchecker --quiet --files="docs/**/*.md" --dictionaries="./.spellcheck.dict.txt" --reports="spelling.json" --plugins spell indefinite-article repeated-words syntax-mentions syntax-urls frontmatter
|
||||
|
||||
33
.github/workflows/publish.yml
vendored
Normal file
33
.github/workflows/publish.yml
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
name: Publish
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
publish_npm:
|
||||
if: "! contains(toJSON(github.event.commits.*.message), '[skip-ci]')"
|
||||
name: 'NPM'
|
||||
timeout-minutes: 5
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: GIT Setup
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
run: |
|
||||
git config --global user.name '@Salakar'
|
||||
git config --global user.email 'Salakar@users.noreply.github.com'
|
||||
git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/$GITHUB_REPOSITORY
|
||||
- name: Publish Packages
|
||||
run: |
|
||||
npm whoami
|
||||
npx lerna publish --yes
|
||||
env:
|
||||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
||||
- name: Deploy Documentation
|
||||
env:
|
||||
NETLIFY_TRIGGER_URL: ${{ secrets.NETLIFY_TRIGGER_URL }}
|
||||
run: |
|
||||
curl -X POST -d {} "$NETLIFY_TRIGGER_URL"
|
||||
3
.github/workflows/tests_e2e.yml
vendored
3
.github/workflows/tests_e2e.yml
vendored
@@ -1,9 +1,6 @@
|
||||
name: Testing E2E
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
pull_request:
|
||||
branches:
|
||||
- '**'
|
||||
|
||||
21
lerna.json
21
lerna.json
@@ -1,19 +1,16 @@
|
||||
{
|
||||
"npmClient": "yarn",
|
||||
"npmClientArgs": [
|
||||
"--no-lockfile"
|
||||
],
|
||||
"packages": [
|
||||
"packages/*",
|
||||
"tests"
|
||||
],
|
||||
"npmClientArgs": ["--no-lockfile"],
|
||||
"packages": ["packages/*", "tests"],
|
||||
"useWorkspaces": true,
|
||||
"command": {
|
||||
"publish": {
|
||||
"ignoreChanges": [
|
||||
"*.md"
|
||||
]
|
||||
"version": {
|
||||
"conventionalCommits": true,
|
||||
"exact": true,
|
||||
"gitRemote": "origin",
|
||||
"message": "chore(release): publish [skip-ci]"
|
||||
}
|
||||
},
|
||||
"version": "6.4.0"
|
||||
"ignoreChanges": ["**/docs/**", "**/.github/**", "**/e2e/**", "**/tests/**"],
|
||||
"version": "independent"
|
||||
}
|
||||
|
||||
@@ -12,7 +12,6 @@
|
||||
"lerna:link": "lerna link",
|
||||
"lerna:clean": "lerna clean",
|
||||
"gen:reference": "node scripts/generate-typedoc.js",
|
||||
"generate-changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -t -v -l",
|
||||
"tests:packager:chrome": "cd tests && node_modules/.bin/react-native start --reset-cache",
|
||||
"tests:packager:jet": "cd tests && cross-env REACT_DEBUGGER=\"echo nope\" node_modules/.bin/react-native start --no-interactive",
|
||||
"tests:packager:jet-reset-cache": "cd tests && cross-env REACT_DEBUGGER=\"echo nope\" node_modules/.bin/react-native start --reset-cache --no-interactive",
|
||||
@@ -29,10 +28,6 @@
|
||||
"tests:ios:test-cover": "cd tests && ./node_modules/.bin/nyc ./node_modules/.bin/detox test --configuration ios.sim.debug",
|
||||
"tests:ios:test-cover-reuse": "cd tests && node_modules/.bin/nyc ./node_modules/.bin/detox test --configuration ios.sim.debug --reuse --loglevel warn",
|
||||
"tests:ios:pod:install": "cd tests && cd ios && rm -rf ReactNativeFirebaseDemo.xcworkspace && pod install && cd ..",
|
||||
"npm:version:release:patch": "echo '!!🔴!! RELEASE !!🔴!!' && lerna version patch --no-git-tag-version --no-push --exact --force-publish=*",
|
||||
"npm:version:release:minor": "echo '!!🔴!! RELEASE !!🔴!!' && lerna version minor --no-git-tag-version --no-push --exact --force-publish=*",
|
||||
"npm:version:release:major": "echo '!!🔴!! RELEASE !!🔴!!' && lerna version major --no-git-tag-version --no-push --exact --force-publish=*",
|
||||
"npm:publish:release": "echo '!!🔴!! RELEASE !!🔴!!' && echo '!!!!! RELEASE !!!!!!' && lerna publish from-package --dist-tag latest --no-git-reset",
|
||||
"format:markdown": "prettier --write \"docs/**/*.md\""
|
||||
},
|
||||
"devDependencies": {
|
||||
|
||||
63
packages/admob/CHANGELOG.md
Normal file
63
packages/admob/CHANGELOG.md
Normal file
@@ -0,0 +1,63 @@
|
||||
# Change Log
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# 6.5.0 (2020-04-22)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **android,build:** conditionally check `app` dependency, fixes… ([#3215](https://github.com/invertase/react-native-firebase/tree/master/packages/admob/issues/3215)) ([b4eaa39](https://github.com/invertase/react-native-firebase/tree/master/packages/admob/commit/b4eaa39ea8022535696d28e6eacb5c3e3ce9578f))
|
||||
* **android,build:** use correct plugin & BoM versions ([fb763eb](https://github.com/invertase/react-native-firebase/tree/master/packages/admob/commit/fb763ebde216d8c789b08bd0d77c078089776627))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **ios:** allow static_framework usage via Podfile global ([#3388](https://github.com/invertase/react-native-firebase/tree/master/packages/admob/issues/3388)) ([530f8bb](https://github.com/invertase/react-native-firebase/tree/master/packages/admob/commit/530f8bbb51f89f106854dbf1df5ec80211e2cf8b)), closes [#3253](https://github.com/invertase/react-native-firebase/tree/master/packages/admob/issues/3253)
|
||||
* **messaging:** ios & android messaging updates & fixes ([#3339](https://github.com/invertase/react-native-firebase/tree/master/packages/admob/issues/3339)) ([d66a611](https://github.com/invertase/react-native-firebase/tree/master/packages/admob/commit/d66a6118f82005087f53b86571990fc071402153))
|
||||
|
||||
|
||||
|
||||
# 6.3.0 (2020-02-04)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **admob,android:** null check activity in consent form ([#2985](https://github.com/invertase/react-native-firebase/tree/master/packages/admob/issues/2985)) ([b5243cf](https://github.com/invertase/react-native-firebase/tree/master/packages/admob/commit/b5243cf25a130d10160635c23846a20435995cad))
|
||||
|
||||
|
||||
|
||||
# 6.2.0 (2019-12-08)
|
||||
|
||||
|
||||
|
||||
# 6.1.0 (2019-11-26)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **admob:** add null checks for getCurrentActivity() usages ([#2913](https://github.com/invertase/react-native-firebase/tree/master/packages/admob/issues/2913)) ([1fb296d](https://github.com/invertase/react-native-firebase/tree/master/packages/admob/commit/1fb296dc3bc2ffcf2db1d09f5f17b0209ff8276a))
|
||||
* **admob,ios:** use `AdMob` vs `Admob` for Pod name ([#2922](https://github.com/invertase/react-native-firebase/tree/master/packages/admob/issues/2922)) ([88a0167](https://github.com/invertase/react-native-firebase/tree/master/packages/admob/commit/88a01672a8e443e87c7e1513cdb0d0594dd47ed9))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **firestore:** array-contains, array-contains-any & in filters ([#2868](https://github.com/invertase/react-native-firebase/tree/master/packages/admob/issues/2868)) ([42e034c](https://github.com/invertase/react-native-firebase/tree/master/packages/admob/commit/42e034c4807da54441d2baeab9f57bbf1a137a4a))
|
||||
* **ios:** upgrade Firebase iOS SDK version to 6.13.0 ([547d0a2](https://github.com/invertase/react-native-firebase/tree/master/packages/admob/commit/547d0a2d74a68808b29063f9b3aa3e1ac38551fc))
|
||||
|
||||
|
||||
|
||||
## 6.0.4 (2019-11-17)
|
||||
|
||||
|
||||
|
||||
## 6.0.3 (2019-10-25)
|
||||
|
||||
|
||||
|
||||
## 6.0.2 (2019-10-18)
|
||||
|
||||
|
||||
|
||||
## 6.0.1 (2019-10-07)
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@react-native-firebase/admob",
|
||||
"version": "6.4.0",
|
||||
"version": "6.5.0",
|
||||
"author": "Invertase <oss@invertase.io> (http://invertase.io)",
|
||||
"description": "React Native Firebase - Google AdMob is an easy way to monetize mobile apps with targeted, in-app advertising.",
|
||||
"main": "lib/index.js",
|
||||
@@ -29,7 +29,7 @@
|
||||
"peerDependencies": {
|
||||
"@react-native-firebase/app": "*"
|
||||
},
|
||||
"gitHead": "aa127b844418db58d33d00b7ba08872273e6f658",
|
||||
"gitHead": "b5bbbef8f0e46a7b979f4e884b9e9b98aaf810f4",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
}
|
||||
|
||||
68
packages/analytics/CHANGELOG.md
Normal file
68
packages/analytics/CHANGELOG.md
Normal file
@@ -0,0 +1,68 @@
|
||||
# Change Log
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# 6.5.0 (2020-04-22)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **analytics:** logEvent params can be objects, further fix for… ([#3351](https://github.com/invertase/react-native-firebase/tree/master/packages/analytics/issues/3351)) ([eebfb04](https://github.com/invertase/react-native-firebase/tree/master/packages/analytics/commit/eebfb04a7c0a856a9d5d311ae99138df9ab90c3b)), closes [#3219](https://github.com/invertase/react-native-firebase/tree/master/packages/analytics/issues/3219) [#3219](https://github.com/invertase/react-native-firebase/tree/master/packages/analytics/issues/3219)
|
||||
* **android,build:** conditionally check `app` dependency, fixes… ([#3215](https://github.com/invertase/react-native-firebase/tree/master/packages/analytics/issues/3215)) ([b4eaa39](https://github.com/invertase/react-native-firebase/tree/master/packages/analytics/commit/b4eaa39ea8022535696d28e6eacb5c3e3ce9578f))
|
||||
* **android,build:** use correct plugin & BoM versions ([fb763eb](https://github.com/invertase/react-native-firebase/tree/master/packages/analytics/commit/fb763ebde216d8c789b08bd0d77c078089776627))
|
||||
* **types,analytics:** logEvent types for [#3219](https://github.com/invertase/react-native-firebase/tree/master/packages/analytics/issues/3219) ([65ec7eb](https://github.com/invertase/react-native-firebase/tree/master/packages/analytics/commit/65ec7eb431712f8c4d3cf96c24489e6a13ef4e13))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **ios:** allow static_framework usage via Podfile global ([#3388](https://github.com/invertase/react-native-firebase/tree/master/packages/analytics/issues/3388)) ([530f8bb](https://github.com/invertase/react-native-firebase/tree/master/packages/analytics/commit/530f8bbb51f89f106854dbf1df5ec80211e2cf8b)), closes [#3253](https://github.com/invertase/react-native-firebase/tree/master/packages/analytics/issues/3253)
|
||||
* **messaging:** ios & android messaging updates & fixes ([#3339](https://github.com/invertase/react-native-firebase/tree/master/packages/analytics/issues/3339)) ([d66a611](https://github.com/invertase/react-native-firebase/tree/master/packages/analytics/commit/d66a6118f82005087f53b86571990fc071402153))
|
||||
|
||||
|
||||
|
||||
# 6.3.0 (2020-02-04)
|
||||
|
||||
|
||||
|
||||
# 6.2.0 (2019-12-08)
|
||||
|
||||
|
||||
|
||||
# 6.1.0 (2019-11-26)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **analytics:** ts logEvent params arg should be optional ([#2822](https://github.com/invertase/react-native-firebase/tree/master/packages/analytics/issues/2822)) ([3b8757c](https://github.com/invertase/react-native-firebase/tree/master/packages/analytics/commit/3b8757c0d4f6787c2e5f1ca2c04e73e809d3deae))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **firestore:** array-contains, array-contains-any & in filters ([#2868](https://github.com/invertase/react-native-firebase/tree/master/packages/analytics/issues/2868)) ([42e034c](https://github.com/invertase/react-native-firebase/tree/master/packages/analytics/commit/42e034c4807da54441d2baeab9f57bbf1a137a4a))
|
||||
* **ios:** upgrade Firebase iOS SDK version to 6.13.0 ([547d0a2](https://github.com/invertase/react-native-firebase/tree/master/packages/analytics/commit/547d0a2d74a68808b29063f9b3aa3e1ac38551fc))
|
||||
|
||||
|
||||
|
||||
## 6.0.4 (2019-11-17)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **analytics:** Use correct add_to_cart event name ([#2882](https://github.com/invertase/react-native-firebase/tree/master/packages/analytics/issues/2882)) ([2369c62](https://github.com/invertase/react-native-firebase/tree/master/packages/analytics/commit/2369c629fc21705f32f2a4b6487260e3ab05569e))
|
||||
|
||||
|
||||
|
||||
## 6.0.3 (2019-10-25)
|
||||
|
||||
|
||||
|
||||
## 6.0.2 (2019-10-18)
|
||||
|
||||
|
||||
|
||||
## 6.0.1 (2019-10-07)
|
||||
|
||||
|
||||
|
||||
# 0.1.0 (2019-07-30)
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@react-native-firebase/analytics",
|
||||
"version": "6.4.0",
|
||||
"version": "6.5.0",
|
||||
"author": "Invertase <oss@invertase.io> (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",
|
||||
@@ -24,7 +24,7 @@
|
||||
"peerDependencies": {
|
||||
"@react-native-firebase/app": "*"
|
||||
},
|
||||
"gitHead": "aa127b844418db58d33d00b7ba08872273e6f658",
|
||||
"gitHead": "b5bbbef8f0e46a7b979f4e884b9e9b98aaf810f4",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
}
|
||||
|
||||
43
packages/app-types/CHANGELOG.md
Normal file
43
packages/app-types/CHANGELOG.md
Normal file
@@ -0,0 +1,43 @@
|
||||
# Change Log
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# 6.5.0 (2020-04-22)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **messaging:** ios & android messaging updates & fixes ([#3339](https://github.com/invertase/react-native-firebase/tree/master/packages/app-types/issues/3339)) ([d66a611](https://github.com/invertase/react-native-firebase/tree/master/packages/app-types/commit/d66a6118f82005087f53b86571990fc071402153))
|
||||
|
||||
|
||||
|
||||
# 6.3.0 (2020-02-04)
|
||||
|
||||
|
||||
|
||||
# 6.2.0 (2019-12-08)
|
||||
|
||||
|
||||
|
||||
# 6.1.0 (2019-11-26)
|
||||
|
||||
|
||||
|
||||
## 6.0.4 (2019-11-17)
|
||||
|
||||
|
||||
|
||||
## 6.0.3 (2019-10-25)
|
||||
|
||||
|
||||
|
||||
## 6.0.2 (2019-10-18)
|
||||
|
||||
|
||||
|
||||
## 6.0.1 (2019-10-07)
|
||||
|
||||
|
||||
|
||||
# 0.1.0 (2019-07-30)
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@react-native-firebase/app-types",
|
||||
"version": "6.4.0",
|
||||
"version": "6.5.0",
|
||||
"author": "Invertase <oss@invertase.io> (http://invertase.io)",
|
||||
"description": "@react-native-firebase/app-types",
|
||||
"files": [
|
||||
@@ -13,7 +13,7 @@
|
||||
"url": "https://github.com/invertase/react-native-firebase/tree/master/packages/app-types"
|
||||
},
|
||||
"license": "Apache-2.0",
|
||||
"gitHead": "aa127b844418db58d33d00b7ba08872273e6f658",
|
||||
"gitHead": "b5bbbef8f0e46a7b979f4e884b9e9b98aaf810f4",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
}
|
||||
|
||||
76
packages/app/CHANGELOG.md
Normal file
76
packages/app/CHANGELOG.md
Normal file
@@ -0,0 +1,76 @@
|
||||
# Change Log
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# 6.5.0 (2020-04-22)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **android,build:** use correct plugin & BoM versions ([fb763eb](https://github.com/invertase/react-native-firebase/tree/master/packages/app/commit/fb763ebde216d8c789b08bd0d77c078089776627))
|
||||
* **messaging,ios:** keep original UNUserNotificationCenter dele… ([#3427](https://github.com/invertase/react-native-firebase/tree/master/packages/app/issues/3427)) ([a800cdb](https://github.com/invertase/react-native-firebase/tree/master/packages/app/commit/a800cdbc81bfaeeaccf602aa62ca29d2fbf68c05)), closes [#3425](https://github.com/invertase/react-native-firebase/tree/master/packages/app/issues/3425) [#3495](https://github.com/invertase/react-native-firebase/tree/master/packages/app/issues/3495)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **ios:** allow static_framework usage via Podfile global ([#3388](https://github.com/invertase/react-native-firebase/tree/master/packages/app/issues/3388)) ([530f8bb](https://github.com/invertase/react-native-firebase/tree/master/packages/app/commit/530f8bbb51f89f106854dbf1df5ec80211e2cf8b)), closes [#3253](https://github.com/invertase/react-native-firebase/tree/master/packages/app/issues/3253)
|
||||
* **messaging:** ios & android messaging updates & fixes ([#3339](https://github.com/invertase/react-native-firebase/tree/master/packages/app/issues/3339)) ([d66a611](https://github.com/invertase/react-native-firebase/tree/master/packages/app/commit/d66a6118f82005087f53b86571990fc071402153))
|
||||
* remove core version lock ([2d2c359](https://github.com/invertase/react-native-firebase/tree/master/packages/app/commit/2d2c359e601ff5bde2497946f9aaff77af9c236f))
|
||||
|
||||
|
||||
|
||||
# 6.3.0 (2020-02-04)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **app:** typo ([#3047](https://github.com/invertase/react-native-firebase/tree/master/packages/app/issues/3047)) ([e7fced7](https://github.com/invertase/react-native-firebase/tree/master/packages/app/commit/e7fced7348e85938a3bb1aebecc7554a2244aea8))
|
||||
* **app,ios:** fix setPlistValue when plist paths have spaces ([#3152](https://github.com/invertase/react-native-firebase/tree/master/packages/app/issues/3152)) ([95be877](https://github.com/invertase/react-native-firebase/tree/master/packages/app/commit/95be87780c80578b0e2a4dac1c097d005c26043c))
|
||||
* **app,ios:** handle Info.plist file paths with spaces ([#3135](https://github.com/invertase/react-native-firebase/tree/master/packages/app/issues/3135)) ([ceddf99](https://github.com/invertase/react-native-firebase/tree/master/packages/app/commit/ceddf996739204ce2c971eb1819bf11640b1cace))
|
||||
* **app,ios:** use correct import of RCTBridgeModule.h ([#2850](https://github.com/invertase/react-native-firebase/tree/master/packages/app/issues/2850)) ([7db4cd8](https://github.com/invertase/react-native-firebase/tree/master/packages/app/commit/7db4cd883ab71f40fd8c9886c80d7e7489acbcc2))
|
||||
* **package/app:** remove obj.freeze for redux-firestore ([46be1b0](https://github.com/invertase/react-native-firebase/tree/master/packages/app/commit/46be1b0c996e976357f1190bede29559be94a162))
|
||||
|
||||
|
||||
|
||||
# 6.2.0 (2019-12-08)
|
||||
|
||||
|
||||
|
||||
# 6.1.0 (2019-11-26)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **firestore:** array-contains, array-contains-any & in filters ([#2868](https://github.com/invertase/react-native-firebase/tree/master/packages/app/issues/2868)) ([42e034c](https://github.com/invertase/react-native-firebase/tree/master/packages/app/commit/42e034c4807da54441d2baeab9f57bbf1a137a4a))
|
||||
* **ios:** upgrade Firebase iOS SDK version to 6.13.0 ([547d0a2](https://github.com/invertase/react-native-firebase/tree/master/packages/app/commit/547d0a2d74a68808b29063f9b3aa3e1ac38551fc))
|
||||
|
||||
|
||||
|
||||
## 6.0.4 (2019-11-17)
|
||||
|
||||
|
||||
|
||||
## 6.0.3 (2019-10-25)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **storage,ios:** Fix issue with `ph://` (Photos) paths ([cbced41](https://github.com/invertase/react-native-firebase/tree/master/packages/app/commit/cbced419d4a85661da445929c8b3640b028f340b))
|
||||
|
||||
|
||||
|
||||
## 6.0.2 (2019-10-18)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **auth:** Fix iOS event subscriptions not correctly removing on reload ([49c0050](https://github.com/invertase/react-native-firebase/tree/master/packages/app/commit/49c0050383aa0c54a2329104e2ad85a5e41a4a95))
|
||||
|
||||
|
||||
|
||||
## 6.0.1 (2019-10-07)
|
||||
|
||||
|
||||
|
||||
# 0.1.0 (2019-07-30)
|
||||
@@ -262,28 +262,14 @@ export function getFirebaseRoot() {
|
||||
* @returns {*}
|
||||
*/
|
||||
export function createModuleNamespace(options = {}) {
|
||||
const { namespace, ModuleClass, version } = options;
|
||||
const { namespace, ModuleClass } = options;
|
||||
|
||||
if (!NAMESPACE_REGISTRY[namespace]) {
|
||||
// validation only for internal / module dev usage
|
||||
// TODO instanceof does not work in build
|
||||
if (FirebaseModule.__extended__ !== ModuleClass.__extended__) {
|
||||
throw new Error('INTERNAL ERROR: ModuleClass must be an instance of FirebaseModule.');
|
||||
}
|
||||
|
||||
// TODO remove me after notifications ready, temporarily excludes it from this logic
|
||||
if (version !== SDK_VERSION && namespace !== 'notifications') {
|
||||
throw new Error(
|
||||
[
|
||||
`You've attempted to require '@react-native-firebase/${namespace}' version '${version}', ` +
|
||||
`however, the '@react-native-firebase/app' module is of a different version (${SDK_VERSION}).`,
|
||||
'',
|
||||
'All React Native Firebase modules must be of the same version. Please ensure they match up ' +
|
||||
'in your package.json file and re-run yarn/npm install.',
|
||||
].join('\n'),
|
||||
);
|
||||
}
|
||||
|
||||
NAMESPACE_REGISTRY[namespace] = Object.assign({}, options);
|
||||
}
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@react-native-firebase/app",
|
||||
"version": "6.4.0",
|
||||
"version": "6.5.0",
|
||||
"author": "Invertase <oss@invertase.io> (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",
|
||||
@@ -53,7 +53,7 @@
|
||||
"react-native": "*"
|
||||
},
|
||||
"dependencies": {
|
||||
"@react-native-firebase/app-types": "6.4.0",
|
||||
"@react-native-firebase/app-types": "6.5.0",
|
||||
"opencollective-postinstall": "^2.0.1",
|
||||
"superstruct": "^0.6.2"
|
||||
},
|
||||
@@ -61,7 +61,7 @@
|
||||
"type": "opencollective",
|
||||
"url": "https://opencollective.com/react-native-firebase"
|
||||
},
|
||||
"gitHead": "aa127b844418db58d33d00b7ba08872273e6f658",
|
||||
"gitHead": "b5bbbef8f0e46a7b979f4e884b9e9b98aaf810f4",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
}
|
||||
|
||||
85
packages/auth/CHANGELOG.md
Normal file
85
packages/auth/CHANGELOG.md
Normal file
@@ -0,0 +1,85 @@
|
||||
# Change Log
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# 6.5.0 (2020-04-22)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **android,build:** conditionally check `app` dependency, fixes… ([#3215](https://github.com/invertase/react-native-firebase/tree/master/packages/auth/issues/3215)) ([b4eaa39](https://github.com/invertase/react-native-firebase/tree/master/packages/auth/commit/b4eaa39ea8022535696d28e6eacb5c3e3ce9578f))
|
||||
* **android,build:** use correct plugin & BoM versions ([fb763eb](https://github.com/invertase/react-native-firebase/tree/master/packages/auth/commit/fb763ebde216d8c789b08bd0d77c078089776627))
|
||||
* **auth:** user.metadata uses ISO strings ([#3360](https://github.com/invertase/react-native-firebase/tree/master/packages/auth/issues/3360)) ([8adef65](https://github.com/invertase/react-native-firebase/tree/master/packages/auth/commit/8adef653faa008e0146374f99f5ba1af902749bf))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **ios:** allow static_framework usage via Podfile global ([#3388](https://github.com/invertase/react-native-firebase/tree/master/packages/auth/issues/3388)) ([530f8bb](https://github.com/invertase/react-native-firebase/tree/master/packages/auth/commit/530f8bbb51f89f106854dbf1df5ec80211e2cf8b)), closes [#3253](https://github.com/invertase/react-native-firebase/tree/master/packages/auth/issues/3253)
|
||||
* **messaging:** ios & android messaging updates & fixes ([#3339](https://github.com/invertase/react-native-firebase/tree/master/packages/auth/issues/3339)) ([d66a611](https://github.com/invertase/react-native-firebase/tree/master/packages/auth/commit/d66a6118f82005087f53b86571990fc071402153))
|
||||
|
||||
|
||||
|
||||
# 6.3.0 (2020-02-04)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **auth:** add missing default actionCodeSettings ([239b35b](https://github.com/invertase/react-native-firebase/tree/master/packages/auth/commit/239b35b362289629fa4c46aa792f9b4200545d24))
|
||||
* **auth,ios:** remove unnecessary string cast ([#3091](https://github.com/invertase/react-native-firebase/tree/master/packages/auth/issues/3091)) ([c5043d1](https://github.com/invertase/react-native-firebase/tree/master/packages/auth/commit/c5043d1fcffa0902f4521125e3fb5ac2178fe264))
|
||||
* **types:** remove types in ConfirmationResult.js ([#3153](https://github.com/invertase/react-native-firebase/tree/master/packages/auth/issues/3153)) ([2cd513a](https://github.com/invertase/react-native-firebase/tree/master/packages/auth/commit/2cd513aee3fd6adbe18c7d1a26d1e72ab7eb4f2b))
|
||||
|
||||
|
||||
|
||||
# 6.2.0 (2019-12-08)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **auth:** add initial support for Apple auth provider ([#2979](https://github.com/invertase/react-native-firebase/tree/master/packages/auth/issues/2979)) ([3e20af0](https://github.com/invertase/react-native-firebase/tree/master/packages/auth/commit/3e20af06db6a8061deb79831fa915b6fc293fd27))
|
||||
|
||||
|
||||
|
||||
# 6.1.0 (2019-11-26)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **auth:** collection was mutated while being enumerated. ([#2900](https://github.com/invertase/react-native-firebase/tree/master/packages/auth/issues/2900)) ([5471187](https://github.com/invertase/react-native-firebase/tree/master/packages/auth/commit/5471187b30527cd1157bde209886664e52413a7c))
|
||||
* **auth:** trigger initial listener asynchronously ([#2897](https://github.com/invertase/react-native-firebase/tree/master/packages/auth/issues/2897)) ([227ab63](https://github.com/invertase/react-native-firebase/tree/master/packages/auth/commit/227ab631a6163a950af675da690b1467f7616d6c))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **firestore:** array-contains, array-contains-any & in filters ([#2868](https://github.com/invertase/react-native-firebase/tree/master/packages/auth/issues/2868)) ([42e034c](https://github.com/invertase/react-native-firebase/tree/master/packages/auth/commit/42e034c4807da54441d2baeab9f57bbf1a137a4a))
|
||||
* **ios:** upgrade Firebase iOS SDK version to 6.13.0 ([547d0a2](https://github.com/invertase/react-native-firebase/tree/master/packages/auth/commit/547d0a2d74a68808b29063f9b3aa3e1ac38551fc))
|
||||
|
||||
|
||||
|
||||
## 6.0.4 (2019-11-17)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **auth:** Fix exception in PhoneAuthListener ([#2828](https://github.com/invertase/react-native-firebase/tree/master/packages/auth/issues/2828)) ([0843cbd](https://github.com/invertase/react-native-firebase/tree/master/packages/auth/commit/0843cbdf3a4548c78a93bed115a1b3b0666436d1)), closes [#2639](https://github.com/invertase/react-native-firebase/tree/master/packages/auth/issues/2639)
|
||||
|
||||
|
||||
|
||||
## 6.0.3 (2019-10-25)
|
||||
|
||||
|
||||
|
||||
## 6.0.2 (2019-10-18)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **auth:** Fix iOS event subscriptions not correctly removing on reload ([49c0050](https://github.com/invertase/react-native-firebase/tree/master/packages/auth/commit/49c0050383aa0c54a2329104e2ad85a5e41a4a95))
|
||||
|
||||
|
||||
|
||||
## 6.0.1 (2019-10-07)
|
||||
|
||||
|
||||
|
||||
# 0.1.0 (2019-07-30)
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@react-native-firebase/auth",
|
||||
"version": "6.4.0",
|
||||
"version": "6.5.0",
|
||||
"author": "Invertase <oss@invertase.io> (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",
|
||||
@@ -24,7 +24,7 @@
|
||||
"peerDependencies": {
|
||||
"@react-native-firebase/app": "*"
|
||||
},
|
||||
"gitHead": "aa127b844418db58d33d00b7ba08872273e6f658",
|
||||
"gitHead": "b5bbbef8f0e46a7b979f4e884b9e9b98aaf810f4",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
}
|
||||
|
||||
72
packages/crashlytics/CHANGELOG.md
Normal file
72
packages/crashlytics/CHANGELOG.md
Normal file
@@ -0,0 +1,72 @@
|
||||
# Change Log
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# 6.5.0 (2020-04-22)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **android,build:** conditionally check `app` dependency, fixes… ([#3215](https://github.com/invertase/react-native-firebase/tree/master/packages/crashlytics/issues/3215)) ([b4eaa39](https://github.com/invertase/react-native-firebase/tree/master/packages/crashlytics/commit/b4eaa39ea8022535696d28e6eacb5c3e3ce9578f))
|
||||
* **android,build:** use correct plugin & BoM versions ([fb763eb](https://github.com/invertase/react-native-firebase/tree/master/packages/crashlytics/commit/fb763ebde216d8c789b08bd0d77c078089776627))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **ios:** allow static_framework usage via Podfile global ([#3388](https://github.com/invertase/react-native-firebase/tree/master/packages/crashlytics/issues/3388)) ([530f8bb](https://github.com/invertase/react-native-firebase/tree/master/packages/crashlytics/commit/530f8bbb51f89f106854dbf1df5ec80211e2cf8b)), closes [#3253](https://github.com/invertase/react-native-firebase/tree/master/packages/crashlytics/issues/3253)
|
||||
* **messaging:** ios & android messaging updates & fixes ([#3339](https://github.com/invertase/react-native-firebase/tree/master/packages/crashlytics/issues/3339)) ([d66a611](https://github.com/invertase/react-native-firebase/tree/master/packages/crashlytics/commit/d66a6118f82005087f53b86571990fc071402153))
|
||||
|
||||
|
||||
|
||||
# 6.3.0 (2020-02-04)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **crashlytics:** handle undefined fileName in stack frames ([#3080](https://github.com/invertase/react-native-firebase/tree/master/packages/crashlytics/issues/3080)) ([84be0ee](https://github.com/invertase/react-native-firebase/tree/master/packages/crashlytics/commit/84be0ee2b22bbad4fddfd6bf6b4983cf683bc808))
|
||||
* **crashlytics,ios:** version bump native ios deps ([#3013](https://github.com/invertase/react-native-firebase/tree/master/packages/crashlytics/issues/3013)) ([3901634](https://github.com/invertase/react-native-firebase/tree/master/packages/crashlytics/commit/39016346e419175119e863b2e2bff10166ddf40c))
|
||||
|
||||
|
||||
|
||||
# 6.2.0 (2019-12-08)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **crashlytics,ios:** use quotes on build script ([#2962](https://github.com/invertase/react-native-firebase/tree/master/packages/crashlytics/issues/2962)) ([8527aa8](https://github.com/invertase/react-native-firebase/tree/master/packages/crashlytics/commit/8527aa8c4856d3bf93ebbfa515f5d5cc0eeb290a))
|
||||
|
||||
|
||||
|
||||
# 6.1.0 (2019-11-26)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **crashlytics:** setCrashlyticsCollectionEnabled return promise ([#2792](https://github.com/invertase/react-native-firebase/tree/master/packages/crashlytics/issues/2792)) ([4c19b94](https://github.com/invertase/react-native-firebase/tree/master/packages/crashlytics/commit/4c19b9439ddf6ecf57e59f7e2d8b64954678d8e5))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **firestore:** array-contains, array-contains-any & in filters ([#2868](https://github.com/invertase/react-native-firebase/tree/master/packages/crashlytics/issues/2868)) ([42e034c](https://github.com/invertase/react-native-firebase/tree/master/packages/crashlytics/commit/42e034c4807da54441d2baeab9f57bbf1a137a4a))
|
||||
* **ios:** upgrade Firebase iOS SDK version to 6.13.0 ([547d0a2](https://github.com/invertase/react-native-firebase/tree/master/packages/crashlytics/commit/547d0a2d74a68808b29063f9b3aa3e1ac38551fc))
|
||||
|
||||
|
||||
|
||||
## 6.0.4 (2019-11-17)
|
||||
|
||||
|
||||
|
||||
## 6.0.3 (2019-10-25)
|
||||
|
||||
|
||||
|
||||
## 6.0.2 (2019-10-18)
|
||||
|
||||
|
||||
|
||||
## 6.0.1 (2019-10-07)
|
||||
|
||||
|
||||
|
||||
# 0.1.0 (2019-07-30)
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@react-native-firebase/crashlytics",
|
||||
"version": "6.4.0",
|
||||
"version": "6.5.0",
|
||||
"author": "Invertase <oss@invertase.io> (http://invertase.io)",
|
||||
"description": "React Native Firebase - Firebase Crashlytics is a lightweight, realtime crash reporter that helps you track, prioritize, and fix stability issues that erode your app quality. React Native Firebase provides automatic crash reporting for both native and JavaScript errors, including unhandled promise rejections.",
|
||||
"main": "lib/index.js",
|
||||
@@ -32,7 +32,7 @@
|
||||
"dependencies": {
|
||||
"stacktrace-js": "^2.0.0"
|
||||
},
|
||||
"gitHead": "aa127b844418db58d33d00b7ba08872273e6f658",
|
||||
"gitHead": "b5bbbef8f0e46a7b979f4e884b9e9b98aaf810f4",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
}
|
||||
|
||||
68
packages/database/CHANGELOG.md
Normal file
68
packages/database/CHANGELOG.md
Normal file
@@ -0,0 +1,68 @@
|
||||
# Change Log
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# 6.5.0 (2020-04-22)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **android,build:** conditionally check `app` dependency, fixes… ([#3215](https://github.com/invertase/react-native-firebase/tree/master/packages/database/issues/3215)) ([b4eaa39](https://github.com/invertase/react-native-firebase/tree/master/packages/database/commit/b4eaa39ea8022535696d28e6eacb5c3e3ce9578f))
|
||||
* **android,build:** use correct plugin & BoM versions ([fb763eb](https://github.com/invertase/react-native-firebase/tree/master/packages/database/commit/fb763ebde216d8c789b08bd0d77c078089776627))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **ios:** allow static_framework usage via Podfile global ([#3388](https://github.com/invertase/react-native-firebase/tree/master/packages/database/issues/3388)) ([530f8bb](https://github.com/invertase/react-native-firebase/tree/master/packages/database/commit/530f8bbb51f89f106854dbf1df5ec80211e2cf8b)), closes [#3253](https://github.com/invertase/react-native-firebase/tree/master/packages/database/issues/3253)
|
||||
* **messaging:** ios & android messaging updates & fixes ([#3339](https://github.com/invertase/react-native-firebase/tree/master/packages/database/issues/3339)) ([d66a611](https://github.com/invertase/react-native-firebase/tree/master/packages/database/commit/d66a6118f82005087f53b86571990fc071402153))
|
||||
|
||||
|
||||
|
||||
# 6.3.0 (2020-02-04)
|
||||
|
||||
|
||||
|
||||
# 6.2.0 (2019-12-08)
|
||||
|
||||
|
||||
|
||||
# 6.1.0 (2019-11-26)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **auth:** dont mutate modifiers ordering when building query key (fixes [#2833](https://github.com/invertase/react-native-firebase/tree/master/packages/database/issues/2833)) ([9df493e](https://github.com/invertase/react-native-firebase/tree/master/packages/database/commit/9df493e837b6a709b8f61027690219738ffa830a))
|
||||
* **database,android:** fix issue where transaction signal state error not caught ([d7252a2](https://github.com/invertase/react-native-firebase/tree/master/packages/database/commit/d7252a2d4e1987114ab1a8e5c04f0088a86d2b5b))
|
||||
* **database,ios:** return null snapshot key if does not exist (fixes [#2813](https://github.com/invertase/react-native-firebase/tree/master/packages/database/issues/2813)) ([bbf3df9](https://github.com/invertase/react-native-firebase/tree/master/packages/database/commit/bbf3df98ab88559de1392cba7163666a31e98ee3))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **firestore:** array-contains, array-contains-any & in filters ([#2868](https://github.com/invertase/react-native-firebase/tree/master/packages/database/issues/2868)) ([42e034c](https://github.com/invertase/react-native-firebase/tree/master/packages/database/commit/42e034c4807da54441d2baeab9f57bbf1a137a4a))
|
||||
* **ios:** upgrade Firebase iOS SDK version to 6.13.0 ([547d0a2](https://github.com/invertase/react-native-firebase/tree/master/packages/database/commit/547d0a2d74a68808b29063f9b3aa3e1ac38551fc))
|
||||
|
||||
|
||||
|
||||
## 6.0.4 (2019-11-17)
|
||||
|
||||
|
||||
|
||||
## 6.0.3 (2019-10-25)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **database:** Fix crash when removing listeners at RN reload ([#2770](https://github.com/invertase/react-native-firebase/tree/master/packages/database/issues/2770)) ([e2b1b6f](https://github.com/invertase/react-native-firebase/tree/master/packages/database/commit/e2b1b6f56f8123ccf5f9c03bf6b5bc64a95ccc89))
|
||||
|
||||
|
||||
|
||||
## 6.0.2 (2019-10-18)
|
||||
|
||||
|
||||
|
||||
## 6.0.1 (2019-10-07)
|
||||
|
||||
|
||||
|
||||
# 0.1.0 (2019-07-30)
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@react-native-firebase/database",
|
||||
"version": "6.4.0",
|
||||
"version": "6.5.0",
|
||||
"author": "Invertase <oss@invertase.io> (http://invertase.io)",
|
||||
"description": "React Native Firebase - The Firebase Realtime Database is a cloud-hosted database. Data is stored as JSON and synchronized in realtime to every connected client. React Native Firebase provides native integration with the Android & iOS Firebase SDKs, supporting both realtime data sync and offline capabilities.",
|
||||
"main": "lib/index.js",
|
||||
@@ -27,7 +27,7 @@
|
||||
"peerDependencies": {
|
||||
"@react-native-firebase/app": "*"
|
||||
},
|
||||
"gitHead": "aa127b844418db58d33d00b7ba08872273e6f658",
|
||||
"gitHead": "b5bbbef8f0e46a7b979f4e884b9e9b98aaf810f4",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
}
|
||||
|
||||
59
packages/dynamic-links/CHANGELOG.md
Normal file
59
packages/dynamic-links/CHANGELOG.md
Normal file
@@ -0,0 +1,59 @@
|
||||
# Change Log
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# 6.5.0 (2020-04-22)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **android,build:** conditionally check `app` dependency, fixes… ([#3215](https://github.com/invertase/react-native-firebase/tree/master/packages/links/issues/3215)) ([b4eaa39](https://github.com/invertase/react-native-firebase/tree/master/packages/links/commit/b4eaa39ea8022535696d28e6eacb5c3e3ce9578f))
|
||||
* **android,build:** use correct plugin & BoM versions ([fb763eb](https://github.com/invertase/react-native-firebase/tree/master/packages/links/commit/fb763ebde216d8c789b08bd0d77c078089776627))
|
||||
* **dynamic-linking:** analytics param bug fix ([#3171](https://github.com/invertase/react-native-firebase/tree/master/packages/links/issues/3171)) ([ffcb4d4](https://github.com/invertase/react-native-firebase/tree/master/packages/links/commit/ffcb4d432b8bab13659f4bd3628da1ce14b373f4))
|
||||
* **dynamic-links:** missing 'return' statement ([#3318](https://github.com/invertase/react-native-firebase/tree/master/packages/links/issues/3318)) ([1661f6e](https://github.com/invertase/react-native-firebase/tree/master/packages/links/commit/1661f6e084c47ed835cc4539c654286964a6d9a8))
|
||||
* **dynamic-links,ios:** links options not correctly applied ([#3316](https://github.com/invertase/react-native-firebase/tree/master/packages/links/issues/3316)) ([54bc6f8](https://github.com/invertase/react-native-firebase/tree/master/packages/links/commit/54bc6f8403b12a8cfaf0b862d13310ef28076d06))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **ios:** allow static_framework usage via Podfile global ([#3388](https://github.com/invertase/react-native-firebase/tree/master/packages/links/issues/3388)) ([530f8bb](https://github.com/invertase/react-native-firebase/tree/master/packages/links/commit/530f8bbb51f89f106854dbf1df5ec80211e2cf8b)), closes [#3253](https://github.com/invertase/react-native-firebase/tree/master/packages/links/issues/3253)
|
||||
* **messaging:** ios & android messaging updates & fixes ([#3339](https://github.com/invertase/react-native-firebase/tree/master/packages/links/issues/3339)) ([d66a611](https://github.com/invertase/react-native-firebase/tree/master/packages/links/commit/d66a6118f82005087f53b86571990fc071402153))
|
||||
|
||||
|
||||
|
||||
# 6.3.0 (2020-02-04)
|
||||
|
||||
|
||||
|
||||
# 6.2.0 (2019-12-08)
|
||||
|
||||
|
||||
|
||||
# 6.1.0 (2019-11-26)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **firestore:** array-contains, array-contains-any & in filters ([#2868](https://github.com/invertase/react-native-firebase/tree/master/packages/links/issues/2868)) ([42e034c](https://github.com/invertase/react-native-firebase/tree/master/packages/links/commit/42e034c4807da54441d2baeab9f57bbf1a137a4a))
|
||||
* **ios:** upgrade Firebase iOS SDK version to 6.13.0 ([547d0a2](https://github.com/invertase/react-native-firebase/tree/master/packages/links/commit/547d0a2d74a68808b29063f9b3aa3e1ac38551fc))
|
||||
|
||||
|
||||
|
||||
## 6.0.4 (2019-11-17)
|
||||
|
||||
|
||||
|
||||
## 6.0.3 (2019-10-25)
|
||||
|
||||
|
||||
|
||||
## 6.0.2 (2019-10-18)
|
||||
|
||||
|
||||
|
||||
## 6.0.1 (2019-10-07)
|
||||
|
||||
|
||||
|
||||
# 0.1.0 (2019-07-30)
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@react-native-firebase/dynamic-links",
|
||||
"version": "6.4.0",
|
||||
"version": "6.5.0",
|
||||
"author": "Invertase <oss@invertase.io> (http://invertase.io)",
|
||||
"description": "React Native Firebase - Dynamic Links",
|
||||
"main": "lib/index.js",
|
||||
@@ -25,7 +25,7 @@
|
||||
"peerDependencies": {
|
||||
"@react-native-firebase/app": "*"
|
||||
},
|
||||
"gitHead": "aa127b844418db58d33d00b7ba08872273e6f658",
|
||||
"gitHead": "b5bbbef8f0e46a7b979f4e884b9e9b98aaf810f4",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
}
|
||||
|
||||
77
packages/firestore/CHANGELOG.md
Normal file
77
packages/firestore/CHANGELOG.md
Normal file
@@ -0,0 +1,77 @@
|
||||
# Change Log
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# 6.5.0 (2020-04-22)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **android,build:** conditionally check `app` dependency, fixes… ([#3215](https://github.com/invertase/react-native-firebase/tree/master/packages/firestore/issues/3215)) ([b4eaa39](https://github.com/invertase/react-native-firebase/tree/master/packages/firestore/commit/b4eaa39ea8022535696d28e6eacb5c3e3ce9578f))
|
||||
* **android,build:** use correct plugin & BoM versions ([fb763eb](https://github.com/invertase/react-native-firebase/tree/master/packages/firestore/commit/fb763ebde216d8c789b08bd0d77c078089776627))
|
||||
* **firestore:** handle fieldpath as array value ([#3179](https://github.com/invertase/react-native-firebase/tree/master/packages/firestore/issues/3179)) ([2cb6d44](https://github.com/invertase/react-native-firebase/tree/master/packages/firestore/commit/2cb6d44b77051f3831ed52b2687ce254d407904d))
|
||||
* **firestore:** improve query validation ([#3320](https://github.com/invertase/react-native-firebase/tree/master/packages/firestore/issues/3320)) ([b90a736](https://github.com/invertase/react-native-firebase/tree/master/packages/firestore/commit/b90a736fc8f9a1b25239bb68e5a62de711b673c7))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **ios:** allow static_framework usage via Podfile global ([#3388](https://github.com/invertase/react-native-firebase/tree/master/packages/firestore/issues/3388)) ([530f8bb](https://github.com/invertase/react-native-firebase/tree/master/packages/firestore/commit/530f8bbb51f89f106854dbf1df5ec80211e2cf8b)), closes [#3253](https://github.com/invertase/react-native-firebase/tree/master/packages/firestore/issues/3253)
|
||||
* **messaging:** ios & android messaging updates & fixes ([#3339](https://github.com/invertase/react-native-firebase/tree/master/packages/firestore/issues/3339)) ([d66a611](https://github.com/invertase/react-native-firebase/tree/master/packages/firestore/commit/d66a6118f82005087f53b86571990fc071402153))
|
||||
|
||||
|
||||
|
||||
# 6.3.0 (2020-02-04)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **firestore:** fix incorrect test ([2ee781f](https://github.com/invertase/react-native-firebase/tree/master/packages/firestore/commit/2ee781f2ba3b05d07abef46d5c080a12fae3f8ba))
|
||||
* **firestore:** use document path when querying by collection group [#3063](https://github.com/invertase/react-native-firebase/tree/master/packages/firestore/issues/3063) ([a3aaff3](https://github.com/invertase/react-native-firebase/tree/master/packages/firestore/commit/a3aaff353f173a386af77c7302c7b23e55b28f2c))
|
||||
* **firestore,android:** add additional null check to exception handler ([c66bfc6](https://github.com/invertase/react-native-firebase/tree/master/packages/firestore/commit/c66bfc61db8538cc9c1b15fa8a1c46f4cdbc580b))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **firestore:** add QueryDocumentSnapshot interface ([5de3770](https://github.com/invertase/react-native-firebase/tree/master/packages/firestore/commit/5de37708daead91b849674b12fa5da761cbaf649))
|
||||
* **firestore:** fix Android Long/Double conversion [#3004](https://github.com/invertase/react-native-firebase/tree/master/packages/firestore/issues/3004) ([13a6560](https://github.com/invertase/react-native-firebase/tree/master/packages/firestore/commit/13a6560a403b353c46dff0a0a8c52fb64241f4f8))
|
||||
|
||||
|
||||
|
||||
# 6.2.0 (2019-12-08)
|
||||
|
||||
|
||||
|
||||
# 6.1.0 (2019-11-26)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **firestore:** array-contains, array-contains-any & in filters ([#2868](https://github.com/invertase/react-native-firebase/tree/master/packages/firestore/issues/2868)) ([42e034c](https://github.com/invertase/react-native-firebase/tree/master/packages/firestore/commit/42e034c4807da54441d2baeab9f57bbf1a137a4a))
|
||||
* **ios:** upgrade Firebase iOS SDK version to 6.13.0 ([547d0a2](https://github.com/invertase/react-native-firebase/tree/master/packages/firestore/commit/547d0a2d74a68808b29063f9b3aa3e1ac38551fc))
|
||||
|
||||
|
||||
|
||||
## 6.0.4 (2019-11-17)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **firestore:** correctly apply internal `__name__` query modif… ([#2866](https://github.com/invertase/react-native-firebase/tree/master/packages/firestore/issues/2866)) ([a5da010](https://github.com/invertase/react-native-firebase/tree/master/packages/firestore/commit/a5da0107ff570dc6327bb3ae5d7fff4143183ac9)), closes [#2854](https://github.com/invertase/react-native-firebase/tree/master/packages/firestore/issues/2854)
|
||||
* **firestore,ios:** Settings incorrectly set multiple times ([#2869](https://github.com/invertase/react-native-firebase/tree/master/packages/firestore/issues/2869)) ([ed858c9](https://github.com/invertase/react-native-firebase/tree/master/packages/firestore/commit/ed858c96eee0bcfa796faf3f151116c35a4328c0))
|
||||
|
||||
|
||||
|
||||
## 6.0.3 (2019-10-25)
|
||||
|
||||
|
||||
|
||||
## 6.0.2 (2019-10-18)
|
||||
|
||||
|
||||
|
||||
## 6.0.1 (2019-10-07)
|
||||
|
||||
|
||||
|
||||
# 0.1.0 (2019-07-30)
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@react-native-firebase/firestore",
|
||||
"version": "6.4.0",
|
||||
"version": "6.5.0",
|
||||
"author": "Invertase <oss@invertase.io> (http://invertase.io)",
|
||||
"description": "React Native Firebase - Cloud Firestore is a NoSQL cloud database to store and sync data between your React Native application and Firebase's database. The API matches the Firebase Web SDK whilst taking advantage of the native SDKs performance and offline capabilities.",
|
||||
"main": "lib/index.js",
|
||||
@@ -29,7 +29,7 @@
|
||||
"peerDependencies": {
|
||||
"@react-native-firebase/app": "*"
|
||||
},
|
||||
"gitHead": "aa127b844418db58d33d00b7ba08872273e6f658",
|
||||
"gitHead": "b5bbbef8f0e46a7b979f4e884b9e9b98aaf810f4",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
}
|
||||
|
||||
57
packages/functions/CHANGELOG.md
Normal file
57
packages/functions/CHANGELOG.md
Normal file
@@ -0,0 +1,57 @@
|
||||
# Change Log
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# 6.5.0 (2020-04-22)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **android,build:** conditionally check `app` dependency, fixes… ([#3215](https://github.com/invertase/react-native-firebase/tree/master/packages/functions/issues/3215)) ([b4eaa39](https://github.com/invertase/react-native-firebase/tree/master/packages/functions/commit/b4eaa39ea8022535696d28e6eacb5c3e3ce9578f))
|
||||
* **android,build:** use correct plugin & BoM versions ([fb763eb](https://github.com/invertase/react-native-firebase/tree/master/packages/functions/commit/fb763ebde216d8c789b08bd0d77c078089776627))
|
||||
* **functions:** throw UNAVAILABLE code on network IO errors ([#3327](https://github.com/invertase/react-native-firebase/tree/master/packages/functions/issues/3327)) ([7351147](https://github.com/invertase/react-native-firebase/tree/master/packages/functions/commit/73511472bd7690158f3d9924d5f4d8c0cad69910))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **ios:** allow static_framework usage via Podfile global ([#3388](https://github.com/invertase/react-native-firebase/tree/master/packages/functions/issues/3388)) ([530f8bb](https://github.com/invertase/react-native-firebase/tree/master/packages/functions/commit/530f8bbb51f89f106854dbf1df5ec80211e2cf8b)), closes [#3253](https://github.com/invertase/react-native-firebase/tree/master/packages/functions/issues/3253)
|
||||
* **messaging:** ios & android messaging updates & fixes ([#3339](https://github.com/invertase/react-native-firebase/tree/master/packages/functions/issues/3339)) ([d66a611](https://github.com/invertase/react-native-firebase/tree/master/packages/functions/commit/d66a6118f82005087f53b86571990fc071402153))
|
||||
|
||||
|
||||
|
||||
# 6.3.0 (2020-02-04)
|
||||
|
||||
|
||||
|
||||
# 6.2.0 (2019-12-08)
|
||||
|
||||
|
||||
|
||||
# 6.1.0 (2019-11-26)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **firestore:** array-contains, array-contains-any & in filters ([#2868](https://github.com/invertase/react-native-firebase/tree/master/packages/functions/issues/2868)) ([42e034c](https://github.com/invertase/react-native-firebase/tree/master/packages/functions/commit/42e034c4807da54441d2baeab9f57bbf1a137a4a))
|
||||
* **ios:** upgrade Firebase iOS SDK version to 6.13.0 ([547d0a2](https://github.com/invertase/react-native-firebase/tree/master/packages/functions/commit/547d0a2d74a68808b29063f9b3aa3e1ac38551fc))
|
||||
|
||||
|
||||
|
||||
## 6.0.4 (2019-11-17)
|
||||
|
||||
|
||||
|
||||
## 6.0.3 (2019-10-25)
|
||||
|
||||
|
||||
|
||||
## 6.0.2 (2019-10-18)
|
||||
|
||||
|
||||
|
||||
## 6.0.1 (2019-10-07)
|
||||
|
||||
|
||||
|
||||
# 0.1.0 (2019-07-30)
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@react-native-firebase/functions",
|
||||
"version": "6.4.0",
|
||||
"version": "6.5.0",
|
||||
"author": "Invertase <oss@invertase.io> (http://invertase.io)",
|
||||
"description": "React Native Firebase - Cloud Functions for Firebase lets you automatically run backend code in response to events triggered by Firebase features and HTTPS requests. React Native Firebase supports integration with production and locally emulated Cloud Functions with a simple API interface.\n\n",
|
||||
"main": "lib/index.js",
|
||||
@@ -29,7 +29,7 @@
|
||||
"devDependencies": {
|
||||
"@react-native-firebase/private-tests-firebase-functions": "^0.0.1"
|
||||
},
|
||||
"gitHead": "aa127b844418db58d33d00b7ba08872273e6f658",
|
||||
"gitHead": "b5bbbef8f0e46a7b979f4e884b9e9b98aaf810f4",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
}
|
||||
|
||||
56
packages/iid/CHANGELOG.md
Normal file
56
packages/iid/CHANGELOG.md
Normal file
@@ -0,0 +1,56 @@
|
||||
# Change Log
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# 6.5.0 (2020-04-22)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **android,build:** conditionally check `app` dependency, fixes… ([#3215](https://github.com/invertase/react-native-firebase/tree/master/packages/iid/issues/3215)) ([b4eaa39](https://github.com/invertase/react-native-firebase/tree/master/packages/iid/commit/b4eaa39ea8022535696d28e6eacb5c3e3ce9578f))
|
||||
* **android,build:** use correct plugin & BoM versions ([fb763eb](https://github.com/invertase/react-native-firebase/tree/master/packages/iid/commit/fb763ebde216d8c789b08bd0d77c078089776627))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **ios:** allow static_framework usage via Podfile global ([#3388](https://github.com/invertase/react-native-firebase/tree/master/packages/iid/issues/3388)) ([530f8bb](https://github.com/invertase/react-native-firebase/tree/master/packages/iid/commit/530f8bbb51f89f106854dbf1df5ec80211e2cf8b)), closes [#3253](https://github.com/invertase/react-native-firebase/tree/master/packages/iid/issues/3253)
|
||||
* **messaging:** ios & android messaging updates & fixes ([#3339](https://github.com/invertase/react-native-firebase/tree/master/packages/iid/issues/3339)) ([d66a611](https://github.com/invertase/react-native-firebase/tree/master/packages/iid/commit/d66a6118f82005087f53b86571990fc071402153))
|
||||
|
||||
|
||||
|
||||
# 6.3.0 (2020-02-04)
|
||||
|
||||
|
||||
|
||||
# 6.2.0 (2019-12-08)
|
||||
|
||||
|
||||
|
||||
# 6.1.0 (2019-11-26)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **firestore:** array-contains, array-contains-any & in filters ([#2868](https://github.com/invertase/react-native-firebase/tree/master/packages/iid/issues/2868)) ([42e034c](https://github.com/invertase/react-native-firebase/tree/master/packages/iid/commit/42e034c4807da54441d2baeab9f57bbf1a137a4a))
|
||||
* **ios:** upgrade Firebase iOS SDK version to 6.13.0 ([547d0a2](https://github.com/invertase/react-native-firebase/tree/master/packages/iid/commit/547d0a2d74a68808b29063f9b3aa3e1ac38551fc))
|
||||
|
||||
|
||||
|
||||
## 6.0.4 (2019-11-17)
|
||||
|
||||
|
||||
|
||||
## 6.0.3 (2019-10-25)
|
||||
|
||||
|
||||
|
||||
## 6.0.2 (2019-10-18)
|
||||
|
||||
|
||||
|
||||
## 6.0.1 (2019-10-07)
|
||||
|
||||
|
||||
|
||||
# 0.1.0 (2019-07-30)
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@react-native-firebase/iid",
|
||||
"version": "6.4.0",
|
||||
"version": "6.5.0",
|
||||
"author": "Invertase <oss@invertase.io> (http://invertase.io)",
|
||||
"description": "React Native Firebase - Firebase Instance ID provides a unique identifier for each instance of your app and a mechanism to authenticate and authorize actions for it (for example: sending FCM messages).",
|
||||
"main": "lib/index.js",
|
||||
@@ -26,7 +26,7 @@
|
||||
"peerDependencies": {
|
||||
"@react-native-firebase/app": "*"
|
||||
},
|
||||
"gitHead": "aa127b844418db58d33d00b7ba08872273e6f658",
|
||||
"gitHead": "b5bbbef8f0e46a7b979f4e884b9e9b98aaf810f4",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
}
|
||||
|
||||
52
packages/in-app-messaging/CHANGELOG.md
Normal file
52
packages/in-app-messaging/CHANGELOG.md
Normal file
@@ -0,0 +1,52 @@
|
||||
# Change Log
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# 6.5.0 (2020-04-22)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **android,build:** conditionally check `app` dependency, fixes… ([#3215](https://github.com/invertase/react-native-firebase/tree/master/packages/in-app-messaging/issues/3215)) ([b4eaa39](https://github.com/invertase/react-native-firebase/tree/master/packages/in-app-messaging/commit/b4eaa39ea8022535696d28e6eacb5c3e3ce9578f))
|
||||
* **android,build:** use correct plugin & BoM versions ([fb763eb](https://github.com/invertase/react-native-firebase/tree/master/packages/in-app-messaging/commit/fb763ebde216d8c789b08bd0d77c078089776627))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **ios:** allow static_framework usage via Podfile global ([#3388](https://github.com/invertase/react-native-firebase/tree/master/packages/in-app-messaging/issues/3388)) ([530f8bb](https://github.com/invertase/react-native-firebase/tree/master/packages/in-app-messaging/commit/530f8bbb51f89f106854dbf1df5ec80211e2cf8b)), closes [#3253](https://github.com/invertase/react-native-firebase/tree/master/packages/in-app-messaging/issues/3253)
|
||||
* **messaging:** ios & android messaging updates & fixes ([#3339](https://github.com/invertase/react-native-firebase/tree/master/packages/in-app-messaging/issues/3339)) ([d66a611](https://github.com/invertase/react-native-firebase/tree/master/packages/in-app-messaging/commit/d66a6118f82005087f53b86571990fc071402153))
|
||||
|
||||
|
||||
|
||||
# 6.3.0 (2020-02-04)
|
||||
|
||||
|
||||
|
||||
# 6.2.0 (2019-12-08)
|
||||
|
||||
|
||||
|
||||
# 6.1.0 (2019-11-26)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **firestore:** array-contains, array-contains-any & in filters ([#2868](https://github.com/invertase/react-native-firebase/tree/master/packages/in-app-messaging/issues/2868)) ([42e034c](https://github.com/invertase/react-native-firebase/tree/master/packages/in-app-messaging/commit/42e034c4807da54441d2baeab9f57bbf1a137a4a))
|
||||
* **ios:** upgrade Firebase iOS SDK version to 6.13.0 ([547d0a2](https://github.com/invertase/react-native-firebase/tree/master/packages/in-app-messaging/commit/547d0a2d74a68808b29063f9b3aa3e1ac38551fc))
|
||||
|
||||
|
||||
|
||||
## 6.0.4 (2019-11-17)
|
||||
|
||||
|
||||
|
||||
## 6.0.3 (2019-10-25)
|
||||
|
||||
|
||||
|
||||
## 6.0.2 (2019-10-18)
|
||||
|
||||
|
||||
|
||||
## 6.0.1 (2019-10-07)
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@react-native-firebase/in-app-messaging",
|
||||
"version": "6.4.0",
|
||||
"version": "6.5.0",
|
||||
"author": "Invertase <oss@invertase.io> (http://invertase.io)",
|
||||
"description": "React Native Firebase - Firebase In-App Messaging helps you engage your app's active users by sending them targeted, contextual messages that encourage them to use key app features. React Native Firebase provides support for both native Android & iOS integration with a simple JavaScript API.",
|
||||
"main": "lib/index.js",
|
||||
@@ -29,7 +29,7 @@
|
||||
"peerDependencies": {
|
||||
"@react-native-firebase/app": "*"
|
||||
},
|
||||
"gitHead": "aa127b844418db58d33d00b7ba08872273e6f658",
|
||||
"gitHead": "b5bbbef8f0e46a7b979f4e884b9e9b98aaf810f4",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
}
|
||||
|
||||
68
packages/messaging/CHANGELOG.md
Normal file
68
packages/messaging/CHANGELOG.md
Normal file
@@ -0,0 +1,68 @@
|
||||
# Change Log
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# 6.5.0 (2020-04-22)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **android,build:** conditionally check `app` dependency, fixes… ([#3215](https://github.com/invertase/react-native-firebase/tree/master/packages/messaging/issues/3215)) ([b4eaa39](https://github.com/invertase/react-native-firebase/tree/master/packages/messaging/commit/b4eaa39ea8022535696d28e6eacb5c3e3ce9578f))
|
||||
* **android,build:** use correct plugin & BoM versions ([fb763eb](https://github.com/invertase/react-native-firebase/tree/master/packages/messaging/commit/fb763ebde216d8c789b08bd0d77c078089776627))
|
||||
* **messaging:** allow RNFirebaseMessagingHeadlessTask to run in… ([#3311](https://github.com/invertase/react-native-firebase/tree/master/packages/messaging/issues/3311)) ([3b129dc](https://github.com/invertase/react-native-firebase/tree/master/packages/messaging/commit/3b129dcc0061e1cf8ee5e501fc907a8e5b727778))
|
||||
* **messaging:** fix remote notification tokens ([bd4dc06](https://github.com/invertase/react-native-firebase/tree/master/packages/messaging/commit/bd4dc06a05f168344d13d001241c81df1949ba29))
|
||||
* **messaging:** registerRemoteNotifictions ([ea66c68](https://github.com/invertase/react-native-firebase/tree/master/packages/messaging/commit/ea66c683cafe3a19ff84d97231a383afdc99cea7))
|
||||
* **messaging,ios:** keep original UNUserNotificationCenter dele… ([#3427](https://github.com/invertase/react-native-firebase/tree/master/packages/messaging/issues/3427)) ([a800cdb](https://github.com/invertase/react-native-firebase/tree/master/packages/messaging/commit/a800cdbc81bfaeeaccf602aa62ca29d2fbf68c05)), closes [#3425](https://github.com/invertase/react-native-firebase/tree/master/packages/messaging/issues/3425) [#3495](https://github.com/invertase/react-native-firebase/tree/master/packages/messaging/issues/3495)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **ios:** allow static_framework usage via Podfile global ([#3388](https://github.com/invertase/react-native-firebase/tree/master/packages/messaging/issues/3388)) ([530f8bb](https://github.com/invertase/react-native-firebase/tree/master/packages/messaging/commit/530f8bbb51f89f106854dbf1df5ec80211e2cf8b)), closes [#3253](https://github.com/invertase/react-native-firebase/tree/master/packages/messaging/issues/3253)
|
||||
* **messaging:** ios & android messaging updates & fixes ([#3339](https://github.com/invertase/react-native-firebase/tree/master/packages/messaging/issues/3339)) ([d66a611](https://github.com/invertase/react-native-firebase/tree/master/packages/messaging/commit/d66a6118f82005087f53b86571990fc071402153))
|
||||
|
||||
|
||||
|
||||
# 6.3.0 (2020-02-04)
|
||||
|
||||
|
||||
|
||||
# 6.2.0 (2019-12-08)
|
||||
|
||||
|
||||
|
||||
# 6.1.0 (2019-11-26)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **messaging:** deprecate onTokenRefresh(event => event.token) fixes [#2889](https://github.com/invertase/react-native-firebase/tree/master/packages/messaging/issues/2889) ([1940d6c](https://github.com/invertase/react-native-firebase/tree/master/packages/messaging/commit/1940d6c8fbab64ccf739186cea9633a605237942))
|
||||
* **messaging:** typo in isRegisteredForRemoteNotifications ([#2645](https://github.com/invertase/react-native-firebase/tree/master/packages/messaging/issues/2645)) ([f0e614f](https://github.com/invertase/react-native-firebase/tree/master/packages/messaging/commit/f0e614f48567645e89e837ee56d3f3d251473b09)), closes [/github.com/invertase/react-native-firebase/blob/master/packages/messaging/ios/RNFBMessaging/RNFBMessagingModule.m#L58](https://github.com/invertase/react-native-firebase/tree/master/packages/messaging/issues/L58)
|
||||
* **messaging,ios:** hasPermission checks authorizationStatus ([#2908](https://github.com/invertase/react-native-firebase/tree/master/packages/messaging/issues/2908)) ([7cab58d](https://github.com/invertase/react-native-firebase/tree/master/packages/messaging/commit/7cab58d87fcba592c697a3441bd77033eb09ab3c))
|
||||
* **messaging,ios:** wait for remote notification registration status ([8c339d1](https://github.com/invertase/react-native-firebase/tree/master/packages/messaging/commit/8c339d10e288ef60e83e38bc4a245c5a251c83ff)), closes [#2657](https://github.com/invertase/react-native-firebase/tree/master/packages/messaging/issues/2657)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **firestore:** array-contains, array-contains-any & in filters ([#2868](https://github.com/invertase/react-native-firebase/tree/master/packages/messaging/issues/2868)) ([42e034c](https://github.com/invertase/react-native-firebase/tree/master/packages/messaging/commit/42e034c4807da54441d2baeab9f57bbf1a137a4a))
|
||||
* **ios:** upgrade Firebase iOS SDK version to 6.13.0 ([547d0a2](https://github.com/invertase/react-native-firebase/tree/master/packages/messaging/commit/547d0a2d74a68808b29063f9b3aa3e1ac38551fc))
|
||||
|
||||
|
||||
|
||||
## 6.0.4 (2019-11-17)
|
||||
|
||||
|
||||
|
||||
## 6.0.3 (2019-10-25)
|
||||
|
||||
|
||||
|
||||
## 6.0.2 (2019-10-18)
|
||||
|
||||
|
||||
|
||||
## 6.0.1 (2019-10-07)
|
||||
|
||||
|
||||
|
||||
# 0.1.0 (2019-07-30)
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@react-native-firebase/messaging",
|
||||
"version": "6.4.0",
|
||||
"version": "6.5.0",
|
||||
"author": "Invertase <oss@invertase.io> (http://invertase.io)",
|
||||
"description": "React Native Firebase - React Native Firebase provides native integration of Firebase Cloud Messaging (FCM) for both Android & iOS. FCM is a cost free service, allowing for server-device and device-device communication. The React Native Firebase Messaging module provides a simple JavaScript API to interact with FCM.",
|
||||
"main": "lib/index.js",
|
||||
@@ -24,7 +24,7 @@
|
||||
"peerDependencies": {
|
||||
"@react-native-firebase/app": "*"
|
||||
},
|
||||
"gitHead": "aa127b844418db58d33d00b7ba08872273e6f658",
|
||||
"gitHead": "b5bbbef8f0e46a7b979f4e884b9e9b98aaf810f4",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
}
|
||||
|
||||
56
packages/ml-natural-language/CHANGELOG.md
Normal file
56
packages/ml-natural-language/CHANGELOG.md
Normal file
@@ -0,0 +1,56 @@
|
||||
# Change Log
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# 6.5.0 (2020-04-22)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **android,build:** conditionally check `app` dependency, fixes… ([#3215](https://github.com/invertase/react-native-firebase/tree/master/packages/ml-natural-language/issues/3215)) ([b4eaa39](https://github.com/invertase/react-native-firebase/tree/master/packages/ml-natural-language/commit/b4eaa39ea8022535696d28e6eacb5c3e3ce9578f))
|
||||
* **android,build:** use correct plugin & BoM versions ([fb763eb](https://github.com/invertase/react-native-firebase/tree/master/packages/ml-natural-language/commit/fb763ebde216d8c789b08bd0d77c078089776627))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **ios:** allow static_framework usage via Podfile global ([#3388](https://github.com/invertase/react-native-firebase/tree/master/packages/ml-natural-language/issues/3388)) ([530f8bb](https://github.com/invertase/react-native-firebase/tree/master/packages/ml-natural-language/commit/530f8bbb51f89f106854dbf1df5ec80211e2cf8b)), closes [#3253](https://github.com/invertase/react-native-firebase/tree/master/packages/ml-natural-language/issues/3253)
|
||||
* **messaging:** ios & android messaging updates & fixes ([#3339](https://github.com/invertase/react-native-firebase/tree/master/packages/ml-natural-language/issues/3339)) ([d66a611](https://github.com/invertase/react-native-firebase/tree/master/packages/ml-natural-language/commit/d66a6118f82005087f53b86571990fc071402153))
|
||||
|
||||
|
||||
|
||||
# 6.3.0 (2020-02-04)
|
||||
|
||||
|
||||
|
||||
# 6.2.0 (2019-12-08)
|
||||
|
||||
|
||||
|
||||
# 6.1.0 (2019-11-26)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **firestore:** array-contains, array-contains-any & in filters ([#2868](https://github.com/invertase/react-native-firebase/tree/master/packages/ml-natural-language/issues/2868)) ([42e034c](https://github.com/invertase/react-native-firebase/tree/master/packages/ml-natural-language/commit/42e034c4807da54441d2baeab9f57bbf1a137a4a))
|
||||
* **ios:** upgrade Firebase iOS SDK version to 6.13.0 ([547d0a2](https://github.com/invertase/react-native-firebase/tree/master/packages/ml-natural-language/commit/547d0a2d74a68808b29063f9b3aa3e1ac38551fc))
|
||||
|
||||
|
||||
|
||||
## 6.0.4 (2019-11-17)
|
||||
|
||||
|
||||
|
||||
## 6.0.3 (2019-10-25)
|
||||
|
||||
|
||||
|
||||
## 6.0.2 (2019-10-18)
|
||||
|
||||
|
||||
|
||||
## 6.0.1 (2019-10-07)
|
||||
|
||||
|
||||
|
||||
# 0.1.0 (2019-07-30)
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@react-native-firebase/ml-natural-language",
|
||||
"version": "6.4.0",
|
||||
"version": "6.5.0",
|
||||
"author": "Invertase <oss@invertase.io> (http://invertase.io)",
|
||||
"description": "React Native Firebase - Firebase ML Kit brings the power of machine learning to your React Native application, supporting both Android & iOS.",
|
||||
"main": "lib/index.js",
|
||||
@@ -32,7 +32,7 @@
|
||||
"peerDependencies": {
|
||||
"@react-native-firebase/app": "*"
|
||||
},
|
||||
"gitHead": "aa127b844418db58d33d00b7ba08872273e6f658",
|
||||
"gitHead": "b5bbbef8f0e46a7b979f4e884b9e9b98aaf810f4",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
}
|
||||
|
||||
61
packages/ml-vision/CHANGELOG.md
Normal file
61
packages/ml-vision/CHANGELOG.md
Normal file
@@ -0,0 +1,61 @@
|
||||
# Change Log
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# 6.5.0 (2020-04-22)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **android,build:** conditionally check `app` dependency, fixes… ([#3215](https://github.com/invertase/react-native-firebase/tree/master/packages/ml-vision/issues/3215)) ([b4eaa39](https://github.com/invertase/react-native-firebase/tree/master/packages/ml-vision/commit/b4eaa39ea8022535696d28e6eacb5c3e3ce9578f))
|
||||
* **android,build:** use correct plugin & BoM versions ([fb763eb](https://github.com/invertase/react-native-firebase/tree/master/packages/ml-vision/commit/fb763ebde216d8c789b08bd0d77c078089776627))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **ios:** allow static_framework usage via Podfile global ([#3388](https://github.com/invertase/react-native-firebase/tree/master/packages/ml-vision/issues/3388)) ([530f8bb](https://github.com/invertase/react-native-firebase/tree/master/packages/ml-vision/commit/530f8bbb51f89f106854dbf1df5ec80211e2cf8b)), closes [#3253](https://github.com/invertase/react-native-firebase/tree/master/packages/ml-vision/issues/3253)
|
||||
* **messaging:** ios & android messaging updates & fixes ([#3339](https://github.com/invertase/react-native-firebase/tree/master/packages/ml-vision/issues/3339)) ([d66a611](https://github.com/invertase/react-native-firebase/tree/master/packages/ml-vision/commit/d66a6118f82005087f53b86571990fc071402153))
|
||||
|
||||
|
||||
|
||||
# 6.3.0 (2020-02-04)
|
||||
|
||||
|
||||
|
||||
# 6.2.0 (2019-12-08)
|
||||
|
||||
|
||||
|
||||
# 6.1.0 (2019-11-26)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **firestore:** array-contains, array-contains-any & in filters ([#2868](https://github.com/invertase/react-native-firebase/tree/master/packages/ml-vision/issues/2868)) ([42e034c](https://github.com/invertase/react-native-firebase/tree/master/packages/ml-vision/commit/42e034c4807da54441d2baeab9f57bbf1a137a4a))
|
||||
* **ios:** upgrade Firebase iOS SDK version to 6.13.0 ([547d0a2](https://github.com/invertase/react-native-firebase/tree/master/packages/ml-vision/commit/547d0a2d74a68808b29063f9b3aa3e1ac38551fc))
|
||||
|
||||
|
||||
|
||||
## 6.0.4 (2019-11-17)
|
||||
|
||||
|
||||
|
||||
## 6.0.3 (2019-10-25)
|
||||
|
||||
|
||||
|
||||
## 6.0.2 (2019-10-18)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **vision:** Improve null checks on iOS [#2744](https://github.com/invertase/react-native-firebase/tree/master/packages/ml-vision/issues/2744) ([#2747](https://github.com/invertase/react-native-firebase/tree/master/packages/ml-vision/issues/2747)) ([d717f98](https://github.com/invertase/react-native-firebase/tree/master/packages/ml-vision/commit/d717f981d480d14476ed278fed349b1bedea8798))
|
||||
|
||||
|
||||
|
||||
## 6.0.1 (2019-10-07)
|
||||
|
||||
|
||||
|
||||
# 0.1.0 (2019-07-30)
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@react-native-firebase/ml-vision",
|
||||
"version": "6.4.0",
|
||||
"version": "6.5.0",
|
||||
"author": "Invertase <oss@invertase.io> (http://invertase.io)",
|
||||
"description": "React Native Firebase - Firebase ML Kit brings the power of machine learning vision to your React Native application, supporting both Android & iOS.",
|
||||
"main": "lib/index.js",
|
||||
@@ -34,7 +34,7 @@
|
||||
"peerDependencies": {
|
||||
"@react-native-firebase/app": "*"
|
||||
},
|
||||
"gitHead": "aa127b844418db58d33d00b7ba08872273e6f658",
|
||||
"gitHead": "b5bbbef8f0e46a7b979f4e884b9e9b98aaf810f4",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
}
|
||||
|
||||
56
packages/perf/CHANGELOG.md
Normal file
56
packages/perf/CHANGELOG.md
Normal file
@@ -0,0 +1,56 @@
|
||||
# Change Log
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# 6.5.0 (2020-04-22)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **android,build:** conditionally check `app` dependency, fixes… ([#3215](https://github.com/invertase/react-native-firebase/tree/master/packages/perf/issues/3215)) ([b4eaa39](https://github.com/invertase/react-native-firebase/tree/master/packages/perf/commit/b4eaa39ea8022535696d28e6eacb5c3e3ce9578f))
|
||||
* **android,build:** use correct plugin & BoM versions ([fb763eb](https://github.com/invertase/react-native-firebase/tree/master/packages/perf/commit/fb763ebde216d8c789b08bd0d77c078089776627))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **ios:** allow static_framework usage via Podfile global ([#3388](https://github.com/invertase/react-native-firebase/tree/master/packages/perf/issues/3388)) ([530f8bb](https://github.com/invertase/react-native-firebase/tree/master/packages/perf/commit/530f8bbb51f89f106854dbf1df5ec80211e2cf8b)), closes [#3253](https://github.com/invertase/react-native-firebase/tree/master/packages/perf/issues/3253)
|
||||
* **messaging:** ios & android messaging updates & fixes ([#3339](https://github.com/invertase/react-native-firebase/tree/master/packages/perf/issues/3339)) ([d66a611](https://github.com/invertase/react-native-firebase/tree/master/packages/perf/commit/d66a6118f82005087f53b86571990fc071402153))
|
||||
|
||||
|
||||
|
||||
# 6.3.0 (2020-02-04)
|
||||
|
||||
|
||||
|
||||
# 6.2.0 (2019-12-08)
|
||||
|
||||
|
||||
|
||||
# 6.1.0 (2019-11-26)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **firestore:** array-contains, array-contains-any & in filters ([#2868](https://github.com/invertase/react-native-firebase/tree/master/packages/perf/issues/2868)) ([42e034c](https://github.com/invertase/react-native-firebase/tree/master/packages/perf/commit/42e034c4807da54441d2baeab9f57bbf1a137a4a))
|
||||
* **ios:** upgrade Firebase iOS SDK version to 6.13.0 ([547d0a2](https://github.com/invertase/react-native-firebase/tree/master/packages/perf/commit/547d0a2d74a68808b29063f9b3aa3e1ac38551fc))
|
||||
|
||||
|
||||
|
||||
## 6.0.4 (2019-11-17)
|
||||
|
||||
|
||||
|
||||
## 6.0.3 (2019-10-25)
|
||||
|
||||
|
||||
|
||||
## 6.0.2 (2019-10-18)
|
||||
|
||||
|
||||
|
||||
## 6.0.1 (2019-10-07)
|
||||
|
||||
|
||||
|
||||
# 0.1.0 (2019-07-30)
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@react-native-firebase/perf",
|
||||
"version": "6.4.0",
|
||||
"version": "6.5.0",
|
||||
"author": "Invertase <oss@invertase.io> (http://invertase.io)",
|
||||
"description": "React Native Firebase - React Native Firebase provides native integration with Performance Monitoring to gain insight into key performance characteristics within your React Native application.",
|
||||
"main": "lib/index.js",
|
||||
@@ -29,7 +29,7 @@
|
||||
"peerDependencies": {
|
||||
"@react-native-firebase/app": "*"
|
||||
},
|
||||
"gitHead": "aa127b844418db58d33d00b7ba08872273e6f658",
|
||||
"gitHead": "b5bbbef8f0e46a7b979f4e884b9e9b98aaf810f4",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
}
|
||||
|
||||
53
packages/remote-config/CHANGELOG.md
Normal file
53
packages/remote-config/CHANGELOG.md
Normal file
@@ -0,0 +1,53 @@
|
||||
# Change Log
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# 6.5.0 (2020-04-22)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **android,build:** conditionally check `app` dependency, fixes… ([#3215](https://github.com/invertase/react-native-firebase/tree/master/packages/config/issues/3215)) ([b4eaa39](https://github.com/invertase/react-native-firebase/tree/master/packages/config/commit/b4eaa39ea8022535696d28e6eacb5c3e3ce9578f))
|
||||
* **android,build:** use correct plugin & BoM versions ([fb763eb](https://github.com/invertase/react-native-firebase/tree/master/packages/config/commit/fb763ebde216d8c789b08bd0d77c078089776627))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **ios:** allow static_framework usage via Podfile global ([#3388](https://github.com/invertase/react-native-firebase/tree/master/packages/config/issues/3388)) ([530f8bb](https://github.com/invertase/react-native-firebase/tree/master/packages/config/commit/530f8bbb51f89f106854dbf1df5ec80211e2cf8b)), closes [#3253](https://github.com/invertase/react-native-firebase/tree/master/packages/config/issues/3253)
|
||||
* **messaging:** ios & android messaging updates & fixes ([#3339](https://github.com/invertase/react-native-firebase/tree/master/packages/config/issues/3339)) ([d66a611](https://github.com/invertase/react-native-firebase/tree/master/packages/config/commit/d66a6118f82005087f53b86571990fc071402153))
|
||||
|
||||
|
||||
|
||||
# 6.3.0 (2020-02-04)
|
||||
|
||||
|
||||
|
||||
# 6.2.0 (2019-12-08)
|
||||
|
||||
|
||||
|
||||
# 6.1.0 (2019-11-26)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **firestore:** array-contains, array-contains-any & in filters ([#2868](https://github.com/invertase/react-native-firebase/tree/master/packages/config/issues/2868)) ([42e034c](https://github.com/invertase/react-native-firebase/tree/master/packages/config/commit/42e034c4807da54441d2baeab9f57bbf1a137a4a))
|
||||
* **ios:** upgrade Firebase iOS SDK version to 6.13.0 ([547d0a2](https://github.com/invertase/react-native-firebase/tree/master/packages/config/commit/547d0a2d74a68808b29063f9b3aa3e1ac38551fc))
|
||||
* **remote-config:** support minimumFetchInterval config setting ([#2789](https://github.com/invertase/react-native-firebase/tree/master/packages/config/issues/2789)) ([57965e7](https://github.com/invertase/react-native-firebase/tree/master/packages/config/commit/57965e73a7e1089335c5446fb91cd44c1b19725d)), closes [/github.com/firebase/firebase-ios-sdk/blob/master/FirebaseRemoteConfig/Sources/Public/FIRRemoteConfig.h#L148-L149](https://github.com/invertase/react-native-firebase/tree/master/packages/config/issues/L148-L149)
|
||||
|
||||
|
||||
|
||||
## 6.0.4 (2019-11-17)
|
||||
|
||||
|
||||
|
||||
## 6.0.3 (2019-10-25)
|
||||
|
||||
|
||||
|
||||
## 6.0.2 (2019-10-18)
|
||||
|
||||
|
||||
|
||||
## 6.0.1 (2019-10-07)
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@react-native-firebase/remote-config",
|
||||
"version": "6.4.0",
|
||||
"version": "6.5.0",
|
||||
"author": "Invertase <oss@invertase.io> (http://invertase.io)",
|
||||
"description": "React Native Firebase - React Native Firebase provides native integration with Remote Config, allowing you to change the appearance and/or functionality of your app without requiring an app update.",
|
||||
"main": "lib/index.js",
|
||||
@@ -26,7 +26,7 @@
|
||||
"peerDependencies": {
|
||||
"@react-native-firebase/app": "*"
|
||||
},
|
||||
"gitHead": "aa127b844418db58d33d00b7ba08872273e6f658",
|
||||
"gitHead": "b5bbbef8f0e46a7b979f4e884b9e9b98aaf810f4",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
}
|
||||
|
||||
71
packages/storage/CHANGELOG.md
Normal file
71
packages/storage/CHANGELOG.md
Normal file
@@ -0,0 +1,71 @@
|
||||
# Change Log
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# 6.5.0 (2020-04-22)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **android,build:** conditionally check `app` dependency, fixes… ([#3215](https://github.com/invertase/react-native-firebase/tree/master/packages/storage/issues/3215)) ([b4eaa39](https://github.com/invertase/react-native-firebase/tree/master/packages/storage/commit/b4eaa39ea8022535696d28e6eacb5c3e3ce9578f))
|
||||
* **android,build:** use correct plugin & BoM versions ([fb763eb](https://github.com/invertase/react-native-firebase/tree/master/packages/storage/commit/fb763ebde216d8c789b08bd0d77c078089776627))
|
||||
* **storage:** fixed a bug with parsing encoded urls ([#3369](https://github.com/invertase/react-native-firebase/tree/master/packages/storage/issues/3369)) ([8e99b9c](https://github.com/invertase/react-native-firebase/tree/master/packages/storage/commit/8e99b9cb9093ba0cc3aadcb56127c8500ea8bf36))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **ios:** allow static_framework usage via Podfile global ([#3388](https://github.com/invertase/react-native-firebase/tree/master/packages/storage/issues/3388)) ([530f8bb](https://github.com/invertase/react-native-firebase/tree/master/packages/storage/commit/530f8bbb51f89f106854dbf1df5ec80211e2cf8b)), closes [#3253](https://github.com/invertase/react-native-firebase/tree/master/packages/storage/issues/3253)
|
||||
* **messaging:** ios & android messaging updates & fixes ([#3339](https://github.com/invertase/react-native-firebase/tree/master/packages/storage/issues/3339)) ([d66a611](https://github.com/invertase/react-native-firebase/tree/master/packages/storage/commit/d66a6118f82005087f53b86571990fc071402153))
|
||||
* **storage:** made `put` method return Task. added snapshot API. ([ea19622](https://github.com/invertase/react-native-firebase/tree/master/packages/storage/commit/ea1962270b6c20d5b15dbaaea5c4d88a0a4ae3e2))
|
||||
|
||||
|
||||
|
||||
# 6.3.0 (2020-02-04)
|
||||
|
||||
|
||||
|
||||
# 6.2.0 (2019-12-08)
|
||||
|
||||
|
||||
|
||||
# 6.1.0 (2019-11-26)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **storage:** fix video asset resources on iOS13 ([#2750](https://github.com/invertase/react-native-firebase/tree/master/packages/storage/issues/2750)) ([fded286](https://github.com/invertase/react-native-firebase/tree/master/packages/storage/commit/fded28621fb5c73c3daba009cc4f2ef6fde21745))
|
||||
* **storage,ios:** use long value for maxResults list option (fixes [#2804](https://github.com/invertase/react-native-firebase/tree/master/packages/storage/issues/2804)) ([9488103](https://github.com/invertase/react-native-firebase/tree/master/packages/storage/commit/94881037e0d304e3a585088be1dcae42be8794a8))
|
||||
* **storage,js:** validate that list maxResults is an integer value ([2fc9e9d](https://github.com/invertase/react-native-firebase/tree/master/packages/storage/commit/2fc9e9d537e954989a50f941e2479fbbdb3874c9))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **firestore:** array-contains, array-contains-any & in filters ([#2868](https://github.com/invertase/react-native-firebase/tree/master/packages/storage/issues/2868)) ([42e034c](https://github.com/invertase/react-native-firebase/tree/master/packages/storage/commit/42e034c4807da54441d2baeab9f57bbf1a137a4a))
|
||||
* **ios:** upgrade Firebase iOS SDK version to 6.13.0 ([547d0a2](https://github.com/invertase/react-native-firebase/tree/master/packages/storage/commit/547d0a2d74a68808b29063f9b3aa3e1ac38551fc))
|
||||
|
||||
|
||||
|
||||
## 6.0.4 (2019-11-17)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **storage,ios:** Handle null Storage metadata values ([#2875](https://github.com/invertase/react-native-firebase/tree/master/packages/storage/issues/2875)) ([26f752a](https://github.com/invertase/react-native-firebase/tree/master/packages/storage/commit/26f752a1172a36e7c5ea837c1792610fd37adbb4))
|
||||
* **storage,ios:** Handle null Storage metadata values ([#2881](https://github.com/invertase/react-native-firebase/tree/master/packages/storage/issues/2881)) ([eeb90c0](https://github.com/invertase/react-native-firebase/tree/master/packages/storage/commit/eeb90c0a376e88f4ceb20a1dc5fd3bb4ce558a61))
|
||||
|
||||
|
||||
|
||||
## 6.0.3 (2019-10-25)
|
||||
|
||||
|
||||
|
||||
## 6.0.2 (2019-10-18)
|
||||
|
||||
|
||||
|
||||
## 6.0.1 (2019-10-07)
|
||||
|
||||
|
||||
|
||||
# 0.1.0 (2019-07-30)
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@react-native-firebase/storage",
|
||||
"version": "6.4.0",
|
||||
"version": "6.5.0",
|
||||
"author": "Invertase <oss@invertase.io> (http://invertase.io)",
|
||||
"description": "React Native Firebase - React Native Firebase provides native integration with Cloud Storage, providing support to upload and download files directly from your device and from your Firebase Cloud Storage bucket.",
|
||||
"main": "lib/index.js",
|
||||
@@ -31,7 +31,7 @@
|
||||
"peerDependencies": {
|
||||
"@react-native-firebase/app": "*"
|
||||
},
|
||||
"gitHead": "aa127b844418db58d33d00b7ba08872273e6f658",
|
||||
"gitHead": "b5bbbef8f0e46a7b979f4e884b9e9b98aaf810f4",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
}
|
||||
|
||||
60
packages/template/CHANGELOG.md
Normal file
60
packages/template/CHANGELOG.md
Normal file
@@ -0,0 +1,60 @@
|
||||
# Change Log
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# 6.5.0 (2020-04-22)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **ios:** allow static_framework usage via Podfile global ([#3388](https://github.com/invertase/react-native-firebase/tree/master/packages/template/issues/3388)) ([530f8bb](https://github.com/invertase/react-native-firebase/tree/master/packages/template/commit/530f8bbb51f89f106854dbf1df5ec80211e2cf8b)), closes [#3253](https://github.com/invertase/react-native-firebase/tree/master/packages/template/issues/3253)
|
||||
* **messaging:** ios & android messaging updates & fixes ([#3339](https://github.com/invertase/react-native-firebase/tree/master/packages/template/issues/3339)) ([d66a611](https://github.com/invertase/react-native-firebase/tree/master/packages/template/commit/d66a6118f82005087f53b86571990fc071402153))
|
||||
|
||||
|
||||
|
||||
# 6.3.0 (2020-02-04)
|
||||
|
||||
|
||||
|
||||
# 6.2.0 (2019-12-08)
|
||||
|
||||
|
||||
|
||||
# 6.1.0 (2019-11-26)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **template:** add noCompress tflite by default to android template (for [#2478](https://github.com/invertase/react-native-firebase/tree/master/packages/template/issues/2478)) ([9dd3fa6](https://github.com/invertase/react-native-firebase/tree/master/packages/template/commit/9dd3fa68c30b8b2f687bae4d9e81f438311ae739))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **template:** update template to RN 0.61.5 ([3e90981](https://github.com/invertase/react-native-firebase/tree/master/packages/template/commit/3e909813fb1b14a3baeb3468cb5e78ea86503f60))
|
||||
* **template:** upgrade to React Native 0.61.4 ([#2821](https://github.com/invertase/react-native-firebase/tree/master/packages/template/issues/2821)) ([fb4941b](https://github.com/invertase/react-native-firebase/tree/master/packages/template/commit/fb4941b6e5dc6b3101eeaa2c1c429300a3e05da7))
|
||||
|
||||
|
||||
|
||||
## 6.0.4 (2019-11-17)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **template:** Fix invalid flow config file ([1def1c1](https://github.com/invertase/react-native-firebase/tree/master/packages/template/commit/1def1c1ce5ee320e7ff8d490e9e711281f5abdda))
|
||||
|
||||
|
||||
|
||||
## 6.0.3 (2019-10-25)
|
||||
|
||||
|
||||
|
||||
## 6.0.2 (2019-10-18)
|
||||
|
||||
|
||||
|
||||
## 6.0.1 (2019-10-07)
|
||||
|
||||
|
||||
|
||||
# 0.1.0 (2019-07-30)
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@react-native-firebase/template",
|
||||
"version": "6.4.0",
|
||||
"version": "6.5.0",
|
||||
"author": "Invertase <oss@invertase.io> (http://invertase.io)",
|
||||
"description": "React Native Firebase - Template",
|
||||
"scripts": {
|
||||
@@ -21,5 +21,5 @@
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"gitHead": "aa127b844418db58d33d00b7ba08872273e6f658"
|
||||
"gitHead": "b5bbbef8f0e46a7b979f4e884b9e9b98aaf810f4"
|
||||
}
|
||||
|
||||
30
tests/CHANGELOG.md
Normal file
30
tests/CHANGELOG.md
Normal file
@@ -0,0 +1,30 @@
|
||||
# Change Log
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# 6.5.0 (2020-04-22)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **auth:** user.metadata uses ISO strings ([#3360](https://github.com/invertase/react-native-firebase/issues/3360)) ([8adef65](https://github.com/invertase/react-native-firebase/commit/8adef653faa008e0146374f99f5ba1af902749bf))
|
||||
* **auth,ios:** remove unnecessary string cast ([#3091](https://github.com/invertase/react-native-firebase/issues/3091)) ([c5043d1](https://github.com/invertase/react-native-firebase/commit/c5043d1fcffa0902f4521125e3fb5ac2178fe264))
|
||||
* **crashlytics,ios:** version bump native ios deps ([#3013](https://github.com/invertase/react-native-firebase/issues/3013)) ([3901634](https://github.com/invertase/react-native-firebase/commit/39016346e419175119e863b2e2bff10166ddf40c))
|
||||
* **messaging,ios:** keep original UNUserNotificationCenter dele… ([#3427](https://github.com/invertase/react-native-firebase/issues/3427)) ([a800cdb](https://github.com/invertase/react-native-firebase/commit/a800cdbc81bfaeeaccf602aa62ca29d2fbf68c05)), closes [#3425](https://github.com/invertase/react-native-firebase/issues/3425) [#3495](https://github.com/invertase/react-native-firebase/issues/3495)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **firestore:** array-contains, array-contains-any & in filters ([#2868](https://github.com/invertase/react-native-firebase/issues/2868)) ([42e034c](https://github.com/invertase/react-native-firebase/commit/42e034c4807da54441d2baeab9f57bbf1a137a4a))
|
||||
* **ios:** allow static_framework usage via Podfile global ([#3388](https://github.com/invertase/react-native-firebase/issues/3388)) ([530f8bb](https://github.com/invertase/react-native-firebase/commit/530f8bbb51f89f106854dbf1df5ec80211e2cf8b)), closes [#3253](https://github.com/invertase/react-native-firebase/issues/3253)
|
||||
* **ios:** upgrade Firebase iOS SDK version to 6.13.0 ([547d0a2](https://github.com/invertase/react-native-firebase/commit/547d0a2d74a68808b29063f9b3aa3e1ac38551fc))
|
||||
* **messaging:** ios & android messaging updates & fixes ([#3339](https://github.com/invertase/react-native-firebase/issues/3339)) ([d66a611](https://github.com/invertase/react-native-firebase/commit/d66a6118f82005087f53b86571990fc071402153))
|
||||
|
||||
|
||||
|
||||
# 0.1.0 (2019-07-30)
|
||||
|
||||
|
||||
|
||||
# 2.0.0 (2017-05-25)
|
||||
@@ -695,67 +695,67 @@ PODS:
|
||||
- React-cxxreact (= 0.62.2)
|
||||
- React-jsi (= 0.62.2)
|
||||
- ReactCommon/callinvoker (= 0.62.2)
|
||||
- RNFBAdMob (6.4.0):
|
||||
- RNFBAdMob (6.4.1):
|
||||
- Firebase/AdMob (~> 6.13.0)
|
||||
- Firebase/Analytics (~> 6.13.0)
|
||||
- Firebase/Core (~> 6.13.0)
|
||||
- PersonalizedAdConsent (~> 1.0.4)
|
||||
- React
|
||||
- RNFBApp
|
||||
- RNFBAnalytics (6.4.0):
|
||||
- RNFBAnalytics (6.4.1):
|
||||
- Firebase/Analytics (~> 6.13.0)
|
||||
- Firebase/Core (~> 6.13.0)
|
||||
- React
|
||||
- RNFBApp
|
||||
- RNFBApp (6.4.0):
|
||||
- RNFBApp (6.4.1):
|
||||
- Firebase/Core (~> 6.13.0)
|
||||
- React
|
||||
- RNFBAuth (6.4.0):
|
||||
- RNFBAuth (6.4.1):
|
||||
- Firebase/Auth (~> 6.13.0)
|
||||
- Firebase/Core (~> 6.13.0)
|
||||
- React
|
||||
- RNFBApp
|
||||
- RNFBCrashlytics (6.4.0):
|
||||
- RNFBCrashlytics (6.4.1):
|
||||
- Crashlytics (~> 3.14.0)
|
||||
- Fabric (~> 1.10.2)
|
||||
- Firebase/Core (~> 6.13.0)
|
||||
- React
|
||||
- RNFBApp
|
||||
- RNFBDatabase (6.4.0):
|
||||
- RNFBDatabase (6.4.1):
|
||||
- Firebase/Core (~> 6.13.0)
|
||||
- Firebase/Database (~> 6.13.0)
|
||||
- React
|
||||
- RNFBApp
|
||||
- RNFBDynamicLinks (6.4.0):
|
||||
- RNFBDynamicLinks (6.4.1):
|
||||
- Firebase/Core (~> 6.13.0)
|
||||
- Firebase/DynamicLinks (~> 6.13.0)
|
||||
- React
|
||||
- RNFBApp
|
||||
- RNFBFirestore (6.4.0):
|
||||
- RNFBFirestore (6.4.1):
|
||||
- Firebase/Core (~> 6.13.0)
|
||||
- Firebase/Firestore (~> 6.13.0)
|
||||
- React
|
||||
- RNFBApp
|
||||
- RNFBFunctions (6.4.0):
|
||||
- RNFBFunctions (6.4.1):
|
||||
- Firebase/Core (~> 6.13.0)
|
||||
- Firebase/Functions (~> 6.13.0)
|
||||
- React
|
||||
- RNFBApp
|
||||
- RNFBIid (6.4.0):
|
||||
- RNFBIid (6.4.1):
|
||||
- Firebase/Core (~> 6.13.0)
|
||||
- React
|
||||
- RNFBApp
|
||||
- RNFBInAppMessaging (6.4.0):
|
||||
- RNFBInAppMessaging (6.4.1):
|
||||
- Firebase/Core (~> 6.13.0)
|
||||
- Firebase/InAppMessaging (~> 6.13.0)
|
||||
- React
|
||||
- RNFBApp
|
||||
- RNFBMessaging (6.4.0):
|
||||
- RNFBMessaging (6.4.1):
|
||||
- Firebase/Core (~> 6.13.0)
|
||||
- Firebase/Messaging (~> 6.13.0)
|
||||
- React
|
||||
- RNFBApp
|
||||
- RNFBMLNaturalLanguage (6.4.0):
|
||||
- RNFBMLNaturalLanguage (6.4.1):
|
||||
- Firebase/Core (~> 6.13.0)
|
||||
- Firebase/MLCommon (~> 6.13.0)
|
||||
- Firebase/MLNaturalLanguage (~> 6.13.0)
|
||||
@@ -763,7 +763,7 @@ PODS:
|
||||
- Firebase/MLNLSmartReply (~> 6.13.0)
|
||||
- React
|
||||
- RNFBApp
|
||||
- RNFBMLVision (6.4.0):
|
||||
- RNFBMLVision (6.4.1):
|
||||
- Firebase/Core (~> 6.13.0)
|
||||
- Firebase/MLVision (~> 6.13.0)
|
||||
- Firebase/MLVisionBarcodeModel (~> 6.13.0)
|
||||
@@ -772,17 +772,17 @@ PODS:
|
||||
- Firebase/MLVisionTextModel (~> 6.13.0)
|
||||
- React
|
||||
- RNFBApp
|
||||
- RNFBPerf (6.4.0):
|
||||
- RNFBPerf (6.4.1):
|
||||
- Firebase/Core (~> 6.13.0)
|
||||
- Firebase/Performance (~> 6.13.0)
|
||||
- React
|
||||
- RNFBApp
|
||||
- RNFBRemoteConfig (6.4.0):
|
||||
- RNFBRemoteConfig (6.4.1):
|
||||
- Firebase/Core (~> 6.13.0)
|
||||
- Firebase/RemoteConfig (~> 6.13.0)
|
||||
- React
|
||||
- RNFBApp
|
||||
- RNFBStorage (6.4.0):
|
||||
- RNFBStorage (6.4.1):
|
||||
- Firebase/Core (~> 6.13.0)
|
||||
- Firebase/Storage (~> 6.13.0)
|
||||
- React
|
||||
@@ -1048,23 +1048,23 @@ SPEC CHECKSUMS:
|
||||
React-RCTText: fae545b10cfdb3d247c36c56f61a94cfd6dba41d
|
||||
React-RCTVibration: 4356114dbcba4ce66991096e51a66e61eda51256
|
||||
ReactCommon: ed4e11d27609d571e7eee8b65548efc191116eb3
|
||||
RNFBAdMob: fb4566703243981ef0a381c0cb06e65a9f567061
|
||||
RNFBAnalytics: 2a5adf3a6331dfd232ac9661108e491b832be6e9
|
||||
RNFBApp: 69781cf10ce41f6f6db789e6264dd80119ef2fb7
|
||||
RNFBAuth: 50fcc7826344dc96caad8bc4f5b40a64904297b8
|
||||
RNFBCrashlytics: f6630b1cfa1fbac5348205232709ac779369d9e7
|
||||
RNFBDatabase: 393536c2bd82bd11de82795c2d5893f04d5bf587
|
||||
RNFBDynamicLinks: f4da0bc5a4b071069b131d3c91ca35db568a9ba5
|
||||
RNFBFirestore: 69e59e5266927857fa3629715111ee65f4de1cd0
|
||||
RNFBFunctions: 42eb4afb067cd496523a24678b7a582262f6ecc5
|
||||
RNFBIid: 75af4c2986903b676b15a60f2632e9c96f1be224
|
||||
RNFBInAppMessaging: a1f269d1c85296d59f4e3ed36dc22af19e62d405
|
||||
RNFBMessaging: 805710731a2b616030514f6f416e8787de521f41
|
||||
RNFBMLNaturalLanguage: 1547525306a5370365c630c9e4611f6512b4d1e7
|
||||
RNFBMLVision: b369b6829bd85d5c95d58f2c00372a02ce653b5d
|
||||
RNFBPerf: 65787352c484138ae47d963c9111a6181914f70a
|
||||
RNFBRemoteConfig: a09169a1264aa10c84a22841f7e8ef262d52c796
|
||||
RNFBStorage: 24097a1d18534b9c3559f862b8d18365cd573c2c
|
||||
RNFBAdMob: 71257ce32c92642048f5f1b473e065d0269ff560
|
||||
RNFBAnalytics: 3c9e0a99a778cb9838c42ca6aee2790f3318f27c
|
||||
RNFBApp: 73de6cb8c6c63b0582299a4fa1ad1817853d4b60
|
||||
RNFBAuth: fcf819b7b8fb2c75c2c4291bacebe6455f3a9284
|
||||
RNFBCrashlytics: a76d1704cdfbdc7ad58842ea2b13e09f9581758a
|
||||
RNFBDatabase: 7abf52ef72142b16e1a3cfc100c681ad380e617c
|
||||
RNFBDynamicLinks: 29e9a5e3c85ad015949a68dc9d4392dce9c87c5f
|
||||
RNFBFirestore: adb5f4db409d534d9b926cb0a72f7952d0522fe3
|
||||
RNFBFunctions: 7b579be485e3b95ab6b5f6252bb65894c44b406c
|
||||
RNFBIid: f50af54e7410ff684fce9e4ffb98663e11c69ce9
|
||||
RNFBInAppMessaging: e5b04bce805c339c8c45c41d68da36b63d14bb0f
|
||||
RNFBMessaging: f2a5841c8e271dffd7562287bd75f3147d6e687b
|
||||
RNFBMLNaturalLanguage: 952015ea76a2a2f5ae2d99f63f92ea812d7910f0
|
||||
RNFBMLVision: 2701adfc023eb29e1dcec22dbf7249659a595c57
|
||||
RNFBPerf: 07df3d9500b0e1b2bfc3bace18add30150a0aefb
|
||||
RNFBRemoteConfig: d10df9b76e4d559b2af0f2065bf3cd0f7c303463
|
||||
RNFBStorage: ae5becbd408501a1ee6dcb630d356f21b4b13bbc
|
||||
Yoga: 3ebccbdd559724312790e7742142d062476b698e
|
||||
|
||||
PODFILE CHECKSUM: 8fd199b6299b1ecf6f4e79f3d682905870c071da
|
||||
|
||||
@@ -1,30 +1,30 @@
|
||||
{
|
||||
"name": "react-native-firebase-tests",
|
||||
"version": "6.4.0",
|
||||
"version": "6.5.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"build:clean": "rimraf dist && rimraf android/build && rimraf android/app/build && rimraf android/.gradle && rimraf ios/build",
|
||||
"prepare": "patch-package"
|
||||
},
|
||||
"dependencies": {
|
||||
"@react-native-firebase/admob": "6.4.0",
|
||||
"@react-native-firebase/analytics": "6.4.0",
|
||||
"@react-native-firebase/app": "6.4.0",
|
||||
"@react-native-firebase/app-types": "6.4.0",
|
||||
"@react-native-firebase/auth": "6.4.0",
|
||||
"@react-native-firebase/crashlytics": "6.4.0",
|
||||
"@react-native-firebase/database": "6.4.0",
|
||||
"@react-native-firebase/dynamic-links": "6.4.0",
|
||||
"@react-native-firebase/firestore": "6.4.0",
|
||||
"@react-native-firebase/functions": "6.4.0",
|
||||
"@react-native-firebase/iid": "6.4.0",
|
||||
"@react-native-firebase/in-app-messaging": "6.4.0",
|
||||
"@react-native-firebase/messaging": "6.4.0",
|
||||
"@react-native-firebase/ml-natural-language": "6.4.0",
|
||||
"@react-native-firebase/ml-vision": "6.4.0",
|
||||
"@react-native-firebase/perf": "6.4.0",
|
||||
"@react-native-firebase/remote-config": "6.4.0",
|
||||
"@react-native-firebase/storage": "6.4.0",
|
||||
"@react-native-firebase/admob": "6.5.0",
|
||||
"@react-native-firebase/analytics": "6.5.0",
|
||||
"@react-native-firebase/app": "6.5.0",
|
||||
"@react-native-firebase/app-types": "6.5.0",
|
||||
"@react-native-firebase/auth": "6.5.0",
|
||||
"@react-native-firebase/crashlytics": "6.5.0",
|
||||
"@react-native-firebase/database": "6.5.0",
|
||||
"@react-native-firebase/dynamic-links": "6.5.0",
|
||||
"@react-native-firebase/firestore": "6.5.0",
|
||||
"@react-native-firebase/functions": "6.5.0",
|
||||
"@react-native-firebase/iid": "6.5.0",
|
||||
"@react-native-firebase/in-app-messaging": "6.5.0",
|
||||
"@react-native-firebase/messaging": "6.5.0",
|
||||
"@react-native-firebase/ml-natural-language": "6.5.0",
|
||||
"@react-native-firebase/ml-vision": "6.5.0",
|
||||
"@react-native-firebase/perf": "6.5.0",
|
||||
"@react-native-firebase/remote-config": "6.5.0",
|
||||
"@react-native-firebase/storage": "6.5.0",
|
||||
"react": "16.11.0",
|
||||
"react-native": "0.62.2"
|
||||
},
|
||||
@@ -36,8 +36,8 @@
|
||||
"jet": "^0.6.6-0",
|
||||
"mocha": "^6.1.4",
|
||||
"nyc": "^15.0.1",
|
||||
"react-native-port-patcher": "^1.0.4",
|
||||
"patch-package": "^6.2.2",
|
||||
"react-native-port-patcher": "^1.0.4",
|
||||
"should": "^13.2.3",
|
||||
"should-sinon": "0.0.6",
|
||||
"sinon": "^9.0.2"
|
||||
|
||||
Reference in New Issue
Block a user