@react-native-firebase/auth 23.8.2 → 23.8.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/RNFBAuth.podspec +7 -2
- package/lib/PhoneAuthListener.js +7 -2
- package/lib/Settings.js +1 -1
- package/lib/TotpMultiFactorGenerator.js +1 -1
- package/lib/TotpSecret.js +1 -1
- package/lib/User.js +6 -1
- package/lib/getMultiFactorResolver.js +1 -1
- package/lib/index.js +3 -3
- package/lib/modular/index.js +1 -1
- package/lib/version.js +1 -1
- package/lib/web/RNFBAuthModule.js +7 -3
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [23.8.4](https://github.com/invertase/react-native-firebase/compare/v23.8.3...v23.8.4) (2026-01-24)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- internal cross-module references to transpiled code must be dist not src ([b03db0a](https://github.com/invertase/react-native-firebase/commit/b03db0aa3fb748ee039826ccd9c7e73bc3c78f6f))
|
|
11
|
+
|
|
12
|
+
## [23.8.3](https://github.com/invertase/react-native-firebase/compare/v23.8.2...v23.8.3) (2026-01-16)
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
- **ios:** use react-native podspec module infra for deps ([c66eb63](https://github.com/invertase/react-native-firebase/commit/c66eb63f60cfbabdeb73a3bb1eff8735f11ad391))
|
|
17
|
+
|
|
6
18
|
## [23.8.2](https://github.com/invertase/react-native-firebase/compare/v23.8.1...v23.8.2) (2026-01-14)
|
|
7
19
|
|
|
8
20
|
**Note:** Version bump only for package @react-native-firebase/auth
|
package/RNFBAuth.podspec
CHANGED
|
@@ -29,10 +29,15 @@ Pod::Spec.new do |s|
|
|
|
29
29
|
s.tvos.deployment_target = firebase_tvos_target
|
|
30
30
|
s.source_files = 'ios/**/*.{h,m}'
|
|
31
31
|
|
|
32
|
-
# React Native dependencies
|
|
33
|
-
s.dependency 'React-Core'
|
|
34
32
|
s.dependency 'RNFBApp'
|
|
35
33
|
|
|
34
|
+
# React Native dependencies
|
|
35
|
+
if defined?(install_modules_dependencies()) != nil
|
|
36
|
+
install_modules_dependencies(s);
|
|
37
|
+
else
|
|
38
|
+
s.dependency "React-Core"
|
|
39
|
+
end
|
|
40
|
+
|
|
36
41
|
if defined?($FirebaseSDKVersion)
|
|
37
42
|
Pod::UI.puts "#{s.name}: Using user specified Firebase SDK version '#{$FirebaseSDKVersion}'"
|
|
38
43
|
firebase_sdk_version = $FirebaseSDKVersion
|
package/lib/PhoneAuthListener.js
CHANGED
|
@@ -15,8 +15,13 @@
|
|
|
15
15
|
*
|
|
16
16
|
*/
|
|
17
17
|
|
|
18
|
-
import {
|
|
19
|
-
|
|
18
|
+
import {
|
|
19
|
+
isAndroid,
|
|
20
|
+
isFunction,
|
|
21
|
+
isIOS,
|
|
22
|
+
promiseDefer,
|
|
23
|
+
} from '@react-native-firebase/app/dist/module/common';
|
|
24
|
+
import NativeFirebaseError from '@react-native-firebase/app/dist/module/internal/NativeFirebaseError';
|
|
20
25
|
|
|
21
26
|
let REQUEST_ID = 0;
|
|
22
27
|
|
package/lib/Settings.js
CHANGED
package/lib/TotpSecret.js
CHANGED
package/lib/User.js
CHANGED
|
@@ -15,7 +15,12 @@
|
|
|
15
15
|
*
|
|
16
16
|
*/
|
|
17
17
|
|
|
18
|
-
import {
|
|
18
|
+
import {
|
|
19
|
+
isObject,
|
|
20
|
+
isString,
|
|
21
|
+
isUndefined,
|
|
22
|
+
isBoolean,
|
|
23
|
+
} from '@react-native-firebase/app/dist/module/common';
|
|
19
24
|
|
|
20
25
|
export default class User {
|
|
21
26
|
constructor(auth, user) {
|
package/lib/index.js
CHANGED
|
@@ -24,13 +24,13 @@ import {
|
|
|
24
24
|
isString,
|
|
25
25
|
isValidUrl,
|
|
26
26
|
parseListenerOrObserver,
|
|
27
|
-
} from '@react-native-firebase/app/
|
|
28
|
-
import { setReactNativeModule } from '@react-native-firebase/app/
|
|
27
|
+
} from '@react-native-firebase/app/dist/module/common';
|
|
28
|
+
import { setReactNativeModule } from '@react-native-firebase/app/dist/module/internal/nativeModule';
|
|
29
29
|
import {
|
|
30
30
|
FirebaseModule,
|
|
31
31
|
createModuleNamespace,
|
|
32
32
|
getFirebaseRoot,
|
|
33
|
-
} from '@react-native-firebase/app/
|
|
33
|
+
} from '@react-native-firebase/app/dist/module/internal';
|
|
34
34
|
import ConfirmationResult from './ConfirmationResult';
|
|
35
35
|
import PhoneAuthListener from './PhoneAuthListener';
|
|
36
36
|
import PhoneMultiFactorGenerator from './PhoneMultiFactorGenerator';
|
package/lib/modular/index.js
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
|
|
18
18
|
import { getApp } from '@react-native-firebase/app';
|
|
19
19
|
import { MultiFactorUser } from '../multiFactor';
|
|
20
|
-
import { MODULAR_DEPRECATION_ARG } from '@react-native-firebase/app/
|
|
20
|
+
import { MODULAR_DEPRECATION_ARG } from '@react-native-firebase/app/dist/module/common';
|
|
21
21
|
|
|
22
22
|
/**
|
|
23
23
|
* @typedef {import('@firebase/app-types').FirebaseApp} FirebaseApp
|
package/lib/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Generated by genversion.
|
|
2
|
-
module.exports = '23.8.
|
|
2
|
+
module.exports = '23.8.4';
|
|
@@ -42,12 +42,16 @@ import {
|
|
|
42
42
|
GithubAuthProvider,
|
|
43
43
|
PhoneAuthProvider,
|
|
44
44
|
OAuthProvider,
|
|
45
|
-
} from '@react-native-firebase/app/
|
|
46
|
-
import {
|
|
45
|
+
} from '@react-native-firebase/app/dist/module/internal/web/firebaseAuth';
|
|
46
|
+
import {
|
|
47
|
+
guard,
|
|
48
|
+
getWebError,
|
|
49
|
+
emitEvent,
|
|
50
|
+
} from '@react-native-firebase/app/dist/module/internal/web/utils';
|
|
47
51
|
import {
|
|
48
52
|
getReactNativeAsyncStorageInternal,
|
|
49
53
|
isMemoryStorage,
|
|
50
|
-
} from '@react-native-firebase/app/
|
|
54
|
+
} from '@react-native-firebase/app/dist/module/internal/asyncStorage';
|
|
51
55
|
|
|
52
56
|
/**
|
|
53
57
|
* Resolves or rejects an auth method promise without a user (user was missing).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-native-firebase/auth",
|
|
3
|
-
"version": "23.8.
|
|
3
|
+
"version": "23.8.4",
|
|
4
4
|
"author": "Invertase <oss@invertase.io> (http://invertase.io)",
|
|
5
5
|
"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.",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"plist": "^3.1.0"
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|
|
30
|
-
"@react-native-firebase/app": "23.8.
|
|
30
|
+
"@react-native-firebase/app": "23.8.4",
|
|
31
31
|
"expo": ">=47.0.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"access": "public",
|
|
44
44
|
"provenance": true
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "30df38f6df8750ff753566eb961bb46c10a84fed"
|
|
47
47
|
}
|