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

javascript dependency warnings #13410

Open
3 of 4 tasks
xnox opened this issue Jul 29, 2024 · 2 comments
Open
3 of 4 tasks

javascript dependency warnings #13410

xnox opened this issue Jul 29, 2024 · 2 comments
Assignees
Labels
area/contributing Contributing docs, ownership, etc. Also devtools like devcontainer and Nix area/ui javascript Pull requests that update Javascript dependencies P3 Low priority type/bug type/dependencies PRs and issues specific to updating dependencies
Milestone

Comments

@xnox
Copy link

xnox commented Jul 29, 2024

Pre-requisites

  • I have double-checked my configuration
  • I have tested with the :latest image tag (i.e. quay.io/argoproj/workflow-controller:latest) and can confirm the issue still exists on :latest. If not, I have explained why, in detail, in my description below.
  • I have searched existing issues and could not find a match for this bug
  • I'd like to contribute the fix myself (see contributing guide)

What happened? What did you expect to happen?

Building v3.5.0-576-g1239fd022 (main branch)

Invoking make ui/dist/app/index.html prints many javascript dependency warnings:

JOBS=max yarn --cwd ui install
yarn install v1.22.22
[1/5] Validating package.json...
[2/5] Resolving packages...
warning Resolution field "[email protected]" is incompatible with requested version "types-ramda@^0.30.0"
[3/5] Fetching packages...
[4/5] Linking dependencies...
warning " > [email protected]" has incorrect peer dependency "react@^16.9.3".
warning " > [email protected]" has incorrect peer dependency "react-dom@^16.9.3".
warning "argo-ui > [email protected]" has unmet peer dependency "jquery@>=3.6.0".
warning "argo-ui > [email protected]" has unmet peer dependency "motion-ui@latest".
warning "argo-ui > [email protected]" has unmet peer dependency "what-input@>=5.2.10".
warning "argo-ui > [email protected]" has incorrect peer dependency "react@^0.14.7 || ^15.0.0-0 || ^16.0.0-0".
warning "argo-ui > [email protected]" has incorrect peer dependency "react-dom@^0.14.7 || ^15.0.0-0 || ^16.0.0-0".
warning "argo-ui > [email protected]" has incorrect peer dependency "react@^15.6.1 || 16".
warning "argo-ui > [email protected]" has incorrect peer dependency "react-dom@^15.6.1 || 16".
warning "argo-ui > react-form > [email protected]" has incorrect peer dependency "react@^0.14.0 || ^15.0.0-0 || ^16.0.0-0".
warning "argo-ui > react-form > [email protected]" has incorrect peer dependency "redux@^4".
warning " > [email protected]" has incorrect peer dependency "react@^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0".
warning " > [email protected]" has incorrect peer dependency "react-dom@^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0".
warning " > [email protected]" has incorrect peer dependency "@types/react@>=17 <= 18".
warning " > [email protected]" has incorrect peer dependency "monaco-editor@^0.34.0".
warning "swagger-ui-react > swagger-client > [email protected]" has unmet peer dependency "ramda@>= 0.30.0".
[5/5] Building fresh packages...
Done in 59.52s.

Are these important to resolve / upgrade? Or is it mostly harmless

Version(s)

v3.5.0-576-g1239fd022

Paste a minimal workflow that reproduces the issue. We must be able to run the workflow; don't enter a workflows that uses private images.

`make ui/dist/app/index.html`

Logs from the workflow controller

kubectl logs -n argo deploy/workflow-controller | grep ${workflow}

Logs from in your workflow's wait container

kubectl logs -n argo -c wait -l workflows.argoproj.io/workflow=${workflow},workflow.argoproj.io/phase!=Succeeded
@xnox xnox added the type/bug label Jul 29, 2024
@xnox
Copy link
Author

xnox commented Jul 29, 2024

Note 3.5 branch also has warnings:

JOBS=max yarn --cwd ui install
yarn install v1.22.22
[1/5] Validating package.json...
[2/5] Resolving packages...
[3/5] Fetching packages...
[4/5] Linking dependencies...
warning " > [email protected]" has unmet peer dependency "antd@^4.16.13".
warning " > [email protected]" has unmet peer dependency "rxjs@^7.5.6".
warning "argo-ui > [email protected]" has unmet peer dependency "jquery@>=3.6.0".
warning "argo-ui > [email protected]" has unmet peer dependency "motion-ui@latest".
warning "argo-ui > [email protected]" has unmet peer dependency "what-input@>=5.2.10".
warning " > [email protected]" has incorrect peer dependency "@types/react@>=17 <= 18".
warning " > [email protected]" has incorrect peer dependency "monaco-editor@^0.34.0".
warning " > [email protected]" has incorrect peer dependency "react@>=17 <= 18".
warning " > [email protected]" has incorrect peer dependency "react@>=17.0.0".
warning " > [email protected]" has incorrect peer dependency "react-dom@>=17.0.0".
[5/5] Building fresh packages...

@agilgur5 agilgur5 added area/ui area/contributing Contributing docs, ownership, etc. Also devtools like devcontainer and Nix labels Jul 29, 2024
@agilgur5 agilgur5 changed the title Invalid javascript depedencies javascript dependency warnings Jul 29, 2024
@agilgur5
Copy link
Member

agilgur5 commented Jul 30, 2024

Yea I mentioned these warnings in #13069 (comment) as well. I was planning to revert that PR and make a more targeted change for 3.5 plus remove swagger-ui entirely for 3.6, but it seems to not be causing any errors yet (React 19 might make those warnings into errors), so it's low on the priority list.

That's specifically with regard to the react ones on the main branch. The other ones are in transitive dependencies that seem to have incorrect version numbers for their peerDeps, or in foundation-sites's case, they're optional peerDeps (foundation-sites predates the existence of package.json configuration for optional peerDeps IIRC, which is still non-standard between different clients as well IIRC)

Are these important to resolve / upgrade? Or is it mostly harmless

Afaict they are "harmless" so far as they're all warnings and don't seem to impact any functionality. They can become errors in further updates though, so they are important to keep in mind during dep upgrades/changes

@agilgur5 agilgur5 added this to the v3.6.0 milestone Jul 30, 2024
@agilgur5 agilgur5 self-assigned this Jul 30, 2024
@agilgur5 agilgur5 added type/dependencies PRs and issues specific to updating dependencies javascript Pull requests that update Javascript dependencies P3 Low priority labels Jul 30, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/contributing Contributing docs, ownership, etc. Also devtools like devcontainer and Nix area/ui javascript Pull requests that update Javascript dependencies P3 Low priority type/bug type/dependencies PRs and issues specific to updating dependencies
Projects
None yet
Development

No branches or pull requests

2 participants