expo-contacts 14.1.0-canary-20250221-ef26fed → 14.1.0-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 +17 -3
  2. package/package.json +5 -4
package/CHANGELOG.md CHANGED
@@ -9,15 +9,12 @@
9
9
  ### 🎉 New features
10
10
 
11
11
  - added the ability to change isFavorite property of contacts on Android (using updateContactAsync) ([#34483](https://github.com/expo/expo/pull/34483) by [@NorseGaud](https://github.com/NorseGaud))
12
- - added the ability to read and write starred property (as "isFavorite") of contacts on Android ([#33208](https://github.com/expo/expo/pull/33208) by [@NorseGaud](https://github.com/NorseGaud))
13
12
  - Add `presentAccessPickerAsync` function that presents the iOS 18.0+ picker for limited contacts access. ([#33771](https://github.com/expo/expo/pull/33771) by [@tsapeta](https://github.com/tsapeta))
14
13
  - [iOS] Exposed `ContactAccessButton` from SwiftUI. ([#33782](https://github.com/expo/expo/pull/33782) by [@tsapeta](https://github.com/tsapeta))
15
14
 
16
15
  ### 🐛 Bug fixes
17
16
 
18
- - [Android] Fixed saving a contact with photos on Android. ([#34432](https://github.com/expo/expo/pull/34432) by [@chrfalch](https://github.com/chrfalch))
19
17
  - Fixed `the native view manager required by name (ExpoContactAccessButton) from NativeViewManagerAdapter isn't exported` warning. ([#33993](https://github.com/expo/expo/pull/33993) by [@lukmccall](https://github.com/lukmccall))
20
- - Fixed corrupted contact after `updateContactAsync`. ([#34186](https://github.com/expo/expo/pull/34186) by [@freeboub](https://github.com/34186))
21
18
 
22
19
  ### 💡 Others
23
20
 
@@ -26,6 +23,23 @@
26
23
  - [Android] Started using expo modules gradle plugin. ([#34176](https://github.com/expo/expo/pull/34176) by [@lukmccall](https://github.com/lukmccall))
27
24
  - [apple] Migrate remaining `expo-module.config.json` to unified platform syntax. ([#34445](https://github.com/expo/expo/pull/34445) by [@reichhartd](https://github.com/reichhartd))
28
25
 
26
+ ## 14.0.5 - 2025-01-31
27
+
28
+ ### 🐛 Bug fixes
29
+
30
+ - [Android] Fixed saving a contact with photos on Android. ([#34432](https://github.com/expo/expo/pull/34432) by [@chrfalch](https://github.com/chrfalch))
31
+ - Fixed corrupted contact after `updateContactAsync`. ([#34186](https://github.com/expo/expo/pull/34186) by [@freeboub](https://github.com/34186)) ([#34186](https://github.com/expo/expo/pull/34186) by [@34186](https://github.com/34186))
32
+
33
+ ## 14.0.4 - 2025-01-27
34
+
35
+ ### 🎉 New features
36
+
37
+ - added the ability to read and write starred property (as "isFavorite") of contacts on Android ([#33208](https://github.com/expo/expo/pull/33208) by [@NorseGaud](https://github.com/NorseGaud))
38
+
39
+ ## 14.0.3 - 2025-01-10
40
+
41
+ _This version does not introduce any user-facing changes._
42
+
29
43
  ## 14.0.2 — 2024-11-07
30
44
 
31
45
  ### 🐛 Bug fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-contacts",
3
- "version": "14.1.0-canary-20250221-ef26fed",
3
+ "version": "14.1.0-canary-20250304-0da3971",
4
4
  "description": "Provides access to the phone's system contacts.",
5
5
  "main": "src/index.ts",
6
6
  "types": "build/index.d.ts",
@@ -34,11 +34,12 @@
34
34
  "preset": "expo-module-scripts"
35
35
  },
36
36
  "devDependencies": {
37
- "expo-module-scripts": "4.0.5-canary-20250221-ef26fed"
37
+ "expo-module-scripts": "4.0.5-canary-20250304-0da3971"
38
38
  },
39
39
  "peerDependencies": {
40
- "expo": "53.0.0-canary-20250221-ef26fed",
40
+ "expo": "53.0.0-canary-20250304-0da3971",
41
41
  "react": "*",
42
42
  "react-native": "*"
43
- }
43
+ },
44
+ "gitHead": "0da3971e287bd6878604d671bce0c82db5056a84"
44
45
  }