jellydn / nft-app

How to create your own NFT and mint NFT token
https://nft-app.productsway.com/
MIT License
215 stars 98 forks source link

fix(deps): update all non-major dependencies #1038

Closed renovate[bot] closed 1 year ago

renovate[bot] commented 1 year ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
fastify (source) 4.22.2 -> 4.23.0 age adoption passing confidence
hardhat (source) 2.17.2 -> 2.17.3 age adoption passing confidence

Release Notes

fastify/fastify (fastify) ### [`v4.23.0`](https://togithub.com/fastify/fastify/releases/tag/v4.23.0) [Compare Source](https://togithub.com/fastify/fastify/compare/v4.22.2...v4.23.0) #### What's Changed - test: reduce output of reqIdGenFactory.test.js by [@​Uzlopak](https://togithub.com/Uzlopak) in [https://github.com/fastify/fastify/pull/5012](https://togithub.com/fastify/fastify/pull/5012) - feat: Add onListen Hook by [@​BrendenInhelder](https://togithub.com/BrendenInhelder) in [https://github.com/fastify/fastify/pull/4899](https://togithub.com/fastify/fastify/pull/4899) - docs(readme): avoid line breaks in documentation links by [@​antoineneff](https://togithub.com/antoineneff) in [https://github.com/fastify/fastify/pull/5014](https://togithub.com/fastify/fastify/pull/5014) - chore(examples): added curly braces to conditions for consistency by [@​turnerran](https://togithub.com/turnerran) in [https://github.com/fastify/fastify/pull/5015](https://togithub.com/fastify/fastify/pull/5015) - feat: access handler name add properties to req route options by [@​cesarvspr](https://togithub.com/cesarvspr) in [https://github.com/fastify/fastify/pull/4470](https://togithub.com/fastify/fastify/pull/4470) - chore: Bump the dev-dependencies group with 1 update by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/fastify/fastify/pull/5018](https://togithub.com/fastify/fastify/pull/5018) - docs: minor improvements by [@​Uzlopak](https://togithub.com/Uzlopak) in [https://github.com/fastify/fastify/pull/5019](https://togithub.com/fastify/fastify/pull/5019) - chore(deps): replace tiny-lru with toad-cache by [@​kibertoad](https://togithub.com/kibertoad) in [https://github.com/fastify/fastify/pull/4668](https://togithub.com/fastify/fastify/pull/4668) - docs(ecosystem.md): Fix wrong entry for ecosystem.md by [@​Uzlopak](https://togithub.com/Uzlopak) in [https://github.com/fastify/fastify/pull/5021](https://togithub.com/fastify/fastify/pull/5021) - perf: use `node:` prefix to bypass require.cache call for builtins by [@​Fdawgs](https://togithub.com/Fdawgs) in [https://github.com/fastify/fastify/pull/5026](https://togithub.com/fastify/fastify/pull/5026) - docs(typo): mistype of monkeypatch by [@​Menkveld-24](https://togithub.com/Menkveld-24) in [https://github.com/fastify/fastify/pull/5027](https://togithub.com/fastify/fastify/pull/5027) - chore: change website to .dev instead of .io by [@​Eomm](https://togithub.com/Eomm) in [https://github.com/fastify/fastify/pull/5028](https://togithub.com/fastify/fastify/pull/5028) - chore: add gurgunday and uzlopak as contributors by [@​Uzlopak](https://togithub.com/Uzlopak) in [https://github.com/fastify/fastify/pull/5029](https://togithub.com/fastify/fastify/pull/5029) - chore: add a citgm command to customize what we run in CITGM by [@​mcollina](https://togithub.com/mcollina) in [https://github.com/fastify/fastify/pull/5030](https://togithub.com/fastify/fastify/pull/5030) #### New Contributors - [@​BrendenInhelder](https://togithub.com/BrendenInhelder) made their first contribution in [https://github.com/fastify/fastify/pull/4899](https://togithub.com/fastify/fastify/pull/4899) - [@​antoineneff](https://togithub.com/antoineneff) made their first contribution in [https://github.com/fastify/fastify/pull/5014](https://togithub.com/fastify/fastify/pull/5014) - [@​turnerran](https://togithub.com/turnerran) made their first contribution in [https://github.com/fastify/fastify/pull/5015](https://togithub.com/fastify/fastify/pull/5015) - [@​Menkveld-24](https://togithub.com/Menkveld-24) made their first contribution in [https://github.com/fastify/fastify/pull/5027](https://togithub.com/fastify/fastify/pull/5027) **Full Changelog**: https://github.com/fastify/fastify/compare/v4.22.2...v4.23.0
nomiclabs/hardhat (hardhat) ### [`v2.17.3`](https://togithub.com/NomicFoundation/hardhat/releases/tag/hardhat%402.17.3): Hardhat v2.17.3 [Compare Source](https://togithub.com/nomiclabs/hardhat/compare/hardhat@2.17.2...hardhat@2.17.3) This version of Hardhat changes the default `evmVersion` to `paris` for solc versions newer than or equal to 0.8.20. Starting from version [0.8.20](https://soliditylang.org/blog/2023/05/10/solidity-0.8.20-release-announcement), solc changed the default target EVM version to Shanghai. Among other things, this meant that the generated bytecode could (and most likely would) contain the new `PUSH0` opcode. Up until this point, Hardhat always delegated to solc the decision of which EVM version to target. But there are two things that are different today: many users develop for non-mainnet chains, and [not every chain](https://canipush0.com/) has adopted the Shanghai hardfork yet. This means it's possible that you develop a contract which works locally (Hardhat's default hardfork is still Shanghai, because we follow the current mainnet hardfork) but that then doesn't work after deploying it. If you are sure you are going to deploy in a network that supports the Shanghai hardfork, you can change the target EVM like this: ```js module.exports = { solidity: { version: "0.8.20", settings: { evmVersion: "shanghai", }, }, }; ```

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.



This PR has been generated by Mend Renovate. View repository job log here.

vercel[bot] commented 1 year ago

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
nft-app ✅ Ready (Inspect) Visit Preview 💬 Add feedback Sep 11, 2023 2:41pm
changeset-bot[bot] commented 1 year ago

⚠️ No Changeset found

Latest commit: bf5a486b5594f3ff7d98dbe2464043a6b9e74fa9

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR