jfrog / jfrog-azure-devops-extension

Apache License 2.0
47 stars 61 forks source link

ArtifactoryNpm@2 task fails after npm version 9.x changed authentication method #385

Open UIQA opened 1 year ago

UIQA commented 1 year ago

Describe the bug

Hello, We successfully used ArtifactoryNpm@2 task in Azure DevOps pipeline for a long time until npm@9 arrived. Currently, our tests fail because the ERR_INVALID_AUTH error.

Could you please fix this error? Thank you!

Current behavior

npm ERR! code ERR_INVALID_AUTH npm ERR! Invalid auth configuration found: _auth must be renamed to //qusw.jfrog.io/artifactory/api/npm/:_auth in project config npm ERR! Please run npm config fix to repair your configuration.`

Reproduction steps

Please, run the following pipeline Azure Devops:

name: ArtifactoryNpmTests trigger: none pool: vmImage: 'ubuntu-latest'

steps:

Expected behavior

ArtifactoryNpm@2 will run successfully.

Azure DevOps extension name and version

JFrog Artifactory version 1.13.6

JFrog CLI version

1.53.2

Operating system type and version

ubuntu-latest

JFrog Artifactory version (if relevant)

1.13.6

JFrog Xray version (if relevant)

No response

JFrog Distribution version (if relevant)

No response

bkaidbb commented 1 year ago

Ran into this as well. Worked around it temporarily by making sure Node version 18.13.0 which uses npm 8 still by default was installed (using either nvm or NodeTool@0).

UIQA commented 1 year ago

thank you @bkaidbb - we also temporally install npm@8 for now before running the task and tests. But need run tests on npm@9.

yahavi commented 1 year ago

@UIQA @bkaidbb , Thanks for reporting this issue. We fixed it in https://github.com/jfrog/jfrog-cli-core/pull/695, which is included in JFrog CLI v2.29.6. JFrog Azure DevOps extension v2.4.1 already uses this CLI version by default. To use the latest npm task version, you can install the JFrog Azure DevOps extension side by side with the old extension and switch to the new npm task. For more information read here.

We'd appreciate your feedback on that.

bkaidbb commented 1 year ago

Switching from ArtifactoryNpm@2 to JFrogNpm@1 seems to work now and pulls the newer JFrog CLI as you mentioned. Thanks!

UIQA commented 1 year ago

Thank you, @yahavi I used JFrogNpm@1 task and it failed with the following error: 02:25:31 [Info] Running npm install. npm WARN old lockfile npm WARN old lockfile The package-lock.json file was created with an old version of npm, npm WARN old lockfile so supplemental metadata must be fetched from the registry. npm WARN old lockfile npm WARN old lockfile This is a one-time fix-up, please be patient... npm WARN old lockfile npm ERR! code E401 npm ERR! Incorrect or missing password. npm ERR! If you were trying to login, change your password, create an npm ERR! authentication token or enable two-factor authentication then npm ERR! that means you likely typed your password in incorrectly. npm ERR! Please try again, or recover your password at: npm ERR! https://www.npmjs.com/forgot npm ERR! npm ERR! If you were doing some other operation then your saved credentials are npm ERR! probably out of date. To correct this please try logging in again with: npm ERR! npm login

UIQA commented 1 year ago

Hello!

Do you have any update on this issue?

Thanks

sverdlov93 commented 1 year ago

Hi @UIQA , Do you manage to run plain npm install successfully, without jfrog task? Can you remove the package-lock file from your project and let the command run?

UIQA commented 1 year ago

Hi @sverdlov93 , Yes, plain npm install runs successfully. And yes, JFrogNpm@1 task runs successfully if I delete package-lock file. But I am looking for the way to save it, I mean the existing package-lock file. We not ready to get read of it yet. Is there any work around?

Thank you

sverdlov93 commented 1 year ago

@UIQA I believe that your old package-lock contains fields with URLs that contain the default npm registry or a different registry than the one you use on the JFrog Azure task. So the npm install command fails when trying to install that package-lock. The same would happen if you will update your npmrc locally and run a plain npm install. You should delete your old package-lock and push the new package-lock created by jf npm install with the JFrog registry.

pastinepolenta commented 1 year ago

Any plan to fix it in ArtifactoryNpm@2 or is JFrogNpm@1 now a requirement? we have multiple repos depending on it