@react-native-firebase/auth 26.1.0 → 26.2.0

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 CHANGED
@@ -3,6 +3,13 @@
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
+ ## [26.2.0](https://github.com/invertase/react-native-firebase/compare/v26.1.0...v26.2.0) (2026-08-10)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **auth, ios:** match signInWithCustomToken selector to generated TurboModule spec ([#9146](https://github.com/invertase/react-native-firebase/issues/9146)) ([b674be7](https://github.com/invertase/react-native-firebase/commit/b674be7126f3e5a24cfdc1b0f70ab53cafcc8998))
11
+ - codegen should be wipe-then-regen ([04bc4e4](https://github.com/invertase/react-native-firebase/commit/04bc4e4cdab9870cb366fd212b2ccb331b0289d6))
12
+
6
13
  ## [26.1.0](https://github.com/invertase/react-native-firebase/compare/v26.0.0...v26.1.0) (2026-08-03)
7
14
 
8
15
  ### Features
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
 
3
3
  // Generated by genversion.
4
- export const version = '26.1.0';
4
+ export const version = '26.2.0';
5
5
  //# sourceMappingURL=version.js.map
@@ -1,2 +1,2 @@
1
- export declare const version = "26.1.0";
1
+ export declare const version = "26.2.0";
2
2
  //# sourceMappingURL=version.d.ts.map
@@ -331,13 +331,10 @@ RCT_EXPORT_MODULE(NativeRNFBTurboAuth);
331
331
  }
332
332
 
333
333
  - (void)signInWithCustomToken:(NSString *)appName
334
- customToken:(NSString *)customToken
334
+ token:(NSString *)token
335
335
  resolve:(RCTPromiseResolveBlock)resolve
336
336
  reject:(RCTPromiseRejectBlock)reject {
337
- [RNFBAuthHelper signInWithCustomToken:appName
338
- customToken:customToken
339
- resolve:resolve
340
- reject:reject];
337
+ [RNFBAuthHelper signInWithCustomToken:appName customToken:token resolve:resolve reject:reject];
341
338
  }
342
339
 
343
340
  #if TARGET_OS_IOS
package/lib/version.ts CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- export const version = '26.1.0';
2
+ export const version = '26.2.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-firebase/auth",
3
- "version": "26.1.0",
3
+ "version": "26.2.0",
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": "./dist/module/index.js",
@@ -27,8 +27,8 @@
27
27
  "lint:plugin": "eslint plugin/src/*",
28
28
  "prepare": "yarn run build && yarn compile && yarn run build:plugin",
29
29
  "codegen": "yarn android:codegen && yarn ios:codegen",
30
- "android:codegen": "npx @react-native-community/cli codegen --platform android --outputPath=./android/src/main/java/io/invertase/firebase/auth/generated",
31
- "ios:codegen": "npx @react-native-community/cli codegen --platform ios --outputPath=./ios/generated"
30
+ "android:codegen": "rimraf android/src/main/java/io/invertase/firebase/auth/generated && npx @react-native-community/cli codegen --platform android --outputPath=./android/src/main/java/io/invertase/firebase/auth/generated",
31
+ "ios:codegen": "rimraf ios/generated && npx @react-native-community/cli codegen --platform ios --outputPath=./ios/generated"
32
32
  },
33
33
  "repository": {
34
34
  "type": "git",
@@ -42,15 +42,14 @@
42
42
  "auth"
43
43
  ],
44
44
  "dependencies": {
45
- "plist": "^3.1.1"
45
+ "@expo/plist": "^0.5.2"
46
46
  },
47
47
  "peerDependencies": {
48
- "@react-native-firebase/app": "26.1.0",
48
+ "@react-native-firebase/app": "26.2.0",
49
49
  "expo": ">=47.0.0"
50
50
  },
51
51
  "devDependencies": {
52
- "@react-native-firebase/app": "26.1.0",
53
- "@types/plist": "^3.0.5",
52
+ "@react-native-firebase/app": "26.2.0",
54
53
  "expo": "^55.0.18",
55
54
  "react-native-builder-bob": "^0.40.13"
56
55
  },
@@ -101,5 +100,5 @@
101
100
  "node_modules/",
102
101
  "dist/"
103
102
  ],
104
- "gitHead": "59d053eca14ab8aa80e5ac76887014925c67e52b"
103
+ "gitHead": "b7efa8ca2781b5102975ee5169ee6fc52e9c1588"
105
104
  }
@@ -8,7 +8,7 @@ exports.setUrlTypesForCaptcha = setUrlTypesForCaptcha;
8
8
  const config_plugins_1 = require("@expo/config-plugins");
9
9
  const fs_1 = __importDefault(require("fs"));
10
10
  const path_1 = __importDefault(require("path"));
11
- const plist_1 = __importDefault(require("plist"));
11
+ const plist_1 = __importDefault(require("@expo/plist"));
12
12
  // does this for you: https://firebase.google.com/docs/auth/ios/phone-auth#enable-phone-number-sign-in-for-your-firebase-project
13
13
  const withIosCaptchaUrlTypes = config => {
14
14
  return (0, config_plugins_1.withInfoPlist)(config, config => {
@@ -6,7 +6,7 @@ import {
6
6
  } from '@expo/config-plugins';
7
7
  import fs from 'fs';
8
8
  import path from 'path';
9
- import plist from 'plist';
9
+ import plist from '@expo/plist';
10
10
  import { PluginConfigType } from '../pluginConfig';
11
11
 
12
12
  // does this for you: https://firebase.google.com/docs/auth/ios/phone-auth#enable-phone-number-sign-in-for-your-firebase-project
@@ -3,7 +3,8 @@
3
3
  "compilerOptions": {
4
4
  "outDir": "build",
5
5
  "rootDir": "src",
6
- "declaration": true
6
+ "declaration": true,
7
+ "types": ["node"]
7
8
  },
8
9
  "include": ["./src"]
9
10
  }