diff --git a/CHANGELOG.md b/CHANGELOG.md index f92fe2e1edc80f161dfe2d5d68a8a6211b508841..631ca149a88bfcdb72decb32eacf2cfe8dc11b14 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,13 @@ # Changelog + +## 5.1.0.203 +- chore: update to version 0.72.57,([e10c9b86e](https://gitee.com/openharmony-sig/ohos_react_native/commit/e10c9b86e27d638261e28d8f18048bafb5ef47a1)) +- fix:crash when Animated remove native event,([62fd10343](https://gitee.com/openharmony-sig/ohos_react_native/commit/62fd10343f8061dac00ad3c0f72ccc45855b15ec)) +- fix lineHeight inconsistency,([325a3319c](https://gitee.com/openharmony-sig/ohos_react_native/commit/325a3319c642880e007aa0cffcebe8b32cc351ef)) +- chore: update to version 5.1.0.202(0.72.56),([6d5003245](https://gitee.com/openharmony-sig/ohos_react_native/commit/6d5003245109243b330adeb32156a0fe9de28575)) +- fix(codecheck): unsafe memcpy,([9b42afd1a](https://gitee.com/openharmony-sig/ohos_react_native/commit/9b42afd1aa3aa6c4200e51577aa1260fdd75479d)) +- feat(mmap): speed up bundle loading with mmap,([1451c57a5](https://gitee.com/openharmony-sig/ohos_react_native/commit/1451c57a5c5a63607a0020c1b1ca4cb861372805)) + ## 5.1.0.202 - Supplement the pull third-party library dependency command,([18e052f9](https://gitee.com/openharmony-sig/ohos_react_native/commit/18e052f9e2073ab4860f1526e21ecd8c0daab360)) - doc(performance): update performance tuning instructions and add BiSheng compiler usage,([c3ad53c3](https://gitee.com/openharmony-sig/ohos_react_native/commit/c3ad53c3dac1f260af07016e49924d5d0563e777)) diff --git a/docs/Samples/Sample/SampleApp/oh-package.json5 b/docs/Samples/Sample/SampleApp/oh-package.json5 index 1bb4cdc4edd277b58dc689dab9310a8239325a9c..09040016a74ed3060bb9b84142a579c9bdd9b3e9 100644 --- a/docs/Samples/Sample/SampleApp/oh-package.json5 +++ b/docs/Samples/Sample/SampleApp/oh-package.json5 @@ -13,6 +13,6 @@ "@ohos/axios": "^2.1.1" }, "overrides": { - "@rnoh/react-native-openharmony": "0.72.56" + "@rnoh/react-native-openharmony": "0.72.57" } } \ No newline at end of file diff --git a/react-native-harmony-sample-package/package.json b/react-native-harmony-sample-package/package.json index bbeb2350bdcf9c09a0c31c6a50e4e9daf10d231b..d189bd788c394c5227d02085c310edd668f14e3e 100644 --- a/react-native-harmony-sample-package/package.json +++ b/react-native-harmony-sample-package/package.json @@ -8,7 +8,7 @@ "pack:harmony": "react-native pack-harmony --oh-module-path ../tester/harmony/sample_package --harmony-dir-path ./harmony --package-json-path ./package.json", "codegen-lib": "react-native codegen-lib-harmony --no-safety-check --npm-package-name react-native-harmony-sample-package-2 --cpp-output-path ../tester/harmony/sample_package/src/main/cpp/generated --ets-output-path ../tester/harmony/sample_package/src/main/ets/generated --cpp-components-spec-paths ./src/specs/codegen-lib/CodegenLibCppSampleNativeComponent.ts --turbo-modules-spec-paths ./src/specs/codegen-lib/NativeCodegenLibSampleModule.ts --arkts-components-spec-paths ./src/specs/codegen-lib/CodegenLibArkTSSampleNativeComponent.ts", "install:local-cli": "cd ../react-native-harmony-cli && npm pack && cd ../react-native-harmony-sample-package && npm i ../react-native-harmony-cli/rnoh-react-native-harmony-cli-0.0.26.tgz", - "install:rn_harmony": "cd ../react-native-harmony && npm pack && cd ../react-native-harmony-sample-package && npm uninstall react-native-harmony && npm i react-native-harmony@file:../react-native-harmony/rnoh-react-native-harmony-0.72.56.tgz" + "install:rn_harmony": "cd ../react-native-harmony && npm pack && cd ../react-native-harmony-sample-package && npm uninstall react-native-harmony && npm i react-native-harmony@file:../react-native-harmony/rnoh-react-native-harmony-0.72.57.tgz" }, "keywords": [], "author": "", diff --git a/react-native-harmony/package.json b/react-native-harmony/package.json index cc57a7c592dedbe8c38043e793411f5a1b4efa81..9030d3154b5533603741c2c2ee4e0e9d69642af8 100644 --- a/react-native-harmony/package.json +++ b/react-native-harmony/package.json @@ -1,6 +1,6 @@ { "name": "@rnoh/react-native-harmony", - "version": "0.72.56", + "version": "0.72.57", "description": "", "scripts": { "install:local-cli": "cd ../react-native-harmony-cli && npm pack && cd ../react-native-harmony && npm i ../react-native-harmony-cli/rnoh-react-native-harmony-cli-0.0.25.tgz && cd ../react-native-harmony", diff --git a/tester/harmony/react_native_openharmony/CHANGELOG.md b/tester/harmony/react_native_openharmony/CHANGELOG.md index 07c760ca3471feef5032f6b73b7892d4cabeed6e..5c7f6f073570ea830092e28feae0763704196544 100644 --- a/tester/harmony/react_native_openharmony/CHANGELOG.md +++ b/tester/harmony/react_native_openharmony/CHANGELOG.md @@ -1,4 +1,13 @@ # Changelog + +## v0.72.57 +- chore: update to version 0.72.57,([e10c9b86e](https://gitee.com/openharmony-sig/ohos_react_native/commit/e10c9b86e27d638261e28d8f18048bafb5ef47a1)) +- fix:crash when Animated remove native event,([62fd10343](https://gitee.com/openharmony-sig/ohos_react_native/commit/62fd10343f8061dac00ad3c0f72ccc45855b15ec)) +- fix lineHeight inconsistency,([325a3319c](https://gitee.com/openharmony-sig/ohos_react_native/commit/325a3319c642880e007aa0cffcebe8b32cc351ef)) +- chore: update to version 5.1.0.202(0.72.56),([6d5003245](https://gitee.com/openharmony-sig/ohos_react_native/commit/6d5003245109243b330adeb32156a0fe9de28575)) +- fix(codecheck): unsafe memcpy,([9b42afd1a](https://gitee.com/openharmony-sig/ohos_react_native/commit/9b42afd1aa3aa6c4200e51577aa1260fdd75479d)) +- feat(mmap): speed up bundle loading with mmap,([1451c57a5](https://gitee.com/openharmony-sig/ohos_react_native/commit/1451c57a5c5a63607a0020c1b1ca4cb861372805)) + ## v0.72.56 - fix: 解决bundle加载状态精准度问题,([d6152766](https://gitee.com/openharmony-sig/ohos_react_native/commit/d6152766fc9d4f3653aaf3c1c41db6802a4a5a3c)) - fix: Fix the issue of accessibility and inability to click,([749e1142](https://gitee.com/openharmony-sig/ohos_react_native/commit/749e114265807198047a0d9b9a0e5838e529575c)) diff --git a/tester/harmony/react_native_openharmony/oh-package.json5 b/tester/harmony/react_native_openharmony/oh-package.json5 index 26ff81d71d14fbfa124cb8f8abbd35d66a7c06d2..09df47794bb4ce6d32878c11f0c93d727eda6f97 100644 --- a/tester/harmony/react_native_openharmony/oh-package.json5 +++ b/tester/harmony/react_native_openharmony/oh-package.json5 @@ -9,7 +9,7 @@ org: '', }, type: 'module', - version: '0.72.56', + version: '0.72.57', dependencies: {}, main: 'index.ets', repository: 'https://gitee.com/openharmony-sig/ohos_react_native/tree/master/' diff --git a/tester/package.json b/tester/package.json index 9a3744812ffd80c600c2d06ba8d30d957f28b13a..2c5d7e239719dd953bdee4af9d84cbb3e9bddf50 100644 --- a/tester/package.json +++ b/tester/package.json @@ -8,7 +8,7 @@ "postinstall": "node ./scripts/create-build-profile && npm run reinstall:react_native_harmony && npm run reinstall:react_native_harmony_sample_package", "reinstall:react_native_harmony": "npm uninstall react-native-harmony && npm run pack_react_native_harmony && npm run install:react_native_harmony", "reinstall:react_native_harmony_sample_package": "npm uninstall react-native-harmony-sample-package && npm run pack_react_native_harmony_sample_package && npm run install:react_native_harmony_sample_package", - "install:react_native_harmony": "npm i react-native-harmony@file:../react-native-harmony/rnoh-react-native-harmony-0.72.56.tgz", + "install:react_native_harmony": "npm i react-native-harmony@file:../react-native-harmony/rnoh-react-native-harmony-0.72.57.tgz", "install:react_native_harmony_sample_package": "npm i ../react-native-harmony-sample-package/react-native-harmony-sample-package-1.0.0.tgz", "pack_react_native_harmony": "cd ../react-native-harmony && npm pack && cd ../tester", "pack_react_native_harmony_sample_package": "cd ../react-native-harmony-sample-package && npm run codegen-lib && npm pack && cd ../tester", @@ -45,7 +45,7 @@ "react": "18.2.0", "react-native": "0.72.5", "react-native-flipper-performance-plugin": "^0.4.0", - "react-native-harmony": "file:../react-native-harmony/rnoh-react-native-harmony-0.72.56.tgz", + "react-native-harmony": "file:../react-native-harmony/rnoh-react-native-harmony-0.72.57.tgz", "react-native-harmony-sample-package": "file:../react-native-harmony-sample-package/react-native-harmony-sample-package-1.0.0.tgz" }, "devDependencies": {