Skip to content

Commit c99639a

Browse files
Implemented extension message registry
1 parent 9a5b78d commit c99639a

68 files changed

Lines changed: 4544 additions & 2645 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.asf.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,11 @@ github:
2727
collaborators:
2828
- hdalsania
2929
- lrbarber
30+
- michael-hoke
31+
- JeremyYao
3032
- naga-panchumarty
31-
- adedoyinNteligen
33+
- CoverRyan
34+
- duboisfordwork
3235
notifications:
3336
commits: commits@daffodil.apache.org
3437
issues: commits@daffodil.apache.org

.github/workflows/CI.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
runs-on: ubuntu-22.04
4040
steps:
4141
- name: Check Single Commit
42-
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
42+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
4343
with:
4444
script: |
4545
const commits = await github.rest.pulls.listCommits({
@@ -80,7 +80,7 @@ jobs:
8080
java-version: ${{ matrix.java_version }}
8181

8282
- name: Install Node.js
83-
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
83+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
8484
with:
8585
node-version: ${{ matrix.node }}
8686
cache: yarn
@@ -154,7 +154,7 @@ jobs:
154154
uses: sbt/setup-sbt@508b753e53cb6095967669e0911487d2b9bc9f41 # v1
155155

156156
- name: Install Node.js
157-
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
157+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
158158
with:
159159
node-version: ${{ matrix.node }}
160160
cache: yarn

.github/workflows/documentaion.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
runs-on: ubuntu-22.04
3030
steps:
3131
- name: Check required confirmation checkbox
32-
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v7
32+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v7
3333
with:
3434
script: |
3535
const prBody = context.payload.pull_request?.body || "";

.github/workflows/licenses.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
fetch-depth: 0
8484

8585
- name: Install Node.js
86-
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
86+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
8787
with:
8888
node-version: ${{ matrix.node }}
8989
cache: yarn
@@ -121,7 +121,7 @@ jobs:
121121
fetch-depth: 0
122122

123123
- name: Install Node.js
124-
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
124+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
125125
with:
126126
node-version: ${{ matrix.node }}
127127
cache: yarn

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
java-version: ${{ matrix.java_version }}
8181

8282
- name: Install Node.js
83-
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
83+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
8484
with:
8585
node-version: ${{ matrix.node }}
8686

.github/workflows/release-candidate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
java-version: 17
6060

6161
- name: Install Node.js
62-
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v4.4.0
62+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v4.4.0
6363
with:
6464
node-version: 20
6565
cache: yarn

.vscode/extensions.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
"recommendations": [
2222
"esbenp.prettier-vscode",
2323
"vincaslt.highlight-matching-tag",
24-
"wmanth.jar-viewer"
24+
"wmanth.jar-viewer",
25+
"vitest.explorer"
2526
]
2627
}

.vscode/settings.json

Lines changed: 25 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -17,28 +17,29 @@
1717

1818
// Place your settings in this file to overwrite default and user settings.
1919
{
20-
"files.insertFinalNewline": true,
21-
"files.exclude": {
22-
"out": false // set this to true to hide the "out" folder with the compiled JS files
23-
},
24-
"search.exclude": {
25-
"out": true // set this to false to include "out" folder in search results
26-
},
27-
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts
28-
"typescript.tsc.autoDetect": "off",
29-
"files.watcherExclude": {
30-
"**/target": true
31-
},
32-
"[css]": {
33-
"editor.defaultFormatter": "esbenp.prettier-vscode",
34-
"editor.formatOnSave": true
35-
},
36-
"[javascript]": {
37-
"editor.defaultFormatter": "esbenp.prettier-vscode",
38-
"editor.formatOnSave": true
39-
},
40-
"[typescript]": {
41-
"editor.defaultFormatter": "esbenp.prettier-vscode",
42-
"editor.formatOnSave": true
43-
}
20+
"files.insertFinalNewline": true,
21+
"files.exclude": {
22+
"out": false // set this to true to hide the "out" folder with the compiled JS files
23+
},
24+
"search.exclude": {
25+
"out": true // set this to false to include "out" folder in search results
26+
},
27+
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts
28+
"typescript.tsc.autoDetect": "off",
29+
"files.watcherExclude": {
30+
"**/target": true
31+
},
32+
"[css]": {
33+
"editor.defaultFormatter": "esbenp.prettier-vscode",
34+
"editor.formatOnSave": true
35+
},
36+
"[javascript]": {
37+
"editor.defaultFormatter": "esbenp.prettier-vscode",
38+
"editor.formatOnSave": true
39+
},
40+
"[typescript]": {
41+
"editor.defaultFormatter": "esbenp.prettier-vscode",
42+
"editor.formatOnSave": true
43+
},
44+
"vitest.rootConfig": "./src/svelte/vitest.config.mjs"
4445
}

build/license_data.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,11 @@
3030
"ACE",
3131
"MulanPSL-2.0",
3232
"0BSD",
33-
"TCL"
33+
"TCL",
34+
"BlueOak-1.0.0"
3435
],
3536
"packages": [
36-
{
37+
{
3738
"name": "buffers",
3839
"license": "MIT",
3940
"allowed": true

0 commit comments

Comments
 (0)