This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/npm_and_yarn/chai-5.2.0 in repository https://gitbox.apache.org/repos/asf/daffodil-vscode.git
discard c1b63bf Bump chai from 4.4.1 to 5.2.0 add 360602f Bump svelte-check from 3.6.3 to 3.8.6 add 1acfd6e Bump svelte-loader from 3.1.9 to 3.2.4 add 384b8ce Bump unzip-stream from 0.3.2 to 0.3.4 add 4cdefd8 Bump actions/setup-node from 4.1.0 to 4.2.0 add 04b6ab7 Bump actions/setup-java from 4.6.0 to 4.7.0 add b7e2b25 Bump scala-steward-org/scala-steward-action from 2.72.0 to 2.75.0 add c7c6402 Use ubuntu-22.04 for CI workflows. add 75e35ec Updated launch config default values when creating new config from the wizard and fixed bug of restting launch wizard when switching open tabs add fc11fbd Reworked Data Editor Heartbeat Structure - Resolved continous logging of `getServerHeartbeat` requests - Extracted heartbeat functionality from DataEditorClient add 439d4d5 Respect dataEditor global settings in settings.json, then the local ones in launch.json add 0592551 Upgrade Ωedit to v0.9.87 (fixes #1128) add b535594 Consolidate Development Information Into Development.md add 2e25f36 Update to Apache Daffodil 3.10.0 add 7f4aa30 Added .xml extension after .prev to be recognized as an xml file for xml tag highlighting. add a711c0c Add root element and namespace auto suggestions add d22e922 Add left over data message to debugger and extension add 6c56a18 Fix to remove dfdl prefix for dfdl attributes if the element containing the attributes is a dfdl element Changed _XmlItem class name to XmlItem Changed changed XmlItem variable name to xmlItem Added dfdl intellisense checklist Added intellisense test dfdl schema files to src/tests/data Corrected line number references in intellisense testing checklist add bc1f084 Bump @types/vscode-webview from 1.57.4 to 1.57.5 add 446f6ce Bump @vscode/debugadapter-testsupport from 1.65.0 to 1.68.0 add c117bd2 Bump @types/node from 20.11.30 to 22.13.7 add 8387831 -fixes an issue where the data editor server failed to close at the completion of debugging add 5a720ad Update popup messages for debugger errors. add 1e879e4 Bump tar-fs from 1.16.3 to 1.16.4 add 33a1f57 Add GitHub action to create release candidates add 496ff94 Fix typo in release-candidate action name add e379eae Create script to update the version inside of package.json and VERSION add b2fd9a5 Address Inserting dfdl:defineEscapeScheme Discrepancies add cd2f20a Resolve issue that could cause the debugger to hang add fd950d3 Address incorrect relative paths when Copying or Appending TDML add ca82be0 Fixes an issue where the incorrect nsprefix was applies to dfdl element tags add 4b5ad25 Test if release candidate SVN secrets are set correctly add 18cba5f Revert "Test if release candidate SVN secrets are set correctly" add a0c326a Bump chai from 4.4.1 to 5.2.0 This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the branch are not in the new version. This situation occurs when a user --force pushes a change and generates a repository containing something like this: * -- * -- B -- O -- O -- O (c1b63bf) \ N -- N -- N refs/heads/dependabot/npm_and_yarn/chai-5.2.0 (a0c326a) You should already have received notification emails for all of the O revisions, and so the following emails describe only the N revisions from the common base, B. Any revisions marked "omit" are not gone; other references still refer to them. Any revisions marked "discard" are gone forever. No new revisions were added by this update. Summary of changes: .github/workflows/CI.yml | 18 +- .github/workflows/nightly.yml | 28 +- .github/workflows/release-candidate.yml | 75 +++ .github/workflows/scala-steward.yml | 4 +- DEVELOPMENT.md | 506 +++++++++++++++++++-- README.md | 6 +- VERSION | 1 + build.sbt | 8 +- build/package/LICENSE | 52 +++ build/yarn-scripts.ts | 57 +++ .../org.apache.daffodil.debugger.dap/Parse.scala | 51 ++- .../org.apache.daffodil.debugger.dap/Utils.scala | 72 +++ package.json | 20 +- project/Rat.scala | 2 + src/adapter/activateDaffodilDebug.ts | 6 + src/adapter/daffodilDebugErrors.ts | 56 +++ src/adapter/daffodilEvent.ts | 6 +- src/daffodilDebugger/daffodil.ts | 39 +- src/dataEditor/config/Extract.ts | 27 +- src/dataEditor/dataEditorClient.ts | 141 ++---- .../include/server/Sessions.ts} | 39 +- .../include/server/heartbeat/HeartBeatInfo.ts | 10 +- .../include/server/heartbeat/index.ts} | 33 +- src/infoset.ts | 4 +- src/language/providers/attributeCompletion.ts | 34 +- src/language/providers/attributeHover.ts | 12 +- src/language/providers/attributeValueCompletion.ts | 7 +- src/language/providers/closeElement.ts | 6 +- src/language/providers/closeElementSlash.ts | 17 +- src/language/providers/closeUtils.ts | 7 +- src/language/providers/elementCompletion.ts | 22 +- .../providers/intellisense/elementItems.ts | 2 +- src/language/providers/utils.ts | 131 ++++-- src/launchWizard/launchWizard.ts | 13 +- src/launchWizard/script.js | 10 +- .../activated.test.ts => rootCompletion/index.ts} | 16 +- src/rootCompletion/utils.ts | 192 ++++++++ src/tdmlEditor/utilities/tdmlXmlUtils.ts | 34 +- src/tests/DfdlIntellisenseTestingChecklist.md | 176 +++++++ src/tests/README.md | 4 + src/tests/data/helloWorldPlusLongForm.dfdl.xsd | 79 ++++ ....dfdl.xsd => testDfdlMixedLineFormats.dfdl.xsd} | 61 ++- src/tests/runTest.ts | 2 +- src/utils.ts | 56 +++ webpack/ext-dev.webpack.config.js | 1 + webpack/ext-package.webpack.config.js | 1 + yarn.lock | 211 ++++----- 47 files changed, 1871 insertions(+), 484 deletions(-) create mode 100644 .github/workflows/release-candidate.yml create mode 100644 VERSION create mode 100644 debugger/src/main/scala/org.apache.daffodil.debugger.dap/Utils.scala create mode 100644 src/adapter/daffodilDebugErrors.ts copy src/{svelte/src/utilities/ByteCategories/IIndication.ts => dataEditor/include/server/Sessions.ts} (52%) copy src/{language/providers/intellisense/commonItems.ts => dataEditor/include/server/heartbeat/index.ts} (50%) copy src/{tests/suite/language/activated.test.ts => rootCompletion/index.ts} (77%) create mode 100644 src/rootCompletion/utils.ts create mode 100644 src/tests/DfdlIntellisenseTestingChecklist.md create mode 100644 src/tests/data/helloWorldPlusLongForm.dfdl.xsd copy src/tests/data/{test.dfdl.xsd => testDfdlMixedLineFormats.dfdl.xsd} (57%)