Skip to content

Commit 4116dbf

Browse files
committed
Merge branch 'master' into feature/video_booth
# Conflicts: # example/package-lock.json # package-lock.json # package.json
2 parents e50a793 + 4dd5833 commit 4116dbf

File tree

5 files changed

+28
-20
lines changed

5 files changed

+28
-20
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
1.2.1/ 2025-16-09
2+
=================
3+
4+
* Fix dependencies
5+
6+
1.2.0 / 2025-24-08
7+
==================
8+
9+
* Add support for Expo 52,53
10+
111
1.1.0 / 2025-22-06
212
==================
313

README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,10 @@ This Readme provides basic installation and usage information.
2121
Transform and optimize assets. Visit our documentation to learn more about [media optimization](https://cloudinary.com/documentation/media_optimization) and [transformations](https://cloudinary.com/documentation/image_transformations).
2222

2323
## Version Support
24-
| SDK Version | React Native Version | Expo SDK Version | Video Library |
25-
|-------------|----------------------|------------------|---------------|
26-
| 1.x.x | >= 0.72 | 50-53 | expo-av / expo-video |
24+
| SDK Version | React Native Version | Expo SDK Version | Video Library |
25+
|---------------|----------------------|---------------|---------|
26+
| 1.0.0 - 1.1.0 | >= 0.72 | 50 | expo-av |
27+
| 1.2.x | >= 0.72 | 50-53 | expo-av / expo-video |
2728

2829
## Installation
2930
### Install using your favorite package manager (yarn, npm)
@@ -115,8 +116,8 @@ let video = myCld.video('sea_turtle');
115116
export default function App() {
116117
return (
117118
<View style={styles.container}>
118-
<AdvancedVideo
119-
cldVideo={video}
119+
<AdvancedVideo
120+
cldVideo={video}
120121
videoStyle={{width: 400, height: 220}}
121122
/>
122123
</View>
@@ -142,8 +143,8 @@ let video = myCld.video('sea_turtle');
142143
export default function App() {
143144
return (
144145
<View style={styles.container}>
145-
<AdvancedVideo
146-
cldVideo={video}
146+
<AdvancedVideo
147+
cldVideo={video}
147148
videoStyle={{width: 400, height: 220}}
148149
enableAnalytics={true}
149150
autoTrackAnalytics={true}

example/package-lock.json

Lines changed: 3 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 4 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cloudinary-react-native",
3-
"version": "1.1.0",
3+
"version": "1.2.1",
44
"description": "Cloudinary React Native SDK: upload, transform, and deliver images and videos through Cloudinary's media pipeline.",
55
"main": "lib/commonjs/index",
66
"module": "lib/module/index",
@@ -88,10 +88,9 @@
8888
"expo": "^50.0.0 || ^51.0.0 || ^52.0.0 || ^53.0.0",
8989
"expo-av": "^14.0.0 || ^15.0.0",
9090
"expo-constants": "^16.0.0 || ^17.0.0",
91-
"expo-font": "^11.10.0 || ^12.0.0 || ^13.0.0",
92-
"expo-modules-core": "1.11.14",
91+
"expo-modules-core": ">=1.11.14 <2.6.0",
9392
"expo-video": "^2.0.0",
94-
"react": "^19.0.0",
93+
"react": "^18.0.0 || ^19.0.0",
9594
"react-native": ">=0.79.0"
9695
},
9796
"peerDependenciesMeta": {

0 commit comments

Comments
 (0)