expo-image 1.2.2 → 1.2.3
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 +6 -0
- package/android/build.gradle +1 -1
- package/ios/ExpoImage.podspec +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,12 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 1.2.3 — 2023-05-16
|
|
14
|
+
|
|
15
|
+
### 🐛 Bug fixes
|
|
16
|
+
|
|
17
|
+
- Upgrade SDWebImageAVIFCoder to fix compiling issue with libavif < 0.11.0. ([#22491](https://github.com/expo/expo/pull/22491) by [@matinzd](https://github.com/matinzd))
|
|
18
|
+
|
|
13
19
|
## 1.2.2 — 2023-04-27
|
|
14
20
|
|
|
15
21
|
### 🐛 Bug fixes
|
package/android/build.gradle
CHANGED
package/ios/ExpoImage.podspec
CHANGED
|
@@ -18,7 +18,7 @@ Pod::Spec.new do |s|
|
|
|
18
18
|
s.dependency 'ExpoModulesCore'
|
|
19
19
|
s.dependency 'SDWebImage', '~> 5.15.0'
|
|
20
20
|
s.dependency 'SDWebImageWebPCoder', '~> 0.9.1'
|
|
21
|
-
s.dependency 'SDWebImageAVIFCoder', '~> 0.
|
|
21
|
+
s.dependency 'SDWebImageAVIFCoder', '~> 0.10.0'
|
|
22
22
|
s.dependency 'SDWebImageSVGCoder', '~> 1.6.1'
|
|
23
23
|
|
|
24
24
|
# Swift/Objective-C compatibility
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-image",
|
|
3
3
|
"title": "Expo Image",
|
|
4
|
-
"version": "1.2.
|
|
4
|
+
"version": "1.2.3",
|
|
5
5
|
"description": "A cross-platform, performant image component for React Native and Expo with Web support",
|
|
6
6
|
"main": "build/index.js",
|
|
7
7
|
"types": "build/index.d.ts",
|
|
@@ -33,5 +33,5 @@
|
|
|
33
33
|
"peerDependencies": {
|
|
34
34
|
"expo": "*"
|
|
35
35
|
},
|
|
36
|
-
"gitHead": "
|
|
36
|
+
"gitHead": "029f6de0a91b2d515f9700135575140902ccfb9c"
|
|
37
37
|
}
|