Bump js-yaml, mocha, eth-gas-reporter and solidity-coverage in /src-upgradeable/lib-upgradeable/utility-contracts/lib/openzeppelin-contracts
Bumps js-yaml to 3.14.2 and updates ancestor dependencies js-yaml, mocha, eth-gas-reporter and solidity-coverage. These dependencies need to be updated together.
Updates js-yaml from 3.14.1 to 3.14.2
Changelog
Sourced from js-yaml's changelog.
[3.14.2] - 2025-11-15
Security
- Backported v4.1.1 fix to v3
[4.1.1] - 2025-11-12
Security
- Fix prototype pollution issue in yaml merge (<<) operator.
[4.1.0] - 2021-04-15
Added
- Types are now exported as
yaml.types.XXX.- Every type now has
optionsproperty with original arguments kept as they were (seeyaml.types.int.optionsas an example).Changed
Schema.extend()now keeps old type order in case of conflicts (e.g. Schema.extend([ a, b, c ]).extend([ b, a, d ]) is now ordered asabcdinstead ofcbad).[4.0.0] - 2021-01-03
Changed
- Check migration guide to see details for all breaking changes.
- Breaking: "unsafe" tags
!!js/function,!!js/regexp,!!js/undefinedare moved to js-yaml-js-types package.- Breaking: removed
safe*functions. Useload,loadAll,dumpinstead which are all now safe by default.yaml.DEFAULT_SAFE_SCHEMAandyaml.DEFAULT_FULL_SCHEMAare removed, useyaml.DEFAULT_SCHEMAinstead.yaml.Schema.create(schema, tags)is removed, useschema.extend(tags)instead.!!binarynow always mapped toUint8Arrayon load.- Reduced nesting of
/libfolder.- Parse numbers according to YAML 1.2 instead of YAML 1.1 (
01234is now decimal,0o1234is octal,1:23is parsed as string instead of base60).dump()no longer quotes:,[,],(,)except when necessary, #470, #557.- Line and column in exceptions are now formatted as
(X:Y)instead ofat line X, column Y(also present in compact format), #332.- Code snippet created in exceptions now contains multiple lines with line numbers.
dump()now serializesundefinedasnullin collections and removes keys withundefinedin mappings, #571.dump()withskipInvalid=truenow serializes invalid items in collections as null.- Custom tags starting with
!are now dumped as!taginstead of!<!tag>, #576.- Custom tags starting with
tag:yaml.org,2002:are now shorthanded using!!, #258.Added
... (truncated)
Commits
9963d363.14.2 released10d3c8edist rebuild5278870fix prototype pollution in merge (<<) (#731)- See full diff in compare view
Updates mocha from 10.0.0 to 10.8.2
Release notes
Sourced from mocha's releases.
v10.8.2
10.8.2 (2024-10-30)
🩹 Fixes
- support errors with circular dependencies in object values with --parallel (#5212) (ba0fefe)
- test link in html reporter (#5224) (f054acc)
📚 Documentation
🧹 Chores
🤖 Automation
v10.8.1
10.8.1 (2024-10-29)
🩹 Fixes
- handle case of invalid package.json with no explicit config (#5198) (f72bc17)
- Typos on mochajs.org (#5237) (d8ca270)
- use accurate test links in HTML reporter (#5228) (68803b6)
v10.8.0
10.8.0 (2024-10-29)
🌟 Features
🩹 Fixes
📚 Documentation
... (truncated)
Changelog
Sourced from mocha's changelog.
10.8.2 (2024-10-30)
🩹 Fixes
- support errors with circular dependencies in object values with --parallel (#5212) (ba0fefe)
- test link in html reporter (#5224) (f054acc)
📚 Documentation
🧹 Chores
🤖 Automation
10.8.1 (2024-10-29)
🩹 Fixes
- handle case of invalid package.json with no explicit config (#5198) (f72bc17)
- Typos on mochajs.org (#5237) (d8ca270)
- use accurate test links in HTML reporter (#5228) (68803b6)
10.8.0 (2024-10-29)
🌟 Features
🩹 Fixes
📚 Documentation
- add
SECURITY.mdpointing to Tidelift (#5210) (bd7e63a)- adopt Collective Funds Guidelines 0.1 (#5199) (2b03d86)
- update README, LICENSE and fix outdated (#5197) (1203e0e)
🧹 Chores
10.7.3 (2024-08-09)
... (truncated)
Commits
05097dbchore(main): release 10.8.2 (#5239)14e640edocs: indicate 'exports' interface does not work in browsers (#5181)881e3b0chore: fix docs builds by re-adding eleventy and ignoring gitignore again (#5...f054accfix: test link in html reporter (#5224)e536ab2build(deps): bump the github-actions group with 1 update (#5132)ba0fefefix: support errors with circular dependencies in object values with --parall...f44f71bchore(main): release 10.8.1 (#5238)f72bc17fix: handle case of invalid package.json with no explicit config (#5198)68803b6fix: use accurate test links in HTML reporter (#5228)d8ca270fix: Typos on mochajs.org (#5237)- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by voxpelli, a new releaser for mocha since your current version.
Updates eth-gas-reporter from 0.2.25 to 0.2.27
Release notes
Sourced from eth-gas-reporter's releases.
v0.2.27
What's Changed
- Remove
@ethersproject/abi, use ethers.utils by@cgeweckein cgewecke/eth-gas-reporter#301Full Changelog: https://github.com/cgewecke/eth-gas-reporter/compare/v0.2.26...v0.2.27
v0.2.26
What's Changed
- Update Mocha to v10 by
@frangioin cgewecke/eth-gas-reporter#295- Bump ethers version by
@ChristopherDedominiciin cgewecke/eth-gas-reporter#296- Remove unused request package by
@ChristopherDedominiciin cgewecke/eth-gas-reporter#297- Replace request-promise-native with axios by
@cgeweckein cgewecke/eth-gas-reporter#299New Contributors
@ChristopherDedominicimade their first contribution in cgewecke/eth-gas-reporter#296Full Changelog: https://github.com/cgewecke/eth-gas-reporter/compare/v0.2.2...v0.2.26
Changelog
Sourced from eth-gas-reporter's changelog.
0.2.27 / 2023-09-30
- Remove
@ethersproject/abi, use ethers.utils instead (cgewecke/eth-gas-reporter#301)0.2.26 / 2023-09-29
- Replace request-promise-native with axios / avoid default price API calls (cgewecke/eth-gas-reporter#299)
- Remove request package (cgewecke/eth-gas-reporter#297)
- Bump ethers version (cgewecke/eth-gas-reporter#296)
- Update Mocha to v10 (cgewecke/eth-gas-reporter#295)
0.2.23 / 2021-11-26
- Add notes to README about missing price data & remote data fetching race condition
- Add support for multiple gas price tokens (BNB, MATIC, AVAX, HR, MOVR) (cgewecke/eth-gas-reporter#251)
- Make
@codechecks/clientpeer dep optional (cgewecke/eth-gas-reporter#257)- Update
@solidity-parser/parserto 0.14.0 (cgewecke/eth-gas-reporter#261)0.2.22 / 2021-03-04
- Update
@solidity-parser/parserto ^0.12.0 (support Panic keyword in catch blocks) (cgewecke/eth-gas-reporter#243)0.2.21 / 2021-02-16
- Fix missing truffle migration deployments data (cgewecke/eth-gas-reporter#240)
- Upgrade solidity-parser/parser to 0.11.1 (cgewecke/eth-gas-reporter#239)
0.2.20 / 2020-12-01
- Add support for remote contracts data pre-loading (hardhat-gas-reporter feature)
0.2.19 / 2020-10-29
- Delegate contract loading/parsing to artifactor & make optional (#227)
0.2.18 / 2020-10-13
- Support multiple codechecks reports per CI run
- Add CI error threshold options: maxMethodDiff, maxDeploymentDiff
- Add async collection methods for BuidlerEVM
- Update solidity-parser/parser to 0.8.0 (contribution:
@vicnaum)- Update dev deps / use Node 12 in CI
0.2.17 / 2020-04-13
- Use
@solidity-parser/parserfor better solc 0.6.x parsing- Upgrade Mocha to ^7.1.1 (to remove minimist vuln warning)
- Stop crashing when parser or ABI Encoder fails
- Update
@ethersproject/abito ^5.0.0-beta.146 (and unpin)
... (truncated)
Commits
- See full diff in compare view
Updates solidity-coverage from 0.8.2 to 0.8.16
Release notes
Sourced from solidity-coverage's releases.
0.8.16
Support for custom storage layout syntax
This version updates the plugin's parser dependency to support the
layoutandatkeywords introduced in Solidity v0.8.29What's Changed
- Update solidity-parser/parser to 0.20.1 by
@cgeweckein sc-forks/solidity-coverage#905Full Changelog: https://github.com/sc-forks/solidity-coverage/compare/v0.8.15...v0.8.16
0.8.15
Speed up test runs when using
viaIRThis release adds an
irMinimumoption which should improve execution speeds if you're generating coverage with solc'sviaIRmode enabled. The plugin has handledviaIRfor about a year but it runs more slowly in that setting because it has to search for execution traces across a wider range of opcodes. The performance hit is especially notable in solidity code that iterates hundreds of times in loops.NOTE: Not all code will compile with
irMinimum(you may get stack-too-deep errors unfortunately). But if yours does, this option should make things faster for you.Usage
// .solcover.js module.exports = { irMinimum: true, }What's Changed
- docs: fixed dead link by
@iamslownin sc-forks/solidity-coverage#904- Add irMinimum option by
@cgeweckein sc-forks/solidity-coverage#907New Contributors
@iamslownmade their first contribution in sc-forks/solidity-coverage#904Full Changelog: https://github.com/sc-forks/solidity-coverage/compare/v0.8.14...v0.8.15
0.8.14
What's Changed
- Update solidity-parser/parser dep to
0.19.0for transient storage support by@cgeweckein sc-forks/solidity-coverage#898- fix: typos in documentation files by
@leopardracerin sc-forks/solidity-coverage#896New Contributors
@leopardracermade their first contribution in sc-forks/solidity-coverage#896Full Changelog: https://github.com/sc-forks/solidity-coverage/compare/v0.8.13...v0.8.14
v0.8.13
🐛 Bug Fixes
This release fixes a bug that caused the plugin to error when used with
hardhat-viemin combination with a forked network.What's Changed
... (truncated)
Changelog
Sourced from solidity-coverage's changelog.
Changelog
0.8.11 / 2024-03-07
- Check all SWAP opcodes for inst. hashes when viaIR is true (sc-forks/solidity-coverage#873)
0.8.10 / 2024-02-29
- Check all PUSH opcodes for instr. hashes when viaIR is true (sc-forks/solidity-coverage#871)
0.8.9 / 2024-02-27
- Fix duplicate hash logic (sc-forks/solidity-coverage#868)
- Improve organization of edge case code in collector (sc-forks/solidity-coverage#869)
0.8.8 / 2024-02-21
- Coerce sources path to absolute path if necessary (sc-forks/solidity-coverage#866)
- Only inject file-level instr. for first pragma in file (sc-forks/solidity-coverage#865)
0.8.7 / 2024-02-09
- Documentation Cleanup & Improvements for 0.8.7 release (sc-forks/solidity-coverage#859)
- Add tests for file-level function declarations (sc-forks/solidity-coverage#858)
- Add try / catch unit tests (sc-forks/solidity-coverage#857)
- Fix test project configs for viaIR detection in overrides (sc-forks/solidity-coverage#856)
- Enable coverage when viaIR compiler flag is true (sc-forks/solidity-coverage#854)
- Add missing onPreCompile hook (sc-forks/solidity-coverage#851)
- Remove ganache-cli related code from API & tests (sc-forks/solidity-coverage#849)
- Add command option to specify the source files to run the coverage on (sc-forks/solidity-coverage#838)
0.8.6 / 2024-01-28
- Add test for multi-contract files with inheritance (sc-forks/solidity-coverage#836)
- Add test for modifiers with post-conditions (sc-forks/solidity-coverage#835)
- Document Istanbul check-coverage cli command (sc-forks/solidity-coverage#834)
- Throw error when mocha parallel is set to true (sc-forks/solidity-coverage#833)
- Fix instrumentation error for virtual modifiers (sc-forks/solidity-coverage#832)
- Add test for file level
using forstatements
... (truncated)
Commits
c06fe7cUpdate solidity-parser/parser to 0.20.1 (#905)5d5df74Fix default irMinimum val in README.md9feb9140.8.15993d7b8Add irMinimum option (#907)e2126e7Fix link to fault localization academic paper inadvanced.md(#904)44f6607Add OPRetro to FUNDING.json0a9ac960.8.147c64eb6Add transient storage support (#898)de0452aUpdate matrix.md (#896)97dadf80.8.13- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
-
@dependabot rebasewill rebase this PR -
@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it -
@dependabot mergewill merge this PR after your CI passes on it -
@dependabot squash and mergewill squash and merge this PR after your CI passes on it -
@dependabot cancel mergewill cancel a previously requested merge and block automerging -
@dependabot reopenwill reopen this PR if it is closed -
@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually -
@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency -
@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) -
@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) -
@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the Security Alerts page.