Skip to content

Commit 7c0b563

Browse files
committed
chore: release v1.0.0-alpha.18
1 parent 84752fe commit 7c0b563

File tree

16 files changed

+29
-15
lines changed

16 files changed

+29
-15
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## [1.0.0-alpha.18] (2025-11-03)
2+
3+
### Features
4+
5+
- **Metro Caching** ([#23](https://github.com/callstackincubator/react-native-harness/pull/23)): Added support for Metro's transformation cache, helping in cases when Metro struggles with re-transforming the same files over and over.
6+
7+
- **Improved Timeout Handling** ([#24](https://github.com/callstackincubator/react-native-harness/pull/24)): Enhanced timeout handling to propagate timeouts not only to the initial bootstrapping process but also to all commands sent to the device.
8+
9+
- **Platform Architecture Refactor** ([#22](https://github.com/callstackincubator/react-native-harness/pull/22)): Introduced a major refactor of the Harness architecture, splitting the CLI package into several smaller packages. This makes it possible to create custom platform packages without modifying existing ones. The Metro integration has also been revamped to be more reliable in CI environments.
10+
11+
### Documentation
12+
13+
- **GitHub Actions Workflow Update** ([#25](https://github.com/callstackincubator/react-native-harness/pull/25)): Updated the example GitHub Actions workflow for iOS by adding a step to install Watchman, which dramatically speeds up the file-crawling process and makes Harness run much faster.
14+
115
## [1.0.0-alpha.17] (2025-10-22)
216

317
### Features

packages/babel-preset/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-native-harness/babel-preset",
3-
"version": "1.0.0-alpha.17",
3+
"version": "1.0.0-alpha.18",
44
"type": "commonjs",
55
"main": "./dist/index.js",
66
"module": "./dist/index.js",

packages/bridge/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-native-harness/bridge",
3-
"version": "1.0.0-alpha.17",
3+
"version": "1.0.0-alpha.18",
44
"type": "module",
55
"main": "./dist/index.js",
66
"module": "./dist/index.js",

packages/bundler-metro/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@react-native-harness/bundler-metro",
33
"description": "Metro bundler for React Native Harness",
4-
"version": "1.0.0-alpha.17",
4+
"version": "1.0.0-alpha.18",
55
"type": "module",
66
"main": "./dist/index.js",
77
"module": "./dist/index.js",

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-native-harness/cli",
3-
"version": "1.0.0-alpha.17",
3+
"version": "1.0.0-alpha.18",
44
"type": "module",
55
"main": "./dist/index.js",
66
"module": "./dist/index.js",

packages/config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-native-harness/config",
3-
"version": "1.0.0-alpha.17",
3+
"version": "1.0.0-alpha.18",
44
"type": "module",
55
"main": "./dist/index.js",
66
"module": "./dist/index.js",

packages/jest/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-native-harness/jest",
3-
"version": "1.0.0-alpha.17",
3+
"version": "1.0.0-alpha.18",
44
"type": "module",
55
"main": "./dist/index.js",
66
"module": "./dist/index.js",

packages/metro/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-native-harness/metro",
3-
"version": "1.0.0-alpha.17",
3+
"version": "1.0.0-alpha.18",
44
"type": "commonjs",
55
"main": "./dist/index.js",
66
"module": "./dist/index.js",

packages/platform-android/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@react-native-harness/platform-android",
33
"description": "Android platform for React Native Harness",
4-
"version": "1.0.0-alpha.17",
4+
"version": "1.0.0-alpha.18",
55
"type": "module",
66
"main": "./dist/index.js",
77
"module": "./dist/index.js",

packages/platform-ios/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@react-native-harness/platform-apple",
33
"description": "Apple platform for React Native Harness",
4-
"version": "1.0.0-alpha.17",
4+
"version": "1.0.0-alpha.18",
55
"type": "module",
66
"main": "./dist/index.js",
77
"module": "./dist/index.js",

0 commit comments

Comments
 (0)