From d0e54f17fb0f7914be95be996b630f253b02ba82 Mon Sep 17 00:00:00 2001 From: rosen-vladimirov Date: Wed, 21 Aug 2019 16:19:24 +0300 Subject: [PATCH 1/2] fix: stop generating snapshot for ia64 for older runtimes When the runtime version is below 6.0.2 we should generate snapshot only for armv7, arm64 and ia32 archs. However, as in the validation schema we have default value for the targetArchs, the logic that should determine if ia64 should be removed from the targetArchs decides the archs are passed by the user and does not strip anything from them. Remove the default values from the JSON Schema - they are calculated in the code, so there's no need to have them on two places. As we can not have our conditional logic in the JSON schema, keep calculation of the default values only in the code. --- plugins/NativeScriptSnapshotPlugin/options.json | 6 ------ 1 file changed, 6 deletions(-) diff --git a/plugins/NativeScriptSnapshotPlugin/options.json b/plugins/NativeScriptSnapshotPlugin/options.json index f18a2cd9..d20b74ac 100644 --- a/plugins/NativeScriptSnapshotPlugin/options.json +++ b/plugins/NativeScriptSnapshotPlugin/options.json @@ -25,12 +25,6 @@ }, "targetArchs": { "type": "array", - "default": [ - "arm", - "arm64", - "ia32", - "ia64" - ], "items": { "type": "string", "enum": [ From 174573fbf347f6ae3a8fafe1bf52889855abbbad Mon Sep 17 00:00:00 2001 From: endarova Date: Thu, 22 Aug 2019 11:47:10 +0300 Subject: [PATCH 2/2] release: cut the 1.1.1 release --- CHANGELOG.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ba86021..c3f2458e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ + +## [1.1.1](https://github.com/NativeScript/nativescript-dev-webpack/compare/1.1.0...1.1.1) (2019-08-22) + + +### Bug Fixes + +* add ia64 as supported architecture ([65d5d3f](https://github.com/NativeScript/nativescript-dev-webpack/commit/65d5d3f)) + + + # [1.1.0](https://github.com/NativeScript/nativescript-dev-webpack/compare/1.0.2...1.1.0) (2019-08-19)