Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update dependency typescript-language-server to ^0.11.0 #69

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 17, 2020

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
typescript-language-server ^0.3.7 -> ^0.11.0 age adoption passing confidence

Release Notes

typescript-language-server/typescript-language-server

v0.11.2

Compare Source

Bug Fixes
  • apply refactoring returns -1 positions in ranges (#​502) (5f52db0)

v0.11.1

Compare Source

Bug Fixes

v0.11.0

Compare Source

Features
  • add support for rename prefixText and suffixText on rename (#​478) (b3c8535)
0.10.1 (2022-05-18)
Bug Fixes
  • pin old version of LSP libraries for node <14 compatibility (#​467) (55600e1)

v0.10.1

Compare Source

v0.10.0

Compare Source

Features
0.9.7 (2022-02-27)
Bug Fixes
  • add more logging for resolving user-specified tsserver (#​412) (7139a32)
  • help users resolve no valid tsserver version error (#​337) (d835543)

v0.9.7

Compare Source

v0.9.6

Compare Source

  • fix: don't transform zipfile URIs from Vim (#​386)

v0.9.5

Compare Source

  • fix: don't transform Yarn zipfile URIs (#​384)

v0.9.4

Compare Source

  • fix: call configure before completion resolve (#​377)

v0.9.3

Compare Source

  • fix: wait for tsserver configuration requests to finish (#​372)

v0.9.2

Compare Source

  • fix: use correct name for the addMissingImports code action (#​371)

v0.9.1

Compare Source

  • fix: don't use the postinstall script

v0.9.0

Compare Source

  • feat: implement additional code actions for handling auto-fixing (#​318)

  • feat: report progress when loading the project (#​326)

  • feat: add new preferences from typescript 4.5.3 (#​304)

  • fix: correct matching of "only" kinds provided by the client (#​334)

  • fix: pass format options for organizing import (#​348)

  • fix: use snippet type for jsx attribute completions (#​362)

v0.8.1

Compare Source

  • fix: lookup workspace typescript in dirs higher up the tree also (#​314)

v0.8.0

Compare Source

  • feat: implement semantic tokens support (#​290)

  • feat: add support for snippet completions for methods/functions (#​303)

  • feat: ability to ignore diagnostics by code (#​272)
    Adds new diagnostics.ignoredCodes workspace setting to ignore specific diagnostics.

  • feat: add npmLocation option to specify NPM location (#​293)

  • fix: don't announce support for codeActionKinds (#​289)

  • fix: mark import completions as snippets (#​291)

  • fix: specify minimum node version to be v12 (#​301)

  • fix: ensure that the tsserver subprocess uses forked node instance (#​292)
    Potentially BREAKING. The lookup of tsserver was refactored to never use spawn logic but instead always fork the current node instance. See more info in the PR.

  • fix: exit the server if tsserver process crashes (#​305)

  • fix: respect "includeDeclaration" for references request (#​306)

v0.7.1

Compare Source

  • fix: add missing semver dependency (#​288)

v0.7.0

Compare Source

Breaking

Changes to default options sent to tsserver could affect behavior (hopefully for the better). Read changes below for more details.

Changes
  • feat: include import specifier for import completions (#​281)
    For completions that import from another package, the completions will include a "detail" field with the name of the module.

    Also aligned some other logic with the typescript language services used in VSCode:

    • annotate the completions with the local name of the import when completing a path in import foo from '...'
    • update completion "sortText" regardless if the completion "isRecommended"
  • feat: allow skip destructive actions on running OrganizeImports (#​228)
    Add support for the new skipDestructiveCodeActions argument to TypeScript's organize imports feature - [1] to support [2].

    Support is added in two places:

    • Automatically inferring the proper value based on diagnostics for the file when returning code actions.
    • Supporting sending it when manually executing the organize imports action.

    Also added documentation to the readme about the supported commands that can be manually executed.

    [1]https://github.com/microsoft/TypeScript/issues/430511
    https://github.com/apexskier/nova-typescript/issues/273es/273

  • feat: support running server on files without root workspace (#​286)
    The tsserver seems to be good at inferring the project configuration when opening single files without a workspace so don't crash on missing rootPath.

  • feat: add disableAutomaticTypingAcquisition option to disable automatic type acquisition (#​285)

  • feat: update default tsserver options (#​284)
    Set the following additional options by default:
    allowRenameOfImportPath: true,
    displayPartsForJSDoc: true,
    generateReturnInDocTemplate: true,
    includeAutomaticOptionalChainCompletions: true,
    includeCompletionsForImportStatements: true,
    includeCompletionsWithSnippetText: true,
    This aligns more with the default options of the typescript language services in VSCode.

  • feat: announce support for "source.organizeImports.ts-ls" action (#​283)
    Announcing support for that code action allows editors that support
    running code actions on save to automatically run the code action if
    the user has configured the editor with settings like

      "codeActionsOnSave": {
        "source.organizeImports": true,
        // or
        "source.organizeImports.ts-ls": true,
      },
  • chore: change default log level from "warn" to "info" (#​287)

v0.6.5

Compare Source

  • fix: normalize client and tsserver paths (#​275)
    This should ensure consistent behavior regradless of the platform. Previously some functionality could be malfunctioning on Windows depending on the LSP client used due to using non-normalized file paths.
  • Handle the APPLY_COMPLETION_CODE_ACTION command internally (#​270)
    This means that the clients that have implemented a custom handling for the _typescript.applyCompletionCodeAction command can remove that code.
    Without removing the custom handling everything should work as before but some edge cases might work better when custom handling is removed.
  • fix: ignore empty code blocks in content returned from textDocument/hover (#​276)
  • fix: remove unsupported --node-ipc and --socket options (#​278)

v0.6.4

Compare Source

  • Fix broken logging (#​267)
  • Add support for workspace/didChangeConfiguration and setting formatting options per language (#​268)
  • Add option to set inlayHints preferences by language (#​266)

v0.6.3

Compare Source

v0.6.2

Compare Source

  • Mark completion items as deprecated if JSDoc says so (#​227)
  • Add a maxTsServerMemory option (#​252)
  • (chore) Add Windows and Mac CI runner (#​248)

v0.6.1

Compare Source

v0.6.0

Compare Source

  • Refactor code actions to better support filtering against "only" (#​170)
  • Support Yarn PnP (#​220)
  • Update internal Typescript dependency from 3.9.0 to 4.3.4 (#​226)
  • Only publish diagnostics if client supports the capability (#​229)
  • Add support for "unnecessary" and "deprecated" diagnostic tags (#​230)
  • Upgrade vscode-languageserver (#​231)
  • Lookup tsserver using direct path rather than through .bin alias (#​234)
  • Don't pass deprecated options to Completion request

v0.5.4

Compare Source

  • Remove hardcoded request timeouts
  • Forward user preferences in initializationOptions
  • Use require.resolve for module resolution (#​195)

v0.5.2

Compare Source

Republished as v0.5.4 due to some misunderstandins with lerna

v0.5.1

Compare Source

v0.5.0

Compare Source

  • Fix empty documentHighlight results due to inconsistent path delimiters
  • Update command line option tssserver-log-verbosity to support off
  • Call compilerOptionsForInferredProjects during initialization (set good defaults when tsconfig.json missing)
  • Remove warnings from LSP completion results
  • Add support for formatting range (textDocument/rangeFormatting)
  • Ensure TSP request cancellation cancels timeout handling

v0.4.0

Compare Source

  • Upgraded to LSP 5.3.0 and Monaco 0.17.0. #​115

v0.3.8

Compare Source


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot added the chore label Feb 17, 2020
@renovate renovate bot force-pushed the renovate/typescript-language-server-0.x branch from 7e22708 to d679473 Compare January 22, 2021 11:54
@renovate renovate bot changed the title fix(deps): update dependency typescript-language-server to ^0.4.0 fix(deps): update dependency typescript-language-server to ^0.5.0 Jan 31, 2021
@renovate renovate bot force-pushed the renovate/typescript-language-server-0.x branch from d679473 to 4801f8e Compare October 18, 2021 19:54
@renovate renovate bot force-pushed the renovate/typescript-language-server-0.x branch 7 times, most recently from de03ea6 to 5a3ff82 Compare March 7, 2022 12:10
@renovate renovate bot changed the title fix(deps): update dependency typescript-language-server to ^0.5.0 fix(deps): update dependency typescript-language-server to ^0.9.0 Mar 7, 2022
@renovate renovate bot force-pushed the renovate/typescript-language-server-0.x branch 3 times, most recently from f6bbc45 to 0166b4a Compare March 7, 2022 20:47
@renovate renovate bot force-pushed the renovate/typescript-language-server-0.x branch 4 times, most recently from d2a32c1 to a8de522 Compare April 28, 2022 01:39
@renovate renovate bot force-pushed the renovate/typescript-language-server-0.x branch from a8de522 to 2cdd63b Compare May 12, 2022 09:29
@renovate renovate bot changed the title fix(deps): update dependency typescript-language-server to ^0.9.0 fix(deps): update dependency typescript-language-server to ^0.10.0 May 12, 2022
@renovate renovate bot force-pushed the renovate/typescript-language-server-0.x branch from 2cdd63b to e4dc8e9 Compare June 6, 2022 21:48
@renovate renovate bot changed the title fix(deps): update dependency typescript-language-server to ^0.10.0 fix(deps): update dependency typescript-language-server to ^0.11.0 Jun 7, 2022
@renovate
Copy link
Contributor Author

renovate bot commented Mar 25, 2023

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant