Skip to content

Commit 019e4c6

Browse files
committed
Bump version to 3.9.8 and LKG
1 parent ea2f68b commit 019e4c6

8 files changed

+16
-8
lines changed

lib/tsc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cook
6767
var ts;
6868
(function (ts) {
6969
ts.versionMajorMinor = "3.9";
70-
ts.version = "3.9.7";
70+
ts.version = "3.9.8";
7171
function tryGetNativeMap() {
7272
return typeof Map !== "undefined" && "entries" in Map.prototype ? Map : undefined;
7373
}

lib/tsserver.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ var ts;
9494
// If changing the text in this section, be sure to test `configurePrerelease` too.
9595
ts.versionMajorMinor = "3.9";
9696
/** The version of the TypeScript compiler release */
97-
ts.version = "3.9.7";
97+
ts.version = "3.9.8";
9898
/**
9999
* Returns the native Map implementation if it is available and compatible (i.e. supports iteration).
100100
*/
@@ -143754,6 +143754,10 @@ var ts;
143754143754
Project.prototype.enablePlugin = function (pluginConfigEntry, searchPaths, pluginConfigOverrides) {
143755143755
var _this = this;
143756143756
this.projectService.logger.info("Enabling plugin " + pluginConfigEntry.name + " from candidate paths: " + searchPaths.join(","));
143757+
if (ts.parsePackageName(pluginConfigEntry.name).rest) {
143758+
this.projectService.logger.info("kipped loading plugin " + pluginConfigEntry.name + " because only package name is allowed plugin name");
143759+
return;
143760+
}
143757143761
var log = function (message) { return _this.projectService.logger.info(message); };
143758143762
var errorLogs;
143759143763
var logError = function (message) { (errorLogs || (errorLogs = [])).push(message); };

lib/tsserverlibrary.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ var ts;
244244
// If changing the text in this section, be sure to test `configurePrerelease` too.
245245
ts.versionMajorMinor = "3.9";
246246
/** The version of the TypeScript compiler release */
247-
ts.version = "3.9.7";
247+
ts.version = "3.9.8";
248248
/**
249249
* Returns the native Map implementation if it is available and compatible (i.e. supports iteration).
250250
*/
@@ -143904,6 +143904,10 @@ var ts;
143904143904
Project.prototype.enablePlugin = function (pluginConfigEntry, searchPaths, pluginConfigOverrides) {
143905143905
var _this = this;
143906143906
this.projectService.logger.info("Enabling plugin " + pluginConfigEntry.name + " from candidate paths: " + searchPaths.join(","));
143907+
if (ts.parsePackageName(pluginConfigEntry.name).rest) {
143908+
this.projectService.logger.info("kipped loading plugin " + pluginConfigEntry.name + " because only package name is allowed plugin name");
143909+
return;
143910+
}
143907143911
var log = function (message) { return _this.projectService.logger.info(message); };
143908143912
var errorLogs;
143909143913
var logError = function (message) { (errorLogs || (errorLogs = [])).push(message); };

lib/typescript.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ var ts;
244244
// If changing the text in this section, be sure to test `configurePrerelease` too.
245245
ts.versionMajorMinor = "3.9";
246246
/** The version of the TypeScript compiler release */
247-
ts.version = "3.9.7";
247+
ts.version = "3.9.8";
248248
/**
249249
* Returns the native Map implementation if it is available and compatible (i.e. supports iteration).
250250
*/

lib/typescriptServices.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ var ts;
244244
// If changing the text in this section, be sure to test `configurePrerelease` too.
245245
ts.versionMajorMinor = "3.9";
246246
/** The version of the TypeScript compiler release */
247-
ts.version = "3.9.7";
247+
ts.version = "3.9.8";
248248
/**
249249
* Returns the native Map implementation if it is available and compatible (i.e. supports iteration).
250250
*/

lib/typingsInstaller.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ var ts;
8383
// If changing the text in this section, be sure to test `configurePrerelease` too.
8484
ts.versionMajorMinor = "3.9";
8585
/** The version of the TypeScript compiler release */
86-
ts.version = "3.9.7";
86+
ts.version = "3.9.8";
8787
/**
8888
* Returns the native Map implementation if it is available and compatible (i.e. supports iteration).
8989
*/

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "typescript",
33
"author": "Microsoft Corp.",
44
"homepage": "https://www.typescriptlang.org/",
5-
"version": "3.9.7",
5+
"version": "3.9.8",
66
"license": "Apache-2.0",
77
"description": "TypeScript is a language for application scale JavaScript development",
88
"keywords": [

src/compiler/corePublic.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ namespace ts {
33
// If changing the text in this section, be sure to test `configurePrerelease` too.
44
export const versionMajorMinor = "3.9";
55
/** The version of the TypeScript compiler release */
6-
export const version = "3.9.7" as string;
6+
export const version = "3.9.8" as string;
77

88
/**
99
* Type of objects whose values are all of the same type.

0 commit comments

Comments
 (0)