Skip to content

Commit e1a926f

Browse files
Merge branch 'dev' into hb-km-serverless
2 parents 7621b07 + c7bc996 commit e1a926f

58 files changed

Lines changed: 18802 additions & 18623 deletions

Some content is hidden

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

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# Each line is a file pattern followed by one or more owners.
33

44
# These owners will be the default owners for everything in the repo.
5-
* @Avijit-Microsoft @Roopan-Microsoft @Prajwal-Microsoft @dongbumlee @Vinay-Microsoft @aniaroramsft
5+
* @Avijit-Microsoft @Roopan-Microsoft @Prajwal-Microsoft @dongbumlee @Vinay-Microsoft @aniaroramsft @toherman-msft @nchandhi @dgp10801

.github/workflows/CI.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ on:
55
- main # Adjust this to the branch you want to trigger the deployment on
66
- dev
77
- demo
8+
paths:
9+
- 'infra/**'
10+
- 'App/**'
11+
- 'Deployment/**'
12+
- 'azure.yaml'
13+
- '.github/workflows/CI.yml'
14+
- '.github/workflows/test-automation.yml'
15+
- 'tests/**'
816
schedule:
917
- cron: "0 10,22 * * *" # Runs at 10:00 AM and 10:00 PM GMT
1018

@@ -25,7 +33,7 @@ jobs:
2533

2634
steps:
2735
- name: Checkout Code
28-
uses: actions/checkout@v4 # Checks out your repository
36+
uses: actions/checkout@v5 # Checks out your repository
2937

3038
- name: Install Azure CLI
3139
shell: bash

.github/workflows/broken-links-checker.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ jobs:
1616

1717
steps:
1818
- name: Checkout Repo
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020
with:
2121
fetch-depth: 0
2222

2323
# For PR : Get only changed markdown files
2424
- name: Get changed markdown files (PR only)
2525
id: changed-markdown-files
2626
if: github.event_name == 'pull_request'
27-
uses: tj-actions/changed-files@ed68ef82c095e0d48ec87eccea555d944a631a4c # v46
27+
uses: tj-actions/changed-files@24d32ffd492484c1d75e0c0b894501ddb9d30d62 # v46
2828
with:
2929
files: |
3030
**/*.md
@@ -34,10 +34,10 @@ jobs:
3434
- name: Check Broken Links in Changed Markdown Files
3535
id: lychee-check-pr
3636
if: github.event_name == 'pull_request' && steps.changed-markdown-files.outputs.any_changed == 'true'
37-
uses: lycheeverse/lychee-action@v2.4.1
37+
uses: lycheeverse/lychee-action@v2.6.1
3838
with:
3939
args: >
40-
--verbose --exclude-mail --no-progress --exclude ^https?://
40+
--verbose --no-progress --exclude ^https?://
4141
${{ steps.changed-markdown-files.outputs.all_changed_files }}
4242
failIfEmpty: false
4343
env:
@@ -47,11 +47,11 @@ jobs:
4747
- name: Check Broken Links in All Markdown Files in Entire Repo (Manual Trigger)
4848
id: lychee-check-manual
4949
if: github.event_name == 'workflow_dispatch'
50-
uses: lycheeverse/lychee-action@v2.4.1
50+
uses: lycheeverse/lychee-action@v2.6.1
5151
with:
5252
args: >
53-
--verbose --exclude-mail --no-progress --exclude ^https?://
53+
--verbose --no-progress --exclude ^https?://
5454
'**/*.md'
5555
failIfEmpty: false
5656
env:
57-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
57+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/codeql.yml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,26 @@ name: "CodeQL Advanced"
33
on:
44
push:
55
branches: [ "main", "dev", "demo" ]
6+
paths:
7+
- 'App/backend-api/**'
8+
- 'App/frontend-app/**'
9+
- 'App/kernel-memory/**'
10+
- '.github/workflows/codeql.yml'
11+
paths-ignore:
12+
- '**/.gitignore'
13+
- '**/Dockerfile'
14+
- '**/.dockerignore'
615
pull_request:
716
branches: [ "main", "dev", "demo" ]
17+
paths:
18+
- 'App/backend-api/**'
19+
- 'App/frontend-app/**'
20+
- 'App/kernel-memory/**'
21+
- '.github/workflows/codeql.yml'
22+
paths-ignore:
23+
- '**/.gitignore'
24+
- '**/Dockerfile'
25+
- '**/.dockerignore'
826
schedule:
927
- cron: '37 2 * * 5'
1028

@@ -30,7 +48,7 @@ jobs:
3048

3149
steps:
3250
- name: Checkout repository
33-
uses: actions/checkout@v4
51+
uses: actions/checkout@v5
3452

3553
- name: Initialize CodeQL
3654
uses: github/codeql-action/init@v3

.github/workflows/pr-title-checker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ jobs:
1717
runs-on: ubuntu-latest
1818
if: ${{ github.event_name != 'merge_group' }}
1919
steps:
20-
- uses: amannn/action-semantic-pull-request@v5
20+
- uses: amannn/action-semantic-pull-request@v6
2121
env:
2222
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/scheduled-Dependabot-PRs-Auto-Merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
runs-on: ubuntu-latest
3737
steps:
3838
- name: Checkout repository
39-
uses: actions/checkout@v4
39+
uses: actions/checkout@v5
4040

4141
- name: Install GitHub CLI
4242
run: |

.github/workflows/stale-bot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Mark Stale Issues and PRs
15-
uses: actions/stale@v9
15+
uses: actions/stale@v10
1616
with:
1717
stale-issue-message: "This issue is stale because it has been open 180 days with no activity. Remove stale label or comment, or it will be closed in 30 days."
1818
stale-pr-message: "This PR is stale because it has been open 180 days with no activity. Please update or it will be closed in 30 days."
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: ubuntu-latest
2525
steps:
2626
- name: Checkout Repository
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v5
2828
with:
2929
fetch-depth: 0 # Fetch full history for accurate branch checks
3030
- name: Fetch All Branches

.github/workflows/test-automation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- name: Checkout repository
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v5
2525

2626
- name: Set up Python
27-
uses: actions/setup-python@v4
27+
uses: actions/setup-python@v6
2828
with:
2929
python-version: '3.13'
3030

App/backend-api/Microsoft.GS.DPS/Microsoft.GS.DPS.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414
<PackageReference Include="FluentValidation" Version="12.0.0" />
1515
<PackageReference Include="FluentValidation.DependencyInjectionExtensions" Version="12.0.0" />
1616
<PackageReference Include="Microsoft.KernelMemory" Version="0.98.250508.3" />
17-
<PackageReference Include="Microsoft.Maui.Graphics" Version="9.0.81" />
18-
<PackageReference Include="Microsoft.Maui.Graphics.Skia" Version="9.0.81" />
1917
<PackageReference Include="MongoDB.Driver" Version="3.5.0" />
2018
<PackageReference Include="MongoDB.Driver.Core" Version="2.30.0" />
21-
<PackageReference Include="SkiaSharp.NativeAssets.Linux" Version="3.119.0" />
19+
<PackageReference Include="Microsoft.Maui.Graphics" Version="9.0.110" />
20+
<PackageReference Include="Microsoft.Maui.Graphics.Skia" Version="9.0.110" />
21+
<PackageReference Include="SkiaSharp.NativeAssets.Linux" Version="3.119.1" />
2222
</ItemGroup>
2323

2424
<ItemGroup>

App/frontend-app/package.json

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -13,82 +13,82 @@
1313
"test": "jest --coverage --detectOpenHandles"
1414
},
1515
"dependencies": {
16-
"@azure/msal-browser": "^4.14.0",
17-
"@azure/msal-react": "^3.0.14",
16+
"@azure/msal-browser": "^4.24.1",
17+
"@azure/msal-react": "^3.0.20",
1818
"@fluentai/attachments": "^0.7.1",
1919
"@fluentai/react-copilot": "^0.11.3",
2020
"@fluentai/react-copilot-chat": "^0.5.2",
2121
"@fluentai/reference": "^0.8.2",
2222
"@fluentai/textarea": "^0.5.1",
23-
"@fluentui/react": "^8.123.0",
24-
"@fluentui/react-components": "^9.66.5",
25-
"@fluentui/react-datepicker-compat": "^0.6.5",
26-
"@fluentui/react-file-type-icons": "^8.13.2",
27-
"@fluentui/react-icons": "^2.0.305",
23+
"@fluentui/react": "^8.123.6",
24+
"@fluentui/react-components": "^9.70.0",
25+
"@fluentui/react-datepicker-compat": "^0.6.14",
26+
"@fluentui/react-file-type-icons": "^8.13.3",
27+
"@fluentui/react-icons": "^2.0.311",
2828
"@fluentui/react-tags-preview": "^0.4.0",
29-
"@microsoft/applicationinsights-react-js": "^19.3.6",
30-
"@microsoft/applicationinsights-web": "^3.3.9",
29+
"@microsoft/applicationinsights-react-js": "^19.3.8",
30+
"@microsoft/applicationinsights-web": "^3.3.10",
3131
"@react-pdf-viewer/core": "^3.12.0",
3232
"@react-pdf-viewer/default-layout": "^3.12.0",
3333
"date-fns": "^4.1.0",
3434
"dropzone": "^6.0.0-beta.2",
35-
"i18next": "^25.3.0",
35+
"i18next": "^25.5.3",
3636
"i18next-browser-languagedetector": "^8.2.0",
3737
"i18next-http-backend": "^3.0.2",
3838
"km-app": "file:",
39-
"marked": "^16.0.0",
39+
"marked": "^16.3.0",
4040
"notistack": "^3.0.2",
41-
"pdfjs-dist": "^4.7.76",
42-
"react": "^19.1.0",
43-
"react-dom": "^19.1.0",
41+
"pdfjs-dist": "^5.4.149",
42+
"react": "^19.1.1",
43+
"react-dom": "^19.1.1",
4444
"react-dropzone": "^14.3.5",
45-
"react-i18next": "^15.5.3",
45+
"react-i18next": "^16.0.0",
4646
"react-markdown": "^10.1.0",
47-
"react-router-dom": "^7.6.3",
47+
"react-router-dom": "^7.9.3",
4848
"react-tiff": "^0.0.14",
4949
"react-uploader": "^3.43.0",
50-
"use-debounce": "^10.0.5"
50+
"use-debounce": "^10.0.6"
5151
},
5252
"devDependencies": {
53-
"@testing-library/jest-dom": "^6.6.3",
53+
"@testing-library/jest-dom": "^6.9.0",
5454
"@testing-library/react": "^16.3.0",
5555
"@types/cors": "^2.8.19",
5656
"@types/express": "^5.0.3",
5757
"@types/jest": "^30.0.0",
58-
"@types/react": "^19.1.8",
59-
"@types/react-dom": "^19.1.6",
58+
"@types/react": "^19.1.17",
59+
"@types/react-dom": "^19.1.11",
6060
"@types/react-router-dom": "^5.3.3",
61-
"@typescript-eslint/eslint-plugin": "^8.35.1",
62-
"@typescript-eslint/parser": "^8.35.1",
61+
"@typescript-eslint/eslint-plugin": "^8.45.0",
62+
"@typescript-eslint/parser": "^8.45.0",
6363
"@vitejs/plugin-basic-ssl": "^2.1.0",
64-
"@vitejs/plugin-react": "^4.6.0",
64+
"@vitejs/plugin-react": "^5.0.4",
6565
"autoprefixer": "^10.4.21",
6666
"body-parser": "^2.2.0",
67-
"concurrently": "^9.2.0",
67+
"concurrently": "^9.2.1",
6868
"cors": "^2.8.5",
69-
"eslint": "^9.30.1",
69+
"eslint": "^9.36.0",
7070
"eslint-config-prettier": "^10.1.5",
7171
"eslint-import-resolver-typescript": "^4.4.4",
7272
"eslint-plugin-import": "^2.32.0",
7373
"eslint-plugin-jsx-a11y": "^6.10.2",
7474
"eslint-plugin-react": "^7.37.5",
7575
"eslint-plugin-react-hooks": "^5.2.0",
76-
"eslint-plugin-react-refresh": "^0.4.20",
76+
"eslint-plugin-react-refresh": "^0.4.22",
7777
"express": "^5.1.0",
78-
"jest": "^30.0.3",
79-
"jest-environment-jsdom": "^30.0.2",
78+
"jest": "^30.2.0",
79+
"jest-environment-jsdom": "^30.2.0",
8080
"nodemon": "^3.1.10",
8181
"postcss": "^8.5.6",
8282
"prettier": "^3.6.2",
8383
"prettier-plugin-tailwindcss": "^0.6.13",
8484
"react-tiff": "^0.0.14",
85-
"sass": "^1.89.2",
85+
"sass": "^1.93.2",
8686
"tailwindcss": "^3.4.17",
87-
"ts-jest": "^29.4.0",
87+
"ts-jest": "^29.4.4",
8888
"ts-node": "^10.9.2",
8989
"tslib": "^2.6.2",
90-
"typescript": "^5.8.3",
91-
"vite": "^6.2.0"
90+
"typescript": "^5.9.3",
91+
"vite": "^7.1.7"
9292
},
9393
"volta": {
9494
"node": "18.16.0",

0 commit comments

Comments
 (0)