expo-location 18.0.8-canary-20250221-ef26fed → 18.0.8-canary-20250304-0da3971

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +16 -2
  2. package/package.json +5 -4
package/CHANGELOG.md CHANGED
@@ -8,16 +8,30 @@
8
8
 
9
9
  ### 🐛 Bug fixes
10
10
 
11
- - [iOS] Added error handler to the streaming location/heading methods since these can fail while streaming ([#35004](https://github.com/expo/expo/pull/35004) by [@chrfalch](https://github.com/chrfalch))
12
11
  - [Android] Add missing ProGuard rule to fix task consumer failed ([#34098](https://github.com/expo/expo/pull/34098) by [@cornejobarraza](https://github.com/cornejobarraza))
13
12
  - [iOS] `startLocationUpdatesAsync` should not require background permissions ([#33617](https://github.com/expo/expo/pull/33617) by [@andrejpavlovic](https://github.com/andrejpavlovic)
14
- - [Android] Use less specific exception in catch block of `resolveUserSettingsForRequest`. ([#34784](https://github.com/expo/expo/pull/34784) by [@alanjhughes](https://github.com/alanjhughes))
15
13
 
16
14
  ### 💡 Others
17
15
 
18
16
  - On Android, remove dependency on `smart-location-lib`. ([#33609](https://github.com/expo/expo/pull/33609) by [@alanjhughes](https://github.com/alanjhughes))
19
17
  - [Android] Started using expo modules gradle plugin. ([#34176](https://github.com/expo/expo/pull/34176) by [@lukmccall](https://github.com/lukmccall))
20
18
 
19
+ ## 18.0.7 - 2025-02-19
20
+
21
+ ### 🐛 Bug fixes
22
+
23
+ - [iOS] Added error handler to the streaming location/heading methods since these can fail while streaming ([#35004](https://github.com/expo/expo/pull/35004) by [@chrfalch](https://github.com/chrfalch))
24
+
25
+ ## 18.0.6 - 2025-02-10
26
+
27
+ ### 🐛 Bug fixes
28
+
29
+ - [Android] Use less specific exception in catch block of `resolveUserSettingsForRequest`. ([#34784](https://github.com/expo/expo/pull/34784) by [@alanjhughes](https://github.com/alanjhughes))
30
+
31
+ ## 18.0.5 - 2025-01-10
32
+
33
+ _This version does not introduce any user-facing changes._
34
+
21
35
  ## 18.0.4 - 2024-12-10
22
36
 
23
37
  _This version does not introduce any user-facing changes._
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-location",
3
- "version": "18.0.8-canary-20250221-ef26fed",
3
+ "version": "18.0.8-canary-20250304-0da3971",
4
4
  "description": "Allows reading geolocation information from the device. Your app can poll for the current location or subscribe to location update events.",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -39,9 +39,10 @@
39
39
  "preset": "expo-module-scripts"
40
40
  },
41
41
  "devDependencies": {
42
- "expo-module-scripts": "4.0.5-canary-20250221-ef26fed"
42
+ "expo-module-scripts": "4.0.5-canary-20250304-0da3971"
43
43
  },
44
44
  "peerDependencies": {
45
- "expo": "53.0.0-canary-20250221-ef26fed"
46
- }
45
+ "expo": "53.0.0-canary-20250304-0da3971"
46
+ },
47
+ "gitHead": "0da3971e287bd6878604d671bce0c82db5056a84"
47
48
  }