You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@daffodil.apache.org by gi...@apache.org on 2023/04/21 16:07:24 UTC

[daffodil-vscode] branch dependabot/npm_and_yarn/vscode/test-electron-2.3.0 updated (66dd926 -> 01da9b7)

This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch dependabot/npm_and_yarn/vscode/test-electron-2.3.0
in repository https://gitbox.apache.org/repos/asf/daffodil-vscode.git


 discard 66dd926  Bump @vscode/test-electron from 2.1.5 to 2.3.0
     add 6af6ccb  Data Editor UI has togglable color mode.
     add b006b46  gotoOffset operation revised.
     add 429ec26  Updated color theme component visibility.
     add f7cfe93  Clear selection data when ephemeral windows close
     add dda551d      - fix problems with tags with multi-line attributes     - remove an incorrect newline in the hiddenGroupRef snippet
     add 2d87401  Revised Search and Replace fieldset in header
     add 57513b4  Provides the ability to re-select values of attributes items - add logic to mitigate missing dfdl prefixes - tweak logic to determine if cursor is between quotes - Fixes incorrect velues triggered by nested elements - fixes the resulting choice when intellisense is trigger between two closing tags on a multi tag line - fix wrong suggestions at end of schema open tag - fix incorrect suggestion at beginning and end of a multi tag line - fix broken attribute suggestions fro [...]
     add c66e6c1  add Hitesh Dalsania as a project collaborator
     add 1e2c687  Bump scala-steward-org/scala-steward-action from 2.50.0 to 2.51.0
     add 99e8e75  Bump actions/checkout from 3.3.0 to 3.5.0
     add 0a1b493  Bump actions/setup-java from 3.10.0 to 3.11.0
     add 02410e1  Bump prettier from 2.8.3 to 2.8.7
     add 94c5a4a  Bump @vscode/debugadapter from 1.51.0 to 1.59.0
     add 884f8fd  upgrade to omega-edit 0.9.63
     add d285cc1  omega-edit client get specified port from launch.json
     add e2d4072  Search Scrolling Index Lag Fixed
     add f3b6295  Update xml2js to be 0.5.0
     add 01da9b7  Bump @vscode/test-electron from 2.1.5 to 2.3.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   (66dd926)
            \
             N -- N -- N   refs/heads/dependabot/npm_and_yarn/vscode/test-electron-2.3.0 (01da9b7)

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                           |   12 +-
 .github/workflows/nightly.yml                      |    4 +-
 .github/workflows/scala-steward.yml                |    2 +-
 package.json                                       |   48 +-
 src/adapter/activateDaffodilDebug.ts               |    4 +-
 src/dataEdit/client.ts                             |  286 ++++
 src/{omega_edit => dataEdit}/dataEditWebView.ts    |  189 +--
 .../svelteWebviewInitializer.ts                    |    0
 src/{omega_edit => dataEdit}/utils.ts              |   62 +-
 src/language/dfdl.ts                               |    2 +
 src/language/providers/attributeCompletion.ts      |   11 +-
 src/language/providers/attributeValueCompletion.ts |  145 ++
 src/language/providers/closeElement.ts             |   21 +-
 src/language/providers/closeElementSlash.ts        |    9 +-
 src/language/providers/closeUtils.ts               |   44 +-
 src/language/providers/elementCompletion.ts        |   45 +-
 .../providers/intellisense/attributeItems.ts       |    4 +-
 .../providers/intellisense/attributeValueItems.ts  |  292 ++++
 .../providers/intellisense/elementItems.ts         |   19 +-
 src/language/providers/utils.ts                    |  171 +-
 src/omega_edit/client.ts                           |  191 ---
 src/styles/styles.css                              |    2 +-
 src/svelte/src/components/dataEditor.svelte        | 1627 +++++++++++---------
 src/svelte/src/stores/index.ts                     |    6 +-
 .../svelte/src/utilities/colorScheme.ts            |   40 +-
 src/svelte/src/utilities/message.ts                |    1 +
 src/tests/runTest.ts                               |    7 +-
 src/tests/suite/dataEditor.test.ts                 |  146 +-
 src/tests/suite/language/items.test.ts             |    3 +
 yarn.lock                                          |  346 ++---
 31 files changed, 2389 insertions(+), 1352 deletions(-)
 create mode 100644 src/dataEdit/client.ts
 rename src/{omega_edit => dataEdit}/dataEditWebView.ts (77%)
 rename src/{omega_edit => dataEdit}/svelteWebviewInitializer.ts (100%)
 rename src/{omega_edit => dataEdit}/utils.ts (82%)
 create mode 100644 src/language/providers/attributeValueCompletion.ts
 create mode 100644 src/language/providers/intellisense/attributeValueItems.ts
 delete mode 100644 src/omega_edit/client.ts
 copy server/core/src/main/scala/org.apache.daffodil.debugger.dap/Next.scala => src/svelte/src/utilities/colorScheme.ts (58%)