-
Notifications
You must be signed in to change notification settings - Fork 0
Main (#37) #50
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
Main (#37) #50
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Reviewer's guide (collapsed on small PRs)Reviewer's GuideUpdates Hardhat Truffle 5 package dependencies (notably chai and ESLint/Prettier tooling) and adds a simple confirmation log line to the CircleCI web3_gamefi job. Flow diagram for hardhat-truffle5 package dependency upgradesgraph TD
pkg[Package hardhat-truffle5]
subgraph runtime_dependencies
chai_runtime_old[chai ^4.2.0]
chai_runtime_new[chai ^6.2.0]
end
subgraph dev_dependencies
chai_dev_old[chai ^4.2.0]
chai_dev_new[chai ^6.2.0]
eslint_config_prettier_old[eslint-config-prettier 8.3.0]
eslint_config_prettier_new[eslint-config-prettier 10.1.8]
eslint_plugin_prettier_old[eslint-plugin-prettier 3.4.0]
eslint_plugin_prettier_new[eslint-plugin-prettier 5.5.4]
end
pkg --> chai_runtime_new
pkg --> chai_dev_new
pkg --> eslint_config_prettier_new
pkg --> eslint_plugin_prettier_new
chai_runtime_old -. upgraded_to .-> chai_runtime_new
chai_dev_old -. upgraded_to .-> chai_dev_new
eslint_config_prettier_old -. upgraded_to .-> eslint_config_prettier_new
eslint_plugin_prettier_old -. upgraded_to .-> eslint_plugin_prettier_new
File-Level Changes
Possibly linked issues
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
Summary of ChangesHello @Dargon789, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request consolidates several maintenance and dependency management updates. It includes a minor adjustment to the CircleCI workflow for the Highlights
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
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.
Hey there - I've reviewed your changes - here's some feedback:
- Since
chaiwas bumped from v4 to v6 in both dependencies and devDependencies, double-check any custom Chai plugins or custom assertion setups inhardhat-truffle5for API or behavior changes (e.g., updated plugin loading, changed assertion messages) and remove the duplication if both entries are not strictly needed. - Upgrading
eslint-config-prettierandeslint-plugin-prettierto their latest major versions may introduce new required config fields or rule names; verify that the existing ESLint configuration inhardhat-truffle5still aligns with the recommended setup for these versions and adjust the config file accordingly rather than relying on the old 8.x/3.x patterns.
Prompt for AI Agents
Please address the comments from this code review:
## Overall Comments
- Since `chai` was bumped from v4 to v6 in both dependencies and devDependencies, double-check any custom Chai plugins or custom assertion setups in `hardhat-truffle5` for API or behavior changes (e.g., updated plugin loading, changed assertion messages) and remove the duplication if both entries are not strictly needed.
- Upgrading `eslint-config-prettier` and `eslint-plugin-prettier` to their latest major versions may introduce new required config fields or rule names; verify that the existing ESLint configuration in `hardhat-truffle5` still aligns with the recommended setup for these versions and adjust the config file accordingly rather than relying on the old 8.x/3.x patterns.
## Individual Comments
### Comment 1
<location> `packages/hardhat-truffle5/package.json:58` </location>
<code_context>
"eslint-plugin-import": "2.27.5",
"eslint-plugin-mocha": "10.4.1",
- "eslint-plugin-prettier": "3.4.0",
+ "eslint-plugin-prettier": "5.5.4",
"hardhat": "workspace:^2.6.4",
"mocha": "^10.0.0",
</code_context>
<issue_to_address>
**issue (bug_risk):** eslint-plugin-prettier v5 likely mismatches with Prettier 2.4.1.
eslint-plugin-prettier 5.x declares a peer dependency on Prettier 3.x, but this repo is still on Prettier 2.4.1. That mismatch can trigger peer-dependency warnings and potentially break formatting when the plugin calls Prettier 3-only APIs.
Please either:
- Upgrade Prettier to a compatible 3.x version (and handle the Prettier 3 breaking changes), or
- Downgrade eslint-plugin-prettier to a 4.x (or late 3.x) version that supports Prettier 2.x.
</issue_to_address>Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
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.
Code Review
This pull request updates several development and testing dependencies and adds a CI message. The dependency bumps are good, but they highlight some existing structural issues in packages/hardhat-truffle5/package.json. I've added one comment to suggest cleaning up the dependency declarations for chai and @types/chai to improve maintainability and align with best practices.
* Update .circleci/web3_gamefi.yml Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> Signed-off-by: Dargon789 <[email protected]> * Create SECURITY.md (#3) * Create SECURITY.md Signed-off-by: AU_gdev_19 <[email protected]> * Update SECURITY.md Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> Signed-off-by: AU_gdev_19 <[email protected]> * Update SECURITY.md Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Signed-off-by: AU_gdev_19 <[email protected]> --------- Signed-off-by: AU_gdev_19 <[email protected]> Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> * Delete SECURITY.md Signed-off-by: AU_gdev_19 <[email protected]> * Create dependabot.yml (#4) Signed-off-by: AU_gdev_19 <[email protected]> * Create web3_gamefi.yml Signed-off-by: Dargon789 <[email protected]> * Bump vite in the npm_and_yarn group across 1 directory Bumps the npm_and_yarn group with 1 update in the / directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite). Updates `vite` from 5.4.20 to 5.4.21 - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/v5.4.21/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v5.4.21/packages/vite) --- updated-dependencies: - dependency-name: vite dependency-version: 5.4.21 dependency-type: direct:development dependency-group: npm_and_yarn ... Signed-off-by: dependabot[bot] <[email protected]> * Update .circleci/web3_gamefi.yml Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> Signed-off-by: Dargon789 <[email protected]> * Merge pull request #18 from Dargon789/circleci-project-setup (#20) * fix: update (#26) * Create SECURITY.md (#3) * Create SECURITY.md Signed-off-by: AU_gdev_19 <[email protected]> * Update SECURITY.md Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> Signed-off-by: AU_gdev_19 <[email protected]> * Update SECURITY.md Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Signed-off-by: AU_gdev_19 <[email protected]> --------- Signed-off-by: AU_gdev_19 <[email protected]> Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> * Delete SECURITY.md Signed-off-by: AU_gdev_19 <[email protected]> * Create dependabot.yml (#4) Signed-off-by: AU_gdev_19 <[email protected]> * Create web3_gamefi.yml Signed-off-by: Dargon789 <[email protected]> * Bump vite in the npm_and_yarn group across 1 directory Bumps the npm_and_yarn group with 1 update in the / directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite). Updates `vite` from 5.4.20 to 5.4.21 - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/v5.4.21/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v5.4.21/packages/vite) --- updated-dependencies: - dependency-name: vite dependency-version: 5.4.21 dependency-type: direct:development dependency-group: npm_and_yarn ... Signed-off-by: dependabot[bot] <[email protected]> * Update .circleci/web3_gamefi.yml Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> Signed-off-by: Dargon789 <[email protected]> * Create SECURITY.md (#3) * Create SECURITY.md Signed-off-by: AU_gdev_19 <[email protected]> * Update SECURITY.md Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> Signed-off-by: AU_gdev_19 <[email protected]> * Update SECURITY.md Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Signed-off-by: AU_gdev_19 <[email protected]> --------- Signed-off-by: AU_gdev_19 <[email protected]> Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> * Delete SECURITY.md Signed-off-by: AU_gdev_19 <[email protected]> * Create dependabot.yml (#4) Signed-off-by: AU_gdev_19 <[email protected]> * Create web3_gamefi.yml Signed-off-by: Dargon789 <[email protected]> * Bump vite in the npm_and_yarn group across 1 directory Bumps the npm_and_yarn group with 1 update in the / directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite). Updates `vite` from 5.4.20 to 5.4.21 - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/v5.4.21/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v5.4.21/packages/vite) --- updated-dependencies: - dependency-name: vite dependency-version: 5.4.21 dependency-type: direct:development dependency-group: npm_and_yarn ... Signed-off-by: dependabot[bot] <[email protected]> * Update .circleci/web3_gamefi.yml Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> Signed-off-by: Dargon789 <[email protected]> * Merge pull request #18 from Dargon789/circleci-project-setup (#20) --------- Signed-off-by: AU_gdev_19 <[email protected]> Signed-off-by: Dargon789 <[email protected]> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * fix: update (#26) (#27) * Create SECURITY.md (#3) * Create SECURITY.md * Update SECURITY.md * Update SECURITY.md --------- * Delete SECURITY.md * Create dependabot.yml (#4) * Create web3_gamefi.yml * Bump vite in the npm_and_yarn group across 1 directory Bumps the npm_and_yarn group with 1 update in the / directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite). Updates `vite` from 5.4.20 to 5.4.21 - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/v5.4.21/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v5.4.21/packages/vite) --- updated-dependencies: - dependency-name: vite dependency-version: 5.4.21 dependency-type: direct:development dependency-group: npm_and_yarn ... * Update .circleci/web3_gamefi.yml * Create SECURITY.md (#3) * Create SECURITY.md * Update SECURITY.md * Update SECURITY.md --------- * Delete SECURITY.md * Create dependabot.yml (#4) * Create web3_gamefi.yml * Bump vite in the npm_and_yarn group across 1 directory Bumps the npm_and_yarn group with 1 update in the / directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite). Updates `vite` from 5.4.20 to 5.4.21 - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/v5.4.21/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v5.4.21/packages/vite) --- updated-dependencies: - dependency-name: vite dependency-version: 5.4.21 dependency-type: direct:development dependency-group: npm_and_yarn ... * Update .circleci/web3_gamefi.yml * Merge pull request #18 from Dargon789/circleci-project-setup (#20) --------- Signed-off-by: AU_gdev_19 <[email protected]> Signed-off-by: Dargon789 <[email protected]> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * fix: ci (#28) (#29) * Update .circleci/web3_gamefi.yml * Create SECURITY.md (#3) * Create SECURITY.md * Update SECURITY.md * Update SECURITY.md --------- * Delete SECURITY.md * Create dependabot.yml (#4) * Create web3_gamefi.yml * Bump vite in the npm_and_yarn group across 1 directory Bumps the npm_and_yarn group with 1 update in the / directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite). Updates `vite` from 5.4.20 to 5.4.21 - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/v5.4.21/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v5.4.21/packages/vite) --- updated-dependencies: - dependency-name: vite dependency-version: 5.4.21 dependency-type: direct:development dependency-group: npm_and_yarn ... * Update .circleci/web3_gamefi.yml * Merge pull request #18 from Dargon789/circleci-project-setup (#20) * fix: update (#26) (#27) * Create SECURITY.md (#3) * Create SECURITY.md * Update SECURITY.md * Update SECURITY.md --------- * Delete SECURITY.md * Create dependabot.yml (#4) * Create web3_gamefi.yml * Bump vite in the npm_and_yarn group across 1 directory Bumps the npm_and_yarn group with 1 update in the / directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite). Updates `vite` from 5.4.20 to 5.4.21 - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/v5.4.21/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v5.4.21/packages/vite) --- updated-dependencies: - dependency-name: vite dependency-version: 5.4.21 dependency-type: direct:development dependency-group: npm_and_yarn ... * Update .circleci/web3_gamefi.yml * Create SECURITY.md (#3) * Create SECURITY.md * Update SECURITY.md * Update SECURITY.md --------- * Delete SECURITY.md * Create dependabot.yml (#4) * Create web3_gamefi.yml * Bump vite in the npm_and_yarn group across 1 directory Bumps the npm_and_yarn group with 1 update in the / directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite). Updates `vite` from 5.4.20 to 5.4.21 - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/v5.4.21/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v5.4.21/packages/vite) --- updated-dependencies: - dependency-name: vite dependency-version: 5.4.21 dependency-type: direct:development dependency-group: npm_and_yarn ... * Update .circleci/web3_gamefi.yml * Merge pull request #18 from Dargon789/circleci-project-setup (#20) --------- --------- Signed-off-by: Dargon789 <[email protected]> Signed-off-by: AU_gdev_19 <[email protected]> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Create SECURITY.md (#33) * Create SECURITY.md Signed-off-by: Dargon789 <[email protected]> * Update SECURITY.md Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Signed-off-by: Dargon789 <[email protected]> --------- Signed-off-by: Dargon789 <[email protected]> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> * Create dependabot.yml (#34) Signed-off-by: AU_gdev_19 <[email protected]> * Update SECURITY.md Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> Signed-off-by: Dargon789 <[email protected]> * Merge branch 'main' into circleci-project-setup (#35) (#36) * Create dependabot.yml (#4) * Create web3_gamefi.yml * Bump vite in the npm_and_yarn group across 1 directory Bumps the npm_and_yarn group with 1 update in the / directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite). Updates `vite` from 5.4.20 to 5.4.21 - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/v5.4.21/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v5.4.21/packages/vite) --- updated-dependencies: - dependency-name: vite dependency-version: 5.4.21 dependency-type: direct:development dependency-group: npm_and_yarn ... * Update .circleci/web3_gamefi.yml * Create SECURITY.md (#3) * Create SECURITY.md * Update SECURITY.md * Update SECURITY.md --------- * Delete SECURITY.md * Create dependabot.yml (#4) * Create web3_gamefi.yml * Bump vite in the npm_and_yarn group across 1 directory Bumps the npm_and_yarn group with 1 update in the / directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite). Updates `vite` from 5.4.20 to 5.4.21 - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/v5.4.21/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v5.4.21/packages/vite) --- updated-dependencies: - dependency-name: vite dependency-version: 5.4.21 dependency-type: direct:development dependency-group: npm_and_yarn ... * Update .circleci/web3_gamefi.yml * Merge pull request #18 from Dargon789/circleci-project-setup (#20) * fix: update (#26) * Create SECURITY.md (#3) * Create SECURITY.md * Update SECURITY.md * Update SECURITY.md --------- * Delete SECURITY.md * Create dependabot.yml (#4) * Create web3_gamefi.yml * Bump vite in the npm_and_yarn group across 1 directory Bumps the npm_and_yarn group with 1 update in the / directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite). Updates `vite` from 5.4.20 to 5.4.21 - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/v5.4.21/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v5.4.21/packages/vite) --- updated-dependencies: - dependency-name: vite dependency-version: 5.4.21 dependency-type: direct:development dependency-group: npm_and_yarn ... * Update .circleci/web3_gamefi.yml * Create SECURITY.md (#3) * Create SECURITY.md * Update SECURITY.md * Update SECURITY.md --------- * Delete SECURITY.md * Create dependabot.yml (#4) * Create web3_gamefi.yml * Bump vite in the npm_and_yarn group across 1 directory Bumps the npm_and_yarn group with 1 update in the / directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite). Updates `vite` from 5.4.20 to 5.4.21 - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/v5.4.21/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v5.4.21/packages/vite) --- updated-dependencies: - dependency-name: vite dependency-version: 5.4.21 dependency-type: direct:development dependency-group: npm_and_yarn ... * Update .circleci/web3_gamefi.yml * Merge pull request #18 from Dargon789/circleci-project-setup (#20) --------- * fix: update (#26) (#27) * Create SECURITY.md (#3) * Create SECURITY.md * Update SECURITY.md * Update SECURITY.md --------- * Delete SECURITY.md * Create dependabot.yml (#4) * Create web3_gamefi.yml * Bump vite in the npm_and_yarn group across 1 directory Bumps the npm_and_yarn group with 1 update in the / directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite). Updates `vite` from 5.4.20 to 5.4.21 - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/v5.4.21/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v5.4.21/packages/vite) --- updated-dependencies: - dependency-name: vite dependency-version: 5.4.21 dependency-type: direct:development dependency-group: npm_and_yarn ... * Update .circleci/web3_gamefi.yml * Create SECURITY.md (#3) * Create SECURITY.md * Update SECURITY.md * Update SECURITY.md --------- * Delete SECURITY.md * Create dependabot.yml (#4) * Create web3_gamefi.yml * Bump vite in the npm_and_yarn group across 1 directory Bumps the npm_and_yarn group with 1 update in the / directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite). Updates `vite` from 5.4.20 to 5.4.21 - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/v5.4.21/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v5.4.21/packages/vite) --- updated-dependencies: - dependency-name: vite dependency-version: 5.4.21 dependency-type: direct:development dependency-group: npm_and_yarn ... * Update .circleci/web3_gamefi.yml * Merge pull request #18 from Dargon789/circleci-project-setup (#20) --------- * fix: ci (#28) (#29) * Update .circleci/web3_gamefi.yml * Create SECURITY.md (#3) * Create SECURITY.md * Update SECURITY.md * Update SECURITY.md --------- * Delete SECURITY.md * Create dependabot.yml (#4) * Create web3_gamefi.yml * Bump vite in the npm_and_yarn group across 1 directory Bumps the npm_and_yarn group with 1 update in the / directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite). Updates `vite` from 5.4.20 to 5.4.21 - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/v5.4.21/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v5.4.21/packages/vite) --- updated-dependencies: - dependency-name: vite dependency-version: 5.4.21 dependency-type: direct:development dependency-group: npm_and_yarn ... * Update .circleci/web3_gamefi.yml * Merge pull request #18 from Dargon789/circleci-project-setup (#20) * fix: update (#26) (#27) * Create SECURITY.md (#3) * Create SECURITY.md * Update SECURITY.md * Update SECURITY.md --------- * Delete SECURITY.md * Create dependabot.yml (#4) * Create web3_gamefi.yml * Bump vite in the npm_and_yarn group across 1 directory Bumps the npm_and_yarn group with 1 update in the / directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite). Updates `vite` from 5.4.20 to 5.4.21 - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/v5.4.21/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v5.4.21/packages/vite) --- updated-dependencies: - dependency-name: vite dependency-version: 5.4.21 dependency-type: direct:development dependency-group: npm_and_yarn ... * Update .circleci/web3_gamefi.yml * Create SECURITY.md (#3) * Create SECURITY.md * Update SECURITY.md * Update SECURITY.md --------- * Delete SECURITY.md * Create dependabot.yml (#4) * Create web3_gamefi.yml * Bump vite in the npm_and_yarn group across 1 directory Bumps the npm_and_yarn group with 1 update in the / directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite). Updates `vite` from 5.4.20 to 5.4.21 - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/v5.4.21/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v5.4.21/packages/vite) --- updated-dependencies: - dependency-name: vite dependency-version: 5.4.21 dependency-type: direct:development dependency-group: npm_and_yarn ... * Update .circleci/web3_gamefi.yml * Merge pull request #18 from Dargon789/circleci-project-setup (#20) --------- --------- * Create SECURITY.md (#33) * Create SECURITY.md * Update SECURITY.md --------- * Create dependabot.yml (#34) * Update SECURITY.md --------- Signed-off-by: AU_gdev_19 <[email protected]> Signed-off-by: Dargon789 <[email protected]> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> * Update SECURITY.md Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Signed-off-by: Dargon789 <[email protected]> * feat: upgrade eslint-config-prettier from 8.3.0 to 10.1.8 (#48) Snyk has created this PR to upgrade eslint-config-prettier from 8.3.0 to 10.1.8. See this package in npm: eslint-config-prettier See this project in Snyk: https://app.snyk.io/org/dargon789/project/2c91b4d5-8055-4239-a4a4-26da9ab76b7c?utm_source=github&utm_medium=referral&page=upgrade-pr Co-authored-by: snyk-bot <[email protected]> * feat: upgrade chai from 4.5.0 to 6.2.0 (#49) Snyk has created this PR to upgrade chai from 4.5.0 to 6.2.0. See this package in npm: chai See this project in Snyk: https://app.snyk.io/org/dargon789/project/2c91b4d5-8055-4239-a4a4-26da9ab76b7c?utm_source=github&utm_medium=referral&page=upgrade-pr Co-authored-by: snyk-bot <[email protected]> * feat: upgrade eslint-plugin-prettier from 3.4.0 to 5.5.4 (#46) Snyk has created this PR to upgrade eslint-plugin-prettier from 3.4.0 to 5.5.4. See this package in npm: eslint-plugin-prettier See this project in Snyk: https://app.snyk.io/org/dargon789/project/2c91b4d5-8055-4239-a4a4-26da9ab76b7c?utm_source=github&utm_medium=referral&page=upgrade-pr Co-authored-by: snyk-bot <[email protected]> --------- Signed-off-by: Dargon789 <[email protected]> Signed-off-by: AU_gdev_19 <[email protected]> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: snyk-bot <[email protected]>
Update .circleci/web3_gamefi.yml
Create SECURITY.md (Create SECURITY.md #3)
Create SECURITY.md
Update SECURITY.md
Update SECURITY.md
Delete SECURITY.md
Create dependabot.yml (Create dependabot.yml #4)
Create web3_gamefi.yml
Bump vite in the npm_and_yarn group across 1 directory
Bumps the npm_and_yarn group with 1 update in the / directory: vite.
Updates
vitefrom 5.4.20 to 5.4.21updated-dependencies:
Update .circleci/web3_gamefi.yml
Merge pull request Circleci project setup #18 from Dargon789/circleci-project-setup (Merge pull request #18 from Dargon789/circleci-project-setup #20)
fix: update (fix: update #26)
Create SECURITY.md (Create SECURITY.md #3)
Create SECURITY.md
Update SECURITY.md
Update SECURITY.md
Delete SECURITY.md
Create dependabot.yml (Create dependabot.yml #4)
Create web3_gamefi.yml
Bump vite in the npm_and_yarn group across 1 directory
Bumps the npm_and_yarn group with 1 update in the / directory: vite.
Updates
vitefrom 5.4.20 to 5.4.21updated-dependencies:
Update .circleci/web3_gamefi.yml
Create SECURITY.md (Create SECURITY.md #3)
Create SECURITY.md
Update SECURITY.md
Update SECURITY.md
Delete SECURITY.md
Create dependabot.yml (Create dependabot.yml #4)
Create web3_gamefi.yml
Bump vite in the npm_and_yarn group across 1 directory
Bumps the npm_and_yarn group with 1 update in the / directory: vite.
Updates
vitefrom 5.4.20 to 5.4.21updated-dependencies:
Update .circleci/web3_gamefi.yml
Merge pull request Circleci project setup #18 from Dargon789/circleci-project-setup (Merge pull request #18 from Dargon789/circleci-project-setup #20)
fix: update (fix: update #26) (fix: update (#26) #27)
Create SECURITY.md (Create SECURITY.md #3)
Create SECURITY.md
Update SECURITY.md
Update SECURITY.md
Delete SECURITY.md
Create dependabot.yml (Create dependabot.yml #4)
Create web3_gamefi.yml
Bump vite in the npm_and_yarn group across 1 directory
Bumps the npm_and_yarn group with 1 update in the / directory: vite.
Updates
vitefrom 5.4.20 to 5.4.21updated-dependencies:
Update .circleci/web3_gamefi.yml
Create SECURITY.md (Create SECURITY.md #3)
Create SECURITY.md
Update SECURITY.md
Update SECURITY.md
Delete SECURITY.md
Create dependabot.yml (Create dependabot.yml #4)
Create web3_gamefi.yml
Bump vite in the npm_and_yarn group across 1 directory
Bumps the npm_and_yarn group with 1 update in the / directory: vite.
Updates
vitefrom 5.4.20 to 5.4.21updated-dependencies:
Update .circleci/web3_gamefi.yml
Merge pull request Circleci project setup #18 from Dargon789/circleci-project-setup (Merge pull request #18 from Dargon789/circleci-project-setup #20)
fix: ci (fix: ci #28) (fix: ci (#28) #29)
Update .circleci/web3_gamefi.yml
Create SECURITY.md (Create SECURITY.md #3)
Create SECURITY.md
Update SECURITY.md
Update SECURITY.md
Delete SECURITY.md
Create dependabot.yml (Create dependabot.yml #4)
Create web3_gamefi.yml
Bump vite in the npm_and_yarn group across 1 directory
Bumps the npm_and_yarn group with 1 update in the / directory: vite.
Updates
vitefrom 5.4.20 to 5.4.21updated-dependencies:
Update .circleci/web3_gamefi.yml
Merge pull request Circleci project setup #18 from Dargon789/circleci-project-setup (Merge pull request #18 from Dargon789/circleci-project-setup #20)
fix: update (fix: update #26) (fix: update (#26) #27)
Create SECURITY.md (Create SECURITY.md #3)
Create SECURITY.md
Update SECURITY.md
Update SECURITY.md
Delete SECURITY.md
Create dependabot.yml (Create dependabot.yml #4)
Create web3_gamefi.yml
Bump vite in the npm_and_yarn group across 1 directory
Bumps the npm_and_yarn group with 1 update in the / directory: vite.
Updates
vitefrom 5.4.20 to 5.4.21updated-dependencies:
Update .circleci/web3_gamefi.yml
Create SECURITY.md (Create SECURITY.md #3)
Create SECURITY.md
Update SECURITY.md
Update SECURITY.md
Delete SECURITY.md
Create dependabot.yml (Create dependabot.yml #4)
Create web3_gamefi.yml
Bump vite in the npm_and_yarn group across 1 directory
Bumps the npm_and_yarn group with 1 update in the / directory: vite.
Updates
vitefrom 5.4.20 to 5.4.21updated-dependencies:
Update .circleci/web3_gamefi.yml
Merge pull request Circleci project setup #18 from Dargon789/circleci-project-setup (Merge pull request #18 from Dargon789/circleci-project-setup #20)
Create SECURITY.md (Create SECURITY.md #33)
Create SECURITY.md
Update SECURITY.md
Create dependabot.yml (Create dependabot.yml #34)
Update SECURITY.md
Merge branch 'main' into circleci-project-setup (Merge branch 'main' into circleci-project-setup #35) (Merge branch 'main' into circleci-project-setup (#35) #36)
Create dependabot.yml (Create dependabot.yml #4)
Create web3_gamefi.yml
Bump vite in the npm_and_yarn group across 1 directory
Bumps the npm_and_yarn group with 1 update in the / directory: vite.
Updates
vitefrom 5.4.20 to 5.4.21updated-dependencies:
Update .circleci/web3_gamefi.yml
Create SECURITY.md (Create SECURITY.md #3)
Create SECURITY.md
Update SECURITY.md
Update SECURITY.md
Delete SECURITY.md
Create dependabot.yml (Create dependabot.yml #4)
Create web3_gamefi.yml
Bump vite in the npm_and_yarn group across 1 directory
Bumps the npm_and_yarn group with 1 update in the / directory: vite.
Updates
vitefrom 5.4.20 to 5.4.21updated-dependencies:
Update .circleci/web3_gamefi.yml
Merge pull request Circleci project setup #18 from Dargon789/circleci-project-setup (Merge pull request #18 from Dargon789/circleci-project-setup #20)
fix: update (fix: update #26)
Create SECURITY.md (Create SECURITY.md #3)
Create SECURITY.md
Update SECURITY.md
Update SECURITY.md
Delete SECURITY.md
Create dependabot.yml (Create dependabot.yml #4)
Create web3_gamefi.yml
Bump vite in the npm_and_yarn group across 1 directory
Bumps the npm_and_yarn group with 1 update in the / directory: vite.
Updates
vitefrom 5.4.20 to 5.4.21updated-dependencies:
Update .circleci/web3_gamefi.yml
Create SECURITY.md (Create SECURITY.md #3)
Create SECURITY.md
Update SECURITY.md
Update SECURITY.md
Delete SECURITY.md
Create dependabot.yml (Create dependabot.yml #4)
Create web3_gamefi.yml
Bump vite in the npm_and_yarn group across 1 directory
Bumps the npm_and_yarn group with 1 update in the / directory: vite.
Updates
vitefrom 5.4.20 to 5.4.21updated-dependencies:
Update .circleci/web3_gamefi.yml
Merge pull request Circleci project setup #18 from Dargon789/circleci-project-setup (Merge pull request #18 from Dargon789/circleci-project-setup #20)
fix: update (fix: update #26) (fix: update (#26) #27)
Create SECURITY.md (Create SECURITY.md #3)
Create SECURITY.md
Update SECURITY.md
Update SECURITY.md
Delete SECURITY.md
Create dependabot.yml (Create dependabot.yml #4)
Create web3_gamefi.yml
Bump vite in the npm_and_yarn group across 1 directory
Bumps the npm_and_yarn group with 1 update in the / directory: vite.
Updates
vitefrom 5.4.20 to 5.4.21updated-dependencies:
Update .circleci/web3_gamefi.yml
Create SECURITY.md (Create SECURITY.md #3)
Create SECURITY.md
Update SECURITY.md
Update SECURITY.md
Delete SECURITY.md
Create dependabot.yml (Create dependabot.yml #4)
Create web3_gamefi.yml
Bump vite in the npm_and_yarn group across 1 directory
Bumps the npm_and_yarn group with 1 update in the / directory: vite.
Updates
vitefrom 5.4.20 to 5.4.21updated-dependencies:
Update .circleci/web3_gamefi.yml
Merge pull request Circleci project setup #18 from Dargon789/circleci-project-setup (Merge pull request #18 from Dargon789/circleci-project-setup #20)
fix: ci (fix: ci #28) (fix: ci (#28) #29)
Update .circleci/web3_gamefi.yml
Create SECURITY.md (Create SECURITY.md #3)
Create SECURITY.md
Update SECURITY.md
Update SECURITY.md
Delete SECURITY.md
Create dependabot.yml (Create dependabot.yml #4)
Create web3_gamefi.yml
Bump vite in the npm_and_yarn group across 1 directory
Bumps the npm_and_yarn group with 1 update in the / directory: vite.
Updates
vitefrom 5.4.20 to 5.4.21updated-dependencies:
Update .circleci/web3_gamefi.yml
Merge pull request Circleci project setup #18 from Dargon789/circleci-project-setup (Merge pull request #18 from Dargon789/circleci-project-setup #20)
fix: update (fix: update #26) (fix: update (#26) #27)
Create SECURITY.md (Create SECURITY.md #3)
Create SECURITY.md
Update SECURITY.md
Update SECURITY.md
Delete SECURITY.md
Create dependabot.yml (Create dependabot.yml #4)
Create web3_gamefi.yml
Bump vite in the npm_and_yarn group across 1 directory
Bumps the npm_and_yarn group with 1 update in the / directory: vite.
Updates
vitefrom 5.4.20 to 5.4.21updated-dependencies:
Update .circleci/web3_gamefi.yml
Create SECURITY.md (Create SECURITY.md #3)
Create SECURITY.md
Update SECURITY.md
Update SECURITY.md
Delete SECURITY.md
Create dependabot.yml (Create dependabot.yml #4)
Create web3_gamefi.yml
Bump vite in the npm_and_yarn group across 1 directory
Bumps the npm_and_yarn group with 1 update in the / directory: vite.
Updates
vitefrom 5.4.20 to 5.4.21updated-dependencies:
Update .circleci/web3_gamefi.yml
Merge pull request Circleci project setup #18 from Dargon789/circleci-project-setup (Merge pull request #18 from Dargon789/circleci-project-setup #20)
Create SECURITY.md (Create SECURITY.md #33)
Create SECURITY.md
Update SECURITY.md
Create dependabot.yml (Create dependabot.yml #34)
Update SECURITY.md
Update SECURITY.md
feat: upgrade eslint-config-prettier from 8.3.0 to 10.1.8 ([Snyk] Upgrade eslint-config-prettier from 8.3.0 to 10.1.8 #48)
Snyk has created this PR to upgrade eslint-config-prettier from 8.3.0 to 10.1.8.
See this package in npm:
eslint-config-prettier
See this project in Snyk:
https://app.snyk.io/org/dargon789/project/2c91b4d5-8055-4239-a4a4-26da9ab76b7c?utm_source=github&utm_medium=referral&page=upgrade-pr
Snyk has created this PR to upgrade chai from 4.5.0 to 6.2.0.
See this package in npm:
chai
See this project in Snyk:
https://app.snyk.io/org/dargon789/project/2c91b4d5-8055-4239-a4a4-26da9ab76b7c?utm_source=github&utm_medium=referral&page=upgrade-pr
Snyk has created this PR to upgrade eslint-plugin-prettier from 3.4.0 to 5.5.4.
See this package in npm:
eslint-plugin-prettier
See this project in Snyk:
https://app.snyk.io/org/dargon789/project/2c91b4d5-8055-4239-a4a4-26da9ab76b7c?utm_source=github&utm_medium=referral&page=upgrade-pr
Summary by Sourcery
Upgrade testing and linting dependencies and tweak CI feedback.
Enhancements:
CI: