expo-image 1.0.0 → 1.0.2

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,18 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 1.0.2 — 2023-09-29
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
+
19
+ ## 1.0.1 — 2023-05-18
20
+
21
+ ### 🐛 Bug fixes
22
+
23
+ - 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))
24
+
13
25
  ## 1.0.0 — 2023-02-21
14
26
 
15
27
  _This version does not introduce any user-facing changes._
@@ -49,7 +49,7 @@ android {
49
49
  minSdkVersion safeExtGet("minSdkVersion", 21)
50
50
  targetSdkVersion safeExtGet("targetSdkVersion", 33)
51
51
  versionCode 1
52
- versionName "1.0.0"
52
+ versionName "1.0.2"
53
53
  }
54
54
  lintOptions {
55
55
  abortOnError false
@@ -85,7 +85,6 @@ dependencies {
85
85
  //noinspection GradleDynamicVersion
86
86
  implementation 'com.facebook.react:react-native:+' // From node_modules
87
87
 
88
- implementation "com.github.zjupure:webpdecoder:2.1.${GLIDE_VERSION}"
89
88
  api "com.github.bumptech.glide:glide:${GLIDE_VERSION}"
90
89
  kapt "com.github.bumptech.glide:compiler:${GLIDE_VERSION}"
91
90
  api 'com.caverock:androidsvg-aar:1.4'
@@ -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.9.4'
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.0.0",
4
+ "version": "1.0.2",
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": "96e7b0b128fd0caa08fed5be29a36773b9235f00"
36
+ "gitHead": "48796ed6cded7ed018953d25d31d8d62bb01af20"
37
37
  }