Skip to content
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

chore(deps-dev): bump @openzeppelin/contracts-upgradeable from 3.4.2 to 4.9.3 in /packages/token-distribution #951

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 22, 2024

Bumps @openzeppelin/contracts-upgradeable from 3.4.2 to 4.9.3.

Release notes

Sourced from @​openzeppelin/contracts-upgradeable's releases.

v4.9.3

Note This release contains a fix for GHSA-g4vp-m682-qqmp.

  • ERC2771Context: Return the forwarder address whenever the msg.data of a call originating from a trusted forwarder is not long enough to contain the request signer address (i.e. msg.data.length is less than 20 bytes), as specified by ERC-2771. (#4481)
  • ERC2771Context: Prevent revert in _msgData() when a call originating from a trusted forwarder is not long enough to contain the request signer address (i.e. msg.data.length is less than 20 bytes). Return the full calldata in that case. (#4484)

v4.9.2

Note This release contains a fix for GHSA-wprv-93r4-jj2p.

  • MerkleProof: Fix a bug in processMultiProof and processMultiProofCalldata that allows proving arbitrary leaves if the tree contains a node with value 0 at depth 1.

v4.9.1

Note This release contains a fix for GHSA-5h3x-9wvq-w4m2.

  • Governor: Add a mechanism to restrict the address of the proposer using a suffix in the description.

v4.9.0

  • ReentrancyGuard: Add a _reentrancyGuardEntered function to expose the guard status. (#3714)
  • ERC721Wrapper: add a new extension of the ERC721 token which wraps an underlying token. Deposit and withdraw guarantee that the ownership of each token is backed by a corresponding underlying token with the same identifier. (#3863)
  • EnumerableMap: add a keys() function that returns an array containing all the keys. (#3920)
  • Governor: add a public cancel(uint256) function. (#3983)
  • Governor: Enable timestamp operation for blockchains without a stable block time. This is achieved by connecting a Governor's internal clock to match a voting token's EIP-6372 interface. (#3934)
  • Strings: add equal method. (#3774)
  • IERC5313: Add an interface for EIP-5313 that is now final. (#4013)
  • IERC4906: Add an interface for ERC-4906 that is now Final. (#4012)
  • StorageSlot: Add support for string and bytes. (#4008)
  • Votes, ERC20Votes, ERC721Votes: support timestamp checkpointing using EIP-6372. (#3934)
  • ERC4626: Add mitigation to the inflation attack through virtual shares and assets. (#3979)
  • Strings: add toString method for signed integers. (#3773)
  • ERC20Wrapper: Make the underlying variable private and add a public accessor. (#4029)
  • EIP712: add EIP-5267 support for better domain discovery. (#3969)
  • AccessControlDefaultAdminRules: Add an extension of AccessControl with additional security rules for the DEFAULT_ADMIN_ROLE. (#4009)
  • SignatureChecker: Add isValidERC1271SignatureNow for checking a signature directly against a smart contract using ERC-1271. (#3932)
  • SafeERC20: Add a forceApprove function to improve compatibility with tokens behaving like USDT. (#4067)
  • ERC1967Upgrade: removed contract-wide oz-upgrades-unsafe-allow delegatecall annotation, replaced by granular annotation in UUPSUpgradeable. (#3971)
  • ERC20Wrapper: self wrapping and deposit by the wrapper itself are now explicitly forbidden. (#4100)
  • ECDSA: optimize bytes32 computation by using assembly instead of abi.encodePacked. (#3853)
  • ERC721URIStorage: Emit ERC-4906 MetadataUpdate in _setTokenURI. (#4012)
  • ShortStrings: Added a library for handling short strings in a gas efficient way, with fallback to storage for longer strings. (#4023)
  • SignatureChecker: Allow return data length greater than 32 from EIP-1271 signers. (#4038)
  • UUPSUpgradeable: added granular oz-upgrades-unsafe-allow-reachable annotation to improve upgrade safety checks on latest version of the Upgrades Plugins (starting with @openzeppelin/[email protected]). (#3971)
  • Initializable: optimize _disableInitializers by using != instead of <. (#3787)
  • Ownable2Step: make acceptOwnership public virtual to enable usecases that require overriding it. (#3960)
  • UUPSUpgradeable.sol: Change visibility to the functions upgradeTo and upgradeToAndCall from external to public. (#3959)
  • TimelockController: Add the CallSalt event to emit on operation schedule. (#4001)

... (truncated)

Changelog

Sourced from @​openzeppelin/contracts-upgradeable's changelog.

4.9.3 (2023-07-28)

  • ERC2771Context: Return the forwarder address whenever the msg.data of a call originating from a trusted forwarder is not long enough to contain the request signer address (i.e. msg.data.length is less than 20 bytes), as specified by ERC-2771. (#4481)
  • ERC2771Context: Prevent revert in _msgData() when a call originating from a trusted forwarder is not long enough to contain the request signer address (i.e. msg.data.length is less than 20 bytes). Return the full calldata in that case. (#4484)

4.9.2 (2023-06-16)

  • MerkleProof: Fix a bug in processMultiProof and processMultiProofCalldata that allows proving arbitrary leaves if the tree contains a node with value 0 at depth 1.

4.9.1 (2023-06-07)

  • Governor: Add a mechanism to restrict the address of the proposer using a suffix in the description.

4.9.0 (2023-05-23)

  • ReentrancyGuard: Add a _reentrancyGuardEntered function to expose the guard status. (#3714)
  • ERC721Wrapper: add a new extension of the ERC721 token which wraps an underlying token. Deposit and withdraw guarantee that the ownership of each token is backed by a corresponding underlying token with the same identifier. (#3863)
  • EnumerableMap: add a keys() function that returns an array containing all the keys. (#3920)
  • Governor: add a public cancel(uint256) function. (#3983)
  • Governor: Enable timestamp operation for blockchains without a stable block time. This is achieved by connecting a Governor's internal clock to match a voting token's EIP-6372 interface. (#3934)
  • Strings: add equal method. (#3774)
  • IERC5313: Add an interface for EIP-5313 that is now final. (#4013)
  • IERC4906: Add an interface for ERC-4906 that is now Final. (#4012)
  • StorageSlot: Add support for string and bytes. (#4008)
  • Votes, ERC20Votes, ERC721Votes: support timestamp checkpointing using EIP-6372. (#3934)
  • ERC4626: Add mitigation to the inflation attack through virtual shares and assets. (#3979)
  • Strings: add toString method for signed integers. (#3773)
  • ERC20Wrapper: Make the underlying variable private and add a public accessor. (#4029)
  • EIP712: add EIP-5267 support for better domain discovery. (#3969)
  • AccessControlDefaultAdminRules: Add an extension of AccessControl with additional security rules for the DEFAULT_ADMIN_ROLE. (#4009)
  • SignatureChecker: Add isValidERC1271SignatureNow for checking a signature directly against a smart contract using ERC-1271. (#3932)
  • SafeERC20: Add a forceApprove function to improve compatibility with tokens behaving like USDT. (#4067)
  • ERC1967Upgrade: removed contract-wide oz-upgrades-unsafe-allow delegatecall annotation, replaced by granular annotation in UUPSUpgradeable. (#3971)
  • ERC20Wrapper: self wrapping and deposit by the wrapper itself are now explicitly forbidden. (#4100)
  • ECDSA: optimize bytes32 computation by using assembly instead of abi.encodePacked. (#3853)
  • ERC721URIStorage: Emit ERC-4906 MetadataUpdate in _setTokenURI. (#4012)
  • ShortStrings: Added a library for handling short strings in a gas efficient way, with fallback to storage for longer strings. (#4023)
  • SignatureChecker: Allow return data length greater than 32 from EIP-1271 signers. (#4038)
  • UUPSUpgradeable: added granular oz-upgrades-unsafe-allow-reachable annotation to improve upgrade safety checks on latest version of the Upgrades Plugins (starting with @openzeppelin/[email protected]). (#3971)
  • Initializable: optimize _disableInitializers by using != instead of <. (#3787)
  • Ownable2Step: make acceptOwnership public virtual to enable usecases that require overriding it. (#3960)
  • UUPSUpgradeable.sol: Change visibility to the functions upgradeTo and upgradeToAndCall from external to public. (#3959)
  • TimelockController: Add the CallSalt event to emit on operation schedule. (#4001)
  • Reformatted codebase with latest version of Prettier Solidity. (#3898)
  • Math: optimize log256 rounding check. (#3745)
  • ERC20Votes: optimize by using unchecked arithmetic. (#3748)
  • Multicall: annotate multicall function as upgrade safe to not raise a flag for its delegatecall. (#3961)
  • ERC20Pausable, ERC721Pausable, ERC1155Pausable: Add note regarding missing public pausing functionality (#4007)
  • ECDSA: Add a function toDataWithIntendedValidatorHash that encodes data with version 0x00 following EIP-191. (#4063)
  • MerkleProof: optimize by using unchecked arithmetic. (#3745)

... (truncated)

Commits

Dependabot compatibility score

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 rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will 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 version will 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 dependency will 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.

Bumps [@openzeppelin/contracts-upgradeable](https://github.com/OpenZeppelin/openzeppelin-contracts-upgradeable) from 3.4.2 to 4.9.3.
- [Release notes](https://github.com/OpenZeppelin/openzeppelin-contracts-upgradeable/releases)
- [Changelog](https://github.com/OpenZeppelin/openzeppelin-contracts-upgradeable/blob/v4.9.3/CHANGELOG.md)
- [Commits](OpenZeppelin/openzeppelin-contracts-upgradeable@v3.4.2...v4.9.3)

---
updated-dependencies:
- dependency-name: "@openzeppelin/contracts-upgradeable"
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Feb 22, 2024
Copy link

New and removed dependencies detected. Learn more about Socket for GitHub ↗︎

Package New capabilities Transitives Size Publisher
npm/[email protected] None 0 228 kB fatfisz
npm/[email protected] None 0 6.3 kB sindresorhus
npm/[email protected] None 0 4.86 kB substack
npm/[email protected] None 0 10.5 kB dougwilson
npm/[email protected] None 0 15.9 kB phated
npm/[email protected] None 0 3.94 kB natevw
npm/[email protected] environment, eval, filesystem 0 2.26 MB zloirock
npm/[email protected] None +2 34.2 kB dougwilson
npm/[email protected] None 0 31 kB sheetjs
npm/[email protected] None +8 300 kB cwmma
npm/[email protected] None +6 97.8 kB cwmma
npm/[email protected] None +7 104 kB cwmma
npm/[email protected] filesystem, unsafe 0 6.25 kB pi0
npm/[email protected] None +33 832 kB cwmma
npm/[email protected] Transitive: eval +4 452 kB medikoo
npm/[email protected] environment +1 49.2 kB qix
npm/[email protected] None +2 9.49 kB sindresorhus
npm/[email protected] None 0 2.94 kB sindresorhus
npm/[email protected] None 0 6.09 kB samverschueren
npm/[email protected] None +1 11.5 kB sindresorhus
npm/[email protected] None 0 8.11 kB thlorenz
npm/[email protected] filesystem +1 6.47 kB sindresorhus
npm/[email protected] None +1 15 kB sindresorhus
npm/[email protected] Transitive: eval +8 179 kB ljharb
npm/[email protected] Transitive: eval +11 230 kB ljharb
npm/[email protected] None 0 8.02 kB apechimp
npm/[email protected] environment, eval 0 27.1 kB dougwilson
npm/[email protected] None +2 45.3 kB indutny
npm/[email protected] None 0 9.68 kB sindresorhus
npm/[email protected] None 0 429 kB explodingcabbage
npm/[email protected] None +4 66.1 kB cwmma
npm/[email protected] Transitive: filesystem +1 10.8 kB sindresorhus
npm/[email protected] None +1 157 kB eslint
npm/[email protected] None 0 2.66 kB raynos
npm/[email protected] None +3 137 kB blakeembrey
npm/[email protected] environment, filesystem 0 79.1 kB motdotla
npm/[email protected] None 0 5.69 kB sindresorhus
npm/[email protected] None 0 13.6 kB komagata
npm/[email protected] None 0 6.26 kB dougwilson
npm/[email protected] None 0 276 kB kilianvalkhof
npm/[email protected] None +7 295 kB indutny
npm/[email protected] None 0 48.3 kB mathias
npm/[email protected] None 0 7.86 kB dougwilson
npm/[email protected] None +2 13.2 kB mafintosh
npm/[email protected] None 0 10.2 kB sindresorhus
npm/[email protected] None +1 13.1 kB qix
npm/[email protected] Transitive: eval +57 3.27 MB ljharb
npm/[email protected] None 0 3.86 kB ljharb
npm/[email protected] Transitive: eval +6 141 kB ljharb
npm/[email protected] None 0 12.3 kB ljharb
npm/[email protected] Transitive: eval +7 161 kB ljharb
npm/[email protected] None +2 53.6 kB ljharb
npm/[email protected] None +5 150 kB ljharb
npm/[email protected] eval +4 452 kB medikoo
npm/[email protected] Transitive: eval +4 452 kB medikoo
npm/[email protected] Transitive: eval +4 452 kB medikoo
npm/[email protected] filesystem 0 11.6 kB lukeed
npm/[email protected] None 0 3.66 kB dougwilson
npm/[email protected] None 0 2.69 kB jbnicolai
npm/[email protected] None +2 197 kB eslintbot
npm/[email protected] None 0 342 kB mysticatea
npm/[email protected] None 0 32.3 kB eslintbot
npm/[email protected] None 0 314 kB ariya
npm/[email protected] None +1 1.04 MB michaelficarra
npm/[email protected] None +1 50.6 kB michaelficarra
npm/[email protected] None 0 37.1 kB michaelficarra
npm/[email protected] None 0 50.6 kB michaelficarra
npm/[email protected] filesystem 0 10.8 kB dougwilson
npm/[email protected] None +3 567 kB danfinlay
npm/[email protected] None +4 1.08 MB silentcicero
npm/[email protected] None +2 244 kB silentcicero
npm/[email protected] None 0 189 kB mysticatea
npm/[email protected] None +3 48.9 kB dcousens
npm/[email protected] None 0 23.5 kB ljharb
npm/[email protected] None 0 13 kB esp
npm/[email protected] filesystem +14 459 kB mrmlnc
npm/[email protected] None 0 17 kB esp
npm/[email protected] None 0 9.44 kB hiddentao
npm/[email protected] eval 0 90.5 kB matteo.collina
npm/[email protected] None 0 38.1 kB esailija
npm/[email protected] None +1 51.4 kB matteo.collina
npm/[email protected] filesystem 0 25.6 kB royriojas
npm/[email protected] Transitive: filesystem +2 22.3 kB sindresorhus
npm/[email protected] None 0 26.6 kB timoxley
npm/[email protected] None 0 40.3 kB webreflection
npm/[email protected] network 0 29.4 kB rubenverborgh
npm/[email protected] None +1 42 kB ljharb
npm/[email protected] filesystem, network +5 314 kB niftylettuce
npm/[email protected] None 0 5.88 kB dougwilson
npm/[email protected] None 0 10.1 kB dougwilson
npm/[email protected] environment, filesystem 0 13.4 kB isaacs
npm/[email protected] None 0 173 kB pipobscure
npm/[email protected] None 0 31.4 kB ljharb
npm/[email protected] Transitive: eval +57 3.27 MB ljharb
npm/[email protected] None 0 43.5 kB mikolalysenko
npm/[email protected] None 0 16.7 kB ljharb
npm/[email protected] None 0 28.9 kB loganfsmyth
npm/[email protected] None 0 4.72 kB stefanpenner
npm/[email protected] eval +5 129 kB ljharb
npm/[email protected] None 0 12.2 kB sindresorhus
npm/[email protected] Transitive: eval +12 246 kB ljharb
npm/[email protected] None 0 3.71 kB jonschlinkert
npm/[email protected] None +2 32 kB phated
npm/[email protected] None +3 76.3 kB raynos
npm/[email protected] None 0 39.8 kB sindresorhus
npm/[email protected] Transitive: eval +12 252 kB ljharb
npm/[email protected] Transitive: eval +6 137 kB ljharb
npm/[email protected] environment, filesystem 0 32.5 kB isaacs
npm/[email protected] None 0 237 kB orling
npm/[email protected] None 0 812 kB mattpauldavies
npm/[email protected] None +1 256 kB apollo-bot
npm/[email protected] None 0 5.14 kB sindresorhus
npm/[email protected] None 0 12.8 kB ljharb
npm/[email protected] None 0 3.13 kB sindresorhus
npm/[email protected] Transitive: eval +7 152 kB ljharb
npm/[email protected] None 0 12 kB ljharb
npm/[email protected] None 0 20.6 kB ljharb
npm/[email protected] None +1 38.2 kB ljharb
npm/[email protected] None +2 18.3 kB jonschlinkert
npm/[email protected] None +2 47.2 kB indutny
npm/[email protected] None +1 42.6 kB ljharb
npm/[email protected] None 0 124 kB mathias
npm/[email protected] None +4 76.9 kB indutny
npm/[email protected] None 0 25.8 kB nlf
npm/[email protected] None 0 35.9 kB kornel
npm/[email protected] Transitive: environment, eval +5 70.7 kB dougwilson
npm/[email protected] network Transitive: environment +3 110 kB tootallnate
npm/[email protected] None 0 44.3 kB ehmicky
npm/[email protected] environment, filesystem, shell 0 6.44 kB typicode
npm/[email protected] None +1 378 kB ashtuchkin
npm/[email protected] None +1 232 kB 1api
npm/[email protected] None 0 6.8 kB feross
npm/[email protected] None 0 51.5 kB kael
npm/[email protected] None 0 14.6 kB cwmma
npm/[email protected] None 0 679 kB leebyron
npm/[email protected] Transitive: filesystem, unsafe +3 19.8 kB sindresorhus
npm/[email protected] None 0 11.9 kB jensyt
npm/[email protected] None 0 4.4 kB sindresorhus
npm/[email protected] None +2 10.8 kB isaacs
npm/[email protected] None 0 3.96 kB isaacs
npm/[email protected] None 0 9.3 kB isaacs
npm/[email protected] Transitive: eval +14 367 kB ljharb
npm/[email protected] Transitive: environment +2 28.5 kB zertosh
npm/[email protected] None 0 1.3 kB sindresorhus
npm/[email protected] None 0 42.1 kB whitequark
npm/[email protected] Transitive: eval +13 278 kB ljharb
npm/[email protected] Transitive: eval +12 249 kB ljharb
npm/[email protected] None 0 4.05 kB qix
npm/[email protected] None +1 27.6 kB ljharb
npm/[email protected] Transitive: eval +13 271 kB ljharb
npm/[email protected] None 0 4.59 kB feross
npm/[email protected] None 0 28.9 kB ljharb
npm/[email protected] None +2 72.8 kB ljharb
npm/[email protected] None +2 59 kB ljharb
npm/[email protected] None 0 22.9 kB ljharb
npm/[email protected] filesystem 0 3.01 kB sindresorhus
npm/[email protected] None 0 6.22 kB jonschlinkert
npm/[email protected] None 0 4.99 kB sindresorhus
npm/[email protected] eval +2 70.1 kB ljharb
npm/[email protected] None +1 19.8 kB phated
npm/[email protected] None 0 9.44 kB silentcicero
npm/[email protected] None 0 27.1 kB ljharb
npm/[email protected] None +2 60.4 kB ljharb
npm/[email protected] None 0 9.62 kB jonschlinkert
npm/[email protected] None 0 4.12 kB sindresorhus
npm/[email protected] None 0 2.62 kB sindresorhus
npm/[email protected] Transitive: eval +13 279 kB ljharb
npm/[email protected] None +2 18 kB jonschlinkert
npm/[email protected] Transitive: eval +12 250 kB ljharb
npm/[email protected] None 0 5.93 kB sindresorhus
npm/[email protected] None +2 57.3 kB ljharb
npm/[email protected] None +1 42.6 kB ljharb
npm/[email protected] Transitive: eval +18 387 kB ljharb
npm/[email protected] None 0 4.41 kB hughsk
npm/[email protected] None +1 11.4 kB jonschlinkert
npm/[email protected] None 0 3.54 kB sindresorhus
npm/[email protected] None 0 6.58 kB zeke
npm/[email protected] None 0 4.34 kB wayfind
npm/[email protected] Transitive: eval +12 244 kB ljharb
npm/[email protected] None 0 7.96 kB jonschlinkert
npm/[email protected] environment, filesystem +1 6.77 kB sindresorhus
npm/[email protected] None 0 3.43 kB juliangruber
npm/[email protected] environment, filesystem 0 11 kB isaacs
npm/[email protected] None 0 6.93 kB doowb
npm/[email protected] environment +7 400 kB isaacs
npm/[email protected] None 0 1.1 MB yaozilong
npm/[email protected] None 0 52.9 kB emn178
npm/[email protected] None 0 15.1 kB lydell
npm/[email protected] None 0 32 kB mathias
npm/[email protected] None 0 5.4 kB dominictarr
npm/[email protected] None 0 10.4 kB isaacs
npm/[email protected] None 0 22.2 kB esp
npm/[email protected] None 0 14.2 kB samn
npm/[email protected] None 0 12.7 kB isaacs
npm/[email protected] None 0 235 kB jordanbtucker
npm/[email protected] None 0 36.8 kB creationix
npm/[email protected] None +1 33.2 kB jaredwray
npm/[email protected] None 0 22.8 kB doowb
npm/[email protected] None 0 20.3 kB lukeed
npm/[email protected] None +1 7.74 kB sindresorhus
npm/[email protected] None +2 82.9 kB gkz
npm/[email protected] None +1 59.5 kB cwmma
npm/[email protected] None 0 5.39 kB eventualbuddha
npm/[email protected] Transitive: environment, filesystem +8 103 kB sindresorhus
npm/[email protected] network +2 527 kB tofumatt
npm/[email protected] filesystem 0 6.58 kB sindresorhus
npm/[email protected] None 0 19.9 kB jdalton
npm/[email protected] None 0 21.9 kB jdalton
npm/[email protected] None 0 26.5 kB jdalton
npm/[email protected] None 0 6.89 kB jdalton
npm/[email protected] None 0 54.1 kB jdalton
npm/[email protected] None 0 19.8 kB jdalton
npm/[email protected] None 0 1.41 MB bnjmnt4n
npm/[email protected] environment +1 20.9 kB zertosh
npm/[email protected] None +1 102 kB blakeembrey
npm/[email protected] None +1 30.4 kB isaacs
npm/[email protected] None 0 12.4 kB julien-f
npm/[email protected] None 0 7.6 kB jonschlinkert
npm/[email protected] None 0 9.49 kB sindresorhus
npm/[email protected] None 0 8.47 kB jonschlinkert
npm/[email protected] None +2 43.7 kB cwmma
npm/[email protected] None 0 11.1 kB dougwilson
npm/[email protected] None 0 4.89 kB dougwilson
npm/[email protected] None 0 4.31 kB stevemao
npm/[email protected] None 0 8.9 kB zensh
npm/[email protected] network 0 5.29 kB dougwilson
npm/[email protected] network 0 12 kB paulmillr
npm/[email protected] None +2 195 kB jonschlinkert
npm/[email protected] None +1 10.4 kB indutny
npm/[email protected] None 0 206 kB dougwilson
npm/[email protected] None +1 224 kB dougwilson
npm/[email protected] environment, filesystem 0 51.7 kB broofa
npm/[email protected] None 0 4.46 kB sindresorhus
npm/[email protected] None 0 3.58 kB sindresorhus
npm/[email protected] None +1 57.5 kB raynos
npm/[email protected] None 0 2.97 kB thejameskyle
npm/[email protected] None 0 1.55 kB cwmma
npm/[email protected] None 0 4.76 kB indutny
npm/[email protected] None 0 54.5 kB ljharb
npm/[email protected] None 0 285 kB isaacs
npm/[email protected] filesystem +1 62.2 kB isaacs
npm/[email protected] None 0 6.84 kB styfle
npm/[email protected] None 0 5.65 kB megawac
npm/[email protected] None 0 27.4 kB dougwilson
npm/[email protected] None 0 7.65 kB medikoo
npm/[email protected] None +2 127 kB blakeembrey
npm/[email protected] None 0 799 kB nicknaso
npm/[email protected] environment, filesystem 0 13.4 kB mafintosh
npm/[email protected] None 0 34 kB chicoxyzzy
npm/[email protected] None 0 9.22 kB jonschlinkert
npm/[email protected] None 0 21.2 kB sindresorhus
npm/[email protected] environment +1 12.7 kB sindresorhus
npm/[email protected] None 0 2.35 kB sindresorhus
npm/[email protected] None +2 448 kB silentcicero
npm/[email protected] None 0 5.49 kB sindresorhus
npm/[email protected] None 0 97.2 kB ljharb
npm/[email protected] None 0 26.5 kB ljharb
npm/[email protected] Transitive: eval +14 344 kB ljharb
npm/[email protected] None +1 18.6 kB dougwilson
npm/[email protected] None 0 7.54 kB dougwilson
npm/[email protected] None +1 7.01 kB isaacs
npm/[email protected] None +1 10.6 kB sindresorhus
npm/[email protected] None +6 161 kB gkz
npm/[email protected] environment 0 3.15 kB sindresorhus
npm/[email protected] environment, shell +2 13.2 kB sindresorhus
npm/[email protected] None 0 3.06 kB sindresorhus
npm/[email protected] None +1 11.8 kB sindresorhus
npm/[email protected] None 0 4.37 kB sindresorhus
npm/[email protected] None +4 147 kB blakeembrey
npm/[email protected] None +1 10.3 kB sindresorhus
npm/[email protected] None +15 264 kB cwmma
npm/[email protected] None +3 25.7 kB phated
npm/[email protected] None +4 34.3 kB sindresorhus
npm/[email protected] None 0 10.3 kB dougwilson
npm/[email protected] None +3 142 kB blakeembrey
npm/[email protected] None 0 4.46 kB jonschlinkert
npm/[email protected] None 0 54.3 kB goto-bus-stop
npm/[email protected] filesystem 0 3.92 kB sindresorhus
npm/[email protected] None 0 3.62 kB sindresorhus
npm/[email protected] None 0 4.55 kB sindresorhus
npm/[email protected] None 0 4.51 kB jbgutierrez
npm/[email protected] None 0 4.79 kB jonschlinkert
npm/[email protected] None +1 10.2 kB jonschlinkert
npm/[email protected] None 0 6.78 kB blakeembrey
npm/[email protected] filesystem 0 5.41 kB sindresorhus
npm/[email protected] None +8 117 kB cwmma
npm/[email protected] None 0 11.3 kB meryn
npm/[email protected] environment 0 5.66 kB alexeyraspopov
npm/[email protected] None 0 90 kB mrmlnc
npm/[email protected] None 0 7.23 kB sindresorhus
npm/[email protected] None +1 13.1 kB floatdrop
npm/[email protected] None 0 10.5 kB npm
npm/[email protected] None 0 10.9 kB ljharb
npm/[email protected] None 0 36.7 kB gkz
npm/[email protected] environment, filesystem, unsafe 0 11.2 MB prettier-bot
npm/[email protected] None 0 15.3 kB cwmma
npm/[email protected] None 0 15.5 kB turbopope
npm/[email protected] None +2 63.4 kB dougwilson
npm/[email protected] environment 0 29.5 kB rob-w
npm/[email protected] environment 0 8.21 kB isaacs
npm/[email protected] None 0 461 kB lupomontero
npm/[email protected] None +19 401 kB cwmma
npm/[email protected] filesystem +3 21 kB mafintosh
npm/[email protected] Transitive: filesystem +5 35.2 kB mafintosh
npm/[email protected] None 0 33.5 kB google-wombot
npm/[email protected] None 0 8.37 kB feross
npm/[email protected] None 0 12.8 kB davidmarkclements
npm/[email protected] None 0 7.47 kB sindresorhus
npm/[email protected] None +1 38.5 kB cwmma
npm/[email protected] None +2 45.3 kB cwmma
npm/[email protected] None 0 8.46 kB dougwilson
npm/[email protected] environment +2 133 kB matteo.collina
npm/[email protected] filesystem +1 110 kB paulmillr
npm/[email protected] None 0 49.2 kB mathias
npm/[email protected] None 0 27.9 kB benjamn
npm/[email protected] Transitive: eval +16 345 kB ljharb
npm/[email protected] None 0 302 kB mysticatea
npm/[email protected] None 0 4.25 kB darsain
npm/[email protected] filesystem 0 12.1 kB troygoode
npm/[email protected] unsafe 0 3.42 kB floatdrop
npm/[email protected] None 0 3.93 kB bcoe
npm/[email protected] network 0 4.64 kB szmarczak
npm/[email protected] filesystem, unsafe 0 5.82 kB sindresorhus
npm/[email protected] environment, filesystem +5 232 kB ljharb
npm/[email protected] None 0 9.44 kB matteo.collina
npm/[email protected] None 0 25.2 kB matteo.collina
npm/[email protected] None +1 13.7 kB dcousens
npm/[email protected] None +1 162 kB ralxz
npm/[email protected] None +1 14.9 kB feross
npm/[email protected] None +1 4.59 MB blesh
npm/[email protected] None 0 32.1 kB feross
npm/[email protected] Transitive: eval +14 289 kB ljharb
npm/[email protected] None 0 30.1 kB bridgear
npm/[email protected] None 0 42.3 kB chalker
npm/[email protected] None 0 226 kB ricmoo
npm/[email protected] None +2 55.2 kB okuryu
npm/[email protected] None 0 4.22 kB bcoe
npm/[email protected] Transitive: eval +10 209 kB ljharb
npm/[email protected] Transitive: eval +11 224 kB ljharb
npm/[email protected] None 0 8.56 kB domenic
npm/[email protected] None 0 4.03 kB wesleytodd
npm/[email protected] None +2 67.1 kB dcousens
npm/[email protected] None 0 2.83 kB sindresorhus
npm/[email protected] Transitive: eval +13 347 kB ljharb
npm/[email protected] None 0 9.96 kB isaacs
npm/[email protected] None 0 4.62 kB feross
npm/[email protected] None 0 3.51 kB sindresorhus
npm/[email protected] None 0 138 kB joshglazebrook
npm/[email protected] network +1 294 kB joshglazebrook
npm/[email protected] None 0 805 kB tromey
npm/[email protected] None +3 51.4 kB kemitchell
npm/[email protected] None 0 3.47 kB kemitchell
npm/[email protected] None +2 27.9 kB kemitchell
npm/[email protected] None 0 12.6 kB kemitchell
npm/[email protected] None 0 17.4 kB matteo.collina
npm/[email protected] None 0 34.8 kB alexei
npm/[email protected] None 0 8.85 kB felixge
npm/[email protected] None 0 4.69 kB jonschlinkert
npm/[email protected] None 0 12.1 kB dougwilson
npm/[email protected] None 0 4.46 kB mafintosh
npm/[email protected] Transitive: eval +57 3.27 MB ljharb
npm/[email protected] Transitive: eval +57 3.27 MB ljharb
npm/[email protected] Transitive: eval +57 3.27 MB ljharb
npm/[email protected] None +1 9.64 kB sindresorhus
npm/[email protected] None 0 3 kB sindresorhus
npm/[email protected] None 0 3.05 kB sindresorhus
npm/[email protected] None +1 19.1 kB silentcicero
npm/[email protected] None +1 6.28 kB sindresorhus
npm/[email protected] None 0 6.96 kB sindresorhus
npm/[email protected] None 0 9.18 kB ljharb
npm/[email protected] None 0 11 kB substack
npm/[email protected] None 0 12.5 kB dominictarr
npm/[email protected] None 0 4.08 kB floatdrop
npm/[email protected] None 0 3.5 kB sindresorhus
npm/[email protected] None +1 27.9 kB jonschlinkert
npm/[email protected] None 0 4.68 kB dougwilson
npm/[email protected] None 0 268 kB sebmaster
npm/[email protected] None 0 3.85 kB sindresorhus
npm/[email protected] environment, filesystem, unsafe +3 509 kB jonaskello
npm/[email protected] None 0 84 kB typescript-bot
npm/[email protected] None +1 32.4 MB ajaff
npm/[email protected] None 0 8.14 kB dchest
npm/[email protected] None 0 175 kB dchest
npm/[email protected] None +1 57.9 kB gkz
npm/[email protected] None 0 102 kB sindresorhus
npm/[email protected] None +3 253 kB dougwilson
npm/[email protected] Transitive: eval +19 400 kB ljharb
npm/[email protected] Transitive: eval +19 407 kB ljharb
npm/[email protected] Transitive: eval +19 408 kB ljharb
npm/[email protected] Transitive: eval +19 413 kB ljharb
npm/[email protected] None +1 13.2 kB feross
npm/[email protected] None 0 32 MB typescript-bot
npm/[email protected] Transitive: eval +20 392 kB ljharb
npm/[email protected] None 0 4.93 kB tunnckocore
npm/[email protected] environment, network, unsafe +1 1.25 MB matteo.collina
npm/[email protected] None 0 4.31 kB dougwilson
npm/[email protected] None +3 26.8 kB jonschlinkert
npm/[email protected] None 0 3.01 kB sindresorhus
npm/[email protected] filesystem, shell Transitive: environment +6 2.37 MB ai
npm/[email protected] None +1 503 kB garycourt
npm/[email protected] None 0 11.2 kB mathias
npm/[email protected] None 0 5.48 kB tootallnate
npm/[email protected] environment Transitive: eval +22 486 kB goto-bus-stop
npm/[email protected] None 0 3.72 kB jaredhanson
npm/[email protected] None 0 116 kB ctavan
npm/[email protected] environment, filesystem, unsafe 0 18.2 kB cspotcode
npm/[email protected] environment, filesystem, unsafe 0 14.9 kB yungsters
npm/[email protected] None +4 68 kB kemitchell
npm/[email protected] None 0 9.03 kB chrisdickinson
npm/[email protected] None 0 8.75 kB dougwilson
npm/[email protected] None +2 29.2 kB timoxley
npm/[email protected] None 0 12.4 kB sebmaster
npm/[email protected] Transitive: eval +19 377 kB ljharb
npm/[email protected] None 0 4.04 kB nexdrew
npm/[email protected] Transitive: eval +17 364 kB ljharb
npm/[email protected] environment Transitive: filesystem +1 20.9 kB isaacs
npm/[email protected] None 0 330 kB josdejong
npm/[email protected] None 0 2.96 kB zkat
npm/[email protected] network 0 113 kB lpinca
npm/[email protected] None 0 6.46 kB raynos
npm/[email protected] filesystem 0 11 kB oss-bot
npm/[email protected] None 0 14.8 kB isaacs
npm/[email protected] environment 0 448 kB eemeli
npm/[email protected] environment, filesystem 0 124 kB oss-bot
npm/[email protected] None +3 48.1 kB oss-bot
npm/[email protected] None 0 6.31 kB sindresorhus
npm/[email protected] None 0 6.03 kB sindresorhus

🚮 Removed packages: npm/@0no-co/[email protected], npm/@arbitrum/[email protected], npm/@ardatan/[email protected], npm/@ardatan/[email protected], npm/@aws-crypto/[email protected], npm/@aws-crypto/[email protected], npm/@aws-sdk/[email protected], npm/@aws-sdk/[email protected], npm/@babel/[email protected], npm/@babel/[email protected], npm/@babel/[email protected], npm/@babel/[email protected], npm/@chainsafe/[email protected], npm/@changesets/[email protected], npm/@changesets/[email protected], npm/@changesets/[email protected], npm/@changesets/[email protected], npm/@changesets/[email protected], npm/@changesets/[email protected], npm/@changesets/[email protected], npm/@changesets/[email protected], npm/@changesets/[email protected], npm/@changesets/[email protected], npm/@changesets/[email protected], npm/@changesets/[email protected], npm/@changesets/[email protected], npm/@changesets/[email protected], npm/@changesets/[email protected], npm/@changesets/[email protected], npm/@commitlint/[email protected], npm/@commitlint/[email protected], npm/@commitlint/[email protected], npm/@commitlint/[email protected], npm/@commitlint/[email protected], npm/@commitlint/[email protected], npm/@commitlint/[email protected], npm/@commitlint/[email protected], npm/@commitlint/[email protected], npm/@commitlint/[email protected], npm/@commitlint/[email protected], npm/@commitlint/[email protected], npm/@commitlint/[email protected], npm/@commitlint/[email protected], npm/@commitlint/[email protected], npm/@commitlint/[email protected], npm/@commitlint/[email protected], npm/@dabh/[email protected], npm/@defi-wonderland/[email protected], npm/@ensdomains/[email protected], npm/@ensdomains/[email protected], npm/@envelop/[email protected], npm/@envelop/[email protected], npm/@envelop/[email protected], npm/@envelop/[email protected], npm/@eslint-community/[email protected], npm/@eslint/[email protected], npm/@ethereum-waffle/[email protected], npm/@ethereum-waffle/[email protected], npm/@ethereum-waffle/[email protected], npm/@ethereum-waffle/[email protected], npm/@ethereum-waffle/[email protected], npm/@ethereumjs/[email protected], npm/@ethereumjs/[email protected], npm/@ethereumjs/[email protected], npm/@ethersproject/[email protected], npm/@ethersproject/[email protected], npm/@ethersproject/[email protected], npm/@ethersproject/[email protected], npm/@ethersproject/[email protected], npm/@fastify/[email protected], npm/@graphprotocol/[email protected], npm/@graphprotocol/[email protected], npm/@graphprotocol/[email protected], npm/@graphprotocol/[email protected], npm/@graphprotocol/[email protected], npm/@graphprotocol/[email protected], npm/@graphprotocol/[email protected], npm/@graphprotocol/[email protected], npm/@graphprotocol/[email protected], npm/@graphql-codegen/[email protected], npm/@graphql-codegen/[email protected], npm/@graphql-codegen/[email protected], npm/@graphql-codegen/[email protected], npm/@graphql-codegen/[email protected], npm/@graphql-codegen/[email protected], npm/@graphql-codegen/[email protected], npm/@graphql-codegen/[email protected], npm/@graphql-codegen/[email protected], npm/@graphql-inspector/[email protected], npm/@graphql-mesh/[email protected], npm/@graphql-mesh/[email protected], npm/@graphql-mesh/[email protected], npm/@graphql-mesh/[email protected], npm/@graphql-mesh/[email protected], npm/@graphql-mesh/[email protected], npm/@graphql-mesh/[email protected], npm/@graphql-mesh/[email protected], npm/@graphql-mesh/[email protected], npm/@graphql-mesh/[email protected], npm/@graphql-mesh/[email protected], npm/@graphql-mesh/[email protected], npm/@graphql-mesh/[email protected], npm/@graphql-mesh/[email protected], npm/@graphql-tools/[email protected], npm/@graphql-tools/[email protected], npm/@graphql-tools/[email protected], npm/@graphql-tools/[email protected], npm/@graphql-tools/[email protected], npm/@graphql-tools/[email protected], npm/@graphql-tools/[email protected], npm/@graphql-tools/[email protected], npm/@graphql-tools/[email protected], npm/@graphql-tools/[email protected], npm/@graphql-tools/[email protected], npm/@graphql-tools/[email protected], npm/@graphql-tools/[email protected], npm/@graphql-tools/[email protected], npm/@graphql-tools/[email protected], npm/@graphql-tools/[email protected], npm/@graphql-tools/[email protected], npm/@graphql-tools/[email protected], npm/@graphql-tools/[email protected], npm/@graphql-tools/[email protected], npm/@graphql-typed-document-node/[email protected], npm/@graphql-yoga/[email protected], npm/@graphql-yoga/[email protected], npm/@graphql-yoga/[email protected], npm/@humanwhocodes/[email protected], npm/@ljharb/[email protected], npm/@ljharb/[email protected], npm/@manypkg/[email protected], npm/@manypkg/[email protected], npm/@metamask/[email protected], npm/@noble/[email protected], npm/@nomicfoundation/[email protected], npm/@nomicfoundation/[email protected], npm/@nomicfoundation/[email protected], npm/@nomicfoundation/[email protected], npm/@nomicfoundation/[email protected], npm/@nomicfoundation/[email protected], npm/@nomicfoundation/[email protected], npm/@nomicfoundation/[email protected], npm/@nomicfoundation/[email protected], npm/@nomicfoundation/[email protected], npm/@nomicfoundation/[email protected], npm/@nomicfoundation/[email protected], npm/@nomicfoundation/[email protected], npm/@nomicfoundation/[email protected], npm/@nomicfoundation/[email protected], npm/@nomicfoundation/[email protected], npm/@nomicfoundation/[email protected], npm/@nomicfoundation/[email protected], npm/@nomicfoundation/[email protected], npm/@nomicfoundation/[email protected], npm/@nomicfoundation/[email protected], npm/@nomicfoundation/[email protected], npm/@nomicfoundation/[email protected], npm/@nomicfoundation/[email protected], npm/@nomiclabs/[email protected], npm/@nomiclabs/[email protected], npm/@nomiclabs/[email protected], npm/@npmcli/[email protected], npm/@npmcli/[email protected], npm/@openzeppelin/[email protected], npm/@openzeppelin/[email protected], npm/@openzeppelin/[email protected], npm/@openzeppelin/[email protected], npm/@openzeppelin/[email protected], npm/@openzeppelin/[email protected], npm/@openzeppelin/[email protected], npm/@openzeppelin/[email protected], npm/@peculiar/[email protected], npm/@peculiar/[email protected], npm/@peculiar/[email protected], npm/@pkgr/[email protected], npm/@repeaterjs/[email protected], npm/@resolver-engine/[email protected], npm/@resolver-engine/[email protected], npm/@resolver-engine/[email protected], npm/@resolver-engine/[email protected], npm/@scure/[email protected], npm/@scure/[email protected], npm/@sentry/[email protected], npm/@sentry/[email protected], npm/@sentry/[email protected], npm/@sentry/[email protected], npm/@sentry/[email protected], npm/@sentry/[email protected], npm/@sentry/[email protected], npm/@sindresorhus/[email protected], npm/@smithy/[email protected], npm/@solidity-parser/[email protected], npm/@szmarczak/[email protected], npm/@tenderly/[email protected], npm/@truffle/[email protected], npm/@truffle/[email protected], npm/@truffle/[email protected], npm/@typechain/[email protected], npm/@typechain/[email protected], npm/@types/[email protected], npm/@types/[email protected], npm/@types/[email protected], npm/@types/[email protected], npm/@types/[email protected], npm/@types/[email protected], npm/@types/[email protected], npm/@types/[email protected], npm/@types/[email protected], npm/@types/[email protected], npm/@types/[email protected], npm/@types/[email protected], npm/@types/[email protected], npm/@types/[email protected], npm/@types/[email protected], npm/@types/[email protected], npm/@types/[email protected], npm/@types/[email protected], npm/@types/[email protected], npm/@types/[email protected], npm/@types/[email protected], npm/@types/[email protected], npm/@types/[email protected], npm/@types/[email protected], npm/@types/[email protected], npm/@types/[email protected], npm/@typescript-eslint/[email protected], npm/@typescript-eslint/[email protected], npm/@typescript-eslint/[email protected], npm/@typescript-eslint/[email protected], npm/@typescript-eslint/[email protected], npm/@typescript-eslint/[email protected], npm/@typescript-eslint/[email protected], npm/@urql/[email protected], npm/@urql/[email protected], npm/@whatwg-node/[email protected], npm/@whatwg-node/[email protected], npm/@whatwg-node/[email protected], npm/@whatwg-node/[email protected], npm/@whatwg-node/[email protected], npm/@yarnpkg/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected]

View full report↗︎

Copy link

🚨 Potential security issues detected. Learn more about Socket for GitHub ↗︎

To accept the risk, merge this PR and you will not be notified again.

Alert Package Note
Install scripts npm/[email protected]
  • Install script: postinstall
  • Source: node -e "try{require('./postinstall')}catch(e){}"
Protestware/Troll package npm/[email protected]
  • Note: This package prints a protestware console message on install regarding Ukraine for users with Russian language locale
Install scripts npm/[email protected]
  • Install script: postinstall
  • Source: node -e "try{require('./_postinstall')}catch(e){}" || exit 0

View full report↗︎

Next steps

What is an install script?

Install scripts are run when the package is installed. The majority of malware in npm is hidden in install scripts.

Packages should not be running non-essential scripts during install and there are often solutions to problems people solve with install scripts that can be run at publish time instead.

What is protestware?

This package is a joke, parody, or includes undocumented or hidden behavior unrelated to its primary function.

Consider that consuming this package my come along with functionality unrelated to its primary purpose.

Take a deeper look at the dependency

Take a moment to review the security alert above. Review the linked package source code to understand the potential risk. Ensure the package is not malicious before proceeding. If you're unsure how to proceed, reach out to your security team or ask the Socket team for help at support [AT] socket [DOT] dev.

Remove the package

If you happen to install a dependency that Socket reports as Known Malware you should immediately remove it and select a different dependency. For other alert types, you may may wish to investigate alternative packages or consider if there are other ways to mitigate the specific risk posed by the dependency.

Mark a package as acceptable risk

To ignore an alert, reply with a comment starting with @SocketSecurity ignore followed by a space separated list of ecosystem/package-name@version specifiers. e.g. @SocketSecurity ignore npm/[email protected] or ignore all packages with @SocketSecurity ignore-all

@tmigone tmigone closed this Feb 26, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 26, 2024

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot dependabot bot deleted the dependabot/npm_and_yarn/packages/token-distribution/openzeppelin/contracts-upgradeable-4.9.3 branch February 26, 2024 14:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant