Skip to content

Commit 9df51cb

Browse files
authored
Merge pull request #984 from wso2/micro-integrator-3.0.1
Merge "micro-integrator-3.0.1" into "release-mi"
2 parents 88652c6 + 13c0ef3 commit 9df51cb

File tree

550 files changed

+48475
-13248
lines changed

Some content is hidden

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

550 files changed

+48475
-13248
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ jobs:
352352
uses: actions/download-artifact@v4
353353
continue-on-error: true
354354
with:
355-
name: ${{ matrix.name }}-e2e-test-results-${{ matrix.group }}-${{ env.PREVIOUS_ATTEMPT }}
355+
name: ${{ matrix.name }}-e2e-test-results-${{ matrix.os }}-${{ matrix.group }}-${{ env.PREVIOUS_ATTEMPT }}
356356
path: workspaces/${{ matrix.path }}/test-results
357357

358358
- name: install packages
@@ -413,7 +413,7 @@ jobs:
413413
uses: actions/upload-artifact@v4
414414
if: always()
415415
with:
416-
name: ${{ matrix.name }}I-e2e-test-results-${{ matrix.os }}-${{ matrix.group }}-${{ github.run_attempt }}
416+
name: ${{ matrix.name }}-e2e-test-results-${{ matrix.os }}-${{ matrix.group }}-${{ github.run_attempt }}
417417
path: workspaces/${{ matrix.path }}/test-results/**
418418
retention-days: 5
419419
include-hidden-files: true

.vscode/launch.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@
3434
"LSDEBUG": "false",
3535
"WEB_VIEW_WATCH_MODE": "true",
3636
"WEB_VIEW_DEV_HOST": "http://localhost:9000",
37-
"BALLERINA_STAGE_CENTRAL": "false"
37+
"BALLERINA_STAGE_CENTRAL": "false",
38+
"TRACE_WEB_VIEW_DEV_HOST": "http://localhost:9001"
3839
},
3940
"outFiles": [
4041
"${workspaceFolder}/workspaces/ballerina/ballerina-extension/dist/**/*.js",

.vscode/tasks.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
{
22
"version": "2.0.0",
33
"tasks": [
4+
{
5+
"label": "ballerina-extension: test-compile",
6+
"type": "shell",
7+
"options": {
8+
"cwd": "${workspaceFolder}/workspaces/ballerina/ballerina-extension"
9+
},
10+
"command": "pnpm",
11+
"args": ["run", "test-compile"],
12+
"problemMatcher": ["$tsc"]
13+
},
414
{
515
"label": "watch-all",
616
"dependsOn": ["watch-ballerina", "watch-bi"]

common/config/rush/.pnpmfile.cjs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,12 @@ module.exports = {
5757
if (pkg.dependencies['form-data']) {
5858
pkg.dependencies['form-data'] = '^4.0.4';
5959
}
60+
if (pkg.dependencies['min-document']) {
61+
pkg.dependencies['min-document'] = '^2.19.1';
62+
}
63+
if (pkg.dependencies['js-yaml']) {
64+
pkg.dependencies['js-yaml'] = '^4.1.1';
65+
}
6066
}
6167

6268
if (pkg.devDependencies) {
@@ -97,6 +103,9 @@ module.exports = {
97103
if (pkg.devDependencies['form-data']) {
98104
pkg.devDependencies['form-data'] = '^4.0.4';
99105
}
106+
if (pkg.devDependencies['min-document']) {
107+
pkg.devDependencies['min-document'] = '^2.19.1';
108+
}
100109
}
101110

102111
return pkg;

0 commit comments

Comments
 (0)