From cdff28d381860ab18ae1241ebd382de31ac547ff Mon Sep 17 00:00:00 2001 From: lwc Date: Mon, 3 Feb 2020 13:01:03 -0800 Subject: [PATCH] release: v1.2.2 --- CHANGELOG.md | 12 +++++++++++- lerna.json | 2 +- packages/@lwc/babel-plugin-component/package.json | 4 ++-- packages/@lwc/compiler/package.json | 12 ++++++------ packages/@lwc/engine/package.json | 8 ++++---- packages/@lwc/errors/package.json | 2 +- packages/@lwc/features/package.json | 4 ++-- packages/@lwc/module-resolver/package.json | 2 +- packages/@lwc/rollup-plugin/package.json | 8 ++++---- packages/@lwc/shared/package.json | 2 +- packages/@lwc/style-compiler/package.json | 2 +- packages/@lwc/synthetic-shadow/package.json | 6 +++--- packages/@lwc/template-compiler/package.json | 6 +++--- packages/@lwc/wire-service/package.json | 10 +++++----- packages/integration-karma/package.json | 10 +++++----- packages/integration-tests/package.json | 6 +++--- packages/lwc/package.json | 12 ++++++------ packages/perf-benchmarks/package.json | 8 ++++---- 18 files changed, 63 insertions(+), 53 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6114a25ca2..e5d3d55ede 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,14 @@ -# [](https://github.com/salesforce/lwc/compare/v1.2.1...v) (2020-01-25) +# [](https://github.com/salesforce/lwc/compare/v1.2.1...v) (2020-02-03) + + +### Bug Fixes + +* **engine:** infinite loop in getErrorBoundaryVM ([#1704](https://github.com/salesforce/lwc/issues/1704)) ([7102988](https://github.com/salesforce/lwc/commit/71029887d197f505945d5a544a9e298f627d0f99)) + + +### Features + +* **synthetic-shadow:** preserve native behavior of attachShadow ([#1693](https://github.com/salesforce/lwc/issues/1693)) ([#1702](https://github.com/salesforce/lwc/issues/1702)) ([ed43a4a](https://github.com/salesforce/lwc/commit/ed43a4a1f80f910bf219019e642c313f80f48f70)) diff --git a/lerna.json b/lerna.json index a46d452187..0b9d40ba0f 100644 --- a/lerna.json +++ b/lerna.json @@ -7,5 +7,5 @@ "exact": true, "npmClient": "yarn", "useWorkspaces": true, - "version": "1.1.13-224.5" + "version": "1.2.2" } diff --git a/packages/@lwc/babel-plugin-component/package.json b/packages/@lwc/babel-plugin-component/package.json index 6edaca452f..6eb76c232c 100644 --- a/packages/@lwc/babel-plugin-component/package.json +++ b/packages/@lwc/babel-plugin-component/package.json @@ -1,7 +1,7 @@ { "name": "@lwc/babel-plugin-component", "description": "Babel plugin to transform a LWC module", - "version": "1.1.13-224.5", + "version": "1.2.2", "main": "src/index.js", "typings": "types/index.d.ts", "license": "MIT", @@ -16,7 +16,7 @@ "dependencies": { "@babel/helper-module-imports": "7.0.0", "@babel/plugin-proposal-class-properties": "7.1.0", - "@lwc/errors": "1.1.13-224.5", + "@lwc/errors": "1.2.2", "line-column": "^1.0.2" }, "devDependencies": { diff --git a/packages/@lwc/compiler/package.json b/packages/@lwc/compiler/package.json index e721193f86..cb7424f992 100755 --- a/packages/@lwc/compiler/package.json +++ b/packages/@lwc/compiler/package.json @@ -1,6 +1,6 @@ { "name": "@lwc/compiler", - "version": "1.1.13-224.5", + "version": "1.2.2", "description": "LWC compiler", "main": "dist/commonjs/index.js", "typings": "dist/types/index.d.ts", @@ -16,11 +16,11 @@ "dependencies": { "@babel/core": "7.1.0", "@babel/plugin-proposal-object-rest-spread": "7.0.0", - "@lwc/babel-plugin-component": "1.1.13-224.5", - "@lwc/errors": "1.1.13-224.5", - "@lwc/shared": "1.1.13-224.5", - "@lwc/style-compiler": "1.1.13-224.5", - "@lwc/template-compiler": "1.1.13-224.5", + "@lwc/babel-plugin-component": "1.2.2", + "@lwc/errors": "1.2.2", + "@lwc/shared": "1.2.2", + "@lwc/style-compiler": "1.2.2", + "@lwc/template-compiler": "1.2.2", "babel-preset-compat": "0.21.7", "rollup": "^1.7.4", "rollup-plugin-replace": "^2.1.0", diff --git a/packages/@lwc/engine/package.json b/packages/@lwc/engine/package.json index d9d1762f39..745be9bc55 100644 --- a/packages/@lwc/engine/package.json +++ b/packages/@lwc/engine/package.json @@ -1,6 +1,6 @@ { "name": "@lwc/engine", - "version": "1.1.13-224.5", + "version": "1.2.2", "description": "LWC Engine", "main": "dist/engine.cjs.js", "module": "dist/engine.js", @@ -19,9 +19,9 @@ "observable-membrane": "0.26.1" }, "devDependencies": { - "@lwc/features": "1.1.13-224.5", - "@lwc/shared": "1.1.13-224.5", - "@lwc/template-compiler": "1.1.13-224.5" + "@lwc/features": "1.2.2", + "@lwc/shared": "1.2.2", + "@lwc/template-compiler": "1.2.2" }, "lwc": { "modules": [ diff --git a/packages/@lwc/errors/package.json b/packages/@lwc/errors/package.json index 5fc5563982..ad53e1feaa 100644 --- a/packages/@lwc/errors/package.json +++ b/packages/@lwc/errors/package.json @@ -1,6 +1,6 @@ { "name": "@lwc/errors", - "version": "1.1.13-224.5", + "version": "1.2.2", "description": "LWC Error Utilities", "main": "dist/commonjs/index.js", "license": "MIT", diff --git a/packages/@lwc/features/package.json b/packages/@lwc/features/package.json index 1bd7d5b58b..1667147bd0 100644 --- a/packages/@lwc/features/package.json +++ b/packages/@lwc/features/package.json @@ -1,6 +1,6 @@ { "name": "@lwc/features", - "version": "1.1.13-224.5", + "version": "1.2.2", "description": "LWC Features Flags", "main": "dist/flags.cjs.js", "module": "dist/flags.js", @@ -16,7 +16,7 @@ "types/" ], "devDependencies": { - "@lwc/shared": "1.1.13-224.5" + "@lwc/shared": "1.2.2" }, "publishConfig": { "access": "public" diff --git a/packages/@lwc/module-resolver/package.json b/packages/@lwc/module-resolver/package.json index b53c1a5a22..6cf98ab11f 100644 --- a/packages/@lwc/module-resolver/package.json +++ b/packages/@lwc/module-resolver/package.json @@ -1,7 +1,7 @@ { "name": "@lwc/module-resolver", "description": "Resolves paths for LWC components", - "version": "1.1.13-224.5", + "version": "1.2.2", "main": "dist/commonjs/index.js", "typings": "dist/types/index.d.ts", "scripts": { diff --git a/packages/@lwc/rollup-plugin/package.json b/packages/@lwc/rollup-plugin/package.json index d68aba04b6..c582ec2566 100644 --- a/packages/@lwc/rollup-plugin/package.json +++ b/packages/@lwc/rollup-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@lwc/rollup-plugin", - "version": "1.1.13-224.5", + "version": "1.2.2", "description": "Rollup plugin to compile LWC", "main": "src/index.js", "license": "MIT", @@ -11,11 +11,11 @@ "src/*.js" ], "devDependencies": { - "@lwc/compiler": "1.1.13-224.5", - "@lwc/engine": "1.1.13-224.5" + "@lwc/compiler": "1.2.2", + "@lwc/engine": "1.2.2" }, "dependencies": { - "@lwc/module-resolver": "1.1.13-224.5", + "@lwc/module-resolver": "1.2.2", "rollup-pluginutils": "^2.0.1" }, "publishConfig": { diff --git a/packages/@lwc/shared/package.json b/packages/@lwc/shared/package.json index 851f6628a0..539b94de73 100644 --- a/packages/@lwc/shared/package.json +++ b/packages/@lwc/shared/package.json @@ -1,6 +1,6 @@ { "name": "@lwc/shared", - "version": "1.1.13-224.5", + "version": "1.2.2", "description": "Utilities and methods that are shared across packages", "main": "dist/index.cjs.js", "module": "dist/index.js", diff --git a/packages/@lwc/style-compiler/package.json b/packages/@lwc/style-compiler/package.json index d8ddc97154..6f1748f5d5 100644 --- a/packages/@lwc/style-compiler/package.json +++ b/packages/@lwc/style-compiler/package.json @@ -1,6 +1,6 @@ { "name": "@lwc/style-compiler", - "version": "1.1.13-224.5", + "version": "1.2.2", "description": "Transform style sheet to be consumed by the LWC engine", "license": "MIT", "main": "dist/commonjs/index.js", diff --git a/packages/@lwc/synthetic-shadow/package.json b/packages/@lwc/synthetic-shadow/package.json index 63935641db..eee198612c 100644 --- a/packages/@lwc/synthetic-shadow/package.json +++ b/packages/@lwc/synthetic-shadow/package.json @@ -1,6 +1,6 @@ { "name": "@lwc/synthetic-shadow", - "version": "1.1.13-224.5", + "version": "1.2.2", "description": "Synthetic Shadow Root for LWC", "license": "MIT", "main": "index.js", @@ -24,7 +24,7 @@ "access": "public" }, "devDependencies": { - "@lwc/features": "1.1.13-224.5", - "@lwc/shared": "1.1.13-224.5" + "@lwc/features": "1.2.2", + "@lwc/shared": "1.2.2" } } diff --git a/packages/@lwc/template-compiler/package.json b/packages/@lwc/template-compiler/package.json index c8b50969ac..c2e896036b 100644 --- a/packages/@lwc/template-compiler/package.json +++ b/packages/@lwc/template-compiler/package.json @@ -1,6 +1,6 @@ { "name": "@lwc/template-compiler", - "version": "1.1.13-224.5", + "version": "1.2.2", "description": "Template compiler package", "main": "dist/commonjs/index.js", "typings": "dist/types/index.d.ts", @@ -22,8 +22,8 @@ "@babel/template": "~7.1.2", "@babel/traverse": "~7.1.5", "@babel/types": "~7.1.5", - "@lwc/errors": "1.1.13-224.5", - "@lwc/shared": "1.1.13-224.5", + "@lwc/errors": "1.2.2", + "@lwc/shared": "1.2.2", "esutils": "^2.0.2", "he": "^1.1.1", "parse5-with-errors": "4.0.3-beta1" diff --git a/packages/@lwc/wire-service/package.json b/packages/@lwc/wire-service/package.json index 4c11a372e2..82e23bb917 100644 --- a/packages/@lwc/wire-service/package.json +++ b/packages/@lwc/wire-service/package.json @@ -1,6 +1,6 @@ { "name": "@lwc/wire-service", - "version": "1.1.13-224.5", + "version": "1.2.2", "description": "@wire service", "license": "MIT", "main": "dist/wire-service.cjs.js", @@ -19,10 +19,10 @@ "types/" ], "devDependencies": { - "@lwc/compiler": "1.1.13-224.5", - "@lwc/engine": "1.1.13-224.5", - "@lwc/rollup-plugin": "1.1.13-224.5", - "@lwc/shared": "1.1.13-224.5" + "@lwc/compiler": "1.2.2", + "@lwc/engine": "1.2.2", + "@lwc/rollup-plugin": "1.2.2", + "@lwc/shared": "1.2.2" }, "lwc": { "modules": [ diff --git a/packages/integration-karma/package.json b/packages/integration-karma/package.json index 18f5b9210b..b2a895a351 100644 --- a/packages/integration-karma/package.json +++ b/packages/integration-karma/package.json @@ -1,7 +1,7 @@ { "name": "integration-karma", "private": true, - "version": "1.1.13-224.5", + "version": "1.2.2", "scripts": { "start": "karma start ./scripts/karma-configs/local.js", "start:compat": "yarn start --browsers Chrome --compat", @@ -11,10 +11,10 @@ "coverage": "node ./scripts/merge-coverage.js" }, "devDependencies": { - "@lwc/compiler": "1.1.13-224.5", - "@lwc/engine": "1.1.13-224.5", - "@lwc/rollup-plugin": "1.1.13-224.5", - "@lwc/synthetic-shadow": "1.1.13-224.5", + "@lwc/compiler": "1.2.2", + "@lwc/engine": "1.2.2", + "@lwc/rollup-plugin": "1.2.2", + "@lwc/synthetic-shadow": "1.2.2", "chokidar": "^3.3.1", "istanbul-api": "^2.1.6", "karma": "^4.4.1", diff --git a/packages/integration-tests/package.json b/packages/integration-tests/package.json index b992ae8ff4..fe2330f94a 100644 --- a/packages/integration-tests/package.json +++ b/packages/integration-tests/package.json @@ -1,7 +1,7 @@ { "name": "integration-tests", "private": true, - "version": "1.1.13-224.5", + "version": "1.2.2", "scripts": { "build": "node scripts/build.js", "build:dev": "MODE=dev yarn build", @@ -20,7 +20,7 @@ "sauce:prod_compat": "MODE=prod_compat yarn build:prod_compat && MODE=prod_compat wdio ./scripts/wdio.sauce.conf.js" }, "devDependencies": { - "@lwc/rollup-plugin": "1.1.13-224.5", + "@lwc/rollup-plugin": "1.2.2", "@wdio/cli": "^5.18.6", "@wdio/local-runner": "^5.18.6", "@wdio/mocha-framework": "^5.18.6", @@ -32,7 +32,7 @@ "deepmerge": "^4.2.2", "dotenv": "^8.2.0", "fs-extra": "^8.1.0", - "lwc": "1.1.13-224.5", + "lwc": "1.2.2", "minimist": "^1.2.0", "webdriverio": "5.18.6" } diff --git a/packages/lwc/package.json b/packages/lwc/package.json index 48262078ec..9a60a99833 100644 --- a/packages/lwc/package.json +++ b/packages/lwc/package.json @@ -1,6 +1,6 @@ { "name": "lwc", - "version": "1.1.13-224.5", + "version": "1.2.2", "description": "Lightning Web Components (LWC)", "main": "index.js", "module": "dist/engine/esm/es2017/engine.js", @@ -16,10 +16,10 @@ "types.d.ts" ], "dependencies": { - "@lwc/compiler": "1.1.13-224.5", - "@lwc/engine": "1.1.13-224.5", - "@lwc/features": "1.1.13-224.5", - "@lwc/synthetic-shadow": "1.1.13-224.5", - "@lwc/wire-service": "1.1.13-224.5" + "@lwc/compiler": "1.2.2", + "@lwc/engine": "1.2.2", + "@lwc/features": "1.2.2", + "@lwc/synthetic-shadow": "1.2.2", + "@lwc/wire-service": "1.2.2" } } diff --git a/packages/perf-benchmarks/package.json b/packages/perf-benchmarks/package.json index 2c9619937b..d56c125cc1 100644 --- a/packages/perf-benchmarks/package.json +++ b/packages/perf-benchmarks/package.json @@ -1,6 +1,6 @@ { "name": "perf-benchmarks", - "version": "1.1.13-224.5", + "version": "1.2.2", "private": true, "scripts": { "start": "best", @@ -11,10 +11,10 @@ "@best/runner-headless": "4.0.0-alpha11", "@best/runner-hub": "4.0.0-alpha11", "@best/store-aws": "4.0.0-alpha11", - "@lwc/rollup-plugin": "1.1.13-224.5" + "@lwc/rollup-plugin": "1.2.2" }, "dependencies": { - "@lwc/engine": "1.1.13-224.5", - "@lwc/synthetic-shadow": "1.1.13-224.5" + "@lwc/engine": "1.2.2", + "@lwc/synthetic-shadow": "1.2.2" } }