Skip to content

Commit 4ae2ff4

Browse files
Bump react-router-dom from 6.18.0 to 6.23.1 in /app/frontend (#1721)
* Bump react-router-dom from 6.18.0 to 6.23.1 in /app/frontend Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) from 6.18.0 to 6.23.1. - [Release notes](https://github.com/remix-run/react-router/releases) - [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md) - [Commits](https://github.com/remix-run/react-router/commits/[email protected]/packages/react-router-dom) --- updated-dependencies: - dependency-name: react-router-dom dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * update node --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Pamela Fox <[email protected]> Co-authored-by: Pamela Fox <[email protected]>
1 parent 3910242 commit 4ae2ff4

File tree

6 files changed

+31
-21
lines changed

6 files changed

+31
-21
lines changed

.devcontainer/devcontainer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"image": "mcr.microsoft.com/devcontainers/python:3.11",
44
"features": {
55
"ghcr.io/devcontainers/features/node:1": {
6-
"version": "16",
6+
// This should match the version of Node.js in Github Actions workflows
7+
"version": "18",
78
"nodeGypDependencies": false
89
},
910
"ghcr.io/devcontainers/features/powershell:1.1.0": {},

.github/workflows/azure-dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
- name: Install Nodejs
104104
uses: actions/setup-node@v4
105105
with:
106-
node-version: 20
106+
node-version: 18
107107

108108
- name: Log in with Azure (Federated Credentials)
109109
if: ${{ env.AZURE_CLIENT_ID != '' }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ A related option is VS Code Dev Containers, which will open the project in your
109109
- [Python 3.9, 3.10, or 3.11](https://www.python.org/downloads/)
110110
- **Important**: Python and the pip package manager must be in the path in Windows for the setup scripts to work.
111111
- **Important**: Ensure you can run `python --version` from console. On Ubuntu, you might need to run `sudo apt install python-is-python3` to link `python` to `python3`.
112-
- [Node.js 14+](https://nodejs.org/en/download/)
112+
- [Node.js 18+](https://nodejs.org/download/)
113113
- [Git](https://git-scm.com/downloads)
114114
- [Powershell 7+ (pwsh)](https://github.com/powershell/powershell) - For Windows users only.
115115
- **Important**: Ensure you can run `pwsh.exe` from a PowerShell terminal. If this fails, you likely need to upgrade PowerShell.

app/frontend/package-lock.json

Lines changed: 25 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"dompurify": "^3.0.6",
2323
"react": "^18.3.1",
2424
"react-dom": "^18.2.0",
25-
"react-router-dom": "^6.18.0",
25+
"react-router-dom": "^6.23.1",
2626
"ndjson-readablestream": "^1.0.7",
2727
"react-syntax-highlighter": "^15.5.0",
2828
"scheduler": "^0.20.2"

samples/chat/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ A related option is VS Code Dev Containers, which will open the project in your
127127
- [Python 3.9, 3.10, or 3.11](https://www.python.org/downloads/)
128128
- **Important**: Python and the pip package manager must be in the path in Windows for the setup scripts to work.
129129
- **Important**: Ensure you can run `python --version` from console. On Ubuntu, you might need to run `sudo apt install python-is-python3` to link `python` to `python3`.
130-
- [Node.js 14+](https://nodejs.org/en/download/)
130+
- [Node.js 18+](https://nodejs.org/download/)
131131
- [Git](https://git-scm.com/downloads)
132132
- [Powershell 7+ (pwsh)](https://github.com/powershell/powershell) - For Windows users only.
133133
- **Important**: Ensure you can run `pwsh.exe` from a PowerShell terminal. If this fails, you likely need to upgrade PowerShell.

0 commit comments

Comments
 (0)