-
-
Notifications
You must be signed in to change notification settings - Fork 411
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
[Merged by Bors] - fix: RUSTSEC-2020-0071 in boa_engine #2627
[Merged by Bors] - fix: RUSTSEC-2020-0071 in boa_engine #2627
Conversation
Codecov Report
@@ Coverage Diff @@
## main #2627 +/- ##
==========================================
+ Coverage 49.48% 49.57% +0.08%
==========================================
Files 387 384 -3
Lines 39216 39130 -86
==========================================
- Hits 19407 19398 -9
+ Misses 19809 19732 -77
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for the fix! :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the fix as well! 😄
bors r+ |
<!--- Thank you for contributing to Boa! Please fill out the template below, and remove or add any information as you feel necessary. ---> This Pull Request fixes/closes #1671 It changes the following: - This PR tries to fix https://rustsec.org/advisories/RUSTSEC-2020-0071 in `boa_engine` crate by removing `time 0.1` from the dependency tree `cargo tree -p boa_engine | grep time` before: ```console │ ├── iana-time-zone v0.1.53 │ └── time v0.1.45 │ │ └── toml_datetime v0.5.1 ``` after: ```console │ ├── iana-time-zone v0.1.53 │ │ └── toml_datetime v0.5.1 ```
Pull request successfully merged into main. Build succeeded: |
This Pull Request fixes/closes #1671
It changes the following:
boa_engine
crate by removingtime 0.1
from the dependency treecargo tree -p boa_engine | grep time
before:
after: