From c329d68d4591d31d966ab64e0da579c95a1c5e1d Mon Sep 17 00:00:00 2001 From: Sheetal Nandi Date: Thu, 10 Dec 2020 14:10:00 -0800 Subject: [PATCH] Bump version to 4.1.4 and LKG --- lib/tsc.js | 2 +- lib/tsserver.js | 6 +++++- lib/tsserverlibrary.js | 6 +++++- lib/typescript.js | 2 +- lib/typescriptServices.js | 2 +- lib/typingsInstaller.js | 2 +- package.json | 2 +- src/compiler/corePublic.ts | 2 +- 8 files changed, 16 insertions(+), 8 deletions(-) diff --git a/lib/tsc.js b/lib/tsc.js index aa044c895b30c..bc2ac1fc08c1d 100644 --- a/lib/tsc.js +++ b/lib/tsc.js @@ -67,7 +67,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) { var ts; (function (ts) { ts.versionMajorMinor = "4.1"; - ts.version = "4.1.3"; + ts.version = "4.1.4"; var NativeCollections; (function (NativeCollections) { function tryGetNativeMap() { diff --git a/lib/tsserver.js b/lib/tsserver.js index d9208c6c66533..f444af5048a53 100644 --- a/lib/tsserver.js +++ b/lib/tsserver.js @@ -94,7 +94,7 @@ var ts; // If changing the text in this section, be sure to test `configurePrerelease` too. ts.versionMajorMinor = "4.1"; /** The version of the TypeScript compiler release */ - ts.version = "4.1.3"; + ts.version = "4.1.4"; /* @internal */ var Comparison; (function (Comparison) { @@ -151959,6 +151959,10 @@ var ts; Project.prototype.enablePlugin = function (pluginConfigEntry, searchPaths, pluginConfigOverrides) { var _this = this; this.projectService.logger.info("Enabling plugin " + pluginConfigEntry.name + " from candidate paths: " + searchPaths.join(",")); + if (ts.parsePackageName(pluginConfigEntry.name).rest) { + this.projectService.logger.info("kipped loading plugin " + pluginConfigEntry.name + " because only package name is allowed plugin name"); + return; + } var log = function (message) { return _this.projectService.logger.info(message); }; var errorLogs; var logError = function (message) { (errorLogs || (errorLogs = [])).push(message); }; diff --git a/lib/tsserverlibrary.js b/lib/tsserverlibrary.js index a74476c9a7e72..04dcc8cde21c6 100644 --- a/lib/tsserverlibrary.js +++ b/lib/tsserverlibrary.js @@ -288,7 +288,7 @@ var ts; // If changing the text in this section, be sure to test `configurePrerelease` too. ts.versionMajorMinor = "4.1"; /** The version of the TypeScript compiler release */ - ts.version = "4.1.3"; + ts.version = "4.1.4"; /* @internal */ var Comparison; (function (Comparison) { @@ -152153,6 +152153,10 @@ var ts; Project.prototype.enablePlugin = function (pluginConfigEntry, searchPaths, pluginConfigOverrides) { var _this = this; this.projectService.logger.info("Enabling plugin " + pluginConfigEntry.name + " from candidate paths: " + searchPaths.join(",")); + if (ts.parsePackageName(pluginConfigEntry.name).rest) { + this.projectService.logger.info("kipped loading plugin " + pluginConfigEntry.name + " because only package name is allowed plugin name"); + return; + } var log = function (message) { return _this.projectService.logger.info(message); }; var errorLogs; var logError = function (message) { (errorLogs || (errorLogs = [])).push(message); }; diff --git a/lib/typescript.js b/lib/typescript.js index ea89c6ac4009f..d38f648bd45e8 100644 --- a/lib/typescript.js +++ b/lib/typescript.js @@ -288,7 +288,7 @@ var ts; // If changing the text in this section, be sure to test `configurePrerelease` too. ts.versionMajorMinor = "4.1"; /** The version of the TypeScript compiler release */ - ts.version = "4.1.3"; + ts.version = "4.1.4"; /* @internal */ var Comparison; (function (Comparison) { diff --git a/lib/typescriptServices.js b/lib/typescriptServices.js index 4e9013c6564aa..25cec70942c51 100644 --- a/lib/typescriptServices.js +++ b/lib/typescriptServices.js @@ -288,7 +288,7 @@ var ts; // If changing the text in this section, be sure to test `configurePrerelease` too. ts.versionMajorMinor = "4.1"; /** The version of the TypeScript compiler release */ - ts.version = "4.1.3"; + ts.version = "4.1.4"; /* @internal */ var Comparison; (function (Comparison) { diff --git a/lib/typingsInstaller.js b/lib/typingsInstaller.js index fbb900b66991c..17ed2e3ad23b6 100644 --- a/lib/typingsInstaller.js +++ b/lib/typingsInstaller.js @@ -83,7 +83,7 @@ var ts; // If changing the text in this section, be sure to test `configurePrerelease` too. ts.versionMajorMinor = "4.1"; /** The version of the TypeScript compiler release */ - ts.version = "4.1.3"; + ts.version = "4.1.4"; /* @internal */ var Comparison; (function (Comparison) { diff --git a/package.json b/package.json index d63d8904c5836..4a92cb6b1063b 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "typescript", "author": "Microsoft Corp.", "homepage": "https://www.typescriptlang.org/", - "version": "4.1.3", + "version": "4.1.4", "license": "Apache-2.0", "description": "TypeScript is a language for application scale JavaScript development", "keywords": [ diff --git a/src/compiler/corePublic.ts b/src/compiler/corePublic.ts index cd739ef54e0bd..eb6e65e8c6b44 100644 --- a/src/compiler/corePublic.ts +++ b/src/compiler/corePublic.ts @@ -3,7 +3,7 @@ namespace ts { // If changing the text in this section, be sure to test `configurePrerelease` too. export const versionMajorMinor = "4.1"; /** The version of the TypeScript compiler release */ - export const version = "4.1.3" as string; + export const version = "4.1.4" as string; /** * Type of objects whose values are all of the same type.