expo-notifications 0.29.15-canary-20250404-3c3b5fd → 0.30.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
@@ -8,6 +8,12 @@
8
8
 
9
9
  ### 🐛 Bug fixes
10
10
 
11
+ ### 💡 Others
12
+
13
+ ## 0.30.0 — 2025-04-04
14
+
15
+ ### 🐛 Bug fixes
16
+
11
17
  - [post-swift-conversion] UNTextInputNotificationAction wasn't provided with options ([#35903](https://github.com/expo/expo/pull/35903) by [@vonovak](https://github.com/vonovak))
12
18
  - [post-swift-conversion] event emitter should not influence notification presentation ([#35858](https://github.com/expo/expo/pull/35858) by [@vonovak](https://github.com/vonovak))
13
19
  - correctly serialize `null` trigger on iOS ([#35672](https://github.com/expo/expo/pull/35672) by [@vonovak](https://github.com/vonovak))
@@ -5,13 +5,13 @@ plugins {
5
5
  }
6
6
 
7
7
  group = 'host.exp.exponent'
8
- version = '0.29.8'
8
+ version = '0.30.0'
9
9
 
10
10
  android {
11
11
  namespace "expo.modules.notifications"
12
12
  defaultConfig {
13
13
  versionCode 21
14
- versionName '0.29.8'
14
+ versionName '0.30.0'
15
15
  testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
16
16
  }
17
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-notifications",
3
- "version": "0.29.15-canary-20250404-3c3b5fd",
3
+ "version": "0.30.0",
4
4
  "description": "Provides an API to fetch push notification tokens and to present, schedule, receive, and respond to notifications.",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -42,21 +42,22 @@
42
42
  ]
43
43
  },
44
44
  "dependencies": {
45
- "@expo/image-utils": "0.6.6-canary-20250404-3c3b5fd",
45
+ "@expo/image-utils": "^0.7.0",
46
46
  "@ide/backoff": "^1.0.0",
47
47
  "abort-controller": "^3.0.0",
48
48
  "assert": "^2.0.0",
49
49
  "badgin": "^1.1.5",
50
- "expo-application": "6.0.3-canary-20250404-3c3b5fd",
51
- "expo-constants": "18.0.0-canary-20250404-3c3b5fd"
50
+ "expo-application": "~6.1.0",
51
+ "expo-constants": "~17.1.0"
52
52
  },
53
53
  "devDependencies": {
54
- "expo-module-scripts": "4.0.6-canary-20250404-3c3b5fd",
54
+ "expo-module-scripts": "^4.1.0",
55
55
  "memfs": "^3.2.0"
56
56
  },
57
57
  "peerDependencies": {
58
- "expo": "53.0.0-canary-20250404-3c3b5fd",
58
+ "expo": "*",
59
59
  "react": "*",
60
60
  "react-native": "*"
61
- }
61
+ },
62
+ "gitHead": "68b8233002dc678934ba40cbade7fbc80e71aeff"
62
63
  }