expo-image 1.12.5 → 1.12.7

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
@@ -10,6 +10,20 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 1.12.7 — 2024-05-04
14
+
15
+ ### 🎉 New features
16
+
17
+ - Added support for displaying animated AVIF images on Android. ([#28609](https://github.com/expo/expo/pull/28609) by [@fobos531](https://github.com/fobos531))
18
+
19
+ ### 🐛 Bug fixes
20
+
21
+ - Fix `avif` images not rendering. ([#28608](https://github.com/expo/expo/pull/28608) by [@alanjhughes](https://github.com/alanjhughes))
22
+
23
+ ## 1.12.6 — 2024-05-02
24
+
25
+ _This version does not introduce any user-facing changes._
26
+
13
27
  ## 1.12.5 — 2024-05-01
14
28
 
15
29
  _This version does not introduce any user-facing changes._
@@ -18,7 +18,7 @@ android {
18
18
  namespace "expo.modules.image"
19
19
  defaultConfig {
20
20
  versionCode 1
21
- versionName "1.12.5"
21
+ versionName "1.12.7"
22
22
  consumerProguardFiles("proguard-rules.pro")
23
23
 
24
24
  buildConfigField("boolean", "ALLOW_GLIDE_LOGS", project.properties.get("EXPO_ALLOW_GLIDE_LOGS", "false"))
@@ -44,7 +44,7 @@ dependencies {
44
44
  kapt "com.github.bumptech.glide:compiler:${GLIDE_VERSION}"
45
45
  api 'com.caverock:androidsvg-aar:1.4'
46
46
 
47
- implementation "com.github.penfeizhou.android.animation:glide-plugin:2.28.0"
47
+ implementation "com.github.penfeizhou.android.animation:glide-plugin:3.0.1"
48
48
  implementation "com.github.bumptech.glide:avif-integration:${GLIDE_VERSION}"
49
49
 
50
50
  api 'com.github.bumptech.glide:okhttp3-integration:4.11.0'
@@ -20,6 +20,7 @@ Pod::Spec.new do |s|
20
20
  s.dependency 'SDWebImageWebPCoder', '~> 0.14.6'
21
21
  s.dependency 'SDWebImageAVIFCoder', '~> 0.11.0'
22
22
  s.dependency 'SDWebImageSVGCoder', '~> 1.7.0'
23
+ s.dependency 'libavif/libdav1d'
23
24
 
24
25
  # Swift/Objective-C compatibility
25
26
  s.pod_target_xcconfig = {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "expo-image",
3
3
  "title": "Expo Image",
4
- "version": "1.12.5",
4
+ "version": "1.12.7",
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",
@@ -27,7 +27,7 @@
27
27
  "author": "650 Industries, Inc.",
28
28
  "license": "MIT",
29
29
  "dependencies": {
30
- "@react-native/assets-registry": "~0.74.82"
30
+ "@react-native/assets-registry": "~0.74.83"
31
31
  },
32
32
  "devDependencies": {
33
33
  "expo-module-scripts": "^3.0.0"
@@ -35,5 +35,5 @@
35
35
  "peerDependencies": {
36
36
  "expo": "*"
37
37
  },
38
- "gitHead": "87bd0dfa8b784a834191195ca174a00dd30ee5b7"
38
+ "gitHead": "a8060e820f0af06873d2278134d4d84081f8dcd2"
39
39
  }