From a1e16d4913950b6be0266d275c4544587d686b05 Mon Sep 17 00:00:00 2001 From: Vladimir Mutafov Date: Tue, 16 Jul 2019 12:00:45 +0300 Subject: [PATCH 1/3] Update CHANGELOG.md --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5de2ddb1a..2df3b6f45 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,8 @@ ## What's New +- [Support UTF-16 characters in inspector Log domain (#1418)](https://github.com/NativeScript/android-runtime/pull/1418) +- [Use the built-in JSON.stringify for cross workers communication (#1411)](https://github.com/NativeScript/android-runtime/pull/1411) - [Enable AndroidX and Jetifier(#1370)](https://github.com/NativeScript/android-runtime/issues/1370) - [Upgrade v8 to 7.5.288.22(#1387)](https://github.com/NativeScript/android-runtime/issues/1387) - [Upgrade android gradle plugin to the latest 3.4.1 version(#1390)](https://github.com/NativeScript/android-runtime/issues/1390) From 10a6ec41f57a073854cad260d3f1434900cb9c50 Mon Sep 17 00:00:00 2001 From: Vladimir Mutafov Date: Wed, 17 Jul 2019 13:48:29 +0300 Subject: [PATCH 2/3] Move 'Breaking Changes' section on the top --- CHANGELOG.md | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2df3b6f45..b54d73620 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,17 @@ 6.0.0 == +## Breaking Changes + +- Exception information in onDiscarderError and onUnhandledError is changed so that `message` contains the exception message and `stackTrace` contains only the stackTrace. In the previous implementation `stackTrace` contained some additional details (including the exception message) and the `message` was something like: + + ``` + The application crashed because of an uncaught exception. You can look at "stackTrace" or "nativeException" for more detailed information about the exception. + ``` + +- [The built-in `JSON.stringify` method is used for cross workers communication](https://github.com/NativeScript/android-runtime/issues/1408). Circular object references are no longer supported and attempting to send such object will throw an exception. + + ## What's New - [Support UTF-16 characters in inspector Log domain (#1418)](https://github.com/NativeScript/android-runtime/pull/1418) @@ -19,15 +30,6 @@ - [Warnings when building android(#1396)](https://github.com/NativeScript/android-runtime/issues/1396) - [No JS stack on discardedError and unhandledError(#1354)](https://github.com/NativeScript/android-runtime/issues/1354) -## Breaking Changes - -- Exception information in onDiscarderError and onUnhandledError is changed so that `message` contains the exception message and `stackTrace` contains only the stackTrace. In the previous implementation `stackTrace` contained some additional details (including the exception message) and the `message` was something like: - - ``` - The application crashed because of an uncaught exception. You can look at "stackTrace" or "nativeException" for more detailed information about the exception. - ``` - -- [The built-in `JSON.stringify` method is used for cross workers communication](https://github.com/NativeScript/android-runtime/issues/1408). Circular object references are no longer supported and attempting to send such object will throw an exception. 5.4.0 == From 3f29e57b462652abc2623b130cb8654953233490 Mon Sep 17 00:00:00 2001 From: Vladimir Mutafov Date: Wed, 17 Jul 2019 14:09:59 +0300 Subject: [PATCH 3/3] Update CHANGELOG.md --- CHANGELOG.md | 1 - 1 file changed, 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b54d73620..7973b60dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,7 +14,6 @@ ## What's New -- [Support UTF-16 characters in inspector Log domain (#1418)](https://github.com/NativeScript/android-runtime/pull/1418) - [Use the built-in JSON.stringify for cross workers communication (#1411)](https://github.com/NativeScript/android-runtime/pull/1411) - [Enable AndroidX and Jetifier(#1370)](https://github.com/NativeScript/android-runtime/issues/1370) - [Upgrade v8 to 7.5.288.22(#1387)](https://github.com/NativeScript/android-runtime/issues/1387)