Skip to content

Commit f0e5e85

Browse files
committed
chore: release v1.4.0
1 parent 3ef69e5 commit f0e5e85

23 files changed

Lines changed: 179 additions & 71 deletions

.changeset/fix-live-activity-naming.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/green-planes-sing.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

package-lock.json

Lines changed: 29 additions & 29 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# @use-voltra/android-client
2+
3+
## 1.4.0
4+
5+
### Minor Changes
6+
7+
- 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.
8+
9+
### Patch Changes
10+
11+
- Updated dependencies
12+
- Updated dependencies [14d4fa5]
13+
- Updated dependencies
14+
- @use-voltra/android@1.4.0

packages/android-client/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@use-voltra/android-client",
3-
"version": "1.3.1",
3+
"version": "1.4.0",
44
"description": "Client-only Voltra APIs for Android",
55
"main": "build/cjs/index.js",
66
"module": "build/esm/index.js",
@@ -25,7 +25,7 @@
2525
"typecheck": "tsc -p tsconfig.typecheck.json --noEmit"
2626
},
2727
"dependencies": {
28-
"@use-voltra/android": "1.3.1"
28+
"@use-voltra/android": "1.4.0"
2929
},
3030
"keywords": [
3131
"react-native",

packages/android-server/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# @use-voltra/android-server
22

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+
- Updated dependencies
13+
- Updated dependencies [14d4fa5]
14+
- Updated dependencies
15+
- @use-voltra/android@1.4.0
16+
- @use-voltra/server@1.4.0
17+
- @use-voltra/core@1.4.0
18+
319
## 1.3.0
420

521
### Minor Changes

packages/android-server/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@use-voltra/android-server",
3-
"version": "1.3.1",
3+
"version": "1.4.0",
44
"description": "Voltra server rendering for Android",
55
"main": "build/cjs/index.js",
66
"module": "build/esm/index.js",
@@ -25,9 +25,9 @@
2525
"typecheck": "tsc -p tsconfig.typecheck.json --noEmit"
2626
},
2727
"dependencies": {
28-
"@use-voltra/android": "1.3.1",
29-
"@use-voltra/core": "1.3.1",
30-
"@use-voltra/server": "1.3.1"
28+
"@use-voltra/android": "1.4.0",
29+
"@use-voltra/core": "1.4.0",
30+
"@use-voltra/server": "1.4.0"
3131
},
3232
"keywords": [
3333
"voltra",

packages/android/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# @use-voltra/android
22

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+
- 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.
10+
11+
### Patch Changes
12+
13+
- Updated dependencies
14+
- @use-voltra/core@1.4.0
15+
316
## 1.3.0
417

518
### Minor Changes

packages/android/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@use-voltra/android",
3-
"version": "1.3.1",
3+
"version": "1.4.0",
44
"description": "Voltra for Android",
55
"main": "build/cjs/index.js",
66
"module": "build/esm/index.js",
@@ -37,7 +37,7 @@
3737
"typecheck": "tsc -p tsconfig.typecheck.json --noEmit"
3838
},
3939
"dependencies": {
40-
"@use-voltra/core": "1.3.1"
40+
"@use-voltra/core": "1.4.0"
4141
},
4242
"keywords": [
4343
"react-native",

packages/core/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# @use-voltra/core
2+
3+
## 1.4.0
4+
5+
### Minor Changes
6+
7+
- 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.

0 commit comments

Comments
 (0)