dependabot[bot] opened a new pull request, #1545: URL: https://github.com/apache/daffodil-vscode/pull/1545
Bumps [jsonc-parser](https://github.com/microsoft/node-jsonc-parser) from 3.2.1 to 3.3.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/microsoft/node-jsonc-parser/releases">jsonc-parser's releases</a>.</em></p> <blockquote> <h2>v3.3.1</h2> <h2>Changes:</h2> <ul> <li><a href="https://redirect.github.com/microsoft/node-jsonc-parser/issues/92">#92</a>: remove exports, prepare 3.3.1</li> </ul> <p>This list of changes was <a href="https://dev.azure.com/monacotools/Monaco/_build/results?buildId=280483&view=logs">auto generated</a>.</p> <h2>v3.3.0</h2> <h2>Changes:</h2> <h3>Feature Requests:</h3> <ul> <li><a href="https://redirect.github.com/microsoft/node-jsonc-parser/issues/11">#11</a>: Can we have a "insertFinalNewline" option in "FormattingOptions"?</li> <li><a href="https://redirect.github.com/microsoft/node-jsonc-parser/issues/4">#4</a>: Source map referenced but not included in published package</li> </ul> <h3>Bugs:</h3> <ul> <li><a href="https://redirect.github.com/microsoft/node-jsonc-parser/issues/33">#33</a>: Formatting valid json content is causing an invalid json</li> <li><a href="https://redirect.github.com/microsoft/node-jsonc-parser/issues/40">#40</a>: parseTree() returns <code>undefined</code> on empty string input</li> </ul> <h3>Others:</h3> <ul> <li><a href="https://redirect.github.com/microsoft/node-jsonc-parser/issues/90">#90</a>: prepare 3.3.0</li> <li><a href="https://redirect.github.com/microsoft/node-jsonc-parser/issues/88">#88</a>: Allow the visitor to cease callbacks</li> <li><a href="https://redirect.github.com/microsoft/node-jsonc-parser/issues/89">#89</a>: Bump braces from 3.0.2 to 3.0.3</li> </ul> <!-- raw HTML omitted --> <ul> <li><a href="https://redirect.github.com/microsoft/node-jsonc-parser/issues/84">#84</a>: prepare 3.2.1</li> <li><a href="https://redirect.github.com/microsoft/node-jsonc-parser/issues/81">#81</a>: perf(format): cache breaklines and spaces as much as possible</li> <li><a href="https://redirect.github.com/microsoft/node-jsonc-parser/issues/79">#79</a>: update dependencies</li> <li><a href="https://redirect.github.com/microsoft/node-jsonc-parser/issues/75">#75</a>: ci: add batch</li> <li><a href="https://redirect.github.com/microsoft/node-jsonc-parser/issues/72">#72</a>: delete pr-chat action</li> <li><a href="https://redirect.github.com/microsoft/node-jsonc-parser/issues/71">#71</a>: add publish pipeline & cleanup ci</li> <li><a href="https://redirect.github.com/microsoft/node-jsonc-parser/issues/70">#70</a>: set <code>preserveConstEnums: true</code>, switch to es2020</li> <li><a href="https://redirect.github.com/microsoft/node-jsonc-parser/issues/69">#69</a>: sort edits in applyEdits</li> <li><a href="https://redirect.github.com/microsoft/node-jsonc-parser/issues/66">#66</a>: An additional parameter keepLines has been added into the formatting options which allows to keep the original line formatting</li> <li><a href="https://redirect.github.com/microsoft/node-jsonc-parser/issues/64">#64</a>: Adding Microsoft SECURITY.MD</li> <li><a href="https://redirect.github.com/microsoft/node-jsonc-parser/issues/62">#62</a>: Add JSON path supplier parameter to visitor functions</li> <li><a href="https://redirect.github.com/microsoft/node-jsonc-parser/issues/44">#44</a>: findNodeAtLocation does not handle incomplete property pair</li> <li><a href="https://redirect.github.com/microsoft/node-jsonc-parser/issues/61">#61</a>: Update API section in README</li> <li><a href="https://redirect.github.com/microsoft/node-jsonc-parser/issues/53">#53</a>: Clarify whether / how <code>Edit[]</code> can be concatenated</li> <li><a href="https://redirect.github.com/microsoft/node-jsonc-parser/issues/46">#46</a>: Non-standard whitespace handling</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/microsoft/node-jsonc-parser/blob/main/CHANGELOG.md">jsonc-parser's changelog</a>.</em></p> <blockquote> <h1>3.3.0 2022-06-24</h1> <ul> <li><code>JSONVisitor.onObjectBegin</code> and <code>JSONVisitor.onArrayBegin</code> can now return <code>false</code> to instruct the visitor that no children should be visited.</li> </ul> <h1>3.2.0 2022-08-30</h1> <ul> <li>update the version of the bundled Javascript files to <code>es2020</code>.</li> <li>include all <code>const enum</code> values in the bundled JavaScript files (<code>ScanError</code>, <code>SyntaxKind</code>, <code>ParseErrorCode</code>).</li> </ul> <h1>3.1.0 2022-07-07</h1> <ul> <li>added new API <code>FormattingOptions.keepLines</code> : It leaves the initial line positions in the formatting.</li> </ul> <h1>3.0.0 2020-11-13</h1> <ul> <li>fixed API spec for <code>parseTree</code>. Can return <code>undefine</code> for empty input.</li> <li>added new API <code>FormattingOptions.insertFinalNewline</code>.</li> </ul> <h1>2.3.0 2020-07-03</h1> <ul> <li>new API <code>ModificationOptions.isArrayInsertion</code>: If <code>JSONPath</code> refers to an index of an array and <code>isArrayInsertion</code> is <code>true</code>, then <code>modify</code> will insert a new item at that location instead of overwriting its contents.</li> <li><code>ModificationOptions.formattingOptions</code> is now optional. If not set, newly inserted content will not be formatted.</li> </ul> <h1>2.2.0 2019-10-25</h1> <ul> <li>added <code>ParseOptions.allowEmptyContent</code>. Default is <code>false</code>.</li> <li>new API <code>getNodeType</code>: Returns the type of a value returned by parse.</li> <li><code>parse</code>: Fix issue with empty property name</li> </ul> <h1>2.1.0 2019-03-29</h1> <ul> <li><code>JSONScanner</code> and <code>JSONVisitor</code> return lineNumber / character.</li> </ul> <h1>2.0.0 2018-04-12</h1> <ul> <li>renamed <code>Node.columnOffset</code> to <code>Node.colonOffset</code></li> <li>new API <code>getNodePath</code>: Gets the JSON path of the given JSON DOM node</li> <li>new API <code>findNodeAtOffset</code>: Finds the most inner node at the given offset. If <code>includeRightBound</code> is set, also finds nodes that end at the given offset.</li> </ul> <h1>1.0.3 2018-03-07</h1> <ul> <li>provide ems modules</li> </ul> <h1>1.0.2 2018-03-05</h1> <ul> <li>added the <code>visit.onComment</code> API, reported when comments are allowed.</li> <li>added the <code>ParseErrorCode.InvalidCommentToken</code> enum value, reported when comments are disallowed.</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/microsoft/node-jsonc-parser/commit/3c9b4203d663061d87d4d34dd0004690aef94db5"><code>3c9b420</code></a> remove exports, prepare 3.3.1 (<a href="https://redirect.github.com/microsoft/node-jsonc-parser/issues/92">#92</a>)</li> <li><a href="https://github.com/microsoft/node-jsonc-parser/commit/4f3cf98cce5634cf181786324dba09a2bc70e78a"><code>4f3cf98</code></a> prepare 3.3.0 (<a href="https://redirect.github.com/microsoft/node-jsonc-parser/issues/90">#90</a>)</li> <li><a href="https://github.com/microsoft/node-jsonc-parser/commit/9e24580686c66b54d8edfed95843de7daf446a6f"><code>9e24580</code></a> Allow the visitor to cease callbacks (<a href="https://redirect.github.com/microsoft/node-jsonc-parser/issues/88">#88</a>)</li> <li><a href="https://github.com/microsoft/node-jsonc-parser/commit/cfe32acde658a82f2fb7c750227866251d41d69b"><code>cfe32ac</code></a> Bump braces from 3.0.2 to 3.0.3 (<a href="https://redirect.github.com/microsoft/node-jsonc-parser/issues/89">#89</a>)</li> <li>See full diff in <a href="https://github.com/microsoft/node-jsonc-parser/compare/v3.2.1...v3.3.1">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
