- Replace minimatch with glob-to-regexp
SchemaConfiguration.fileMatch
now supports glob patterns (e.g. /foo/**/bar.json')
- Update to
[email protected]
- Removed deprecated
findColorSymbols
- new API
FormattingOptions.insertFinalNewline
- new API
findLinks
return links for local$ref
links. ReplacesfindDefinition
which no longer returns results ( kept for API compatibility)
- new API
DocumentLanguageSettings.schemaValidation
. The severity of problems from schema validation. If set to 'ignore', schema validation will be skipped. If not set, 'warning' is used. - new API
DocumentLanguageSettings.schemaRequest
. The severity of problems that occurred while resolving and loading schemas. If set to 'ignore', schema resolving problems are not reported. If not set, 'warning' is used.
- new API
LanguageService.getMatchingSchemas
. Matches a document against its schema and list all AST nodes along with the matching sub schemas.
- New API
JSONSchema.suggestSortText
to set the sort order of completion proposals (VS Code specific JSON schema extension)
- New API
findDefinition
to find a definition of a$ref
link
- Support for exclusive file pattern starting with '!'. A file match consists of an array of patterns. A match succeeds when there is at least one pattern matching and last matching pattern does not start with '!'.
- Using
vscode-languageserver-textdocument
for TextDocument
- Added
DocumentSymbolsContext
andColorInformationContext
withresultLimit
andonResultLimitExceeded
.onResultLimitExceeded
is called when the result was cropped. - Added commit characters for completion proposals (if supported by ClientCapabilities)
- Warn when using draft-03 or draft-08 schemas
- Renamed
schema.allowsTrailingCommas
->schema.allowTrailingCommas
- Schemas can configure whether comments and/or trailing commas are permitted.
- New API
LanguageService.getSelectionRanges
to get semantic selection ranges. - Manage schema dependencies so that
resetSchema
also resets schemas that depend on the schema.
- New API
LanguageServiceParams.ClientCapabilities
to define what LSP capabilities the client supports. - For the best experiences, clients should always use
LanguageServiceParams.ClientCapabilities.LATEST
, which has all the latest LSP capabilities enabled. LanguageServiceParams.ClientCapabilities
can allowMarkupKind.Markdown
as valid documentationFormat (used by completions if schemas usemarkdownDescription
ormarkdownEnumDescriptions
).- Snippets can now provide the description also in markdown format.
- Bundled draft-07-schema with descriptions.
- Propose
examples
in code completions.
- support for JSON schema draft-07
- New API
LanguageService.findDocumentSymbols2
to get document symbols asDocumentSymbol[]
- New API
LanguageService.getFoldingRanges
- doValidation can also be used with a given schema
- new APIs:
newJSONDocument
to create a JSON document from a custom AST - new API types: ObjectASTNode, PropertyASTNode, ArrayASTNode, StringASTNode, NumberASTNode, BooleanASTNode, NullASTNode that allow creating a custom AST
- Provide ems modules in lib/esm
- Added document specific validation parameters:
DocumentLanguageSettings
- API to define the severity of reported comments and trailing commas (
DocumentLanguageSettings.comments
,DocumentLanguageSettings.trailingCommas
)
- Changed parameters of API
LanguageService.getColorPresentations
to separate color and range . 2.0.19 / 2017-09-21 =================== - New API
LanguageService.getColorPresentations
returning presentations for a given color. - New API type
ColorPresentation
added.
- New API
LanguageService.findDocumentColors
returning the location and value of all colors in a document. - New API types
ColorInformation
andColor
added. - Deprecated
LanguageService.findColorSymbols
. UseLanguageService.findDocumentColors
instead.
- error code for CommentsNotAllowed
- Add new API findColorSymbols that returns all color values in a JSON document. To mark a value as a color, specify
"format": "color"
in the schema.
- Support for custom schema property 'patternErrorMessage'. The message is used as error message if the object is of type string and has a 'pattern' property that does not match the object to validate.
- Fixes for formatting content with errors
- Updating to language server type 3.0 API