REXML和可寻址的安全性漏洞

发布于 2025-01-17 18:48:05 字数 295 浏览 3 评论 0原文

我目前有一个正在生产的 Flutter 项目,不久前我看到 dependentabot 中弹出了两个安全漏洞,如下所示:

dependabot

我不太熟悉本机代码,所以不确定如何修复这些依赖关系。

除了等待包所有者更新他们的库之外,还有什么方法可以强制使用 Gemfile 的最低版本吗?

I have a Flutter project currently in production, and I have seen a while ago two security vulnerabilities pop up in dependabot, see below:

dependabot

I am not really acquainted with native code, so am unsure on how to fix these dependencies.

Apart from waiting for packages owners to update their libraries, is there a way for me to force a minimum version for the Gemfile?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

孤檠 2025-01-24 18:48:05

找到了这个问题,它与本机代码无关,也与扑动代码无关。所有这些都与fastlane及其副依赖性(我使用firebase_app_distribution和upload_to_to_browserstack_app_live packages)绑定

,以解决任何遇到这个问题的人,请执行以下步骤:

  1. 确保拥有最新的快速车道版本(fast fast fast fast fast fast fast lane fast_fastlane )
  2. 更新本地安装的GEM(Bundle Update
  3. 转到已安装的fastlane(在我的情况下为Android和iOS)的每个目录,然后运行Fastlane Update_plugins

这应该将软件包升级到最新版本,希望已经解决了安全漏洞。

Found the issue, it was not related to native code, nor to Flutter code. All was tied to Fastlane and its subdependecies (I use firebase_app_distribution and upload_to_browserstack_app_live packages)

In order to fix, for anyone stumbling upon this question, do these steps:

  1. Makes sure to have the latest fast lane version (fast lane update_fastlane)
  2. Update the locally installed gems (bundle update)
  3. Go to each directory that you have Fastlane installed in (android and iOS in my case), and run fastlane update_plugins.

This should upgrade the packages to the latest versions, hopefully that have fixed the security vulnerabilities.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文