voltra 1.4.0-rc.0 → 1.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/package.json +10 -10
package/CHANGELOG.md CHANGED
@@ -1,5 +1,30 @@
1
1
  # voltra
2
2
 
3
+ ## 1.4.0
4
+
5
+ ### Minor Changes
6
+
7
+ - Android home-screen widgets can use colors that follow the user’s theme and wallpaper (including Material You), so widgets feel native in light, dark, and dynamic setups. If you drive widgets from your own server, you can read the full request URL—including query parameters—when handling updates, which makes it easier to personalize or A/B content per link. Widget updates on iOS are a bit more forgiving when variant data is missing.
8
+ - 14d4fa5: Add Android ongoing notification support, including richer notification content, remote update flows, and server-side payload rendering APIs. This release also expands the Expo integration and documentation so apps can configure, send, and manage Android ongoing notifications more easily.
9
+
10
+ ### Patch Changes
11
+
12
+ - Android apps built for production (minified / release) are less likely to crash or mis-render widgets because of how widget payloads are processed on the device.
13
+ - 8cedb47: Fix iOS Live Activity naming so named activities can be reused more reliably across app launches.
14
+ - Work on decomposing Voltra into smaller packages continues, and more pieces have moved from the umbrella package into the respective `@use-voltra/*` packages. You should still use the `voltra` umbrella for your app.
15
+ - Updated dependencies
16
+ - Updated dependencies [14d4fa5]
17
+ - Updated dependencies
18
+ - @use-voltra/android@1.4.0
19
+ - @use-voltra/android-server@1.4.0
20
+ - @use-voltra/ios-server@1.3.2
21
+ - @use-voltra/server@1.4.0
22
+ - @use-voltra/expo-plugin@1.4.0
23
+ - @use-voltra/android-client@1.4.0
24
+ - @use-voltra/core@1.4.0
25
+ - @use-voltra/ios@1.4.0
26
+ - @use-voltra/ios-client@1.4.0
27
+
3
28
  ## 1.3.0
4
29
 
5
30
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "voltra",
3
- "version": "1.4.0-rc.0",
3
+ "version": "1.4.0",
4
4
  "description": "Build Live Activities with JSX in React Native",
5
5
  "main": "build/cjs/index.js",
6
6
  "module": "build/esm/index.js",
@@ -87,15 +87,15 @@
87
87
  "license": "MIT",
88
88
  "homepage": "https://use-voltra.dev",
89
89
  "dependencies": {
90
- "@use-voltra/android": "1.4.0-rc.0",
91
- "@use-voltra/android-client": "1.4.0-rc.0",
92
- "@use-voltra/android-server": "1.4.0-rc.0",
93
- "@use-voltra/core": "1.4.0-rc.0",
94
- "@use-voltra/expo-plugin": "1.4.0-rc.0",
95
- "@use-voltra/ios": "1.4.0-rc.0",
96
- "@use-voltra/ios-client": "1.4.0-rc.0",
97
- "@use-voltra/ios-server": "1.4.0-rc.0",
98
- "@use-voltra/server": "1.4.0-rc.0",
90
+ "@use-voltra/android": "1.4.0",
91
+ "@use-voltra/android-client": "1.4.0",
92
+ "@use-voltra/android-server": "1.4.0",
93
+ "@use-voltra/core": "1.4.0",
94
+ "@use-voltra/expo-plugin": "1.4.0",
95
+ "@use-voltra/ios": "1.4.0",
96
+ "@use-voltra/ios-client": "1.4.0",
97
+ "@use-voltra/ios-server": "1.4.0",
98
+ "@use-voltra/server": "1.4.0",
99
99
  "react-is": "^19.2.0"
100
100
  },
101
101
  "peerDependencies": {