PluginProbe
Code Block Pro – Beautiful Syntax Highlighting / 1.11.0
Code Block Pro – Beautiful Syntax Highlighting v1.11.0
1.27.1 1.27.2 1.27.3 1.27.4 1.27.5 1.27.6 1.27.7 1.28.0 1.3.0 1.4.0 1.5.0 1.5.1 1.5.2 1.6.0 1.7.0 1.8.0 1.9.0 1.9.1 1.9.2 1.9.3 trunk 1.1.0 1.10.0 1.11.0 1.11.1 All 63 releases
code-block-pro / build / shiki / node_modules / jsonc-parser / CHANGELOG.md

CHANGELOG.md in Code Block Pro – Beautiful Syntax Highlighting 1.11.0, at build/shiki/node_modules/jsonc-parser/CHANGELOG.md

72 lines 2.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1
2 3.2.0 2022-08-30
3 =================
4 - update the version of the bundled Javascript files to `es2020`.
5 - include all `const enum` values in the bundled JavaScript files (`ScanError`, `SyntaxKind`, `ParseErrorCode`).
6
7 3.1.0 2022-07-07
8 ==================
9 * added new API `FormattingOptions.keepLines` : It leaves the initial line positions in the formatting.
10
11 3.0.0 2020-11-13
12 ==================
13 * fixed API spec for `parseTree`. Can return `undefine` for empty input.
14 * added new API `FormattingOptions.insertFinalNewline`.
15
16
17 2.3.0 2020-07-03
18 ==================
19 * new API `ModificationOptions.isArrayInsertion`: If `JSONPath` refers to an index of an array and `isArrayInsertion` is `true`, then `modify` will insert a new item at that location instead of overwriting its contents.
20 * `ModificationOptions.formattingOptions` is now optional. If not set, newly inserted content will not be formatted.
21
22
23 2.2.0 2019-10-25
24 ==================
25 * added `ParseOptions.allowEmptyContent`. Default is `false`.
26 * new API `getNodeType`: Returns the type of a value returned by parse.
27 * `parse`: Fix issue with empty property name
28
29 2.1.0 2019-03-29
30 ==================
31 * `JSONScanner` and `JSONVisitor` return lineNumber / character.
32
33 2.0.0 2018-04-12
34 ==================
35 * renamed `Node.columnOffset` to `Node.colonOffset`
36 * new API `getNodePath`: Gets the JSON path of the given JSON DOM node
37 * new API `findNodeAtOffset`: Finds the most inner node at the given offset. If `includeRightBound` is set, also finds nodes that end at the given offset.
38
39 1.0.3 2018-03-07
40 ==================
41 * provide ems modules
42
43 1.0.2 2018-03-05
44 ==================
45 * added the `visit.onComment` API, reported when comments are allowed.
46 * added the `ParseErrorCode.InvalidCommentToken` enum value, reported when comments are disallowed.
47
48 1.0.1
49 ==================
50 * added the `format` API: computes edits to format a JSON document.
51 * added the `modify` API: computes edits to insert, remove or replace a property or value in a JSON document.
52 * added the `allyEdits` API: applies edits to a document
53
54 1.0.0
55 ==================
56 * remove nls dependency (remove `getParseErrorMessage`)
57
58 0.4.2 / 2017-05-05
59 ==================
60 * added `ParseError.offset` & `ParseError.length`
61
62 0.4.1 / 2017-04-02
63 ==================
64 * added `ParseOptions.allowTrailingComma`
65
66 0.4.0 / 2017-02-23
67 ==================
68 * fix for `getLocation`. Now `getLocation` inside an object will always return a property from inside that property. Can be empty string if the object has no properties or if the offset is before a actual property `{ "a": { | }} will return location ['a', ' ']`
69
70 0.3.0 / 2017-01-17
71 ==================
72 * Updating to typescript 2.0