Github 授权令牌在 auth.json 文件 Magento 2.4.2 中不起作用

Github Auth token not working in auth.json file Magento 2.4.2

我在 magento 2.3.3 中有我的项目,我正在将它升级到 Magento 2.4.2。 在 auth.json 文件中,我想添加从 link https://github.com/settings/tokens/new?scopes=repo&description=Composer+on+NTZ-CPU-155+2021-04-09+1517 生成的 github 令牌。 但是当我在 mu auth.json 文件中添加相同的令牌时,令牌不起作用。

我得到的错误:

Your github oauth token for github.com contains invalid characters: "ghp_1nKdhaeIbUzRN2DsrMDkB2kbLXzFcn0jwjhdwhaQyEt"

如“Authentication token format updates are generally available”中所述,GitHub 身份验证令牌的格式已更改。

值得注意的是,令牌格式现在包括以下更新:

  • 字符集由[a-f0-9]更改为[A-Za-z0-9_]
  • 该格式现在包括每个令牌类型的前缀,包括 ghp_ 个人访问令牌。

这就是作曲家 issue 9800 的原因:“请发布具有更新的 GitHub 令牌正则表达式的版本”

解决方案是将 composer 升级到 2.0.12 和 1.10.21,其中包括 commit dc83ba9

 # old regexp
 {^[.a-z0-9]+$}

 # new one
 {^[.A-Za-z0-9_]+$}