Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
4c0dff2
build: bump vite from 6.3.2 to 6.3.4 in /src/frontend
dependabot[bot] May 1, 2025
21eef55
build(deps): bump the all-actions group with 6 updates
dependabot[bot] May 13, 2025
1b48c05
build(deps): bump the all-backend-deps group in /src with 6 updates
dependabot[bot] May 13, 2025
e79a094
Merge pull request #438 from microsoft/dependabot/pip/src/dependabotc…
github-actions[bot] May 14, 2025
6f33997
Merge pull request #437 from microsoft/dependabot/github_actions/depe…
github-actions[bot] May 14, 2025
411f11a
Merge pull request #416 from microsoft/dependabot/npm_and_yarn/src/fr…
github-actions[bot] May 14, 2025
fa3f88d
build(deps): bump the all-backend-deps group in /src with 5 updates
dependabot[bot] Jun 1, 2025
5fc2f0e
build(deps): bump the all-backend-deps group in /src with 14 updates
dependabot[bot] Jul 1, 2025
a246d58
build(deps): bump microsoft/template-validation-action
dependabot[bot] Jul 1, 2025
6f54e28
build(deps): bump the all-backend-deps group in /src with 6 updates
dependabot[bot] May 13, 2025
1e9198f
build(deps): bump the all-actions group with 6 updates
dependabot[bot] May 13, 2025
129b45f
build: bump vite from 6.3.2 to 6.3.4 in /src/frontend
dependabot[bot] May 1, 2025
d7f3236
build(deps): bump the all-backend-deps group in /src with 5 updates
dependabot[bot] Jun 1, 2025
b7e6e2a
build(deps): bump the all-backend-deps group in /src with 14 updates
dependabot[bot] Jul 1, 2025
ecc2a22
build(deps): bump microsoft/template-validation-action
dependabot[bot] Jul 1, 2025
4d1cbce
merged with dev
AjitPadhi-Microsoft Jul 15, 2025
fa4eeff
build(deps): bump the all-backend-deps group in /src with 6 updates
dependabot[bot] May 13, 2025
8411651
build(deps): bump the all-actions group with 6 updates
dependabot[bot] May 13, 2025
7250530
build: bump vite from 6.3.2 to 6.3.4 in /src/frontend
dependabot[bot] May 1, 2025
b6cdfa4
build(deps): bump the all-backend-deps group in /src with 5 updates
dependabot[bot] Jun 1, 2025
d8b0e03
build(deps): bump the all-backend-deps group in /src with 14 updates
dependabot[bot] Jul 1, 2025
ddf8c4d
build(deps): bump microsoft/template-validation-action
dependabot[bot] Jul 1, 2025
eb5b3c9
Merge branch 'dependabotchanges' of https://github.com/microsoft/docu…
AjitPadhi-Microsoft Jul 15, 2025
83b27a4
Merge branch 'dependabotchanges' of https://github.com/microsoft/docu…
AjitPadhi-Microsoft Jul 15, 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/azure-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

# Step 2: Validate the Azure template using microsoft/template-validation-action
- name: Validate Azure Template
uses: microsoft/template-validation-action@v0.3.5
uses: microsoft/template-validation-action@v0.4.3
id: validation
env:
AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
WEBAPP_URL: ${{ steps.get_output.outputs.WEBAPP_URL }}
steps:
- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Azure CLI
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docker-build-and-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:

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

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v3

- name: Log in to Azure Container Registry - External Registry
if: ${{ github.ref_name == 'main' }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ jobs:
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

# Step 2: Set up Python environment
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
runs-on:
- ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
Expand All @@ -35,9 +35,9 @@ jobs:
runs-on:
- windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,12 @@ jobs:

# Set up Node.js environment for Frontend
- name: Set up Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '20' # Set the Node.js version

- name: Cache npm dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
Expand Down
12 changes: 6 additions & 6 deletions src/frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,6 @@
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"vite": "^6.1.0"
"vite": "^6.3.4"
}
}
16 changes: 8 additions & 8 deletions src/requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
-r requirements.txt
azure-ai-documentintelligence==1.0.2
Markdown==3.8
requests==2.32.3
Markdown==3.8.2
requests==2.32.4
tqdm==4.67.1
tiktoken
langchain==0.3.23
langchain==0.3.26
bs4==0.0.2
urllib3==2.4.0
pytest==8.3.5
pytest-asyncio==0.26.0
PyMuPDF==1.25.5
urllib3==2.5.0
pytest==8.4.1
pytest-asyncio==1.0.0
PyMuPDF==1.26.1
azure-storage-blob
chardet
azure-keyvault-secrets
coverage
flake8==7.2.0
flake8==7.3.0
black==25.1.0
autoflake==2.3.1
isort==6.0.1
14 changes: 7 additions & 7 deletions src/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
azure-identity==1.23.0
# Flask[async]==2.3.2
openai==1.84.0
azure-search-documents==11.6.0b9
openai==1.93.0
azure-search-documents==11.6.0b12
azure-storage-blob==12.25.1
python-dotenv==1.1.0
python-dotenv==1.1.1
azure-cosmos==4.9.0
azure-ai-projects==1.0.0b11
azure-ai-inference==1.0.0b9
quart==0.20.0
uvicorn==0.34.1
aiohttp==3.11.16
uvicorn==0.35.0
aiohttp==3.12.13
gunicorn==23.0.0
pydantic-settings==2.8.1
flake8==7.2.0
pydantic-settings==2.10.1
flake8==7.3.0
black==25.1.0
autoflake==2.3.1
isort==6.0.1
Expand Down
Loading