Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
6ee3c8a
build: bump the frontend-deps group in /App/frontend-app with 17 updates
dependabot[bot] Aug 1, 2025
ba1f609
build: bump actions/setup-python from 4 to 5 in the all-actions group
dependabot[bot] Aug 1, 2025
49c20b3
build: Bump the nuget-deps group with 14 updates
dependabot[bot] Aug 1, 2025
a23a07b
build: Bump the nuget-deps group with 5 updates
dependabot[bot] Aug 1, 2025
4d69ae7
build: Bump the frontend-deps group in /App/frontend-app with 27 updates
dependabot[bot] Sep 2, 2025
86b8597
build: Bump the nuget-deps group with 3 updates
dependabot[bot] Sep 2, 2025
8d69f53
build: Bump the nuget-deps group with 9 updates
dependabot[bot] Sep 2, 2025
14096d3
build: Bump the all-actions group with 3 updates
dependabot[bot] Sep 2, 2025
ccba730
build: bump the frontend-deps group in /App/frontend-app with 27 updates
dependabot[bot] Oct 1, 2025
a209032
build: Bump the nuget-deps group with 4 updates
dependabot[bot] Oct 1, 2025
09ad05d
build: Bump the nuget-deps group with 9 updates
dependabot[bot] Oct 1, 2025
518d425
build: bump the all-actions group with 3 updates
dependabot[bot] Oct 1, 2025
45bf40f
Merge remote-tracking branch 'origin/dev' into dependabotchanges
Oct 14, 2025
e45bfb6
added more timeout and updated avm module vesion of search service
Rafi-Microsoft Oct 15, 2025
d0e31e9
Merge pull request #479 from microsoft/psl-dkm-issueR1
Prajwal-Microsoft Oct 15, 2025
e7f678a
Update package versions in Directory.Packages.props and remove unnece…
Oct 17, 2025
744000a
chore: Remove unnecessary PackageReferences for Microsoft.SemanticKer…
Oct 17, 2025
f421cd5
Merge pull request #478 from microsoft/dependabotchanges
Roopan-Microsoft Oct 17, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

steps:
- name: Checkout Code
uses: actions/checkout@v4 # Checks out your repository
uses: actions/checkout@v5 # Checks out your repository

- name: Install Azure CLI
shell: bash
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/broken-links-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ jobs:

steps:
- name: Checkout Repo
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0

# For PR : Get only changed markdown files
- name: Get changed markdown files (PR only)
id: changed-markdown-files
if: github.event_name == 'pull_request'
uses: tj-actions/changed-files@ed68ef82c095e0d48ec87eccea555d944a631a4c # v46
uses: tj-actions/changed-files@24d32ffd492484c1d75e0c0b894501ddb9d30d62 # v46
with:
files: |
**/*.md
Expand All @@ -34,7 +34,7 @@ jobs:
- name: Check Broken Links in Changed Markdown Files
id: lychee-check-pr
if: github.event_name == 'pull_request' && steps.changed-markdown-files.outputs.any_changed == 'true'
uses: lycheeverse/lychee-action@v2.4.1
uses: lycheeverse/lychee-action@v2.6.1
with:
args: >
--verbose --exclude-mail --no-progress --exclude ^https?://
Expand All @@ -47,7 +47,7 @@ jobs:
- name: Check Broken Links in All Markdown Files in Entire Repo (Manual Trigger)
id: lychee-check-manual
if: github.event_name == 'workflow_dispatch'
uses: lycheeverse/lychee-action@v2.4.1
uses: lycheeverse/lychee-action@v2.6.1
with:
args: >
--verbose --exclude-mail --no-progress --exclude ^https?://
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Initialize CodeQL
uses: github/codeql-action/init@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-title-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ jobs:
runs-on: ubuntu-latest
if: ${{ github.event_name != 'merge_group' }}
steps:
- uses: amannn/action-semantic-pull-request@v5
- uses: amannn/action-semantic-pull-request@v6
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Install GitHub CLI
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/stale-bot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Mark Stale Issues and PRs
uses: actions/stale@v9
uses: actions/stale@v10
with:
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."
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."
Expand All @@ -24,7 +24,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0 # Fetch full history for accurate branch checks
- name: Fetch All Branches
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-automation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v6
with:
python-version: '3.13'

Expand Down
6 changes: 3 additions & 3 deletions App/backend-api/Microsoft.GS.DPS/Microsoft.GS.DPS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
<PackageReference Include="FluentValidation" Version="12.0.0" />
<PackageReference Include="FluentValidation.DependencyInjectionExtensions" Version="12.0.0" />
<PackageReference Include="Microsoft.KernelMemory.WebClient" Version="0.79.241014.2" />
<PackageReference Include="Microsoft.Maui.Graphics" Version="9.0.81" />
<PackageReference Include="Microsoft.Maui.Graphics.Skia" Version="9.0.81" />
<PackageReference Include="Microsoft.Maui.Graphics" Version="9.0.110" />
<PackageReference Include="Microsoft.Maui.Graphics.Skia" Version="9.0.110" />
<PackageReference Include="MongoDB.Driver" Version="2.29.0" />
<PackageReference Include="MongoDB.Driver.Core" Version="2.29.0" />
<PackageReference Include="SkiaSharp.NativeAssets.Linux" Version="3.119.0" />
<PackageReference Include="SkiaSharp.NativeAssets.Linux" Version="3.119.1" />
</ItemGroup>

<ItemGroup>
Expand Down
64 changes: 32 additions & 32 deletions App/frontend-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,82 +13,82 @@
"test": "jest --coverage --detectOpenHandles"
},
"dependencies": {
"@azure/msal-browser": "^4.14.0",
"@azure/msal-react": "^3.0.14",
"@azure/msal-browser": "^4.24.1",
"@azure/msal-react": "^3.0.20",
"@fluentai/attachments": "^0.7.1",
"@fluentai/react-copilot": "^0.11.3",
"@fluentai/react-copilot-chat": "^0.5.2",
"@fluentai/reference": "^0.8.2",
"@fluentai/textarea": "^0.5.1",
"@fluentui/react": "^8.123.0",
"@fluentui/react-components": "^9.66.5",
"@fluentui/react-datepicker-compat": "^0.6.5",
"@fluentui/react-file-type-icons": "^8.13.2",
"@fluentui/react-icons": "^2.0.305",
"@fluentui/react": "^8.123.6",
"@fluentui/react-components": "^9.70.0",
"@fluentui/react-datepicker-compat": "^0.6.14",
"@fluentui/react-file-type-icons": "^8.13.3",
"@fluentui/react-icons": "^2.0.311",
"@fluentui/react-tags-preview": "^0.4.0",
"@microsoft/applicationinsights-react-js": "^19.3.6",
"@microsoft/applicationinsights-web": "^3.3.9",
"@microsoft/applicationinsights-react-js": "^19.3.8",
"@microsoft/applicationinsights-web": "^3.3.10",
"@react-pdf-viewer/core": "^3.12.0",
"@react-pdf-viewer/default-layout": "^3.12.0",
"date-fns": "^4.1.0",
"dropzone": "^6.0.0-beta.2",
"i18next": "^25.3.0",
"i18next": "^25.5.3",
"i18next-browser-languagedetector": "^8.2.0",
"i18next-http-backend": "^3.0.2",
"km-app": "file:",
"marked": "^16.0.0",
"marked": "^16.3.0",
"notistack": "^3.0.2",
"pdfjs-dist": "^4.7.76",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"pdfjs-dist": "^5.4.149",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-dropzone": "^14.3.5",
"react-i18next": "^15.5.3",
"react-i18next": "^16.0.0",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.6.3",
"react-router-dom": "^7.9.3",
"react-tiff": "^0.0.14",
"react-uploader": "^3.43.0",
"use-debounce": "^10.0.5"
"use-debounce": "^10.0.6"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/jest-dom": "^6.9.0",
"@testing-library/react": "^16.3.0",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/jest": "^30.0.0",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@types/react": "^19.1.17",
"@types/react-dom": "^19.1.11",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^8.35.1",
"@typescript-eslint/parser": "^8.35.1",
"@typescript-eslint/eslint-plugin": "^8.45.0",
"@typescript-eslint/parser": "^8.45.0",
"@vitejs/plugin-basic-ssl": "^2.1.0",
"@vitejs/plugin-react": "^4.6.0",
"@vitejs/plugin-react": "^5.0.4",
"autoprefixer": "^10.4.21",
"body-parser": "^2.2.0",
"concurrently": "^9.2.0",
"concurrently": "^9.2.1",
"cors": "^2.8.5",
"eslint": "^9.30.1",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.5",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"eslint-plugin-react-refresh": "^0.4.22",
"express": "^5.1.0",
"jest": "^30.0.3",
"jest-environment-jsdom": "^30.0.2",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"nodemon": "^3.1.10",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.13",
"react-tiff": "^0.0.14",
"sass": "^1.89.2",
"sass": "^1.93.2",
"tailwindcss": "^3.4.17",
"ts-jest": "^29.4.0",
"ts-jest": "^29.4.4",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.8.3",
"vite": "^6.2.0"
"typescript": "^5.9.3",
"vite": "^7.1.7"
},
"volta": {
"node": "18.16.0",
Expand Down
Loading