Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dependabot (2025-02-06) #7520

Merged
merged 3 commits into from
Feb 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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 Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM gcr.io/sre-docker-registry/data-hub-frontend-dependencies:4.3.9
FROM gcr.io/sre-docker-registry/data-hub-frontend-dependencies:4.3.10

ARG CURRENT_UID
ARG CURRENT_GID
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.dependencies
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ COPY --chown=node:node package*.json "$HOME/"
WORKDIR $HOME

# Install specific version of cypress
RUN npm install -g cypress@13.17.0 \
RUN npm install -g cypress@14.0.2 \
&& npx cypress verify \
&& npx cypress cache path \
&& npx cypress cache list \
Expand Down
2 changes: 1 addition & 1 deletion docs/Docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Ensure you have [gcloud CLI installed](https://cloud.google.com/sdk/docs/install
> If you have issues when building the dependencies image, especially if you are using a Mac with an Apple chip, this is most likely due to incompatibility with the `arm` architecture; instead you need to build on `amd` architecture. Please refer to [troubleshooting guide](./Troubleshooting.md) and follow the steps under the Building dependency images section, before retrying the build command below.

```bash
export VERSION=4.3.9 # Increment this version each time when you edit Dockerfile.
export VERSION=4.3.10 # Increment this version each time when you edit Dockerfile.

docker build -f Dockerfile.dependencies -t data-hub-frontend-dependencies . --platform linux/amd64

Expand Down
88 changes: 77 additions & 11 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@
"babel-plugin-istanbul": "7.0.0",
"chai": "^4.5.0",
"chai-subset": "^1.6.0",
"cypress": "^13.17.0",
"cypress": "^14.0.2",
"cypress-axe": "^1.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.0.1",
Expand All @@ -199,7 +199,7 @@
"mocha": "^11.1.0",
"mocha-junit-reporter": "^2.2.1",
"mochapack": "^2.1.4",
"nock": "^13.5.6",
"nock": "^14.0.0",
"nodemon": "^3.1.9",
"npm-run-all": "^4.1.5",
"nyc": "17.1.0",
Expand Down
2 changes: 1 addition & 1 deletion test/component/cypress/support/commands.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react'
import { mount } from 'cypress/react18'
import { mount } from 'cypress/react'

import { TASK_GET_REMINDER_SUMMARY } from '../../../../src/client/components/NotificationAlert/state'
import { INITIAL_STATE } from '../../../../src/client/components/NotificationAlert/reducer'
Expand Down
Loading