Skip to content

Commit

Permalink
Bump version to 4.3.1-rc and LKG
Browse files Browse the repository at this point in the history
  • Loading branch information
typescript-bot committed May 9, 2021
1 parent bab601b commit d805ce8
Show file tree
Hide file tree
Showing 12 changed files with 14,555 additions and 13,349 deletions.
10 changes: 8 additions & 2 deletions lib/protocol.d.ts
Expand Up @@ -501,6 +501,7 @@ declare namespace ts.server.protocol {
type OrganizeImportsScope = GetCombinedCodeFixScope;
interface OrganizeImportsRequestArgs {
scope: OrganizeImportsScope;
skipDestructiveCodeActions?: boolean;
}
interface OrganizeImportsResponse extends Response {
body: readonly FileCodeEdits[];
Expand Down Expand Up @@ -736,7 +737,7 @@ declare namespace ts.server.protocol {
* Definition response message. Gives text range for definition.
*/
interface DefinitionResponse extends Response {
body?: FileSpanWithContext[];
body?: DefinitionInfo[];
}
interface DefinitionInfoAndBoundSpanResponse extends Response {
body?: DefinitionInfoAndBoundSpan;
Expand Down Expand Up @@ -1725,9 +1726,14 @@ declare namespace ts.server.protocol {
isFromUncheckedFile?: true;
/**
* If true, this completion was for an auto-import of a module not yet in the program, but listed
* in the project package.json.
* in the project package.json. Used for telemetry reporting.
*/
isPackageJsonImport?: true;
/**
* If true, this completion was an auto-import-style completion of an import statement (i.e., the
* module specifier was inserted along with the imported identifier). Used for telemetry reporting.
*/
isImportStatementCompletion?: true;
/**
* A property to be sent back to TS Server in the CompletionDetailsRequest, along with `name`,
* that allows TS Server to look up the symbol represented by the completion item, disambiguating
Expand Down
3,811 changes: 1,898 additions & 1,913 deletions lib/tsc.js

Large diffs are not rendered by default.

4,885 changes: 2,587 additions & 2,298 deletions lib/tsserver.js

Large diffs are not rendered by default.

133 changes: 87 additions & 46 deletions lib/tsserverlibrary.d.ts

Large diffs are not rendered by default.

4,885 changes: 2,587 additions & 2,298 deletions lib/tsserverlibrary.js

Large diffs are not rendered by default.

123 changes: 79 additions & 44 deletions lib/typescript.d.ts

Large diffs are not rendered by default.

4,846 changes: 2,564 additions & 2,282 deletions lib/typescript.js

Large diffs are not rendered by default.

123 changes: 79 additions & 44 deletions lib/typescriptServices.d.ts

Large diffs are not rendered by default.

4,846 changes: 2,564 additions & 2,282 deletions lib/typescriptServices.js

Large diffs are not rendered by default.

4,238 changes: 2,100 additions & 2,138 deletions lib/typingsInstaller.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -2,7 +2,7 @@
"name": "typescript",
"author": "Microsoft Corp.",
"homepage": "https://www.typescriptlang.org/",
"version": "4.3.0-beta",
"version": "4.3.1-rc",
"license": "Apache-2.0",
"description": "TypeScript is a language for application scale JavaScript development",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/corePublic.ts
Expand Up @@ -5,7 +5,7 @@ namespace ts {
// The following is baselined as a literal template type without intervention
/** The version of the TypeScript compiler release */
// eslint-disable-next-line @typescript-eslint/no-inferrable-types
export const version = `${versionMajorMinor}.0-beta`;
export const version = "4.3.1-rc" as string;

/**
* Type of objects whose values are all of the same type.
Expand Down

0 comments on commit d805ce8

Please sign in to comment.