expo-image-loader 4.3.0 → 4.4.0

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,10 +10,22 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 4.4.0 — 2023-09-04
14
+
15
+ ### 🎉 New features
16
+
17
+ - Added support for React Native 0.73. ([#24018](https://github.com/expo/expo/pull/24018) by [@kudo](https://github.com/kudo))
18
+
19
+ ### 🐛 Bug fixes
20
+
21
+ - Bump `Glide` version to resolve `SecurityException` on Android 13. ([#24196](https://github.com/expo/expo/pull/24196) by [@alanjhughes](https://github.com/alanjhughes))
22
+
13
23
  ## 4.3.0 — 2023-06-13
14
24
 
15
25
  - Removed `com.facebook.fresco:fresco` dependency ([#22542](https://github.com/expo/expo/pull/22542) by [@josephyanks](https://github.com/josephyanks))
26
+
16
27
  ### 📚 3rd party library updates
28
+
17
29
  - Updated `com.github.bumptech.glide:glide` to `4.13.2` and added customizable `glideVersion` variable on ext. ([#22542](https://github.com/expo/expo/pull/22542) by [@josephyanks](https://github.com/josephyanks))
18
30
 
19
31
  ### 🐛 Bug fixes
@@ -33,7 +33,7 @@ buildscript {
33
33
  }
34
34
 
35
35
  group = 'host.exp.exponent'
36
- version = '4.3.0'
36
+ version = '4.4.0'
37
37
 
38
38
  afterEvaluate {
39
39
  publishing {
@@ -53,13 +53,16 @@ afterEvaluate {
53
53
  android {
54
54
  compileSdkVersion safeExtGet("compileSdkVersion", 33)
55
55
 
56
- compileOptions {
57
- sourceCompatibility JavaVersion.VERSION_11
58
- targetCompatibility JavaVersion.VERSION_11
59
- }
56
+ def agpVersion = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION
57
+ if (agpVersion.tokenize('.')[0].toInteger() < 8) {
58
+ compileOptions {
59
+ sourceCompatibility JavaVersion.VERSION_11
60
+ targetCompatibility JavaVersion.VERSION_11
61
+ }
60
62
 
61
- kotlinOptions {
62
- jvmTarget = JavaVersion.VERSION_11.majorVersion
63
+ kotlinOptions {
64
+ jvmTarget = JavaVersion.VERSION_11.majorVersion
65
+ }
63
66
  }
64
67
 
65
68
  namespace "expo.modules.imageloader"
@@ -67,7 +70,7 @@ android {
67
70
  minSdkVersion safeExtGet("minSdkVersion", 21)
68
71
  targetSdkVersion safeExtGet("targetSdkVersion", 33)
69
72
  versionCode 8
70
- versionName "4.3.0"
73
+ versionName "4.4.0"
71
74
  }
72
75
  lintOptions {
73
76
  abortOnError false
@@ -83,7 +86,7 @@ repositories {
83
86
  mavenCentral()
84
87
  }
85
88
 
86
- def glideVersion = safeExtGet('glideVersion', '4.13.2')
89
+ def glideVersion = safeExtGet('glideVersion', '4.16.0')
87
90
 
88
91
  dependencies {
89
92
  implementation project(':expo-modules-core')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-image-loader",
3
- "version": "4.3.0",
3
+ "version": "4.4.0",
4
4
  "description": "Image loader",
5
5
  "main": "index.js",
6
6
  "keywords": [
@@ -24,5 +24,5 @@
24
24
  "peerDependencies": {
25
25
  "expo": "*"
26
26
  },
27
- "gitHead": "66d0501185956602c144a03a891bdb34d3c03910"
27
+ "gitHead": "79607a7325f47aa17c36d266100d09a4ff2cc544"
28
28
  }