Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 0 additions & 18 deletions .changeset/expo-56-upgrade.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/famous-bears-do.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/move-reject-promise-to-core.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/poor-lamps-share.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/tough-lions-return.md

This file was deleted.

10 changes: 5 additions & 5 deletions apps/ExampleApp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@
"dependencies": {
"@expo-google-fonts/space-grotesk": "^0.2.2",
"@expo/metro-runtime": "~56.0.13",
"@infinitered/react-native-mlkit-document-scanner": "workspace:^5.0.0",
"@infinitered/react-native-mlkit-face-detection": "workspace:^5.0.0",
"@infinitered/react-native-mlkit-image-labeling": "workspace:^5.0.0",
"@infinitered/react-native-mlkit-object-detection": "workspace:^5.0.0",
"@infinitered/react-native-mlkit-text-recognition": "workspace:^5.0.1",
"@infinitered/react-native-mlkit-document-scanner": "workspace:^6.0.0",
"@infinitered/react-native-mlkit-face-detection": "workspace:^6.0.0",
"@infinitered/react-native-mlkit-image-labeling": "workspace:^6.0.0",
"@infinitered/react-native-mlkit-object-detection": "workspace:^6.0.0",
"@infinitered/react-native-mlkit-text-recognition": "workspace:^6.0.0",
"@react-native-async-storage/async-storage": "2.2.0",
"@react-navigation/native": "^6.0.8",
"@react-navigation/native-stack": "^6.0.2",
Expand Down
18 changes: 18 additions & 0 deletions modules/react-native-mlkit-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# @infinitered/react-native-mlkit-core

## 6.0.0

### Major Changes

- 5ebcba6: Upgrade to Expo SDK 56 (React Native 0.85, React 19.2).

BREAKING CHANGE: The minimum iOS deployment target is raised from 15.1 to
16.4, and the modules now target the Expo SDK 56 native toolchain
(`expo-modules-core` ~56, Android `compileSdk` 36 / Kotlin 2.x). Consuming
apps must be on Expo SDK 56 and build with Xcode 26.4 for iOS.

No public JavaScript/TypeScript API changes — this is a native toolchain and
peer-dependency bump.

### Minor Changes

- 6f0d469: Move the `rejectPromiseWithMessage` Swift helper into RNMLKit core so it can be shared across modules instead of being duplicated in each one.

## 5.0.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion modules/react-native-mlkit-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@infinitered/react-native-mlkit-core",
"version": "5.0.0",
"version": "6.0.0",
"description": "Shared Library for RNMLKit",
"main": "build/index.js",
"types": "build/index.d.ts",
Expand Down
20 changes: 20 additions & 0 deletions modules/react-native-mlkit-document-scanner/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# @infinitered/react-native-mlkit-document-scanner

## 6.0.0

### Major Changes

- 5ebcba6: Upgrade to Expo SDK 56 (React Native 0.85, React 19.2).

BREAKING CHANGE: The minimum iOS deployment target is raised from 15.1 to
16.4, and the modules now target the Expo SDK 56 native toolchain
(`expo-modules-core` ~56, Android `compileSdk` 36 / Kotlin 2.x). Consuming
apps must be on Expo SDK 56 and build with Xcode 26.4 for iOS.

No public JavaScript/TypeScript API changes — this is a native toolchain and
peer-dependency bump.

### Patch Changes

- Updated dependencies [5ebcba6]
- Updated dependencies [6f0d469]
- @infinitered/react-native-mlkit-core@6.0.0

## 5.0.0

### Major Changes
Expand Down
4 changes: 2 additions & 2 deletions modules/react-native-mlkit-document-scanner/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@infinitered/react-native-mlkit-document-scanner",
"version": "5.0.0",
"version": "6.0.0",
"description": "MLKit Document Scanner for Expo",
"main": "build/index.js",
"types": "build/index.d.ts",
Expand All @@ -27,7 +27,7 @@
"license": "MIT",
"homepage": "https://docs.infinite.red/react-native-mlkit/document-scanner",
"dependencies": {
"@infinitered/react-native-mlkit-core": "5.0.0"
"@infinitered/react-native-mlkit-core": "6.0.0"
},
"devDependencies": {
"@types/react": "~19.2.16",
Expand Down
21 changes: 21 additions & 0 deletions modules/react-native-mlkit-face-detection/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# @infinitered/react-native-mlkit-face-detection

## 6.0.0

### Major Changes

- 5ebcba6: Upgrade to Expo SDK 56 (React Native 0.85, React 19.2).

BREAKING CHANGE: The minimum iOS deployment target is raised from 15.1 to
16.4, and the modules now target the Expo SDK 56 native toolchain
(`expo-modules-core` ~56, Android `compileSdk` 36 / Kotlin 2.x). Consuming
apps must be on Expo SDK 56 and build with Xcode 26.4 for iOS.

No public JavaScript/TypeScript API changes — this is a native toolchain and
peer-dependency bump.

### Patch Changes

- 6f0d469: Move the `rejectPromiseWithMessage` Swift helper into RNMLKit core so it can be shared across modules instead of being duplicated in each one.
- Updated dependencies [5ebcba6]
- Updated dependencies [6f0d469]
- @infinitered/react-native-mlkit-core@6.0.0

## 5.0.0

### Major Changes
Expand Down
4 changes: 2 additions & 2 deletions modules/react-native-mlkit-face-detection/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@infinitered/react-native-mlkit-face-detection",
"version": "5.0.0",
"version": "6.0.0",
"description": "MLKit Face Detection for Expo",
"main": "build/index.js",
"types": "build/index.d.ts",
Expand All @@ -27,7 +27,7 @@
"license": "MIT",
"homepage": "https://docs.infinite.red/react-native-mlkit/face-detection",
"dependencies": {
"@infinitered/react-native-mlkit-core": "5.0.0"
"@infinitered/react-native-mlkit-core": "6.0.0"
},
"devDependencies": {
"@types/react": "~19.2.16",
Expand Down
21 changes: 21 additions & 0 deletions modules/react-native-mlkit-image-labeling/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Changelog

## 6.0.0

### Major Changes

- 5ebcba6: Upgrade to Expo SDK 56 (React Native 0.85, React 19.2).

BREAKING CHANGE: The minimum iOS deployment target is raised from 15.1 to
16.4, and the modules now target the Expo SDK 56 native toolchain
(`expo-modules-core` ~56, Android `compileSdk` 36 / Kotlin 2.x). Consuming
apps must be on Expo SDK 56 and build with Xcode 26.4 for iOS.

No public JavaScript/TypeScript API changes — this is a native toolchain and
peer-dependency bump.

### Patch Changes

- 6f0d469: Move the `rejectPromiseWithMessage` Swift helper into RNMLKit core so it can be shared across modules instead of being duplicated in each one.
- Updated dependencies [5ebcba6]
- Updated dependencies [6f0d469]
- @infinitered/react-native-mlkit-core@6.0.0

## 5.0.0

### Major Changes
Expand Down
4 changes: 2 additions & 2 deletions modules/react-native-mlkit-image-labeling/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@infinitered/react-native-mlkit-image-labeling",
"version": "5.0.0",
"version": "6.0.0",
"description": "MLKit Image Labeling for React Native with Expo",
"main": "build/index.js",
"types": "build/index.d.ts",
Expand All @@ -27,7 +27,7 @@
"license": "MIT",
"homepage": "https://docs.infinite.red/react-native-mlkit/image-labeling",
"dependencies": {
"@infinitered/react-native-mlkit-core": "5.0.0"
"@infinitered/react-native-mlkit-core": "6.0.0"
},
"devDependencies": {
"@types/react": "~19.2.16",
Expand Down
21 changes: 21 additions & 0 deletions modules/react-native-mlkit-object-detection/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Changelog

## 6.0.0

### Major Changes

- 5ebcba6: Upgrade to Expo SDK 56 (React Native 0.85, React 19.2).

BREAKING CHANGE: The minimum iOS deployment target is raised from 15.1 to
16.4, and the modules now target the Expo SDK 56 native toolchain
(`expo-modules-core` ~56, Android `compileSdk` 36 / Kotlin 2.x). Consuming
apps must be on Expo SDK 56 and build with Xcode 26.4 for iOS.

No public JavaScript/TypeScript API changes — this is a native toolchain and
peer-dependency bump.

### Patch Changes

- 6f0d469: Move the `rejectPromiseWithMessage` Swift helper into RNMLKit core so it can be shared across modules instead of being duplicated in each one.
- Updated dependencies [5ebcba6]
- Updated dependencies [6f0d469]
- @infinitered/react-native-mlkit-core@6.0.0

## 5.0.0

### Major Changes
Expand Down
6 changes: 3 additions & 3 deletions modules/react-native-mlkit-object-detection/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@infinitered/react-native-mlkit-object-detection",
"version": "5.0.0",
"version": "6.0.0",
"description": "Expo module for MLKit Object Detection",
"main": "build/index.js",
"types": "build/index.d.ts",
Expand All @@ -27,10 +27,10 @@
"license": "MIT",
"homepage": "https://docs.infinite.red/react-native-mlkit/object-detection",
"dependencies": {
"@infinitered/react-native-mlkit-core": "5.0.0"
"@infinitered/react-native-mlkit-core": "6.0.0"
},
"devDependencies": {
"@infinitered/react-native-mlkit-core": "5.0.0",
"@infinitered/react-native-mlkit-core": "6.0.0",
"@types/react": "~19.2.16",
"expo-module-scripts": "^3.4.1",
"expo-modules-core": "~56.0.14",
Expand Down
21 changes: 21 additions & 0 deletions modules/react-native-mlkit-text-recognition/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# @infinitered/react-native-mlkit-text-recognition

## 6.0.0

### Major Changes

- 5ebcba6: Upgrade to Expo SDK 56 (React Native 0.85, React 19.2).

BREAKING CHANGE: The minimum iOS deployment target is raised from 15.1 to
16.4, and the modules now target the Expo SDK 56 native toolchain
(`expo-modules-core` ~56, Android `compileSdk` 36 / Kotlin 2.x). Consuming
apps must be on Expo SDK 56 and build with Xcode 26.4 for iOS.

No public JavaScript/TypeScript API changes — this is a native toolchain and
peer-dependency bump.

### Patch Changes

- 50f9384: fixed wrong dependency for ci with text recognition
- Updated dependencies [5ebcba6]
- Updated dependencies [6f0d469]
- @infinitered/react-native-mlkit-core@6.0.0

## 5.0.1

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions modules/react-native-mlkit-text-recognition/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@infinitered/react-native-mlkit-text-recognition",
"version": "5.0.1",
"version": "6.0.0",
"description": "Expo module for MLKit Text Recognition",
"main": "build/index.js",
"types": "build/index.d.ts",
Expand All @@ -27,10 +27,10 @@
"license": "MIT",
"homepage": "https://docs.infinite.red/react-native-mlkit/text-recognition",
"dependencies": {
"@infinitered/react-native-mlkit-core": "5.0.0"
"@infinitered/react-native-mlkit-core": "6.0.0"
},
"devDependencies": {
"@infinitered/react-native-mlkit-core": "5.0.0",
"@infinitered/react-native-mlkit-core": "6.0.0",
"@types/react": "~19.2.16",
"expo-module-scripts": "^3.4.1",
"expo-modules-core": "~56.0.14",
Expand Down
Loading