Skip to content

Commit da4de69

Browse files
committed
chore: release v1.0.0-alpha.16
1 parent e4bd735 commit da4de69

File tree

11 files changed

+39
-10
lines changed

11 files changed

+39
-10
lines changed

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
## [1.0.0-alpha.16] (2025-10-22)
2+
3+
### Features
4+
5+
- **Split Setup and Setup After Env** ([#18](https://github.com/callstackincubator/react-native-harness/pull/18)): Split setup files into separate setup and setup after environment phases for better control over test initialization.
6+
7+
- **UI Components Support** ([#17](https://github.com/callstackincubator/react-native-harness/pull/17)): Added basic support for testing UI components in React Native Harness, enabling component-level testing capabilities.
8+
9+
- **Jest Wrapper CLI** ([#16](https://github.com/callstackincubator/react-native-harness/pull/16)): Replaced custom CLI implementation with a Jest wrapper, providing better integration with the Jest ecosystem and improved compatibility.
10+
11+
- **Jest Preset Re-export** ([#15](https://github.com/callstackincubator/react-native-harness/pull/15)): Re-exported Jest preset from the main package for easier configuration and setup.
12+
13+
- **Watch Mode Performance** ([#14](https://github.com/callstackincubator/react-native-harness/pull/14)): Significantly improved watch mode speed, making the development experience faster and more responsive.
14+
15+
- **Code Frame Error Display** ([#13](https://github.com/callstackincubator/react-native-harness/pull/13)): Enhanced error reporting in Jest with code frames, making it easier to identify and fix issues by showing the exact location of errors in context.
16+
17+
- **Jest Globals Detection** ([#12](https://github.com/callstackincubator/react-native-harness/pull/12)): Added validation to throw errors when Jest globals are used, ensuring proper test isolation and preventing common testing pitfalls.
18+
19+
- **Coverage Support** ([#10](https://github.com/callstackincubator/react-native-harness/pull/10)): Implemented code coverage reporting capabilities.
20+
21+
- **Reset Environment Config** ([#11](https://github.com/callstackincubator/react-native-harness/pull/11)): Added `resetEnvironmentBetweenTestFiles` configuration property for better test isolation control.
22+
23+
- **Auto-apply Babel Plugins** ([#9](https://github.com/callstackincubator/react-native-harness/pull/9)): Babel plugins are now automatically applied, reducing manual configuration requirements.
24+
25+
- **Auto-inject Harness** ([#8](https://github.com/callstackincubator/react-native-harness/pull/8)): Harness is now automatically injected into the test environment, simplifying setup process.
26+
27+
- **Setup Files Support** ([#6](https://github.com/callstackincubator/react-native-harness/pull/6)): Added support for Jest setup files, allowing for better test environment configuration.
28+
29+
- **Harness-based Jest Runner** ([#4](https://github.com/callstackincubator/react-native-harness/pull/4)): Implemented a custom Jest runner built on the Harness architecture.

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.15",
3+
"version": "1.0.0-alpha.16",
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.15",
3+
"version": "1.0.0-alpha.16",
44
"type": "module",
55
"main": "./dist/index.js",
66
"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.15",
3+
"version": "1.0.0-alpha.16",
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.15",
3+
"version": "1.0.0-alpha.16",
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.15",
3+
"version": "1.0.0-alpha.16",
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.15",
3+
"version": "1.0.0-alpha.16",
44
"type": "commonjs",
55
"main": "./dist/index.js",
66
"module": "./dist/index.js",

packages/react-native-harness/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",
3-
"version": "1.0.0-alpha.15",
3+
"version": "1.0.0-alpha.16",
44
"bin": {
55
"react-native-harness": "./bin.js"
66
},

packages/reporters/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/reporters",
3-
"version": "1.0.0-alpha.15",
3+
"version": "1.0.0-alpha.16",
44
"type": "module",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",

packages/runtime/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/runtime",
3-
"version": "1.0.0-alpha.15",
3+
"version": "1.0.0-alpha.16",
44
"type": "module",
55
"main": "./dist/index.js",
66
"module": "./dist/index.js",

0 commit comments

Comments
 (0)