This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch dependabot/npm_and_yarn/vsce-2.15.0
in repository https://gitbox.apache.org/repos/asf/daffodil-vscode.git
omit cee09e0 Bump vsce from 2.9.2 to 2.15.0
add 3d98b6e Add support for JSON formatting of infoset
add 7ad4374 Prepare 1.3.0-SNAPSHOT builds
add f2e3b7a omega-edit updates:
add 6369a2f Change name to "Apache Daffodilâ„¢ Extension for Visual Studio
Code"
add 5dd87ea Run daffodil-debugger in CI.
add eb9525f Rename the variable wholeLine to triggerText
add 1b2218b Bump scala-steward-org/scala-steward-action from 2.20.0 to
2.46.0
add 04bed3c Bump actions/checkout from 3.0.2 to 3.3.0
add dc3651a Bump actions/github-script from 6.1.0 to 6.3.3
add 8703fe1 Bump actions/setup-node from 3.3.0 to 3.6.0
add c058156 Bump actions/setup-java from 3.4.1 to 3.9.0
add 5052a20 allow for self-signed certs when dowloading test artifacts
over https (#405)
add d95fe54 Bump vsce from 2.9.2 to 2.15.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 (cee09e0)
\
N -- N -- N refs/heads/dependabot/npm_and_yarn/vsce-2.15.0
(d95fe54)
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:
.asf.yaml | 2 +-
.github/workflows/CI.yml | 32 +-
.github/workflows/nightly.yml | 57 ++
.github/workflows/scala-steward.yml | 2 +-
.gitignore | 5 +-
LICENSE | 10 +-
NOTICE | 2 +-
README.md | 10 +-
build.sbt | 5 +-
build/package/.vscodeignore | 2 +-
build/package/LICENSE | 10 +-
build/package/NOLICENSE | 2 +-
build/package/NONOTICE | 2 +-
build/package/NOTICE | 2 +-
build/scripts/omega_edit_download.ts | 122 ---
build/scripts/package.ts | 2 +-
package.json | 36 +-
.../org.apache.daffodil.debugger.dap/Parse.scala | 64 +-
src/adapter/activateDaffodilDebug.ts | 3 +
src/classes/artifact.ts | 7 +-
src/daffodil.ts | 1 +
src/daffodilDebugger.ts | 87 +--
src/daffodilDebuggerUtils.ts | 99 +++
src/infoset.ts | 6 +-
src/language/providers/attributeCompletion.ts | 44 +-
src/language/providers/closeElement.ts | 52 +-
src/language/providers/closeElementSlash.ts | 16 +-
src/language/providers/elementCompletion.ts | 10 +-
src/language/providers/endSingleBrace.ts | 6 +-
src/language/providers/utils.ts | 171 +++--
src/launchWizard/launchWizard.js | 5 +
src/launchWizard/launchWizard.ts | 31 +-
src/omega_edit/client.ts | 38 +-
src/omega_edit/server.ts | 85 --
src/omega_edit/utils.ts | 17 +
src/tests/data/test.dfdl.xsd | 52 +-
src/tests/runTest.ts | 36 +-
src/tests/suite/adapter.test.ts | 15 +-
.../{language/activated.test.ts => common.ts} | 15 +-
src/tests/suite/daffodil.test.ts | 37 +-
src/tests/suite/daffodilDebugger.test.ts | 91 +++
src/tests/suite/index.ts | 2 +-
src/tests/suite/omegaEdit.test.ts | 43 +-
src/tests/suite/utils.test.ts | 1 +
src/tests/suite/version.test.ts | 2 +-
src/utils.ts | 56 +-
yarn.lock | 851 ++++++++++-----------
47 files changed, 1204 insertions(+), 1042 deletions(-)
create mode 100644 .github/workflows/nightly.yml
delete mode 100644 build/scripts/omega_edit_download.ts
create mode 100644 src/daffodilDebuggerUtils.ts
delete mode 100644 src/omega_edit/server.ts
copy src/tests/suite/{language/activated.test.ts => common.ts} (73%)
create mode 100644 src/tests/suite/daffodilDebugger.test.ts