expo-image 1.3.3 → 1.3.4

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,12 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 1.3.4 — 2023-09-28
14
+
15
+ ### 🐛 Bug fixes
16
+
17
+ - Remove `GlideWebpDecoder` until they update their `libwebp` dependency. ([#24656](https://github.com/expo/expo/pull/24656) by [@alanjhughes](https://github.com/alanjhughes))
18
+
13
19
  ## 1.3.3 — 2023-09-15
14
20
 
15
21
  ### 🐛 Bug fixes
@@ -50,7 +50,7 @@ android {
50
50
  minSdkVersion safeExtGet("minSdkVersion", 21)
51
51
  targetSdkVersion safeExtGet("targetSdkVersion", 33)
52
52
  versionCode 1
53
- versionName "1.3.3"
53
+ versionName "1.3.4"
54
54
  consumerProguardFiles("proguard-rules.pro")
55
55
  }
56
56
  lintOptions {
@@ -92,7 +92,6 @@ dependencies {
92
92
  //noinspection GradleDynamicVersion
93
93
  implementation 'com.facebook.react:react-native:+' // From node_modules
94
94
 
95
- implementation "com.github.zjupure:webpdecoder:2.1.${GLIDE_VERSION}"
96
95
  api "com.github.bumptech.glide:glide:${GLIDE_VERSION}"
97
96
  kapt "com.github.bumptech.glide:compiler:${GLIDE_VERSION}"
98
97
  api 'com.caverock:androidsvg-aar:1.4'
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "expo-image",
3
3
  "title": "Expo Image",
4
- "version": "1.3.3",
4
+ "version": "1.3.4",
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": "0fa20c9cbad0c73a30089ffc09073e6d94a6dabb"
36
+ "gitHead": "b0019af6dd5a36e908618c388ab5f3053afc61c0"
37
37
  }