Skip to content

Create npm.yml#91

Merged
Dargon789 merged 2 commits intomasterfrom
Dargon789-patch-3
Dec 8, 2025
Merged

Create npm.yml#91
Dargon789 merged 2 commits intomasterfrom
Dargon789-patch-3

Conversation

@Dargon789
Copy link
Owner

@Dargon789 Dargon789 commented Dec 8, 2025

Summary by Sourcery

Build:

  • Introduce an npm publish workflow that derives the release version from release artifacts and publishes platform-specific @foundry-rs/forge binaries for multiple OS/architectures, followed by a meta package publish.

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
@vercel
Copy link

vercel bot commented Dec 8, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Preview Comments Updated (UTC)
fnm Ready Ready Preview Comment Dec 8, 2025 9:27pm

@gemini-code-assist
Copy link

Note

Gemini is unable to generate a summary for this pull request due to the file types involved not being currently supported.

@snyk-io
Copy link

snyk-io bot commented Dec 8, 2025

Snyk checks have passed. No issues have been found so far.

Status Scanner Critical High Medium Low Total (0)
Open Source Security 0 0 0 0 0 issues

💻 Catch issues earlier using the plugins for VS Code, JetBrains IDEs, Visual Studio, and Eclipse.

@sourcery-ai
Copy link

sourcery-ai bot commented Dec 8, 2025

Reviewer's Guide

Adds a new GitHub Actions workflow (npm.yml) that, after a successful release or a manual trigger, downloads per-platform Foundry artifacts, stages them into per-OS/arch scoped NPM packages using Bun scripts, publishes those packages to npm with provenance, then publishes a meta @foundry-rs/forge package once all per-arch publishes complete.

Flow diagram for npm.yml jobs and steps

flowchart TD
  Start["Start npm.yml workflow"]

  subgraph Trigger_Condition["Trigger condition"]
    T1["Event workflow_run with conclusion success"]
    T2["Event workflow_dispatch with non-empty run_id"]
  end

  Start --> Trigger_Condition
  Trigger_Condition -->|"condition met"| J_publish_arch

  subgraph J_publish_arch["Job publish-arch (matrix per os/arch)"]
    direction TB
    S1_checkout["Checkout repository"]
    S2_prep_dir["Prepare temp artifact directory"]
    S3_download_artifacts["Download foundry_* artifacts (download-artifact)"]
    S4_setup_bun["Setup Bun"]
    S5_setup_node["Setup Node for npm auth"]
    S6_install_deps["bun install --frozen-lockfile in ./npm"]
    S7_build_ts["Transpile TS to JS (bun run build)"]
    S8_release_version["Derive RELEASE_VERSION from artifact filenames"]
    S9_stage_binary["Stage platform binary into @foundry-rs/forge-os-arch package"]
    S10_sanity_check["Sanity check staged binary (exists, executable)"]
    S11_publish_arch["Publish per-arch package via bun scripts/publish.ts"]

    S1_checkout --> S2_prep_dir --> S3_download_artifacts --> S4_setup_bun --> S5_setup_node --> S6_install_deps --> S7_build_ts --> S8_release_version --> S9_stage_binary --> S10_sanity_check --> S11_publish_arch
  end

  J_publish_arch --> J_publish_meta

  subgraph J_publish_meta["Job publish-meta (needs publish-arch)"]
    direction TB
    M1_checkout["Checkout repository"]
    M2_setup_bun["Setup Bun"]
    M3_setup_node["Setup Node for npm auth"]
    M4_install_deps["bun install --frozen-lockfile in ./npm"]
    M5_build_ts["Transpile TS to JS (bun run build)"]
    M6_publish_meta["Publish meta @foundry-rs/forge with RELEASE_VERSION"]

    M1_checkout --> M2_setup_bun --> M3_setup_node --> M4_install_deps --> M5_build_ts --> M6_publish_meta
  end

  J_publish_meta --> End["End npm.yml workflow"]
Loading

File-Level Changes

Change Details Files
Introduce a multi-job GitHub Actions workflow to build, stage, and publish per-OS/arch forge NPM packages and a meta package tied to release artifacts.
  • Define workflow triggers for successful completion of the existing release workflow or manual dispatch with an optional run_id, plus concurrency control and default shell/env
  • Create a publish-arch matrix job over OS/arch combinations that checks out code, downloads foundry_* artifacts from the triggering release run, installs Bun and Node, installs npm package dependencies, and builds the npm project
  • Derive the RELEASE_VERSION from the downloaded artifact filenames and expose it as a job output for downstream jobs
  • Extract and stage the correct forge binary for each OS/arch into a scoped package using a Bun prepublish script, with handling for both .zip and .tar.gz artifacts and Windows vs non-Windows binaries
  • Sanity-check that the staged binary exists (and is executable where applicable) before publishing each per-arch package to npm with NPM_TOKEN-based auth and provenance enabled
  • Add a dependent publish-meta job that re-installs/builds the npm project after publish-arch completes, then publishes the meta @foundry-rs/forge package using the shared RELEASE_VERSION and npm auth configuration
.github/workflows/npm.yml

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it. You can also reply to a
    review comment with @sourcery-ai issue to create an issue from it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time. You can also comment
    @sourcery-ai title on the pull request to (re-)generate the title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time exactly where you
    want it. You can also comment @sourcery-ai summary on the pull request to
    (re-)generate the summary at any time.
  • Generate reviewer's guide: Comment @sourcery-ai guide on the pull
    request to (re-)generate the reviewer's guide at any time.
  • Resolve all Sourcery comments: Comment @sourcery-ai resolve on the
    pull request to resolve all Sourcery comments. Useful if you've already
    addressed all the comments and don't want to see them anymore.
  • Dismiss all Sourcery reviews: Comment @sourcery-ai dismiss on the pull
    request to dismiss all existing Sourcery reviews. Especially useful if you
    want to start fresh with a new review - don't forget to comment
    @sourcery-ai review to trigger a new review!

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Copy link

@sourcery-ai sourcery-ai bot left a 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 and found some issues that need to be addressed.

  • There is a fair amount of duplication between the publish-arch and publish-meta jobs (checkout, Bun/Node setup, dependency install, build) that could be factored into a composite action or a reusable workflow to simplify maintenance and keep the two flows in sync.
  • Setting ACTIONS_RUNNER_DEBUG: true at the workflow level will make all runs very noisy; consider making this configurable (e.g., via a workflow_dispatch input or job-level env) so verbose logging can be enabled only when needed.
Prompt for AI Agents
Please address the comments from this code review:

## Overall Comments
- There is a fair amount of duplication between the `publish-arch` and `publish-meta` jobs (checkout, Bun/Node setup, dependency install, build) that could be factored into a composite action or a reusable workflow to simplify maintenance and keep the two flows in sync.
- Setting `ACTIONS_RUNNER_DEBUG: true` at the workflow level will make all runs very noisy; consider making this configurable (e.g., via a workflow_dispatch input or job-level env) so verbose logging can be enabled only when needed.

## Individual Comments

### Comment 1
<location> `.github/workflows/npm.yml:132` </location>
<code_context>
+          set -euo pipefail
+          mkdir -p tmp
+
+          FILE_PREFIX="../foundry_artifacts/foundry_${RELEASE_VERSION}_${{ matrix.os }}_${{ matrix.arch }}"
+          if [[ -f "${FILE_PREFIX}.zip" ]]; then
+            echo "Extracting ${FILE_PREFIX}.zip"
</code_context>

<issue_to_address>
**issue (bug_risk):** The artifact path used here does not match the earlier download location and will likely fail to find the binaries.

Artifacts are downloaded to `${{ runner.temp }}/foundry_artifacts` in the `Download Release Assets` step, but this step looks under `../foundry_artifacts` relative to `./npm`. On GitHub runners, `${{ runner.temp }}` is not the repo root, so `../foundry_artifacts` won’t point to the downloaded files and extraction will fail. Please pass the artifacts directory via an env var (e.g. `ARTIFACT_DIR: ${{ runner.temp }}/foundry_artifacts`) and reuse it here:

```yaml
env:
  ARTIFACT_DIR: ${{ runner.temp }}/foundry_artifacts
...
run: |
  FILE_PREFIX="$ARTIFACT_DIR/foundry_${RELEASE_VERSION}_${{ matrix.os }}_${{ matrix.arch }}"
```
</issue_to_address>

### Comment 2
<location> `.github/workflows/npm.yml:55-56` </location>
<code_context>
+        (github.event_name == 'workflow_run' && github.event.workflow_run.conclusion == 'success') ||
+        (github.event_name == 'workflow_dispatch' && inputs.run_id != '')
+      }}
+    outputs:
+      RELEASE_VERSION: ${{ steps.release-version.outputs.RELEASE_VERSION }}
+    env:
+      NPM_REGISTRY_URL: "https://registry.npmjs.org"
</code_context>

<issue_to_address>
**suggestion (bug_risk):** Using a matrix job output as a single value can be fragile; outputs from matrix jobs are not well-defined per job id.

Here `publish-arch` is a matrix job, but `publish-meta` reads `needs.publish-arch.outputs.RELEASE_VERSION` as if there were a single output. GitHub Actions doesn’t define per-matrix-entry outputs under one job id, so which value you get is implicit and may change.

To avoid relying on this, either:
- Compute `RELEASE_VERSION` in a separate, non-matrix job and expose it as an output, or
- Pass the version in as a `workflow_call`/`workflow_dispatch` input so `publish-meta` doesn’t depend on matrix outputs at all.

Suggested implementation:

```
    # Run automatically after a successful 'release' workflow, or manually if a run_id is provided
    if: >-
      ${{
        (github.event_name == 'workflow_run' && github.event.workflow_run.conclusion == 'success') ||
        (github.event_name == 'workflow_dispatch' && inputs.run_id != '')
      }}
    env:
      NPM_REGISTRY_URL: "https://registry.npmjs.org"

```

To fully implement the suggestion and avoid relying on matrix job outputs, you should also:

1. Add a separate, non-matrix job (e.g. `determine-release-version`) in this workflow that:
   - Runs the `release-version` step (or equivalent logic currently used in the matrix job).
   - Exposes `RELEASE_VERSION` via `outputs` on that non-matrix job, e.g.:
   ```yaml
   jobs:
     determine-release-version:
       runs-on: ubuntu-latest
       outputs:
         RELEASE_VERSION: ${{ steps.release-version.outputs.RELEASE_VERSION }}
       steps:
         - name: Checkout
           uses: actions/checkout@v5

         - name: Determine release version
           id: release-version
           run: |
             # existing logic to compute RELEASE_VERSION
             echo "RELEASE_VERSION=..." >> "$GITHUB_OUTPUT"
   ```

2. Update the matrix job (`publish-arch`) to depend on `determine-release-version` and *consume* the version instead of defining it as an output:
   ```yaml
   publish-arch:
     needs: determine-release-version
     strategy:
       matrix:
         ...
     env:
       RELEASE_VERSION: ${{ needs.determine-release-version.outputs.RELEASE_VERSION }}
       NPM_REGISTRY_URL: "https://registry.npmjs.org"
   ```

3. Update `publish-meta` (or any other job that currently reads `needs.publish-arch.outputs.RELEASE_VERSION`) to depend on `determine-release-version` instead of `publish-arch` and read:
   ```yaml
   RELEASE_VERSION: ${{ needs.determine-release-version.outputs.RELEASE_VERSION }}
   ```

This way, `RELEASE_VERSION` is computed exactly once in a non-matrix job, and both the matrix job and `publish-meta` (and any others) can reliably consume the same deterministic output.
</issue_to_address>

Sourcery is free for open source - if you like our reviews please consider sharing them ✨
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.

@Dargon789 Dargon789 merged commit 1973ccd into master Dec 8, 2025
13 of 14 checks passed
@Dargon789 Dargon789 deleted the Dargon789-patch-3 branch December 8, 2025 21:30
@sourcery-ai sourcery-ai bot mentioned this pull request Jan 26, 2026
Dargon789 added a commit that referenced this pull request Jan 26, 2026
* chore(deps): bump the cargo group across 1 directory with 4 updates

Bumps the cargo group with 4 updates in the / directory: [hashbrown](https://github.com/rust-lang/hashbrown), [ring](https://github.com/briansmith/ring), [rustls](https://github.com/rustls/rustls) and [tokio](https://github.com/tokio-rs/tokio).


Updates `hashbrown` from 0.15.0 to 0.15.3
- [Release notes](https://github.com/rust-lang/hashbrown/releases)
- [Changelog](https://github.com/rust-lang/hashbrown/blob/master/CHANGELOG.md)
- [Commits](rust-lang/hashbrown@v0.15.0...v0.15.3)

Updates `ring` from 0.17.8 to 0.17.14
- [Changelog](https://github.com/briansmith/ring/blob/main/RELEASES.md)
- [Commits](https://github.com/briansmith/ring/commits)

Updates `rustls` from 0.23.16 to 0.23.23
- [Release notes](https://github.com/rustls/rustls/releases)
- [Changelog](https://github.com/rustls/rustls/blob/main/CHANGELOG.md)
- [Commits](rustls/rustls@v/0.23.16...v/0.23.23)

Updates `tokio` from 1.41.0 to 1.42.1
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-1.41.0...tokio-1.42.1)

---
updated-dependencies:
- dependency-name: hashbrown
  dependency-version: 0.15.3
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: ring
  dependency-version: 0.17.14
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: rustls
  dependency-version: 0.23.23
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: tokio
  dependency-version: 1.42.1
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>

* chore(deps): bump the npm_and_yarn group across 1 directory with 2 updates

Bumps the npm_and_yarn group with 2 updates in the / directory: [@babel/helpers](https://github.com/babel/babel/tree/HEAD/packages/babel-helpers) and [@babel/runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-runtime).


Updates `@babel/helpers` from 7.26.0 to 7.27.4
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.27.4/packages/babel-helpers)

Updates `@babel/runtime` from 7.26.0 to 7.27.4
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.27.4/packages/babel-runtime)

---
updated-dependencies:
- dependency-name: "@babel/helpers"
  dependency-version: 7.27.4
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: "@babel/runtime"
  dependency-version: 7.27.4
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>

* Potential fix for code scanning alert no. 3: Server-side request forgery

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 19: Workflow does not contain permissions

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* fix: package.json to reduce vulnerabilities (#27)

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-INFLIGHT-6095116

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* chore(deps): bump brace-expansion

Bumps the npm_and_yarn group with 1 update in the / directory: [brace-expansion](https://github.com/juliangruber/brace-expansion).


Updates `brace-expansion` from 1.1.11 to 1.1.12
- [Release notes](https://github.com/juliangruber/brace-expansion/releases)
- [Commits](juliangruber/brace-expansion@1.1.11...v1.1.12)

---
updated-dependencies:
- dependency-name: brace-expansion
  dependency-version: 1.1.12
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>

* Create config.yml (#34)

* feat: upgrade zod from 3.25.76 to 4.0.0 (#33)

Snyk has created this PR to upgrade zod from 3.25.76 to 4.0.0.

See this package in npm:
zod

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* feat: upgrade @types/jest from 29.5.14 to 30.0.0 (#32)

Snyk has created this PR to upgrade @types/jest from 29.5.14 to 30.0.0.

See this package in npm:
@types/jest

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* fix: upgrade prettier from 3.5.1 to 3.5.3 (#25)

Snyk has created this PR to upgrade prettier from 3.5.1 to 3.5.3.

See this package in npm:
prettier

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* feat: upgrade cross-env from 7.0.3 to 10.0.0 (#39)

Snyk has created this PR to upgrade cross-env from 7.0.3 to 10.0.0.

See this package in npm:
cross-env

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* fix: upgrade prettier from 3.5.3 to 3.6.2 (#38)

Snyk has created this PR to upgrade prettier from 3.5.3 to 3.6.2.

See this package in npm:
prettier

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* feat: upgrade @types/node from 18.19.123 to 24.1.0 (#36)

Snyk has created this PR to upgrade @types/node from 18.19.123 to 24.1.0.

See this package in npm:
@types/node

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* fix: package.json to reduce vulnerabilities (#35)

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-TMP-11501554

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* Create label.yml (#40)

* Create label.yml

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 30: Workflow does not contain permissions

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>

* Update release.yml (#41)

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* chore(deps): bump tracing-subscriber from 0.3.18 to 0.3.20 in the cargo group across 1 directory (#42)

* chore(deps): bump tracing-subscriber

Bumps the cargo group with 1 update in the / directory: [tracing-subscriber](https://github.com/tokio-rs/tracing).


Updates `tracing-subscriber` from 0.3.18 to 0.3.20
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](tokio-rs/tracing@tracing-subscriber-0.3.18...tracing-subscriber-0.3.20)

---
updated-dependencies:
- dependency-name: tracing-subscriber
  dependency-version: 0.3.20
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update rust.yml (#43)

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* [Snyk] Upgrade @changesets/cli from 2.29.6 to 2.29.7 (#46)

* fix: upgrade @changesets/cli from 2.29.6 to 2.29.7

Snyk has created this PR to upgrade @changesets/cli from 2.29.6 to 2.29.7.

See this package in npm:
@changesets/cli

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

* Update package.json

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: snyk-bot <snyk-bot@snyk.io>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* fix: upgrade cmd-ts from 0.13.0 to 0.14.1 (#45)

Snyk has created this PR to upgrade cmd-ts from 0.13.0 to 0.14.1.

See this package in npm:
cmd-ts

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* feat: upgrade p-retry from 6.2.1 to 7.0.0 (#44)

Snyk has created this PR to upgrade p-retry from 6.2.1 to 7.0.0.

See this package in npm:
p-retry

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* chore(deps): bump zip in the cargo group across 1 directory (#47)

Bumps the cargo group with 1 update in the / directory: [zip](https://github.com/zip-rs/zip2).


Updates `zip` from 2.2.0 to 6.0.0
- [Release notes](https://github.com/zip-rs/zip2/releases)
- [Changelog](https://github.com/zip-rs/zip2/blob/master/CHANGELOG.md)
- [Commits](zip-rs/zip2@v2.2.0...v6.0.0)

---
updated-dependencies:
- dependency-name: zip
  dependency-version: 6.0.0
  dependency-type: direct:production
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update release-to-cargo.yml (#55)

CI:

Modify the Publish to crates.io step to use cargo publish --dry-run
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create angry-moose-hug.md (#56)

* Create angry-moose-hug.md

Add a changeset for fnm to patch-release the package and update the release-to-cargo workflow configuration to use the master branch

Bug Fixes:

Update release-to-cargo.yml config to use the master branch
Chores:

Add angry-moose-hug changeset to bump fnm patch version

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/angry-moose-hug.md

New Changeset File: A new changeset file, "angry-moose-hug.md", has been added to the ".changeset" directory, indicating a recorded change for release management.
Release Configuration Update: The changeset documents a "patch" type change for "fnm", specifically a fix to update the "release-to-cargo.yml" configuration to use "base:br master".

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Create funny-falcons-breathe.md (#57)

* Create funny-falcons-breathe.md
Bug Fixes:

Update release-to-cargo.yml workflow config to use master as the base branch for fnm
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/funny-falcons-breathe.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update release.yml (#59)

Streamline the release workflow by restricting triggers to master and main branches and pin Node.js to version 22.

CI:

Remove the 'dev' branch from the release workflow triggers
Pin Node.js version to 22 in the release job
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci.yml (#60)

Add CircleCI pipeline to build, test, and format-check the Rust project with caching for dependencies

CI:

Introduce a CircleCI config (.circleci/ci.yml) using cimg/rust:1.89.0
Run cargo fmt -- --check and cargo test in a single build-and-test job
Cache Cargo dependencies and build artifacts between builds
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci-say-hello.yml (#61)

CI:

Add .circleci/ci-say-hello.yml with a say-hello job using cimg/base:current and a workflow to run it
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci-foundry.yml (#62)

Add .circleci/ci-foundry.yml to scaffold a new CircleCI pipeline with a custom Docker executor, a CI job, and a workflow.

CI:

Add initial CircleCI pipeline configuration using version 2.1
Define custom executor with Docker image and Docker Hub credentials
Introduce job 'web3-defi-game-project-' with checkout and placeholder run step
Add workflow 'my-custom-workflow' to orchestrate the CI job
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update config.yml (#66)

Restructure the CircleCI configuration by removing the custom executor, adding a sample say-hello job and workflow, and enhancing the file with explanatory comments
CI:
Remove custom executor and replace it with a basic say-hello job using the cimg/base:current Docker image
Introduce a say-hello-workflow to orchestrate the new job
Documentation:

Add inline comments to guide configuration of executors, jobs, steps, and workflows in the CI file
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create SECURITY.md (#67)

* Create SECURITY.md

Add a SECURITY.md file to establish the project's security policy, detail supported versions, and outline the vulnerability reporting process.

Documentation:

Introduce SECURITY.md with a security policy and supported versions table
Include guidelines for reporting vulnerabilities and expected response procedures
Signed-off-by: Dargon789 <64915515+Dargon789@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 <64915515+Dargon789@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 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Dargon789 patch 2 (#65)

* chore(deps): update actions/setup-node action to v4

* Create weak-moose-love.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/weak-moose-love.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create config.yml (#64)

CI:
Introduce .circleci/config.yml defining a 'say-hello' job and corresponding workflow

https://github.com/apps/gemini-code-assist
Highlights
New CircleCI Configuration: A new .circleci/config.yml file has been added to the repository, establishing a continuous integration setup.
Basic 'Hello, World!' Job: The initial configuration includes a simple job named say-hello that uses the cimg/base:current Docker image to print 'Hello, World!'.
Workflow Definition: A workflow named say-hello-workflow has been defined to orchestrate and run the say-hello job.
Code Review
This pull request introduces a basic CircleCI configuration file. The initial setup is a good starting point. I have provided a couple of suggestions to improve it for better maintainability and reproducibility. My main feedback is to pin the Docker image version to a specific tag instead of using current to ensure consistent builds. I've also pointed out a minor formatting issue with a trailing empty line.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Delete .circleci/ci-say-hello.yml (#69)

CI:
Delete .circleci/ci-say-hello.yml to clean up unused CI pipeline
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update ci.yml (#70)

CI:
Use cimg/rust:1.88.0 instead of cimg/rust:1.89.0 in the CI configuration
https://github.com/apps/gemini-code-assist
Code Review
This pull request updates the CircleCI configuration to use Rust version 1.88.0, aligning it with the rust-toolchain.toml file. This is a good correction. I have provided one suggestion to use a more flexible image tag to better match the behavior of rustup with the toolchain file, which will improve the long-term maintainability of the CI setup.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update release-to-cargo.yml

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update release-to-cargo.yml (#72)

Switch the GitHub Action for releasing to crates.io from a dry run to a real publish and clean up unused permissions settings.
CI:
Remove redundant permissions block from the release-to-cargo workflow
Replace dry-run with actual cargo publish command
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update grumpy-dingos-turn.md (#73)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update release.yml (#74)

* Update release.yml

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .github/workflows/release.yml

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>

* Update rust.yml (#75)

CI:
Remove 'dev' branch from rust.yml workflow triggers
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create docker.yml (#76)

Add a new GitHub Actions workflow (docker.yml) to automate building, pushing, and signing Docker images via Buildx, metadata extraction, and cosign integration

New Features:

Introduce a Docker CI workflow triggered on schedule, push to master, and semantic version tags, as well as on pull requests
Build and push multi-platform Docker images to GHCR using Buildx with dynamic tagging
Integrate cosign to sign published Docker images using Sigstore identity tokens
Enhancements:

Set up Docker metadata action for tag and label generation
Enable caching strategies for faster builds using GitHub Actions
CI:

Add .github/workflows/docker.yml to define the Docker build and publish pipeline
Chores:

Configure environment variables for registry (GHCR) and image naming based on the repository
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create CNAME

* Update rust.yml (#78)

Refine the GitHub Actions rust.yml workflow by restricting triggers to the master branch, pinning Node.js to version 18.x across all setup-node steps, and cleaning up formatting and commented version entries.
CI:

Limit workflow triggers to the master branch only
Pin Node.js setup in all jobs to version 18.x, removing 20.x and 22.x entries
Remove redundant commented Node.js version lines and extra blank lines
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* chore(deps): bump js-yaml in the npm_and_yarn group across 1 directory (#77)

Bumps the npm_and_yarn group with 1 update in the / directory: [js-yaml](https://github.com/nodeca/js-yaml).


Updates `js-yaml` from 3.14.1 to 3.14.2
- [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md)
- [Commits](nodeca/js-yaml@3.14.1...3.14.2)

---
updated-dependencies:
- dependency-name: js-yaml
  dependency-version: 3.14.2
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Create lazy-snails-return.md (#81)

* Create lazy-snails-return.md
Chores:
Create a new .changeset file to bump the patch version for fnm with a note about fixing the release-to-cargo.yml configuration.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/lazy-snails-return.md
Highlights
Changeset Addition: A new changeset file, lazy-snails-return.md, has been added. This file documents a fix related to the release-to-cargo.yml configuration.
Configuration Fix: The changeset entry specifically notes an update to the release-to-cargo.yml configuration, setting its base to br master.
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Dargon789 patch 2 (#82)

* chore(deps): update actions/setup-node action to v4

* Create weak-moose-love.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/weak-moose-love.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create config.yml (#64)

CI:
Introduce .circleci/config.yml defining a 'say-hello' job and corresponding workflow

https://github.com/apps/gemini-code-assist
Highlights
New CircleCI Configuration: A new .circleci/config.yml file has been added to the repository, establishing a continuous integration setup.
Basic 'Hello, World!' Job: The initial configuration includes a simple job named say-hello that uses the cimg/base:current Docker image to print 'Hello, World!'.
Workflow Definition: A workflow named say-hello-workflow has been defined to orchestrate and run the say-hello job.
Code Review
This pull request introduces a basic CircleCI configuration file. The initial setup is a good starting point. I have provided a couple of suggestions to improve it for better maintainability and reproducibility. My main feedback is to pin the Docker image version to a specific tag instead of using current to ensure consistent builds. I've also pointed out a minor formatting issue with a trailing empty line.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create olive-waves-punch.md (#79)

Chores:
Add a new changeset file for fnm patch release
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update index.mjs (#86)

Code Formatting: Removed an unnecessary blank line in tests/proxy-server/index.mjs to improve code consistency.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create google.yml (#87)

Add a GitHub Actions workflow to build and deploy the application to Google Kubernetes Engine via Google Cloud.
Build:
Introduce a Google Cloud–oriented workflow that builds a Docker image and pushes it to Artifact Registry on pushes to the main branch.
CI:
Add a GitHub Actions pipeline that authenticates with Google Cloud using Workload Identity Federation and runs container build and deployment steps.
Deployment:
Automate deploying the built Docker image to a GKE cluster using kustomize and kubectl.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci-hardhat.yml (#89)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create npm.yml (#91)

* Create npm.yml

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 31: Artifact poisoning

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>

* Update package.json (#93)

* Update package.json

Dargon789/uniswap.app@011f260

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update package.json

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update README.md (#94)

* Update README.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@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>

* Delete .kodiak.toml (#96)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create orb.yml (#97)

Dargon789/circleci-docs@cd854b0

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update Cargo.toml (#98)

* Update Cargo.toml

Dargon789/foundry@fcfa587

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update Cargo.toml

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update label.yml (#99)

CI:

Adjust GitHub Actions label workflow triggers to use the 'main' branch for push events while keeping pull request triggers on 'master'.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* fix(deps): update all non-major dependencies

* Add build artifacts and fnm.exe to repository

This commit adds the .fnm/fnm.exe binary and various Rust build artifacts under target-wsl/, including .rustc_info.json, CACHEDIR.TAG, and debug fingerprints for dependencies. These files appear to be generated as part of a Rust build process, possibly for debugging or distribution purposes.

* Update issue templates (#102)

* 1462 (#103)

* Adjust install script for POSIX compliance

* Create temporary directory when mktemp is unavailable

* Use "dot" instead of `source` builtin when shell is not fish

* Inform the user where fnm is being installed

* chore(deps): update rust crate indoc to v2.0.7

* Add changeset for updating indoc crate to v2.0.7 (#101)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Ricardo Biehl Pasquali <ricardo@pasqua.li>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* Update README.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .github/ISSUE_TEMPLATE/bug_report.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .github/ISSUE_TEMPLATE/bug_report.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Co-authored-by: snyk-bot <snyk-bot@snyk.io>
Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Co-authored-by: Ricardo Biehl Pasquali <ricardo@pasqua.li>
Dargon789 added a commit that referenced this pull request Jan 26, 2026
* Update Cargo.toml (#98)  (#104)

* chore(deps): bump the cargo group across 1 directory with 4 updates

Bumps the cargo group with 4 updates in the / directory: [hashbrown](https://github.com/rust-lang/hashbrown), [ring](https://github.com/briansmith/ring), [rustls](https://github.com/rustls/rustls) and [tokio](https://github.com/tokio-rs/tokio).


Updates `hashbrown` from 0.15.0 to 0.15.3
- [Release notes](https://github.com/rust-lang/hashbrown/releases)
- [Changelog](https://github.com/rust-lang/hashbrown/blob/master/CHANGELOG.md)
- [Commits](rust-lang/hashbrown@v0.15.0...v0.15.3)

Updates `ring` from 0.17.8 to 0.17.14
- [Changelog](https://github.com/briansmith/ring/blob/main/RELEASES.md)
- [Commits](https://github.com/briansmith/ring/commits)

Updates `rustls` from 0.23.16 to 0.23.23
- [Release notes](https://github.com/rustls/rustls/releases)
- [Changelog](https://github.com/rustls/rustls/blob/main/CHANGELOG.md)
- [Commits](rustls/rustls@v/0.23.16...v/0.23.23)

Updates `tokio` from 1.41.0 to 1.42.1
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-1.41.0...tokio-1.42.1)

---
updated-dependencies:
- dependency-name: hashbrown
  dependency-version: 0.15.3
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: ring
  dependency-version: 0.17.14
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: rustls
  dependency-version: 0.23.23
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: tokio
  dependency-version: 1.42.1
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>

* chore(deps): bump the npm_and_yarn group across 1 directory with 2 updates

Bumps the npm_and_yarn group with 2 updates in the / directory: [@babel/helpers](https://github.com/babel/babel/tree/HEAD/packages/babel-helpers) and [@babel/runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-runtime).


Updates `@babel/helpers` from 7.26.0 to 7.27.4
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.27.4/packages/babel-helpers)

Updates `@babel/runtime` from 7.26.0 to 7.27.4
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.27.4/packages/babel-runtime)

---
updated-dependencies:
- dependency-name: "@babel/helpers"
  dependency-version: 7.27.4
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: "@babel/runtime"
  dependency-version: 7.27.4
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>

* Potential fix for code scanning alert no. 3: Server-side request forgery

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 19: Workflow does not contain permissions

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* fix: package.json to reduce vulnerabilities (#27)

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-INFLIGHT-6095116

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* chore(deps): bump brace-expansion

Bumps the npm_and_yarn group with 1 update in the / directory: [brace-expansion](https://github.com/juliangruber/brace-expansion).


Updates `brace-expansion` from 1.1.11 to 1.1.12
- [Release notes](https://github.com/juliangruber/brace-expansion/releases)
- [Commits](juliangruber/brace-expansion@1.1.11...v1.1.12)

---
updated-dependencies:
- dependency-name: brace-expansion
  dependency-version: 1.1.12
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>

* Create config.yml (#34)

* feat: upgrade zod from 3.25.76 to 4.0.0 (#33)

Snyk has created this PR to upgrade zod from 3.25.76 to 4.0.0.

See this package in npm:
zod

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* feat: upgrade @types/jest from 29.5.14 to 30.0.0 (#32)

Snyk has created this PR to upgrade @types/jest from 29.5.14 to 30.0.0.

See this package in npm:
@types/jest

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* fix: upgrade prettier from 3.5.1 to 3.5.3 (#25)

Snyk has created this PR to upgrade prettier from 3.5.1 to 3.5.3.

See this package in npm:
prettier

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* feat: upgrade cross-env from 7.0.3 to 10.0.0 (#39)

Snyk has created this PR to upgrade cross-env from 7.0.3 to 10.0.0.

See this package in npm:
cross-env

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* fix: upgrade prettier from 3.5.3 to 3.6.2 (#38)

Snyk has created this PR to upgrade prettier from 3.5.3 to 3.6.2.

See this package in npm:
prettier

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* feat: upgrade @types/node from 18.19.123 to 24.1.0 (#36)

Snyk has created this PR to upgrade @types/node from 18.19.123 to 24.1.0.

See this package in npm:
@types/node

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* fix: package.json to reduce vulnerabilities (#35)

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-TMP-11501554

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* Create label.yml (#40)

* Create label.yml

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 30: Workflow does not contain permissions

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>

* Update release.yml (#41)

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* chore(deps): bump tracing-subscriber from 0.3.18 to 0.3.20 in the cargo group across 1 directory (#42)

* chore(deps): bump tracing-subscriber

Bumps the cargo group with 1 update in the / directory: [tracing-subscriber](https://github.com/tokio-rs/tracing).


Updates `tracing-subscriber` from 0.3.18 to 0.3.20
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](tokio-rs/tracing@tracing-subscriber-0.3.18...tracing-subscriber-0.3.20)

---
updated-dependencies:
- dependency-name: tracing-subscriber
  dependency-version: 0.3.20
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update rust.yml (#43)

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* [Snyk] Upgrade @changesets/cli from 2.29.6 to 2.29.7 (#46)

* fix: upgrade @changesets/cli from 2.29.6 to 2.29.7

Snyk has created this PR to upgrade @changesets/cli from 2.29.6 to 2.29.7.

See this package in npm:
@changesets/cli

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

* Update package.json

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: snyk-bot <snyk-bot@snyk.io>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* fix: upgrade cmd-ts from 0.13.0 to 0.14.1 (#45)

Snyk has created this PR to upgrade cmd-ts from 0.13.0 to 0.14.1.

See this package in npm:
cmd-ts

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* feat: upgrade p-retry from 6.2.1 to 7.0.0 (#44)

Snyk has created this PR to upgrade p-retry from 6.2.1 to 7.0.0.

See this package in npm:
p-retry

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* chore(deps): bump zip in the cargo group across 1 directory (#47)

Bumps the cargo group with 1 update in the / directory: [zip](https://github.com/zip-rs/zip2).


Updates `zip` from 2.2.0 to 6.0.0
- [Release notes](https://github.com/zip-rs/zip2/releases)
- [Changelog](https://github.com/zip-rs/zip2/blob/master/CHANGELOG.md)
- [Commits](zip-rs/zip2@v2.2.0...v6.0.0)

---
updated-dependencies:
- dependency-name: zip
  dependency-version: 6.0.0
  dependency-type: direct:production
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update release-to-cargo.yml (#55)

CI:

Modify the Publish to crates.io step to use cargo publish --dry-run
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create angry-moose-hug.md (#56)

* Create angry-moose-hug.md

Add a changeset for fnm to patch-release the package and update the release-to-cargo workflow configuration to use the master branch

Bug Fixes:

Update release-to-cargo.yml config to use the master branch
Chores:

Add angry-moose-hug changeset to bump fnm patch version

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/angry-moose-hug.md

New Changeset File: A new changeset file, "angry-moose-hug.md", has been added to the ".changeset" directory, indicating a recorded change for release management.
Release Configuration Update: The changeset documents a "patch" type change for "fnm", specifically a fix to update the "release-to-cargo.yml" configuration to use "base:br master".

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Create funny-falcons-breathe.md (#57)

* Create funny-falcons-breathe.md
Bug Fixes:

Update release-to-cargo.yml workflow config to use master as the base branch for fnm
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/funny-falcons-breathe.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update release.yml (#59)

Streamline the release workflow by restricting triggers to master and main branches and pin Node.js to version 22.

CI:

Remove the 'dev' branch from the release workflow triggers
Pin Node.js version to 22 in the release job
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci.yml (#60)

Add CircleCI pipeline to build, test, and format-check the Rust project with caching for dependencies

CI:

Introduce a CircleCI config (.circleci/ci.yml) using cimg/rust:1.89.0
Run cargo fmt -- --check and cargo test in a single build-and-test job
Cache Cargo dependencies and build artifacts between builds
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci-say-hello.yml (#61)

CI:

Add .circleci/ci-say-hello.yml with a say-hello job using cimg/base:current and a workflow to run it
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci-foundry.yml (#62)

Add .circleci/ci-foundry.yml to scaffold a new CircleCI pipeline with a custom Docker executor, a CI job, and a workflow.

CI:

Add initial CircleCI pipeline configuration using version 2.1
Define custom executor with Docker image and Docker Hub credentials
Introduce job 'web3-defi-game-project-' with checkout and placeholder run step
Add workflow 'my-custom-workflow' to orchestrate the CI job
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update config.yml (#66)

Restructure the CircleCI configuration by removing the custom executor, adding a sample say-hello job and workflow, and enhancing the file with explanatory comments
CI:
Remove custom executor and replace it with a basic say-hello job using the cimg/base:current Docker image
Introduce a say-hello-workflow to orchestrate the new job
Documentation:

Add inline comments to guide configuration of executors, jobs, steps, and workflows in the CI file
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create SECURITY.md (#67)

* Create SECURITY.md

Add a SECURITY.md file to establish the project's security policy, detail supported versions, and outline the vulnerability reporting process.

Documentation:

Introduce SECURITY.md with a security policy and supported versions table
Include guidelines for reporting vulnerabilities and expected response procedures
Signed-off-by: Dargon789 <64915515+Dargon789@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 <64915515+Dargon789@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 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Dargon789 patch 2 (#65)

* chore(deps): update actions/setup-node action to v4

* Create weak-moose-love.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/weak-moose-love.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create config.yml (#64)

CI:
Introduce .circleci/config.yml defining a 'say-hello' job and corresponding workflow

https://github.com/apps/gemini-code-assist
Highlights
New CircleCI Configuration: A new .circleci/config.yml file has been added to the repository, establishing a continuous integration setup.
Basic 'Hello, World!' Job: The initial configuration includes a simple job named say-hello that uses the cimg/base:current Docker image to print 'Hello, World!'.
Workflow Definition: A workflow named say-hello-workflow has been defined to orchestrate and run the say-hello job.
Code Review
This pull request introduces a basic CircleCI configuration file. The initial setup is a good starting point. I have provided a couple of suggestions to improve it for better maintainability and reproducibility. My main feedback is to pin the Docker image version to a specific tag instead of using current to ensure consistent builds. I've also pointed out a minor formatting issue with a trailing empty line.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Delete .circleci/ci-say-hello.yml (#69)

CI:
Delete .circleci/ci-say-hello.yml to clean up unused CI pipeline
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update ci.yml (#70)

CI:
Use cimg/rust:1.88.0 instead of cimg/rust:1.89.0 in the CI configuration
https://github.com/apps/gemini-code-assist
Code Review
This pull request updates the CircleCI configuration to use Rust version 1.88.0, aligning it with the rust-toolchain.toml file. This is a good correction. I have provided one suggestion to use a more flexible image tag to better match the behavior of rustup with the toolchain file, which will improve the long-term maintainability of the CI setup.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update release-to-cargo.yml

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update release-to-cargo.yml (#72)

Switch the GitHub Action for releasing to crates.io from a dry run to a real publish and clean up unused permissions settings.
CI:
Remove redundant permissions block from the release-to-cargo workflow
Replace dry-run with actual cargo publish command
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update grumpy-dingos-turn.md (#73)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update release.yml (#74)

* Update release.yml

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .github/workflows/release.yml

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>

* Update rust.yml (#75)

CI:
Remove 'dev' branch from rust.yml workflow triggers
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create docker.yml (#76)

Add a new GitHub Actions workflow (docker.yml) to automate building, pushing, and signing Docker images via Buildx, metadata extraction, and cosign integration

New Features:

Introduce a Docker CI workflow triggered on schedule, push to master, and semantic version tags, as well as on pull requests
Build and push multi-platform Docker images to GHCR using Buildx with dynamic tagging
Integrate cosign to sign published Docker images using Sigstore identity tokens
Enhancements:

Set up Docker metadata action for tag and label generation
Enable caching strategies for faster builds using GitHub Actions
CI:

Add .github/workflows/docker.yml to define the Docker build and publish pipeline
Chores:

Configure environment variables for registry (GHCR) and image naming based on the repository
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create CNAME

* Update rust.yml (#78)

Refine the GitHub Actions rust.yml workflow by restricting triggers to the master branch, pinning Node.js to version 18.x across all setup-node steps, and cleaning up formatting and commented version entries.
CI:

Limit workflow triggers to the master branch only
Pin Node.js setup in all jobs to version 18.x, removing 20.x and 22.x entries
Remove redundant commented Node.js version lines and extra blank lines
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* chore(deps): bump js-yaml in the npm_and_yarn group across 1 directory (#77)

Bumps the npm_and_yarn group with 1 update in the / directory: [js-yaml](https://github.com/nodeca/js-yaml).


Updates `js-yaml` from 3.14.1 to 3.14.2
- [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md)
- [Commits](nodeca/js-yaml@3.14.1...3.14.2)

---
updated-dependencies:
- dependency-name: js-yaml
  dependency-version: 3.14.2
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Create lazy-snails-return.md (#81)

* Create lazy-snails-return.md
Chores:
Create a new .changeset file to bump the patch version for fnm with a note about fixing the release-to-cargo.yml configuration.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/lazy-snails-return.md
Highlights
Changeset Addition: A new changeset file, lazy-snails-return.md, has been added. This file documents a fix related to the release-to-cargo.yml configuration.
Configuration Fix: The changeset entry specifically notes an update to the release-to-cargo.yml configuration, setting its base to br master.
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Dargon789 patch 2 (#82)

* chore(deps): update actions/setup-node action to v4

* Create weak-moose-love.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/weak-moose-love.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create config.yml (#64)

CI:
Introduce .circleci/config.yml defining a 'say-hello' job and corresponding workflow

https://github.com/apps/gemini-code-assist
Highlights
New CircleCI Configuration: A new .circleci/config.yml file has been added to the repository, establishing a continuous integration setup.
Basic 'Hello, World!' Job: The initial configuration includes a simple job named say-hello that uses the cimg/base:current Docker image to print 'Hello, World!'.
Workflow Definition: A workflow named say-hello-workflow has been defined to orchestrate and run the say-hello job.
Code Review
This pull request introduces a basic CircleCI configuration file. The initial setup is a good starting point. I have provided a couple of suggestions to improve it for better maintainability and reproducibility. My main feedback is to pin the Docker image version to a specific tag instead of using current to ensure consistent builds. I've also pointed out a minor formatting issue with a trailing empty line.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create olive-waves-punch.md (#79)

Chores:
Add a new changeset file for fnm patch release
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update index.mjs (#86)

Code Formatting: Removed an unnecessary blank line in tests/proxy-server/index.mjs to improve code consistency.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create google.yml (#87)

Add a GitHub Actions workflow to build and deploy the application to Google Kubernetes Engine via Google Cloud.
Build:
Introduce a Google Cloud–oriented workflow that builds a Docker image and pushes it to Artifact Registry on pushes to the main branch.
CI:
Add a GitHub Actions pipeline that authenticates with Google Cloud using Workload Identity Federation and runs container build and deployment steps.
Deployment:
Automate deploying the built Docker image to a GKE cluster using kustomize and kubectl.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci-hardhat.yml (#89)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create npm.yml (#91)

* Create npm.yml

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 31: Artifact poisoning

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>

* Update package.json (#93)

* Update package.json

Dargon789/uniswap.app@011f260

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update package.json

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update README.md (#94)

* Update README.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@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>

* Delete .kodiak.toml (#96)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create orb.yml (#97)

Dargon789/circleci-docs@cd854b0

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update Cargo.toml (#98)

* Update Cargo.toml

Dargon789/foundry@fcfa587

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update Cargo.toml

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update label.yml (#99)

CI:

Adjust GitHub Actions label workflow triggers to use the 'main' branch for push events while keeping pull request triggers on 'master'.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* fix(deps): update all non-major dependencies

* Add build artifacts and fnm.exe to repository

This commit adds the .fnm/fnm.exe binary and various Rust build artifacts under target-wsl/, including .rustc_info.json, CACHEDIR.TAG, and debug fingerprints for dependencies. These files appear to be generated as part of a Rust build process, possibly for debugging or distribution purposes.

* Update issue templates (#102)

* 1462 (#103)

* Adjust install script for POSIX compliance

* Create temporary directory when mktemp is unavailable

* Use "dot" instead of `source` builtin when shell is not fish

* Inform the user where fnm is being installed

* chore(deps): update rust crate indoc to v2.0.7

* Add changeset for updating indoc crate to v2.0.7 (#101)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Ricardo Biehl Pasquali <ricardo@pasqua.li>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* Update README.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .github/ISSUE_TEMPLATE/bug_report.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .github/ISSUE_TEMPLATE/bug_report.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Co-authored-by: snyk-bot <snyk-bot@snyk.io>
Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Co-authored-by: Ricardo Biehl Pasquali <ricardo@pasqua.li>

* Add changeset  sixty-rice-do.md for patch 1 (#105)

 sixty-rice-do.md
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update Cargo.toml

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update Cargo.toml

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@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 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Co-authored-by: snyk-bot <snyk-bot@snyk.io>
Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Co-authored-by: Ricardo Biehl Pasquali <ricardo@pasqua.li>
Dargon789 added a commit that referenced this pull request Jan 30, 2026
* Make install.sh tee instead of echoing twice

Also, fish bit was the only one that didn't print a newline to
$CONF_FILE, now they're all the same.

* Check if fnm is installed before shell setup

Change $CONF_FILE append strings to check whether $INSTALL_DIR exists
before doing any setup. This way whenever a user syncs their shell
config across machines, the machines without fnm installed won't throw
errors.

* Create smooth-lions-sneeze.md

* add hooks mechanism for pre, post and failed install

* feat: upgrade cross-env from 7.0.3 to 10.0.0 (#39)

Snyk has created this PR to upgrade cross-env from 7.0.3 to 10.0.0.

See this package in npm:
cross-env

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* fix: upgrade prettier from 3.5.3 to 3.6.2 (#38)

Snyk has created this PR to upgrade prettier from 3.5.3 to 3.6.2.

See this package in npm:
prettier

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* feat: upgrade @types/node from 18.19.123 to 24.1.0 (#36)

Snyk has created this PR to upgrade @types/node from 18.19.123 to 24.1.0.

See this package in npm:
@types/node

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* fix: package.json to reduce vulnerabilities (#35)

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-TMP-11501554

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* Create label.yml (#40)

* Create label.yml

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 30: Workflow does not contain permissions

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>

* Update release.yml (#41)

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* chore(deps): bump tracing-subscriber from 0.3.18 to 0.3.20 in the cargo group across 1 directory (#42)

* chore(deps): bump tracing-subscriber

Bumps the cargo group with 1 update in the / directory: [tracing-subscriber](https://github.com/tokio-rs/tracing).


Updates `tracing-subscriber` from 0.3.18 to 0.3.20
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.18...tracing-subscriber-0.3.20)

---
updated-dependencies:
- dependency-name: tracing-subscriber
  dependency-version: 0.3.20
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update rust.yml (#43)

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Adjust install script for POSIX compliance

* Create temporary directory when mktemp is unavailable

* Use "dot" instead of `source` builtin when shell is not fish

* Inform the user where fnm is being installed

* [Snyk] Upgrade @changesets/cli from 2.29.6 to 2.29.7 (#46)

* fix: upgrade @changesets/cli from 2.29.6 to 2.29.7

Snyk has created this PR to upgrade @changesets/cli from 2.29.6 to 2.29.7.

See this package in npm:
@changesets/cli

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

* Update package.json

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: snyk-bot <snyk-bot@snyk.io>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* fix: upgrade cmd-ts from 0.13.0 to 0.14.1 (#45)

Snyk has created this PR to upgrade cmd-ts from 0.13.0 to 0.14.1.

See this package in npm:
cmd-ts

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* feat: upgrade p-retry from 6.2.1 to 7.0.0 (#44)

Snyk has created this PR to upgrade p-retry from 6.2.1 to 7.0.0.

See this package in npm:
p-retry

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* chore(deps): bump zip in the cargo group across 1 directory (#47)

Bumps the cargo group with 1 update in the / directory: [zip](https://github.com/zip-rs/zip2).


Updates `zip` from 2.2.0 to 6.0.0
- [Release notes](https://github.com/zip-rs/zip2/releases)
- [Changelog](https://github.com/zip-rs/zip2/blob/master/CHANGELOG.md)
- [Commits](https://github.com/zip-rs/zip2/compare/v2.2.0...v6.0.0)

---
updated-dependencies:
- dependency-name: zip
  dependency-version: 6.0.0
  dependency-type: direct:production
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Create smart-avocados-try.md (#48)

* Create smart-avocados-try.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/smart-avocados-try.md
New Changeset File: A new changeset file, smart-avocados-try.md, has been added to the .changeset directory. This file is used to record a specific change for future release notes or changelog generation.
Patch Metadata: The newly added changeset file includes front matter metadata specifying "fnm": "patch", indicating the type of change being recorded.
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update release-to-cargo.yml (#55)

CI:

Modify the Publish to crates.io step to use cargo publish --dry-run
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create angry-moose-hug.md (#56)

* Create angry-moose-hug.md

Add a changeset for fnm to patch-release the package and update the release-to-cargo workflow configuration to use the master branch

Bug Fixes:

Update release-to-cargo.yml config to use the master branch
Chores:

Add angry-moose-hug changeset to bump fnm patch version

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/angry-moose-hug.md

New Changeset File: A new changeset file, "angry-moose-hug.md", has been added to the ".changeset" directory, indicating a recorded change for release management.
Release Configuration Update: The changeset documents a "patch" type change for "fnm", specifically a fix to update the "release-to-cargo.yml" configuration to use "base:br master".

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Create funny-falcons-breathe.md (#57)

* Create funny-falcons-breathe.md
Bug Fixes:

Update release-to-cargo.yml workflow config to use master as the base branch for fnm
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/funny-falcons-breathe.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update release.yml (#59)

Streamline the release workflow by restricting triggers to master and main branches and pin Node.js to version 22.

CI:

Remove the 'dev' branch from the release workflow triggers
Pin Node.js version to 22 in the release job
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci.yml (#60)

Add CircleCI pipeline to build, test, and format-check the Rust project with caching for dependencies

CI:

Introduce a CircleCI config (.circleci/ci.yml) using cimg/rust:1.89.0
Run cargo fmt -- --check and cargo test in a single build-and-test job
Cache Cargo dependencies and build artifacts between builds
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci-say-hello.yml (#61)

CI:

Add .circleci/ci-say-hello.yml with a say-hello job using cimg/base:current and a workflow to run it
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci-foundry.yml (#62)

Add .circleci/ci-foundry.yml to scaffold a new CircleCI pipeline with a custom Docker executor, a CI job, and a workflow.

CI:

Add initial CircleCI pipeline configuration using version 2.1
Define custom executor with Docker image and Docker Hub credentials
Introduce job 'web3-defi-game-project-' with checkout and placeholder run step
Add workflow 'my-custom-workflow' to orchestrate the CI job
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update config.yml (#66)

Restructure the CircleCI configuration by removing the custom executor, adding a sample say-hello job and workflow, and enhancing the file with explanatory comments
CI:
Remove custom executor and replace it with a basic say-hello job using the cimg/base:current Docker image
Introduce a say-hello-workflow to orchestrate the new job
Documentation:

Add inline comments to guide configuration of executors, jobs, steps, and workflows in the CI file
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create SECURITY.md (#67)

* Create SECURITY.md

Add a SECURITY.md file to establish the project's security policy, detail supported versions, and outline the vulnerability reporting process.

Documentation:

Introduce SECURITY.md with a security policy and supported versions table
Include guidelines for reporting vulnerabilities and expected response procedures
Signed-off-by: Dargon789 <64915515+Dargon789@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 <64915515+Dargon789@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 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Dargon789 patch 2 (#65)

* chore(deps): update actions/setup-node action to v4

* Create weak-moose-love.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/weak-moose-love.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create config.yml (#64)

CI:
Introduce .circleci/config.yml defining a 'say-hello' job and corresponding workflow

https://github.com/apps/gemini-code-assist
Highlights
New CircleCI Configuration: A new .circleci/config.yml file has been added to the repository, establishing a continuous integration setup.
Basic 'Hello, World!' Job: The initial configuration includes a simple job named say-hello that uses the cimg/base:current Docker image to print 'Hello, World!'.
Workflow Definition: A workflow named say-hello-workflow has been defined to orchestrate and run the say-hello job.
Code Review
This pull request introduces a basic CircleCI configuration file. The initial setup is a good starting point. I have provided a couple of suggestions to improve it for better maintainability and reproducibility. My main feedback is to pin the Docker image version to a specific tag instead of using current to ensure consistent builds. I've also pointed out a minor formatting issue with a trailing empty line.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Delete .circleci/ci-say-hello.yml (#69)

CI:
Delete .circleci/ci-say-hello.yml to clean up unused CI pipeline
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update ci.yml (#70)

CI:
Use cimg/rust:1.88.0 instead of cimg/rust:1.89.0 in the CI configuration
https://github.com/apps/gemini-code-assist
Code Review
This pull request updates the CircleCI configuration to use Rust version 1.88.0, aligning it with the rust-toolchain.toml file. This is a good correction. I have provided one suggestion to use a more flexible image tag to better match the behavior of rustup with the toolchain file, which will improve the long-term maintainability of the CI setup.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update release-to-cargo.yml

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update release-to-cargo.yml (#72)

Switch the GitHub Action for releasing to crates.io from a dry run to a real publish and clean up unused permissions settings.
CI:
Remove redundant permissions block from the release-to-cargo workflow
Replace dry-run with actual cargo publish command
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update grumpy-dingos-turn.md (#73)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update release.yml (#74)

* Update release.yml

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .github/workflows/release.yml

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>

* Update rust.yml (#75)

CI:
Remove 'dev' branch from rust.yml workflow triggers
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create docker.yml (#76)

Add a new GitHub Actions workflow (docker.yml) to automate building, pushing, and signing Docker images via Buildx, metadata extraction, and cosign integration

New Features:

Introduce a Docker CI workflow triggered on schedule, push to master, and semantic version tags, as well as on pull requests
Build and push multi-platform Docker images to GHCR using Buildx with dynamic tagging
Integrate cosign to sign published Docker images using Sigstore identity tokens
Enhancements:

Set up Docker metadata action for tag and label generation
Enable caching strategies for faster builds using GitHub Actions
CI:

Add .github/workflows/docker.yml to define the Docker build and publish pipeline
Chores:

Configure environment variables for registry (GHCR) and image naming based on the repository
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create CNAME

* Update rust.yml (#78)

Refine the GitHub Actions rust.yml workflow by restricting triggers to the master branch, pinning Node.js to version 18.x across all setup-node steps, and cleaning up formatting and commented version entries.
CI:

Limit workflow triggers to the master branch only
Pin Node.js setup in all jobs to version 18.x, removing 20.x and 22.x entries
Remove redundant commented Node.js version lines and extra blank lines
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* chore(deps): bump js-yaml in the npm_and_yarn group across 1 directory (#77)

Bumps the npm_and_yarn group with 1 update in the / directory: [js-yaml](https://github.com/nodeca/js-yaml).


Updates `js-yaml` from 3.14.1 to 3.14.2
- [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nodeca/js-yaml/compare/3.14.1...3.14.2)

---
updated-dependencies:
- dependency-name: js-yaml
  dependency-version: 3.14.2
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Create spotty-weeks-sit.md (#80)

Chores:
Create a spotty-weeks-sit changeset specifying a patch release for fnm
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create lazy-snails-return.md (#81)

* Create lazy-snails-return.md
Chores:
Create a new .changeset file to bump the patch version for fnm with a note about fixing the release-to-cargo.yml configuration.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/lazy-snails-return.md
Highlights
Changeset Addition: A new changeset file, lazy-snails-return.md, has been added. This file documents a fix related to the release-to-cargo.yml configuration.
Configuration Fix: The changeset entry specifically notes an update to the release-to-cargo.yml configuration, setting its base to br master.
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Dargon789 patch 2 (#82)

* chore(deps): update actions/setup-node action to v4

* Create weak-moose-love.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/weak-moose-love.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create config.yml (#64)

CI:
Introduce .circleci/config.yml defining a 'say-hello' job and corresponding workflow

https://github.com/apps/gemini-code-assist
Highlights
New CircleCI Configuration: A new .circleci/config.yml file has been added to the repository, establishing a continuous integration setup.
Basic 'Hello, World!' Job: The initial configuration includes a simple job named say-hello that uses the cimg/base:current Docker image to print 'Hello, World!'.
Workflow Definition: A workflow named say-hello-workflow has been defined to orchestrate and run the say-hello job.
Code Review
This pull request introduces a basic CircleCI configuration file. The initial setup is a good starting point. I have provided a couple of suggestions to improve it for better maintainability and reproducibility. My main feedback is to pin the Docker image version to a specific tag instead of using current to ensure consistent builds. I've also pointed out a minor formatting issue with a trailing empty line.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create olive-waves-punch.md (#79)

Chores:
Add a new changeset file for fnm patch release
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update index.mjs (#86)

Code Formatting: Removed an unnecessary blank line in tests/proxy-server/index.mjs to improve code consistency.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create google.yml (#87)

Add a GitHub Actions workflow to build and deploy the application to Google Kubernetes Engine via Google Cloud.
Build:
Introduce a Google Cloud–oriented workflow that builds a Docker image and pushes it to Artifact Registry on pushes to the main branch.
CI:
Add a GitHub Actions pipeline that authenticates with Google Cloud using Workload Identity Federation and runs container build and deployment steps.
Deployment:
Automate deploying the built Docker image to a GKE cluster using kustomize and kubectl.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci-hardhat.yml (#89)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create npm.yml (#91)

* Create npm.yml

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 31: Artifact poisoning

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>

* Update package.json (#93)

* Update package.json

https://github.com/Dargon789/uniswap.app/commit/011f260c7cc540f9bc9b336e0108f10d6f00401f

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update package.json

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update README.md (#94)

* Update README.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@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>

* Delete .kodiak.toml (#96)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create orb.yml (#97)

https://github.com/Dargon789/circleci-docs/commit/cd854b03e8aa7204da46e1da518ff6d80526a7b3

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update Cargo.toml (#98)

* Update Cargo.toml

https://github.com/Dargon789/foundry/commit/fcfa587cbfce70b8eb32ac87207cd8a2e2c4f726

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update Cargo.toml

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update label.yml (#99)

CI:

Adjust GitHub Actions label workflow triggers to use the 'main' branch for push events while keeping pull request triggers on 'master'.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* fix(deps): update all non-major dependencies

* Add build artifacts and fnm.exe to repository

This commit adds the .fnm/fnm.exe binary and various Rust build artifacts under target-wsl/, including .rustc_info.json, CACHEDIR.TAG, and debug fingerprints for dependencies. These files appear to be generated as part of a Rust build process, possibly for debugging or distribution purposes.

* Update issue templates (#102)

* 1462 (#103)

* Adjust install script for POSIX compliance

* Create temporary directory when mktemp is unavailable

* Use "dot" instead of `source` builtin when shell is not fish

* Inform the user where fnm is being installed

* chore(deps): update rust crate indoc to v2.0.7

* Add changeset for updating indoc crate to v2.0.7 (#101)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Ricardo Biehl Pasquali <ricardo@pasqua.li>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* Update README.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .github/ISSUE_TEMPLATE/bug_report.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .github/ISSUE_TEMPLATE/bug_report.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update Cargo.toml (#98)  (#104)

* chore(deps): bump the cargo group across 1 directory with 4 updates

Bumps the cargo group with 4 updates in the / directory: [hashbrown](https://github.com/rust-lang/hashbrown), [ring](https://github.com/briansmith/ring), [rustls](https://github.com/rustls/rustls) and [tokio](https://github.com/tokio-rs/tokio).


Updates `hashbrown` from 0.15.0 to 0.15.3
- [Release notes](https://github.com/rust-lang/hashbrown/releases)
- [Changelog](https://github.com/rust-lang/hashbrown/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-lang/hashbrown/compare/v0.15.0...v0.15.3)

Updates `ring` from 0.17.8 to 0.17.14
- [Changelog](https://github.com/briansmith/ring/blob/main/RELEASES.md)
- [Commits](https://github.com/briansmith/ring/commits)

Updates `rustls` from 0.23.16 to 0.23.23
- [Release notes](https://github.com/rustls/rustls/releases)
- [Changelog](https://github.com/rustls/rustls/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rustls/rustls/compare/v/0.23.16...v/0.23.23)

Updates `tokio` from 1.41.0 to 1.42.1
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.41.0...tokio-1.42.1)

---
updated-dependencies:
- dependency-name: hashbrown
  dependency-version: 0.15.3
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: ring
  dependency-version: 0.17.14
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: rustls
  dependency-version: 0.23.23
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: tokio
  dependency-version: 1.42.1
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>

* chore(deps): bump the npm_and_yarn group across 1 directory with 2 updates

Bumps the npm_and_yarn group with 2 updates in the / directory: [@babel/helpers](https://github.com/babel/babel/tree/HEAD/packages/babel-helpers) and [@babel/runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-runtime).


Updates `@babel/helpers` from 7.26.0 to 7.27.4
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.27.4/packages/babel-helpers)

Updates `@babel/runtime` from 7.26.0 to 7.27.4
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.27.4/packages/babel-runtime)

---
updated-dependencies:
- dependency-name: "@babel/helpers"
  dependency-version: 7.27.4
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: "@babel/runtime"
  dependency-version: 7.27.4
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>

* Potential fix for code scanning alert no. 3: Server-side request forgery

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 19: Workflow does not contain permissions

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* fix: package.json to reduce vulnerabilities (#27)

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-INFLIGHT-6095116

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* chore(deps): bump brace-expansion

Bumps the npm_and_yarn group with 1 update in the / directory: [brace-expansion](https://github.com/juliangruber/brace-expansion).


Updates `brace-expansion` from 1.1.11 to 1.1.12
- [Release notes](https://github.com/juliangruber/brace-expansion/releases)
- [Commits](https://github.com/juliangruber/brace-expansion/compare/1.1.11...v1.1.12)

---
updated-dependencies:
- dependency-name: brace-expansion
  dependency-version: 1.1.12
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>

* Create config.yml (#34)

* feat: upgrade zod from 3.25.76 to 4.0.0 (#33)

Snyk has created this PR to upgrade zod from 3.25.76 to 4.0.0.

See this package in npm:
zod

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* feat: upgrade @types/jest from 29.5.14 to 30.0.0 (#32)

Snyk has created this PR to upgrade @types/jest from 29.5.14 to 30.0.0.

See this package in npm:
@types/jest

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* fix: upgrade prettier from 3.5.1 to 3.5.3 (#25)

Snyk has created this PR to upgrade prettier from 3.5.1 to 3.5.3.

See this package in npm:
prettier

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* feat: upgrade cross-env from 7.0.3 to 10.0.0 (#39)

Snyk has created this PR to upgrade cross-env from 7.0.3 to 10.0.0.

See this package in npm:
cross-env

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* fix: upgrade prettier from 3.5.3 to 3.6.2 (#38)

Snyk has created this PR to upgrade prettier from 3.5.3 to 3.6.2.

See this package in npm:
prettier

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* feat: upgrade @types/node from 18.19.123 to 24.1.0 (#36)

Snyk has created this PR to upgrade @types/node from 18.19.123 to 24.1.0.

See this package in npm:
@types/node

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* fix: package.json to reduce vulnerabilities (#35)

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-TMP-11501554

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* Create label.yml (#40)

* Create label.yml

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 30: Workflow does not contain permissions

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>

* Update release.yml (#41)

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* chore(deps): bump tracing-subscriber from 0.3.18 to 0.3.20 in the cargo group across 1 directory (#42)

* chore(deps): bump tracing-subscriber

Bumps the cargo group with 1 update in the / directory: [tracing-subscriber](https://github.com/tokio-rs/tracing).


Updates `tracing-subscriber` from 0.3.18 to 0.3.20
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.18...tracing-subscriber-0.3.20)

---
updated-dependencies:
- dependency-name: tracing-subscriber
  dependency-version: 0.3.20
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update rust.yml (#43)

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* [Snyk] Upgrade @changesets/cli from 2.29.6 to 2.29.7 (#46)

* fix: upgrade @changesets/cli from 2.29.6 to 2.29.7

Snyk has created this PR to upgrade @changesets/cli from 2.29.6 to 2.29.7.

See this package in npm:
@changesets/cli

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

* Update package.json

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: snyk-bot <snyk-bot@snyk.io>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* fix: upgrade cmd-ts from 0.13.0 to 0.14.1 (#45)

Snyk has created this PR to upgrade cmd-ts from 0.13.0 to 0.14.1.

See this package in npm:
cmd-ts

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* feat: upgrade p-retry from 6.2.1 to 7.0.0 (#44)

Snyk has created this PR to upgrade p-retry from 6.2.1 to 7.0.0.

See this package in npm:
p-retry

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* chore(deps): bump zip in the cargo group across 1 directory (#47)

Bumps the cargo group with 1 update in the / directory: [zip](https://github.com/zip-rs/zip2).


Updates `zip` from 2.2.0 to 6.0.0
- [Release notes](https://github.com/zip-rs/zip2/releases)
- [Changelog](https://github.com/zip-rs/zip2/blob/master/CHANGELOG.md)
- [Commits](https://github.com/zip-rs/zip2/compare/v2.2.0...v6.0.0)

---
updated-dependencies:
- dependency-name: zip
  dependency-version: 6.0.0
  dependency-type: direct:production
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update release-to-cargo.yml (#55)

CI:

Modify the Publish to crates.io step to use cargo publish --dry-run
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create angry-moose-hug.md (#56)

* Create angry-moose-hug.md

Add a changeset for fnm to patch-release the package and update the release-to-cargo workflow configuration to use the master branch

Bug Fixes:

Update release-to-cargo.yml config to use the master branch
Chores:

Add angry-moose-hug changeset to bump fnm patch version

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/angry-moose-hug.md

New Changeset File: A new changeset file, "angry-moose-hug.md", has been added to the ".changeset" directory, indicating a recorded change for release management.
Release Configuration Update: The changeset documents a "patch" type change for "fnm", specifically a fix to update the "release-to-cargo.yml" configuration to use "base:br master".

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Create funny-falcons-breathe.md (#57)

* Create funny-falcons-breathe.md
Bug Fixes:

Update release-to-cargo.yml workflow config to use master as the base branch for fnm
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/funny-falcons-breathe.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update release.yml (#59)

Streamline the release workflow by restricting triggers to master and main branches and pin Node.js to version 22.

CI:

Remove the 'dev' branch from the release workflow triggers
Pin Node.js version to 22 in the release job
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci.yml (#60)

Add CircleCI pipeline to build, test, and format-check the Rust project with caching for dependencies

CI:

Introduce a CircleCI config (.circleci/ci.yml) using cimg/rust:1.89.0
Run cargo fmt -- --check and cargo test in a single build-and-test job
Cache Cargo dependencies and build artifacts between builds
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci-say-hello.yml (#61)

CI:

Add .circleci/ci-say-hello.yml with a say-hello job using cimg/base:current and a workflow to run it
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci-foundry.yml (#62)

Add .circleci/ci-foundry.yml to scaffold a new CircleCI pipeline with a custom Docker executor, a CI job, and a workflow.

CI:

Add initial CircleCI pipeline configuration using version 2.1
Define custom executor with Docker image and Docker Hub credentials
Introduce job 'web3-defi-game-project-' with checkout and placeholder run step
Add workflow 'my-custom-workflow' to orchestrate the CI job
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update config.yml (#66)

Restructure the CircleCI configuration by removing the custom executor, adding a sample say-hello job and workflow, and enhancing the file with explanatory comments
CI:
Remove custom executor and replace it with a basic say-hello job using the cimg/base:current Docker image
Introduce a say-hello-workflow to orchestrate the new job
Documentation:

Add inline comments to guide configuration of executors, jobs, steps, and workflows in the CI file
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create SECURITY.md (#67)

* Create SECURITY.md

Add a SECURITY.md file to establish the project's security policy, detail supported versions, and outline the vulnerability reporting process.

Documentation:

Introduce SECURITY.md with a security policy and supported versions table
Include guidelines for reporting vulnerabilities and expected response procedures
Signed-off-by: Dargon789 <64915515+Dargon789@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 <64915515+Dargon789@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 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Dargon789 patch 2 (#65)

* chore(deps): update actions/setup-node action to v4

* Create weak-moose-love.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/weak-moose-love.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create config.yml (#64)

CI:
Introduce .circleci/config.yml defining a 'say-hello' job and corresponding workflow

https://github.com/apps/gemini-code-assist
Highlights
New CircleCI Configuration: A new .circleci/config.yml file has been added to the repository, establishing a continuous integration setup.
Basic 'Hello, World!' Job: The initial configuration includes a simple job named say-hello that uses the cimg/base:current Docker image to print 'Hello, World!'.
Workflow Definition: A workflow named say-hello-workflow has been defined to orchestrate and run the say-hello job.
Code Review
This pull request introduces a basic CircleCI configuration file. The initial setup is a good starting point. I have provided a couple of suggestions to improve it for better maintainability and reproducibility. My main feedback is to pin the Docker image version to a specific tag instead of using current to ensure consistent builds. I've also pointed out a minor formatting issue with a trailing empty line.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Delete .circleci/ci-say-hello.yml (#69)

CI:
Delete .circleci/ci-say-hello.yml to clean up unused CI pipeline
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update ci.yml (#70)

CI:
Use cimg/rust:1.88.0 instead of cimg/rust:1.89.0 in the CI configuration
https://github.com/apps/gemini-code-assist
Code Review
This pull request updates the CircleCI configuration to use Rust version 1.88.0, aligning it with the rust-toolchain.toml file. This is a good correction. I have provided one suggestion to use a more flexible image tag to better match the behavior of rustup with the toolchain file, which will improve the long-term maintainability of the CI setup.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update release-to-cargo.yml

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update release-to-cargo.yml (#72)

Switch the GitHub Action for releasing to crates.io from a dry run to a real publish and clean up unused permissions settings.
CI:
Remove redundant permissions block from the release-to-cargo workflow
Replace dry-run with actual cargo publish command
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update grumpy-dingos-turn.md (#73)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update release.yml (#74)

* Update release.yml

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .github/workflows/release.yml

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>

* Update rust.yml (#75)

CI:
Remove 'dev' branch from rust.yml workflow triggers
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create docker.yml (#76)

Add a new GitHub Actions workflow (docker.yml) to automate building, pushing, and signing Docker images via Buildx, metadata extraction, and cosign integration

New Features:

Introduce a Docker CI workflow triggered on schedule, push to master, and semantic version tags, as well as on pull requests
Build and push multi-platform Docker images to GHCR using Buildx with dynamic tagging
Integrate cosign to sign published Docker images using Sigstore identity tokens
Enhancements:

Set up Docker metadata action for tag and label generation
Enable caching strategies for faster builds using GitHub Actions
CI:

Add .github/workflows/docker.yml to define the Docker build and publish pipeline
Chores:

Configure environment variables for registry (GHCR) and image naming based on the repository
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create CNAME

* Update rust.yml (#78)

Refine the GitHub Actions rust.yml workflow by restricting triggers to the master branch, pinning Node.js to version 18.x across all setup-node steps, and cleaning up formatting and commented version entries.
CI:

Limit workflow triggers to the master branch only
Pin Node.js setup in all jobs to version 18.x, removing 20.x and 22.x entries
Remove redundant commented Node.js version lines and extra blank lines
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* chore(deps): bump js-yaml in the npm_and_yarn group across 1 directory (#77)

Bumps the npm_and_yarn group with 1 update in the / directory: [js-yaml](https://github.com/nodeca/js-yaml).


Updates `js-yaml` from 3.14.1 to 3.14.2
- [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nodeca/js-yaml/compare/3.14.1...3.14.2)

---
updated-dependencies:
- dependency-name: js-yaml
  dependency-version: 3.14.2
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Create lazy-snails-return.md (#81)

* Create lazy-snails-return.md
Chores:
Create a new .changeset file to bump the patch version for fnm with a note about fixing the release-to-cargo.yml configuration.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/lazy-snails-return.md
Highlights
Changeset Addition: A new changeset file, lazy-snails-return.md, has been added. This file documents a fix related to the release-to-cargo.yml configuration.
Configuration Fix: The changeset entry specifically notes an update to the release-to-cargo.yml configuration, setting its base to br master.
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Dargon789 patch 2 (#82)

* chore(deps): update actions/setup-node action to v4

* Create weak-moose-love.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/weak-moose-love.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create config.yml (#64)

CI:
Introduce .circleci/config.yml defining a 'say-hello' job and corresponding workflow

https://github.com/apps/gemini-code-assist
Highlights
New CircleCI Configuration: A new .circleci/config.yml file has been added to the repository, establishing a continuous integration setup.
Basic 'Hello, World!' Job: The initial configuration includes a simple job named say-hello that uses the cimg/base:current Docker image to print 'Hello, World!'.
Workflow Definition: A workflow named say-hello-workflow has been defined to orchestrate and run the say-hello job.
Code Review
This pull request introduces a basic CircleCI configuration file. The initial setup is a good starting point. I have provided a couple of suggestions to improve it for better maintainability and reproducibility. My main feedback is to pin the Docker image version to a specific tag instead of using current to ensure consistent builds. I've also pointed out a minor formatting issue with a trailing empty line.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create olive-waves-punch.md (#79)

Chores:
Add a new changeset file for fnm patch release
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update index.mjs (#86)

Code Formatting: Removed an unnecessary blank line in tests/proxy-server/index.mjs to improve code consistency.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create google.yml (#87)

Add a GitHub Actions workflow to build and deploy the application to Google Kubernetes Engine via Google Cloud.
Build:
Introduce a Google Cloud–oriented workflow that builds a Docker image and pushes it to Artifact Registry on pushes to the main branch.
CI:
Add a GitHub Actions pipeline that authenticates with Google Cloud using Workload Identity Federation and runs container build and deployment steps.
Deployment:
Automate deploying the built Docker image to a GKE cluster using kustomize and kubectl.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci-hardhat.yml (#89)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create npm.yml (#91)

* Create npm.yml

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 31: Artifact poisoning

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>

* Update package.json (#93)

* Update package.json

https://github.com/Dargon789/uniswap.app/commit/011f260c7cc540f9bc9b336e0108f10d6f00401f

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update package.json

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update README.md (#94)

* Update README.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@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>

* Delete .kodiak.toml (#96)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create orb.yml (#97)

https://github.com/Dargon789/circleci-docs/commit/cd854b03e8aa7204da46e1da518ff6d80526a7b3

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update Cargo.toml (#98)

* Update Cargo.toml

https://github.com/Dargon789/foundry/commit/fcfa587cbfce70b8eb32ac87207cd8a2e2c4f726

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update Cargo.toml

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update label.yml (#99)

CI:

Adjust GitHub Actions label workflow triggers to use the 'main' branch for push events while keeping pull request triggers on 'master'.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* fix(deps): update all non-major dependencies

* Add build artifacts and fnm.exe to repository

This commit adds the .fnm/fnm.exe binary and various Rust build artifacts under target-wsl/, including .rustc_info.json, CACHEDIR.TAG, and debug fingerprints for dependencies. These files appear to be generated as part of a Rust build process, possibly for debugging or distribution purposes.

* Update issue templates (#102)

* 1462 (#103)

* Adjust install script for POSIX compliance

* Create temporary directory when mktemp is unavailable

* Use "dot" instead of `source` builtin when shell is not fish

* Inform the user where fnm is being installed

* chore(deps): update rust crate indoc to v2.0.7

* Add changeset for updating indoc crate to v2.0.7 (#101)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Ricardo Biehl Pasquali <ricardo@pasqua.li>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* Update README.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .github/ISSUE_TEMPLATE/bug_report.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .github/ISSUE_TEMPLATE/bug_report.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Co-authored-by: snyk-bot <snyk-bot@snyk.io>
Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Co-authored-by: Ricardo Biehl Pasquali <ricardo@pasqua.li>

* chore(deps): bump lodash in the npm_and_yarn group across 1 directory (#100)

Bumps the npm_and_yarn group with 1 update in the / directory: [lodash](https://github.com/lodash/lodash).


Updates `lodash` from 4.17.21 to 4.17.23
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](https://github.com/lodash/lodash/compare/4.17.21...4.17.23)

---
updated-dependencies:
- dependency-name: lodash
  dependency-version: 4.17.23
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* [Snyk] Upgrade @changesets/cli from 2.29.1 to 2.29.2 (#20)

* update devDependencies

* recovery version corepack

pnpm@8.15.8

* Circleci project setup (#4)

* Add .circleci/config.yml

* Add .circleci/config.yml

* Add .circleci/config.yml

* Bump ring from 0.17.8 to 0.17.13 in the cargo group across 1 directory (#3)

Bumps the cargo group with 1 update in the / directory: [ring](https://github.com/briansmith/ring).


Updates `ring` from 0.17.8 to 0.17.13
- [Changelog](https://github.com/briansmith/ring/blob/main/RELEASES.md)
- [Commits](https://github.com/briansmith/ring/commits)

---
updated-dependencies:
- dependency-name: ring
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Bump dawidd6/action-download-artifact (#2)

Bumps the github_actions group with 1 update in the /.github/workflows directory: [dawidd6/action-download-artifact](https://github.com/dawidd6/action-download-artifact).


Updates `dawidd6/action-download-artifact` from 2 to 6
- [Release notes](https://github.com/dawidd6/action-download-artifact/releases)
- [Commits](https://github.com/dawidd6/action-download-artifact/compare/v2...v6)

---
updated-dependencies:
- dependency-name: dawidd6/action-download-artifact
  dependency-type: direct:production
  dependency-group: github_actions
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Create SECURITY.md (#1)

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Revert "Bump dawidd6/action-download-artifact (#2)" (#5)

This reverts commit b454d73a9022373d51a80f5a33813c58e4dff91d.

* Bump tokio from 1.37.0 to 1.42.0 in the cargo group across 1 directory

Bumps the cargo group with 1 update in the / directory: [tokio](https://github.com/tokio-rs/tokio).


Updates `tokio` from 1.37.0 to 1.42.0
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.37.0...tokio-1.42.0)

---
updated-dependencies:
- dependency-name: tokio
  dependency-version: 1.42.0
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump tokio from 1.42.0 to 1.42.1 in the cargo group across 1 directory (#8)

Bumps the cargo group with 1 update in the / directory: [tokio](https://github.com/tokio-rs/tokio).


Updates `tokio` from 1.42.0 to 1.42.1
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.42.0...tokio-1.42.1)

---
updated-dependencies:
- dependency-name: tokio
  dependency-version: 1.42.1
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump dawidd6/action-download-artifact (#7)

Bumps the github_actions group with 1 update in the /.github/workflows directory: [dawidd6/action-download-artifact](https://github.com/dawidd6/action-download-artifact).


Updates `dawidd6/action-download-artifact` from 2 to 6
- [Release notes](https://github.com/dawidd6/action-download-artifact/releases)
- [Commits](https://github.com/dawidd6/action-download-artifact/compare/v2...v6)

---
updated-dependencies:
- dependency-name: dawidd6/action-download-artifact
  dependency-version: '6'
  dependency-type: direct:production
  dependency-group: github_actions
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* feat: upgrade which from 3.0.1 to 5.0.0 (#17)

Snyk has created this PR to upgrade which from 3.0.1 to 5.0.0.

See this package in npm:
which

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* fix: upgrade @changesets/cli from 2.27.5 to 2.28.1 (#16)

Snyk has created this PR to upgrade @changesets/cli from 2.27.5 to 2.28.1.

See this package in npm:
@changesets/cli

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* fix: upgrade prettier from 3.3.0 to 3.5.3 (#15)

Snyk has created this PR to upgrade prettier from 3.3.0 to 3.5.3.

See this package in npm:
prettier

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* feat: upgrade execa from 7.2.0 to 9.5.2 (#14)

Snyk has created this PR to upgrade execa from 7.2.0 to 9.5.2.

See this package in npm:
execa

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* feat: upgrade @types/node from 18.19.87 to 22.14.0 (#13)

S…
Dargon789 added a commit that referenced this pull request Jan 30, 2026
* Make install.sh tee instead of echoing twice

Also, fish bit was the only one that didn't print a newline to
$CONF_FILE, now they're all the same.

* Check if fnm is installed before shell setup

Change $CONF_FILE append strings to check whether $INSTALL_DIR exists
before doing any setup. This way whenever a user syncs their shell
config across machines, the machines without fnm installed won't throw
errors.

* Create smooth-lions-sneeze.md

* Version Packages

* add hooks mechanism for pre, post and failed install

* feat: upgrade cross-env from 7.0.3 to 10.0.0 (#39)

Snyk has created this PR to upgrade cross-env from 7.0.3 to 10.0.0.

See this package in npm:
cross-env

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* fix: upgrade prettier from 3.5.3 to 3.6.2 (#38)

Snyk has created this PR to upgrade prettier from 3.5.3 to 3.6.2.

See this package in npm:
prettier

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* feat: upgrade @types/node from 18.19.123 to 24.1.0 (#36)

Snyk has created this PR to upgrade @types/node from 18.19.123 to 24.1.0.

See this package in npm:
@types/node

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* fix: package.json to reduce vulnerabilities (#35)

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-TMP-11501554

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* Create label.yml (#40)

* Create label.yml

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 30: Workflow does not contain permissions

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>

* Update release.yml (#41)

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* chore(deps): bump tracing-subscriber from 0.3.18 to 0.3.20 in the cargo group across 1 directory (#42)

* chore(deps): bump tracing-subscriber

Bumps the cargo group with 1 update in the / directory: [tracing-subscriber](https://github.com/tokio-rs/tracing).


Updates `tracing-subscriber` from 0.3.18 to 0.3.20
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.18...tracing-subscriber-0.3.20)

---
updated-dependencies:
- dependency-name: tracing-subscriber
  dependency-version: 0.3.20
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update rust.yml (#43)

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Adjust install script for POSIX compliance

* Create temporary directory when mktemp is unavailable

* Use "dot" instead of `source` builtin when shell is not fish

* Inform the user where fnm is being installed

* [Snyk] Upgrade @changesets/cli from 2.29.6 to 2.29.7 (#46)

* fix: upgrade @changesets/cli from 2.29.6 to 2.29.7

Snyk has created this PR to upgrade @changesets/cli from 2.29.6 to 2.29.7.

See this package in npm:
@changesets/cli

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

* Update package.json

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: snyk-bot <snyk-bot@snyk.io>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* fix: upgrade cmd-ts from 0.13.0 to 0.14.1 (#45)

Snyk has created this PR to upgrade cmd-ts from 0.13.0 to 0.14.1.

See this package in npm:
cmd-ts

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* feat: upgrade p-retry from 6.2.1 to 7.0.0 (#44)

Snyk has created this PR to upgrade p-retry from 6.2.1 to 7.0.0.

See this package in npm:
p-retry

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* chore(deps): bump zip in the cargo group across 1 directory (#47)

Bumps the cargo group with 1 update in the / directory: [zip](https://github.com/zip-rs/zip2).


Updates `zip` from 2.2.0 to 6.0.0
- [Release notes](https://github.com/zip-rs/zip2/releases)
- [Changelog](https://github.com/zip-rs/zip2/blob/master/CHANGELOG.md)
- [Commits](https://github.com/zip-rs/zip2/compare/v2.2.0...v6.0.0)

---
updated-dependencies:
- dependency-name: zip
  dependency-version: 6.0.0
  dependency-type: direct:production
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Create smart-avocados-try.md (#48)

* Create smart-avocados-try.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/smart-avocados-try.md
New Changeset File: A new changeset file, smart-avocados-try.md, has been added to the .changeset directory. This file is used to record a specific change for future release notes or changelog generation.
Patch Metadata: The newly added changeset file includes front matter metadata specifying "fnm": "patch", indicating the type of change being recorded.
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update release-to-cargo.yml (#55)

CI:

Modify the Publish to crates.io step to use cargo publish --dry-run
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create angry-moose-hug.md (#56)

* Create angry-moose-hug.md

Add a changeset for fnm to patch-release the package and update the release-to-cargo workflow configuration to use the master branch

Bug Fixes:

Update release-to-cargo.yml config to use the master branch
Chores:

Add angry-moose-hug changeset to bump fnm patch version

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/angry-moose-hug.md

New Changeset File: A new changeset file, "angry-moose-hug.md", has been added to the ".changeset" directory, indicating a recorded change for release management.
Release Configuration Update: The changeset documents a "patch" type change for "fnm", specifically a fix to update the "release-to-cargo.yml" configuration to use "base:br master".

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Create funny-falcons-breathe.md (#57)

* Create funny-falcons-breathe.md
Bug Fixes:

Update release-to-cargo.yml workflow config to use master as the base branch for fnm
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/funny-falcons-breathe.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update release.yml (#59)

Streamline the release workflow by restricting triggers to master and main branches and pin Node.js to version 22.

CI:

Remove the 'dev' branch from the release workflow triggers
Pin Node.js version to 22 in the release job
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci.yml (#60)

Add CircleCI pipeline to build, test, and format-check the Rust project with caching for dependencies

CI:

Introduce a CircleCI config (.circleci/ci.yml) using cimg/rust:1.89.0
Run cargo fmt -- --check and cargo test in a single build-and-test job
Cache Cargo dependencies and build artifacts between builds
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci-say-hello.yml (#61)

CI:

Add .circleci/ci-say-hello.yml with a say-hello job using cimg/base:current and a workflow to run it
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci-foundry.yml (#62)

Add .circleci/ci-foundry.yml to scaffold a new CircleCI pipeline with a custom Docker executor, a CI job, and a workflow.

CI:

Add initial CircleCI pipeline configuration using version 2.1
Define custom executor with Docker image and Docker Hub credentials
Introduce job 'web3-defi-game-project-' with checkout and placeholder run step
Add workflow 'my-custom-workflow' to orchestrate the CI job
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update config.yml (#66)

Restructure the CircleCI configuration by removing the custom executor, adding a sample say-hello job and workflow, and enhancing the file with explanatory comments
CI:
Remove custom executor and replace it with a basic say-hello job using the cimg/base:current Docker image
Introduce a say-hello-workflow to orchestrate the new job
Documentation:

Add inline comments to guide configuration of executors, jobs, steps, and workflows in the CI file
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create SECURITY.md (#67)

* Create SECURITY.md

Add a SECURITY.md file to establish the project's security policy, detail supported versions, and outline the vulnerability reporting process.

Documentation:

Introduce SECURITY.md with a security policy and supported versions table
Include guidelines for reporting vulnerabilities and expected response procedures
Signed-off-by: Dargon789 <64915515+Dargon789@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 <64915515+Dargon789@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 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Dargon789 patch 2 (#65)

* chore(deps): update actions/setup-node action to v4

* Create weak-moose-love.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/weak-moose-love.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create config.yml (#64)

CI:
Introduce .circleci/config.yml defining a 'say-hello' job and corresponding workflow

https://github.com/apps/gemini-code-assist
Highlights
New CircleCI Configuration: A new .circleci/config.yml file has been added to the repository, establishing a continuous integration setup.
Basic 'Hello, World!' Job: The initial configuration includes a simple job named say-hello that uses the cimg/base:current Docker image to print 'Hello, World!'.
Workflow Definition: A workflow named say-hello-workflow has been defined to orchestrate and run the say-hello job.
Code Review
This pull request introduces a basic CircleCI configuration file. The initial setup is a good starting point. I have provided a couple of suggestions to improve it for better maintainability and reproducibility. My main feedback is to pin the Docker image version to a specific tag instead of using current to ensure consistent builds. I've also pointed out a minor formatting issue with a trailing empty line.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Delete .circleci/ci-say-hello.yml (#69)

CI:
Delete .circleci/ci-say-hello.yml to clean up unused CI pipeline
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update ci.yml (#70)

CI:
Use cimg/rust:1.88.0 instead of cimg/rust:1.89.0 in the CI configuration
https://github.com/apps/gemini-code-assist
Code Review
This pull request updates the CircleCI configuration to use Rust version 1.88.0, aligning it with the rust-toolchain.toml file. This is a good correction. I have provided one suggestion to use a more flexible image tag to better match the behavior of rustup with the toolchain file, which will improve the long-term maintainability of the CI setup.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update release-to-cargo.yml

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update release-to-cargo.yml (#72)

Switch the GitHub Action for releasing to crates.io from a dry run to a real publish and clean up unused permissions settings.
CI:
Remove redundant permissions block from the release-to-cargo workflow
Replace dry-run with actual cargo publish command
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update grumpy-dingos-turn.md (#73)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update release.yml (#74)

* Update release.yml

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .github/workflows/release.yml

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>

* Update rust.yml (#75)

CI:
Remove 'dev' branch from rust.yml workflow triggers
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create docker.yml (#76)

Add a new GitHub Actions workflow (docker.yml) to automate building, pushing, and signing Docker images via Buildx, metadata extraction, and cosign integration

New Features:

Introduce a Docker CI workflow triggered on schedule, push to master, and semantic version tags, as well as on pull requests
Build and push multi-platform Docker images to GHCR using Buildx with dynamic tagging
Integrate cosign to sign published Docker images using Sigstore identity tokens
Enhancements:

Set up Docker metadata action for tag and label generation
Enable caching strategies for faster builds using GitHub Actions
CI:

Add .github/workflows/docker.yml to define the Docker build and publish pipeline
Chores:

Configure environment variables for registry (GHCR) and image naming based on the repository
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create CNAME

* Update rust.yml (#78)

Refine the GitHub Actions rust.yml workflow by restricting triggers to the master branch, pinning Node.js to version 18.x across all setup-node steps, and cleaning up formatting and commented version entries.
CI:

Limit workflow triggers to the master branch only
Pin Node.js setup in all jobs to version 18.x, removing 20.x and 22.x entries
Remove redundant commented Node.js version lines and extra blank lines
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* chore(deps): bump js-yaml in the npm_and_yarn group across 1 directory (#77)

Bumps the npm_and_yarn group with 1 update in the / directory: [js-yaml](https://github.com/nodeca/js-yaml).


Updates `js-yaml` from 3.14.1 to 3.14.2
- [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nodeca/js-yaml/compare/3.14.1...3.14.2)

---
updated-dependencies:
- dependency-name: js-yaml
  dependency-version: 3.14.2
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Create spotty-weeks-sit.md (#80)

Chores:
Create a spotty-weeks-sit changeset specifying a patch release for fnm
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create lazy-snails-return.md (#81)

* Create lazy-snails-return.md
Chores:
Create a new .changeset file to bump the patch version for fnm with a note about fixing the release-to-cargo.yml configuration.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/lazy-snails-return.md
Highlights
Changeset Addition: A new changeset file, lazy-snails-return.md, has been added. This file documents a fix related to the release-to-cargo.yml configuration.
Configuration Fix: The changeset entry specifically notes an update to the release-to-cargo.yml configuration, setting its base to br master.
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Dargon789 patch 2 (#82)

* chore(deps): update actions/setup-node action to v4

* Create weak-moose-love.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/weak-moose-love.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create config.yml (#64)

CI:
Introduce .circleci/config.yml defining a 'say-hello' job and corresponding workflow

https://github.com/apps/gemini-code-assist
Highlights
New CircleCI Configuration: A new .circleci/config.yml file has been added to the repository, establishing a continuous integration setup.
Basic 'Hello, World!' Job: The initial configuration includes a simple job named say-hello that uses the cimg/base:current Docker image to print 'Hello, World!'.
Workflow Definition: A workflow named say-hello-workflow has been defined to orchestrate and run the say-hello job.
Code Review
This pull request introduces a basic CircleCI configuration file. The initial setup is a good starting point. I have provided a couple of suggestions to improve it for better maintainability and reproducibility. My main feedback is to pin the Docker image version to a specific tag instead of using current to ensure consistent builds. I've also pointed out a minor formatting issue with a trailing empty line.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create olive-waves-punch.md (#79)

Chores:
Add a new changeset file for fnm patch release
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update index.mjs (#86)

Code Formatting: Removed an unnecessary blank line in tests/proxy-server/index.mjs to improve code consistency.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create google.yml (#87)

Add a GitHub Actions workflow to build and deploy the application to Google Kubernetes Engine via Google Cloud.
Build:
Introduce a Google Cloud–oriented workflow that builds a Docker image and pushes it to Artifact Registry on pushes to the main branch.
CI:
Add a GitHub Actions pipeline that authenticates with Google Cloud using Workload Identity Federation and runs container build and deployment steps.
Deployment:
Automate deploying the built Docker image to a GKE cluster using kustomize and kubectl.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci-hardhat.yml (#89)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create npm.yml (#91)

* Create npm.yml

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 31: Artifact poisoning

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>

* Update package.json (#93)

* Update package.json

https://github.com/Dargon789/uniswap.app/commit/011f260c7cc540f9bc9b336e0108f10d6f00401f

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update package.json

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update README.md (#94)

* Update README.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@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>

* Delete .kodiak.toml (#96)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create orb.yml (#97)

https://github.com/Dargon789/circleci-docs/commit/cd854b03e8aa7204da46e1da518ff6d80526a7b3

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update Cargo.toml (#98)

* Update Cargo.toml

https://github.com/Dargon789/foundry/commit/fcfa587cbfce70b8eb32ac87207cd8a2e2c4f726

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update Cargo.toml

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update label.yml (#99)

CI:

Adjust GitHub Actions label workflow triggers to use the 'main' branch for push events while keeping pull request triggers on 'master'.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* fix(deps): update all non-major dependencies

* Add build artifacts and fnm.exe to repository

This commit adds the .fnm/fnm.exe binary and various Rust build artifacts under target-wsl/, including .rustc_info.json, CACHEDIR.TAG, and debug fingerprints for dependencies. These files appear to be generated as part of a Rust build process, possibly for debugging or distribution purposes.

* Update issue templates (#102)

* 1462 (#103)

* Adjust install script for POSIX compliance

* Create temporary directory when mktemp is unavailable

* Use "dot" instead of `source` builtin when shell is not fish

* Inform the user where fnm is being installed

* chore(deps): update rust crate indoc to v2.0.7

* Add changeset for updating indoc crate to v2.0.7 (#101)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Ricardo Biehl Pasquali <ricardo@pasqua.li>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* Update README.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .github/ISSUE_TEMPLATE/bug_report.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .github/ISSUE_TEMPLATE/bug_report.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* chore(deps): bump lodash in the npm_and_yarn group across 1 directory (#100)

Bumps the npm_and_yarn group with 1 update in the / directory: [lodash](https://github.com/lodash/lodash).


Updates `lodash` from 4.17.21 to 4.17.23
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](https://github.com/lodash/lodash/compare/4.17.21...4.17.23)

---
updated-dependencies:
- dependency-name: lodash
  dependency-version: 4.17.23
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* [Snyk] Upgrade @changesets/cli from 2.29.1 to 2.29.2 (#20)

* update devDependencies

* recovery version corepack

pnpm@8.15.8

* Circleci project setup (#4)

* Add .circleci/config.yml

* Add .circleci/config.yml

* Add .circleci/config.yml

* Bump ring from 0.17.8 to 0.17.13 in the cargo group across 1 directory (#3)

Bumps the cargo group with 1 update in the / directory: [ring](https://github.com/briansmith/ring).


Updates `ring` from 0.17.8 to 0.17.13
- [Changelog](https://github.com/briansmith/ring/blob/main/RELEASES.md)
- [Commits](https://github.com/briansmith/ring/commits)

---
updated-dependencies:
- dependency-name: ring
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Bump dawidd6/action-download-artifact (#2)

Bumps the github_actions group with 1 update in the /.github/workflows directory: [dawidd6/action-download-artifact](https://github.com/dawidd6/action-download-artifact).


Updates `dawidd6/action-download-artifact` from 2 to 6
- [Release notes](https://github.com/dawidd6/action-download-artifact/releases)
- [Commits](https://github.com/dawidd6/action-download-artifact/compare/v2...v6)

---
updated-dependencies:
- dependency-name: dawidd6/action-download-artifact
  dependency-type: direct:production
  dependency-group: github_actions
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Create SECURITY.md (#1)

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Revert "Bump dawidd6/action-download-artifact (#2)" (#5)

This reverts commit b454d73a9022373d51a80f5a33813c58e4dff91d.

* Bump tokio from 1.37.0 to 1.42.0 in the cargo group across 1 directory

Bumps the cargo group with 1 update in the / directory: [tokio](https://github.com/tokio-rs/tokio).


Updates `tokio` from 1.37.0 to 1.42.0
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.37.0...tokio-1.42.0)

---
updated-dependencies:
- dependency-name: tokio
  dependency-version: 1.42.0
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump tokio from 1.42.0 to 1.42.1 in the cargo group across 1 directory (#8)

Bumps the cargo group with 1 update in the / directory: [tokio](https://github.com/tokio-rs/tokio).


Updates `tokio` from 1.42.0 to 1.42.1
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.42.0...tokio-1.42.1)

---
updated-dependencies:
- dependency-name: tokio
  dependency-version: 1.42.1
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump dawidd6/action-download-artifact (#7)

Bumps the github_actions group with 1 update in the /.github/workflows directory: [dawidd6/action-download-artifact](https://github.com/dawidd6/action-download-artifact).


Updates `dawidd6/action-download-artifact` from 2 to 6
- [Release notes](https://github.com/dawidd6/action-download-artifact/releases)
- [Commits](https://github.com/dawidd6/action-download-artifact/compare/v2...v6)

---
updated-dependencies:
- dependency-name: dawidd6/action-download-artifact
  dependency-version: '6'
  dependency-type: direct:production
  dependency-group: github_actions
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* feat: upgrade which from 3.0.1 to 5.0.0 (#17)

Snyk has created this PR to upgrade which from 3.0.1 to 5.0.0.

See this package in npm:
which

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* fix: upgrade @changesets/cli from 2.27.5 to 2.28.1 (#16)

Snyk has created this PR to upgrade @changesets/cli from 2.27.5 to 2.28.1.

See this package in npm:
@changesets/cli

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* fix: upgrade prettier from 3.3.0 to 3.5.3 (#15)

Snyk has created this PR to upgrade prettier from 3.3.0 to 3.5.3.

See this package in npm:
prettier

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* feat: upgrade execa from 7.2.0 to 9.5.2 (#14)

Snyk has created this PR to upgrade execa from 7.2.0 to 9.5.2.

See this package in npm:
execa

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* feat: upgrade @types/node from 18.19.87 to 22.14.0 (#13)

Snyk has created this PR to upgrade @types/node from 18.19.87 to 22.14.0.

See this package in npm:
@types/node

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* fix: upgrade @changesets/cli from 2.28.1 to 2.29.1 (#19)

Snyk has created this PR to upgrade @changesets/cli from 2.28.1 to 2.29.1.

See this package in npm:
@changesets/cli

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* fix: upgrade @changesets/cli from 2.29.1 to 2.29.2

Snyk has created this PR to upgrade @changesets/cli from 2.29.1 to 2.29.2.

See this package in npm:
@changesets/cli

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Legion's <apichanmittare@gmail.com>
Co-authored-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: snyk-bot <snyk-bot@snyk.io>
Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* Add changeset sixty-rice-do.md for patch 1 (#105)  (#107)

* Update Cargo.toml (#98)  (#104)

* chore(deps): bump the cargo group across 1 directory with 4 updates

Bumps the cargo group with 4 updates in the / directory: [hashbrown](https://github.com/rust-lang/hashbrown), [ring](https://github.com/briansmith/ring), [rustls](https://github.com/rustls/rustls) and [tokio](https://github.com/tokio-rs/tokio).


Updates `hashbrown` from 0.15.0 to 0.15.3
- [Release notes](https://github.com/rust-lang/hashbrown/releases)
- [Changelog](https://github.com/rust-lang/hashbrown/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-lang/hashbrown/compare/v0.15.0...v0.15.3)

Updates `ring` from 0.17.8 to 0.17.14
- [Changelog](https://github.com/briansmith/ring/blob/main/RELEASES.md)
- [Commits](https://github.com/briansmith/ring/commits)

Updates `rustls` from 0.23.16 to 0.23.23
- [Release notes](https://github.com/rustls/rustls/releases)
- [Changelog](https://github.com/rustls/rustls/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rustls/rustls/compare/v/0.23.16...v/0.23.23)

Updates `tokio` from 1.41.0 to 1.42.1
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.41.0...tokio-1.42.1)

---
updated-dependencies:
- dependency-name: hashbrown
  dependency-version: 0.15.3
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: ring
  dependency-version: 0.17.14
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: rustls
  dependency-version: 0.23.23
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: tokio
  dependency-version: 1.42.1
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>

* chore(deps): bump the npm_and_yarn group across 1 directory with 2 updates

Bumps the npm_and_yarn group with 2 updates in the / directory: [@babel/helpers](https://github.com/babel/babel/tree/HEAD/packages/babel-helpers) and [@babel/runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-runtime).


Updates `@babel/helpers` from 7.26.0 to 7.27.4
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.27.4/packages/babel-helpers)

Updates `@babel/runtime` from 7.26.0 to 7.27.4
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.27.4/packages/babel-runtime)

---
updated-dependencies:
- dependency-name: "@babel/helpers"
  dependency-version: 7.27.4
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: "@babel/runtime"
  dependency-version: 7.27.4
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>

* Potential fix for code scanning alert no. 3: Server-side request forgery

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 19: Workflow does not contain permissions

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* fix: package.json to reduce vulnerabilities (#27)

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-INFLIGHT-6095116

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* chore(deps): bump brace-expansion

Bumps the npm_and_yarn group with 1 update in the / directory: [brace-expansion](https://github.com/juliangruber/brace-expansion).


Updates `brace-expansion` from 1.1.11 to 1.1.12
- [Release notes](https://github.com/juliangruber/brace-expansion/releases)
- [Commits](https://github.com/juliangruber/brace-expansion/compare/1.1.11...v1.1.12)

---
updated-dependencies:
- dependency-name: brace-expansion
  dependency-version: 1.1.12
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>

* Create config.yml (#34)

* feat: upgrade zod from 3.25.76 to 4.0.0 (#33)

Snyk has created this PR to upgrade zod from 3.25.76 to 4.0.0.

See this package in npm:
zod

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* feat: upgrade @types/jest from 29.5.14 to 30.0.0 (#32)

Snyk has created this PR to upgrade @types/jest from 29.5.14 to 30.0.0.

See this package in npm:
@types/jest

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* fix: upgrade prettier from 3.5.1 to 3.5.3 (#25)

Snyk has created this PR to upgrade prettier from 3.5.1 to 3.5.3.

See this package in npm:
prettier

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* feat: upgrade cross-env from 7.0.3 to 10.0.0 (#39)

Snyk has created this PR to upgrade cross-env from 7.0.3 to 10.0.0.

See this package in npm:
cross-env

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* fix: upgrade prettier from 3.5.3 to 3.6.2 (#38)

Snyk has created this PR to upgrade prettier from 3.5.3 to 3.6.2.

See this package in npm:
prettier

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* feat: upgrade @types/node from 18.19.123 to 24.1.0 (#36)

Snyk has created this PR to upgrade @types/node from 18.19.123 to 24.1.0.

See this package in npm:
@types/node

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* fix: package.json to reduce vulnerabilities (#35)

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-TMP-11501554

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* Create label.yml (#40)

* Create label.yml

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 30: Workflow does not contain permissions

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>

* Update release.yml (#41)

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* chore(deps): bump tracing-subscriber from 0.3.18 to 0.3.20 in the cargo group across 1 directory (#42)

* chore(deps): bump tracing-subscriber

Bumps the cargo group with 1 update in the / directory: [tracing-subscriber](https://github.com/tokio-rs/tracing).


Updates `tracing-subscriber` from 0.3.18 to 0.3.20
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.18...tracing-subscriber-0.3.20)

---
updated-dependencies:
- dependency-name: tracing-subscriber
  dependency-version: 0.3.20
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update rust.yml (#43)

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* [Snyk] Upgrade @changesets/cli from 2.29.6 to 2.29.7 (#46)

* fix: upgrade @changesets/cli from 2.29.6 to 2.29.7

Snyk has created this PR to upgrade @changesets/cli from 2.29.6 to 2.29.7.

See this package in npm:
@changesets/cli

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

* Update package.json

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: snyk-bot <snyk-bot@snyk.io>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* fix: upgrade cmd-ts from 0.13.0 to 0.14.1 (#45)

Snyk has created this PR to upgrade cmd-ts from 0.13.0 to 0.14.1.

See this package in npm:
cmd-ts

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* feat: upgrade p-retry from 6.2.1 to 7.0.0 (#44)

Snyk has created this PR to upgrade p-retry from 6.2.1 to 7.0.0.

See this package in npm:
p-retry

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* chore(deps): bump zip in the cargo group across 1 directory (#47)

Bumps the cargo group with 1 update in the / directory: [zip](https://github.com/zip-rs/zip2).


Updates `zip` from 2.2.0 to 6.0.0
- [Release notes](https://github.com/zip-rs/zip2/releases)
- [Changelog](https://github.com/zip-rs/zip2/blob/master/CHANGELOG.md)
- [Commits](https://github.com/zip-rs/zip2/compare/v2.2.0...v6.0.0)

---
updated-dependencies:
- dependency-name: zip
  dependency-version: 6.0.0
  dependency-type: direct:production
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update release-to-cargo.yml (#55)

CI:

Modify the Publish to crates.io step to use cargo publish --dry-run
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create angry-moose-hug.md (#56)

* Create angry-moose-hug.md

Add a changeset for fnm to patch-release the package and update the release-to-cargo workflow configuration to use the master branch

Bug Fixes:

Update release-to-cargo.yml config to use the master branch
Chores:

Add angry-moose-hug changeset to bump fnm patch version

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/angry-moose-hug.md

New Changeset File: A new changeset file, "angry-moose-hug.md", has been added to the ".changeset" directory, indicating a recorded change for release management.
Release Configuration Update: The changeset documents a "patch" type change for "fnm", specifically a fix to update the "release-to-cargo.yml" configuration to use "base:br master".

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Create funny-falcons-breathe.md (#57)

* Create funny-falcons-breathe.md
Bug Fixes:

Update release-to-cargo.yml workflow config to use master as the base branch for fnm
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/funny-falcons-breathe.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update release.yml (#59)

Streamline the release workflow by restricting triggers to master and main branches and pin Node.js to version 22.

CI:

Remove the 'dev' branch from the release workflow triggers
Pin Node.js version to 22 in the release job
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci.yml (#60)

Add CircleCI pipeline to build, test, and format-check the Rust project with caching for dependencies

CI:

Introduce a CircleCI config (.circleci/ci.yml) using cimg/rust:1.89.0
Run cargo fmt -- --check and cargo test in a single build-and-test job
Cache Cargo dependencies and build artifacts between builds
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci-say-hello.yml (#61)

CI:

Add .circleci/ci-say-hello.yml with a say-hello job using cimg/base:current and a workflow to run it
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci-foundry.yml (#62)

Add .circleci/ci-foundry.yml to scaffold a new CircleCI pipeline with a custom Docker executor, a CI job, and a workflow.

CI:

Add initial CircleCI pipeline configuration using version 2.1
Define custom executor with Docker image and Docker Hub credentials
Introduce job 'web3-defi-game-project-' with checkout and placeholder run step
Add workflow 'my-custom-workflow' to orchestrate the CI job
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update config.yml (#66)

Restructure the CircleCI configuration by removing the custom executor, adding a sample say-hello job and workflow, and enhancing the file with explanatory comments
CI:
Remove custom executor and replace it with a basic say-hello job using the cimg/base:current Docker image
Introduce a say-hello-workflow to orchestrate the new job
Documentation:

Add inline comments to guide configuration of executors, jobs, steps, and workflows in the CI file
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create SECURITY.md (#67)

* Create SECURITY.md

Add a SECURITY.md file to establish the project's security policy, detail supported versions, and outline the vulnerability reporting process.

Documentation:

Introduce SECURITY.md with a security policy and supported versions table
Include guidelines for reporting vulnerabilities and expected response procedures
Signed-off-by: Dargon789 <64915515+Dargon789@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 <64915515+Dargon789@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 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Dargon789 patch 2 (#65)

* chore(deps): update actions/setup-node action to v4

* Create weak-moose-love.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/weak-moose-love.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create config.yml (#64)

CI:
Introduce .circleci/config.yml defining a 'say-hello' job and corresponding workflow

https://github.com/apps/gemini-code-assist
Highlights
New CircleCI Configuration: A new .circleci/config.yml file has been added to the repository, establishing a continuous integration setup.
Basic 'Hello, World!' Job: The initial configuration includes a simple job named say-hello that uses the cimg/base:current Docker image to print 'Hello, World!'.
Workflow Definition: A workflow named say-hello-workflow has been defined to orchestrate and run the say-hello job.
Code Review
This pull request introduces a basic CircleCI configuration file. The initial setup is a good starting point. I have provided a couple of suggestions to improve it for better maintainability and reproducibility. My main feedback is to pin the Docker image version to a specific tag instead of using current to ensure consistent builds. I've also pointed out a minor formatting issue with a trailing empty line.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Delete .circleci/ci-say-hello.yml (#69)

CI:
Delete .circleci/ci-say-hello.yml to clean up unused CI pipeline
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update ci.yml (#70)

CI:
Use cimg/rust:1.88.0 instead of cimg/rust:1.89.0 in the CI configuration
https://github.com/apps/gemini-code-assist
Code Review
This pull request updates the CircleCI configuration to use Rust version 1.88.0, aligning it with the rust-toolchain.toml file. This is a good correction. I have provided one suggestion to use a more flexible image tag to better match the behavior of rustup with the toolchain file, which will improve the long-term maintainability of the CI setup.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update release-to-cargo.yml

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update release-to-cargo.yml (#72)

Switch the GitHub Action for releasing to crates.io from a dry run to a real publish and clean up unused permissions settings.
CI:
Remove redundant permissions block from the release-to-cargo workflow
Replace dry-run with actual cargo publish command
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update grumpy-dingos-turn.md (#73)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update release.yml (#74)

* Update release.yml

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .github/workflows/release.yml

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>

* Update rust.yml (#75)

CI:
Remove 'dev' branch from rust.yml workflow triggers
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create docker.yml (#76)

Add a new GitHub Actions workflow (docker.yml) to automate building, pushing, and signing Docker images via Buildx, metadata extraction, and cosign integration

New Features:

Introduce a Docker CI workflow triggered on schedule, push to master, and semantic version tags, as well as on pull requests
Build and push multi-platform Docker images to GHCR using Buildx with dynamic tagging
Integrate cosign to sign published Docker images using Sigstore identity tokens
Enhancements:

Set up Docker metadata action for tag and label generation
Enable caching strategies for faster builds using GitHub Actions
CI:

Add .github/workflows/docker.yml to define the Docker build and publish pipeline
Chores:

Configure environment variables for registry (GHCR) and image naming based on the repository
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create CNAME

* Update rust.yml (#78)

Refine the GitHub Actions rust.yml workflow by restricting triggers to the master branch, pinning Node.js to version 18.x across all setup-node steps, and cleaning up formatting and commented version entries.
CI:

Limit workflow triggers to the master branch only
Pin Node.js setup in all jobs to version 18.x, removing 20.x and 22.x entries
Remove redundant commented Node.js version lines and extra blank lines
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* chore(deps): bump js-yaml in the npm_and_yarn group across 1 directory (#77)

Bumps the npm_and_yarn group with 1 update in the / directory: [js-yaml](https://github.com/nodeca/js-yaml).


Updates `js-yaml` from 3.14.1 to 3.14.2
- [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nodeca/js-yaml/compare/3.14.1...3.14.2)

---
updated-dependencies:
- dependency-name: js-yaml
  dependency-version: 3.14.2
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Create lazy-snails-return.md (#81)

* Create lazy-snails-return.md
Chores:
Create a new .changeset file to bump the patch version for fnm with a note about fixing the release-to-cargo.yml configuration.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/lazy-snails-return.md
Highlights
Changeset Addition: A new changeset file, lazy-snails-return.md, has been added. This file documents a fix related to the release-to-cargo.yml configuration.
Configuration Fix: The changeset entry specifically notes an update to the release-to-cargo.yml configuration, setting its base to br master.
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Dargon789 patch 2 (#82)

* chore(deps): update actions/setup-node action to v4

* Create weak-moose-love.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/weak-moose-love.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create config.yml (#64)

CI:
Introduce .circleci/config.yml defining a 'say-hello' job and corresponding workflow

https://github.com/apps/gemini-code-assist
Highlights
New CircleCI Configuration: A new .circleci/config.yml file has been added to the repository, establishing a continuous integration setup.
Basic 'Hello, World!' Job: The initial configuration includes a simple job named say-hello that uses the cimg/base:current Docker image to print 'Hello, World!'.
Workflow Definition: A workflow named say-hello-workflow has been defined to orchestrate and run the say-hello job.
Code Review
This pull request introduces a basic CircleCI configuration file. The initial setup is a good starting point. I have provided a couple of suggestions to improve it for better maintainability and reproducibility. My main feedback is to pin the Docker image version to a specific tag instead of using current to ensure consistent builds. I've also pointed out a minor formatting issue with a trailing empty line.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create olive-waves-punch.md (#79)

Chores:
Add a new changeset file for fnm patch release
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update index.mjs (#86)

Code Formatting: Removed an unnecessary blank line in tests/proxy-server/index.mjs to improve code consistency.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create google.yml (#87)

Add a GitHub Actions workflow to build and deploy the application to Google Kubernetes Engine via Google Cloud.
Build:
Introduce a Google Cloud–oriented workflow that builds a Docker image and pushes it to Artifact Registry on pushes to the main branch.
CI:
Add a GitHub Actions pipeline that authenticates with Google Cloud using Workload Identity Federation and runs container build and deployment steps.
Deployment:
Automate deploying the built Docker image to a GKE cluster using kustomize and kubectl.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci-hardhat.yml (#89)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create npm.yml (#91)

* Create npm.yml

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 31: Artifact poisoning

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>

* Update package.json (#93)

* Update package.json

https://github.com/Dargon789/uniswap.app/commit/011f260c7cc540f9bc9b336e0108f10d6f00401f

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update package.json

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update README.md (#94)

* Update README.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@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>

* Delete .kodiak.toml (#96)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create orb.yml (#97)

https://github.com/Dargon789/circleci-docs/commit/cd854b03e8aa7204da46e1da518ff6d80526a7b3

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update Cargo.toml (#98)

* Update Cargo.toml

https://github.com/Dargon789/foundry/commit/fcfa587cbfce70b8eb32ac87207cd8a2e2c4f726

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update Cargo.toml

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update label.yml (#99)

CI:

Adjust GitHub Actions label workflow triggers to use the 'main' branch for push events while keeping pull request triggers on 'master'.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* fix(deps): update all non-major dependencies

* Add build artifacts and fnm.exe to repository

This commit adds the .fnm/fnm.exe binary and various Rust build artifacts under target-wsl/, including .rustc_info.json, CACHEDIR.TAG, and debug fingerprints for dependencies. These files appear to be generated as part of a Rust build process, possibly for debugging or distribution purposes.

* Update issue templates (#102)

* 1462 (#103)

* Adjust install script for POSIX compliance

* Create temporary directory when mktemp is unavailable

* Use "dot" instead of `source` builtin when shell is not fish

* Inform the user where fnm is being installed

* chore(deps): update rust crate indoc to v2.0.7

* Add changeset for updating indoc crate to v2.0.7 (#101)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.g…
Dargon789 added a commit that referenced this pull request Jan 30, 2026
* Make install.sh tee instead of echoing twice

Also, fish bit was the only one that didn't print a newline to
$CONF_FILE, now they're all the same.

* Check if fnm is installed before shell setup

Change $CONF_FILE append strings to check whether $INSTALL_DIR exists
before doing any setup. This way whenever a user syncs their shell
config across machines, the machines without fnm installed won't throw
errors.

* Create smooth-lions-sneeze.md

* Version Packages

* add hooks mechanism for pre, post and failed install

* feat: upgrade cross-env from 7.0.3 to 10.0.0 (#39)

Snyk has created this PR to upgrade cross-env from 7.0.3 to 10.0.0.

See this package in npm:
cross-env

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* fix: upgrade prettier from 3.5.3 to 3.6.2 (#38)

Snyk has created this PR to upgrade prettier from 3.5.3 to 3.6.2.

See this package in npm:
prettier

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* feat: upgrade @types/node from 18.19.123 to 24.1.0 (#36)

Snyk has created this PR to upgrade @types/node from 18.19.123 to 24.1.0.

See this package in npm:
@types/node

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* fix: package.json to reduce vulnerabilities (#35)

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-TMP-11501554

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* Create label.yml (#40)

* Create label.yml

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 30: Workflow does not contain permissions

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>

* Update release.yml (#41)

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* chore(deps): bump tracing-subscriber from 0.3.18 to 0.3.20 in the cargo group across 1 directory (#42)

* chore(deps): bump tracing-subscriber

Bumps the cargo group with 1 update in the / directory: [tracing-subscriber](https://github.com/tokio-rs/tracing).


Updates `tracing-subscriber` from 0.3.18 to 0.3.20
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.18...tracing-subscriber-0.3.20)

---
updated-dependencies:
- dependency-name: tracing-subscriber
  dependency-version: 0.3.20
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update rust.yml (#43)

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Adjust install script for POSIX compliance

* Create temporary directory when mktemp is unavailable

* Use "dot" instead of `source` builtin when shell is not fish

* Inform the user where fnm is being installed

* [Snyk] Upgrade @changesets/cli from 2.29.6 to 2.29.7 (#46)

* fix: upgrade @changesets/cli from 2.29.6 to 2.29.7

Snyk has created this PR to upgrade @changesets/cli from 2.29.6 to 2.29.7.

See this package in npm:
@changesets/cli

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

* Update package.json

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: snyk-bot <snyk-bot@snyk.io>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* fix: upgrade cmd-ts from 0.13.0 to 0.14.1 (#45)

Snyk has created this PR to upgrade cmd-ts from 0.13.0 to 0.14.1.

See this package in npm:
cmd-ts

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* feat: upgrade p-retry from 6.2.1 to 7.0.0 (#44)

Snyk has created this PR to upgrade p-retry from 6.2.1 to 7.0.0.

See this package in npm:
p-retry

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* chore(deps): bump zip in the cargo group across 1 directory (#47)

Bumps the cargo group with 1 update in the / directory: [zip](https://github.com/zip-rs/zip2).


Updates `zip` from 2.2.0 to 6.0.0
- [Release notes](https://github.com/zip-rs/zip2/releases)
- [Changelog](https://github.com/zip-rs/zip2/blob/master/CHANGELOG.md)
- [Commits](https://github.com/zip-rs/zip2/compare/v2.2.0...v6.0.0)

---
updated-dependencies:
- dependency-name: zip
  dependency-version: 6.0.0
  dependency-type: direct:production
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Create smart-avocados-try.md (#48)

* Create smart-avocados-try.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/smart-avocados-try.md
New Changeset File: A new changeset file, smart-avocados-try.md, has been added to the .changeset directory. This file is used to record a specific change for future release notes or changelog generation.
Patch Metadata: The newly added changeset file includes front matter metadata specifying "fnm": "patch", indicating the type of change being recorded.
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update release-to-cargo.yml (#55)

CI:

Modify the Publish to crates.io step to use cargo publish --dry-run
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create angry-moose-hug.md (#56)

* Create angry-moose-hug.md

Add a changeset for fnm to patch-release the package and update the release-to-cargo workflow configuration to use the master branch

Bug Fixes:

Update release-to-cargo.yml config to use the master branch
Chores:

Add angry-moose-hug changeset to bump fnm patch version

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/angry-moose-hug.md

New Changeset File: A new changeset file, "angry-moose-hug.md", has been added to the ".changeset" directory, indicating a recorded change for release management.
Release Configuration Update: The changeset documents a "patch" type change for "fnm", specifically a fix to update the "release-to-cargo.yml" configuration to use "base:br master".

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Create funny-falcons-breathe.md (#57)

* Create funny-falcons-breathe.md
Bug Fixes:

Update release-to-cargo.yml workflow config to use master as the base branch for fnm
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/funny-falcons-breathe.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update release.yml (#59)

Streamline the release workflow by restricting triggers to master and main branches and pin Node.js to version 22.

CI:

Remove the 'dev' branch from the release workflow triggers
Pin Node.js version to 22 in the release job
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci.yml (#60)

Add CircleCI pipeline to build, test, and format-check the Rust project with caching for dependencies

CI:

Introduce a CircleCI config (.circleci/ci.yml) using cimg/rust:1.89.0
Run cargo fmt -- --check and cargo test in a single build-and-test job
Cache Cargo dependencies and build artifacts between builds
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci-say-hello.yml (#61)

CI:

Add .circleci/ci-say-hello.yml with a say-hello job using cimg/base:current and a workflow to run it
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci-foundry.yml (#62)

Add .circleci/ci-foundry.yml to scaffold a new CircleCI pipeline with a custom Docker executor, a CI job, and a workflow.

CI:

Add initial CircleCI pipeline configuration using version 2.1
Define custom executor with Docker image and Docker Hub credentials
Introduce job 'web3-defi-game-project-' with checkout and placeholder run step
Add workflow 'my-custom-workflow' to orchestrate the CI job
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update config.yml (#66)

Restructure the CircleCI configuration by removing the custom executor, adding a sample say-hello job and workflow, and enhancing the file with explanatory comments
CI:
Remove custom executor and replace it with a basic say-hello job using the cimg/base:current Docker image
Introduce a say-hello-workflow to orchestrate the new job
Documentation:

Add inline comments to guide configuration of executors, jobs, steps, and workflows in the CI file
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create SECURITY.md (#67)

* Create SECURITY.md

Add a SECURITY.md file to establish the project's security policy, detail supported versions, and outline the vulnerability reporting process.

Documentation:

Introduce SECURITY.md with a security policy and supported versions table
Include guidelines for reporting vulnerabilities and expected response procedures
Signed-off-by: Dargon789 <64915515+Dargon789@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 <64915515+Dargon789@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 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Dargon789 patch 2 (#65)

* chore(deps): update actions/setup-node action to v4

* Create weak-moose-love.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/weak-moose-love.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create config.yml (#64)

CI:
Introduce .circleci/config.yml defining a 'say-hello' job and corresponding workflow

https://github.com/apps/gemini-code-assist
Highlights
New CircleCI Configuration: A new .circleci/config.yml file has been added to the repository, establishing a continuous integration setup.
Basic 'Hello, World!' Job: The initial configuration includes a simple job named say-hello that uses the cimg/base:current Docker image to print 'Hello, World!'.
Workflow Definition: A workflow named say-hello-workflow has been defined to orchestrate and run the say-hello job.
Code Review
This pull request introduces a basic CircleCI configuration file. The initial setup is a good starting point. I have provided a couple of suggestions to improve it for better maintainability and reproducibility. My main feedback is to pin the Docker image version to a specific tag instead of using current to ensure consistent builds. I've also pointed out a minor formatting issue with a trailing empty line.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Delete .circleci/ci-say-hello.yml (#69)

CI:
Delete .circleci/ci-say-hello.yml to clean up unused CI pipeline
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update ci.yml (#70)

CI:
Use cimg/rust:1.88.0 instead of cimg/rust:1.89.0 in the CI configuration
https://github.com/apps/gemini-code-assist
Code Review
This pull request updates the CircleCI configuration to use Rust version 1.88.0, aligning it with the rust-toolchain.toml file. This is a good correction. I have provided one suggestion to use a more flexible image tag to better match the behavior of rustup with the toolchain file, which will improve the long-term maintainability of the CI setup.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update release-to-cargo.yml

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update release-to-cargo.yml (#72)

Switch the GitHub Action for releasing to crates.io from a dry run to a real publish and clean up unused permissions settings.
CI:
Remove redundant permissions block from the release-to-cargo workflow
Replace dry-run with actual cargo publish command
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update grumpy-dingos-turn.md (#73)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update release.yml (#74)

* Update release.yml

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .github/workflows/release.yml

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>

* Update rust.yml (#75)

CI:
Remove 'dev' branch from rust.yml workflow triggers
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create docker.yml (#76)

Add a new GitHub Actions workflow (docker.yml) to automate building, pushing, and signing Docker images via Buildx, metadata extraction, and cosign integration

New Features:

Introduce a Docker CI workflow triggered on schedule, push to master, and semantic version tags, as well as on pull requests
Build and push multi-platform Docker images to GHCR using Buildx with dynamic tagging
Integrate cosign to sign published Docker images using Sigstore identity tokens
Enhancements:

Set up Docker metadata action for tag and label generation
Enable caching strategies for faster builds using GitHub Actions
CI:

Add .github/workflows/docker.yml to define the Docker build and publish pipeline
Chores:

Configure environment variables for registry (GHCR) and image naming based on the repository
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create CNAME

* Update rust.yml (#78)

Refine the GitHub Actions rust.yml workflow by restricting triggers to the master branch, pinning Node.js to version 18.x across all setup-node steps, and cleaning up formatting and commented version entries.
CI:

Limit workflow triggers to the master branch only
Pin Node.js setup in all jobs to version 18.x, removing 20.x and 22.x entries
Remove redundant commented Node.js version lines and extra blank lines
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* chore(deps): bump js-yaml in the npm_and_yarn group across 1 directory (#77)

Bumps the npm_and_yarn group with 1 update in the / directory: [js-yaml](https://github.com/nodeca/js-yaml).


Updates `js-yaml` from 3.14.1 to 3.14.2
- [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nodeca/js-yaml/compare/3.14.1...3.14.2)

---
updated-dependencies:
- dependency-name: js-yaml
  dependency-version: 3.14.2
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Create spotty-weeks-sit.md (#80)

Chores:
Create a spotty-weeks-sit changeset specifying a patch release for fnm
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create lazy-snails-return.md (#81)

* Create lazy-snails-return.md
Chores:
Create a new .changeset file to bump the patch version for fnm with a note about fixing the release-to-cargo.yml configuration.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/lazy-snails-return.md
Highlights
Changeset Addition: A new changeset file, lazy-snails-return.md, has been added. This file documents a fix related to the release-to-cargo.yml configuration.
Configuration Fix: The changeset entry specifically notes an update to the release-to-cargo.yml configuration, setting its base to br master.
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Dargon789 patch 2 (#82)

* chore(deps): update actions/setup-node action to v4

* Create weak-moose-love.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/weak-moose-love.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create config.yml (#64)

CI:
Introduce .circleci/config.yml defining a 'say-hello' job and corresponding workflow

https://github.com/apps/gemini-code-assist
Highlights
New CircleCI Configuration: A new .circleci/config.yml file has been added to the repository, establishing a continuous integration setup.
Basic 'Hello, World!' Job: The initial configuration includes a simple job named say-hello that uses the cimg/base:current Docker image to print 'Hello, World!'.
Workflow Definition: A workflow named say-hello-workflow has been defined to orchestrate and run the say-hello job.
Code Review
This pull request introduces a basic CircleCI configuration file. The initial setup is a good starting point. I have provided a couple of suggestions to improve it for better maintainability and reproducibility. My main feedback is to pin the Docker image version to a specific tag instead of using current to ensure consistent builds. I've also pointed out a minor formatting issue with a trailing empty line.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create olive-waves-punch.md (#79)

Chores:
Add a new changeset file for fnm patch release
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update index.mjs (#86)

Code Formatting: Removed an unnecessary blank line in tests/proxy-server/index.mjs to improve code consistency.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create google.yml (#87)

Add a GitHub Actions workflow to build and deploy the application to Google Kubernetes Engine via Google Cloud.
Build:
Introduce a Google Cloud–oriented workflow that builds a Docker image and pushes it to Artifact Registry on pushes to the main branch.
CI:
Add a GitHub Actions pipeline that authenticates with Google Cloud using Workload Identity Federation and runs container build and deployment steps.
Deployment:
Automate deploying the built Docker image to a GKE cluster using kustomize and kubectl.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci-hardhat.yml (#89)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create npm.yml (#91)

* Create npm.yml

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 31: Artifact poisoning

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>

* Update package.json (#93)

* Update package.json

https://github.com/Dargon789/uniswap.app/commit/011f260c7cc540f9bc9b336e0108f10d6f00401f

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update package.json

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update README.md (#94)

* Update README.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@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>

* Delete .kodiak.toml (#96)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create orb.yml (#97)

https://github.com/Dargon789/circleci-docs/commit/cd854b03e8aa7204da46e1da518ff6d80526a7b3

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update Cargo.toml (#98)

* Update Cargo.toml

https://github.com/Dargon789/foundry/commit/fcfa587cbfce70b8eb32ac87207cd8a2e2c4f726

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update Cargo.toml

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update label.yml (#99)

CI:

Adjust GitHub Actions label workflow triggers to use the 'main' branch for push events while keeping pull request triggers on 'master'.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* fix(deps): update all non-major dependencies

* Add build artifacts and fnm.exe to repository

This commit adds the .fnm/fnm.exe binary and various Rust build artifacts under target-wsl/, including .rustc_info.json, CACHEDIR.TAG, and debug fingerprints for dependencies. These files appear to be generated as part of a Rust build process, possibly for debugging or distribution purposes.

* Update issue templates (#102)

* 1462 (#103)

* Adjust install script for POSIX compliance

* Create temporary directory when mktemp is unavailable

* Use "dot" instead of `source` builtin when shell is not fish

* Inform the user where fnm is being installed

* chore(deps): update rust crate indoc to v2.0.7

* Add changeset for updating indoc crate to v2.0.7 (#101)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Ricardo Biehl Pasquali <ricardo@pasqua.li>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* Update README.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .github/ISSUE_TEMPLATE/bug_report.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .github/ISSUE_TEMPLATE/bug_report.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* chore(deps): bump lodash in the npm_and_yarn group across 1 directory (#100)

Bumps the npm_and_yarn group with 1 update in the / directory: [lodash](https://github.com/lodash/lodash).


Updates `lodash` from 4.17.21 to 4.17.23
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](https://github.com/lodash/lodash/compare/4.17.21...4.17.23)

---
updated-dependencies:
- dependency-name: lodash
  dependency-version: 4.17.23
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* [Snyk] Upgrade @changesets/cli from 2.29.1 to 2.29.2 (#20)

* update devDependencies

* recovery version corepack

pnpm@8.15.8

* Circleci project setup (#4)

* Add .circleci/config.yml

* Add .circleci/config.yml

* Add .circleci/config.yml

* Bump ring from 0.17.8 to 0.17.13 in the cargo group across 1 directory (#3)

Bumps the cargo group with 1 update in the / directory: [ring](https://github.com/briansmith/ring).


Updates `ring` from 0.17.8 to 0.17.13
- [Changelog](https://github.com/briansmith/ring/blob/main/RELEASES.md)
- [Commits](https://github.com/briansmith/ring/commits)

---
updated-dependencies:
- dependency-name: ring
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Bump dawidd6/action-download-artifact (#2)

Bumps the github_actions group with 1 update in the /.github/workflows directory: [dawidd6/action-download-artifact](https://github.com/dawidd6/action-download-artifact).


Updates `dawidd6/action-download-artifact` from 2 to 6
- [Release notes](https://github.com/dawidd6/action-download-artifact/releases)
- [Commits](https://github.com/dawidd6/action-download-artifact/compare/v2...v6)

---
updated-dependencies:
- dependency-name: dawidd6/action-download-artifact
  dependency-type: direct:production
  dependency-group: github_actions
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Create SECURITY.md (#1)

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Revert "Bump dawidd6/action-download-artifact (#2)" (#5)

This reverts commit b454d73a9022373d51a80f5a33813c58e4dff91d.

* Bump tokio from 1.37.0 to 1.42.0 in the cargo group across 1 directory

Bumps the cargo group with 1 update in the / directory: [tokio](https://github.com/tokio-rs/tokio).


Updates `tokio` from 1.37.0 to 1.42.0
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.37.0...tokio-1.42.0)

---
updated-dependencies:
- dependency-name: tokio
  dependency-version: 1.42.0
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump tokio from 1.42.0 to 1.42.1 in the cargo group across 1 directory (#8)

Bumps the cargo group with 1 update in the / directory: [tokio](https://github.com/tokio-rs/tokio).


Updates `tokio` from 1.42.0 to 1.42.1
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.42.0...tokio-1.42.1)

---
updated-dependencies:
- dependency-name: tokio
  dependency-version: 1.42.1
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump dawidd6/action-download-artifact (#7)

Bumps the github_actions group with 1 update in the /.github/workflows directory: [dawidd6/action-download-artifact](https://github.com/dawidd6/action-download-artifact).


Updates `dawidd6/action-download-artifact` from 2 to 6
- [Release notes](https://github.com/dawidd6/action-download-artifact/releases)
- [Commits](https://github.com/dawidd6/action-download-artifact/compare/v2...v6)

---
updated-dependencies:
- dependency-name: dawidd6/action-download-artifact
  dependency-version: '6'
  dependency-type: direct:production
  dependency-group: github_actions
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* feat: upgrade which from 3.0.1 to 5.0.0 (#17)

Snyk has created this PR to upgrade which from 3.0.1 to 5.0.0.

See this package in npm:
which

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* fix: upgrade @changesets/cli from 2.27.5 to 2.28.1 (#16)

Snyk has created this PR to upgrade @changesets/cli from 2.27.5 to 2.28.1.

See this package in npm:
@changesets/cli

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* fix: upgrade prettier from 3.3.0 to 3.5.3 (#15)

Snyk has created this PR to upgrade prettier from 3.3.0 to 3.5.3.

See this package in npm:
prettier

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* feat: upgrade execa from 7.2.0 to 9.5.2 (#14)

Snyk has created this PR to upgrade execa from 7.2.0 to 9.5.2.

See this package in npm:
execa

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* feat: upgrade @types/node from 18.19.87 to 22.14.0 (#13)

Snyk has created this PR to upgrade @types/node from 18.19.87 to 22.14.0.

See this package in npm:
@types/node

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* fix: upgrade @changesets/cli from 2.28.1 to 2.29.1 (#19)

Snyk has created this PR to upgrade @changesets/cli from 2.28.1 to 2.29.1.

See this package in npm:
@changesets/cli

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* fix: upgrade @changesets/cli from 2.29.1 to 2.29.2

Snyk has created this PR to upgrade @changesets/cli from 2.29.1 to 2.29.2.

See this package in npm:
@changesets/cli

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Legion's <apichanmittare@gmail.com>
Co-authored-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: snyk-bot <snyk-bot@snyk.io>
Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* Add changeset sixty-rice-do.md for patch 1 (#105)  (#107)

* Update Cargo.toml (#98)  (#104)

* chore(deps): bump the cargo group across 1 directory with 4 updates

Bumps the cargo group with 4 updates in the / directory: [hashbrown](https://github.com/rust-lang/hashbrown), [ring](https://github.com/briansmith/ring), [rustls](https://github.com/rustls/rustls) and [tokio](https://github.com/tokio-rs/tokio).


Updates `hashbrown` from 0.15.0 to 0.15.3
- [Release notes](https://github.com/rust-lang/hashbrown/releases)
- [Changelog](https://github.com/rust-lang/hashbrown/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-lang/hashbrown/compare/v0.15.0...v0.15.3)

Updates `ring` from 0.17.8 to 0.17.14
- [Changelog](https://github.com/briansmith/ring/blob/main/RELEASES.md)
- [Commits](https://github.com/briansmith/ring/commits)

Updates `rustls` from 0.23.16 to 0.23.23
- [Release notes](https://github.com/rustls/rustls/releases)
- [Changelog](https://github.com/rustls/rustls/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rustls/rustls/compare/v/0.23.16...v/0.23.23)

Updates `tokio` from 1.41.0 to 1.42.1
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.41.0...tokio-1.42.1)

---
updated-dependencies:
- dependency-name: hashbrown
  dependency-version: 0.15.3
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: ring
  dependency-version: 0.17.14
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: rustls
  dependency-version: 0.23.23
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: tokio
  dependency-version: 1.42.1
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>

* chore(deps): bump the npm_and_yarn group across 1 directory with 2 updates

Bumps the npm_and_yarn group with 2 updates in the / directory: [@babel/helpers](https://github.com/babel/babel/tree/HEAD/packages/babel-helpers) and [@babel/runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-runtime).


Updates `@babel/helpers` from 7.26.0 to 7.27.4
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.27.4/packages/babel-helpers)

Updates `@babel/runtime` from 7.26.0 to 7.27.4
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.27.4/packages/babel-runtime)

---
updated-dependencies:
- dependency-name: "@babel/helpers"
  dependency-version: 7.27.4
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: "@babel/runtime"
  dependency-version: 7.27.4
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>

* Potential fix for code scanning alert no. 3: Server-side request forgery

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 19: Workflow does not contain permissions

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* fix: package.json to reduce vulnerabilities (#27)

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-INFLIGHT-6095116

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* chore(deps): bump brace-expansion

Bumps the npm_and_yarn group with 1 update in the / directory: [brace-expansion](https://github.com/juliangruber/brace-expansion).


Updates `brace-expansion` from 1.1.11 to 1.1.12
- [Release notes](https://github.com/juliangruber/brace-expansion/releases)
- [Commits](https://github.com/juliangruber/brace-expansion/compare/1.1.11...v1.1.12)

---
updated-dependencies:
- dependency-name: brace-expansion
  dependency-version: 1.1.12
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>

* Create config.yml (#34)

* feat: upgrade zod from 3.25.76 to 4.0.0 (#33)

Snyk has created this PR to upgrade zod from 3.25.76 to 4.0.0.

See this package in npm:
zod

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* feat: upgrade @types/jest from 29.5.14 to 30.0.0 (#32)

Snyk has created this PR to upgrade @types/jest from 29.5.14 to 30.0.0.

See this package in npm:
@types/jest

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* fix: upgrade prettier from 3.5.1 to 3.5.3 (#25)

Snyk has created this PR to upgrade prettier from 3.5.1 to 3.5.3.

See this package in npm:
prettier

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* feat: upgrade cross-env from 7.0.3 to 10.0.0 (#39)

Snyk has created this PR to upgrade cross-env from 7.0.3 to 10.0.0.

See this package in npm:
cross-env

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* fix: upgrade prettier from 3.5.3 to 3.6.2 (#38)

Snyk has created this PR to upgrade prettier from 3.5.3 to 3.6.2.

See this package in npm:
prettier

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* feat: upgrade @types/node from 18.19.123 to 24.1.0 (#36)

Snyk has created this PR to upgrade @types/node from 18.19.123 to 24.1.0.

See this package in npm:
@types/node

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* fix: package.json to reduce vulnerabilities (#35)

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-TMP-11501554

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* Create label.yml (#40)

* Create label.yml

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 30: Workflow does not contain permissions

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>

* Update release.yml (#41)

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* chore(deps): bump tracing-subscriber from 0.3.18 to 0.3.20 in the cargo group across 1 directory (#42)

* chore(deps): bump tracing-subscriber

Bumps the cargo group with 1 update in the / directory: [tracing-subscriber](https://github.com/tokio-rs/tracing).


Updates `tracing-subscriber` from 0.3.18 to 0.3.20
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.18...tracing-subscriber-0.3.20)

---
updated-dependencies:
- dependency-name: tracing-subscriber
  dependency-version: 0.3.20
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update rust.yml (#43)

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* [Snyk] Upgrade @changesets/cli from 2.29.6 to 2.29.7 (#46)

* fix: upgrade @changesets/cli from 2.29.6 to 2.29.7

Snyk has created this PR to upgrade @changesets/cli from 2.29.6 to 2.29.7.

See this package in npm:
@changesets/cli

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

* Update package.json

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: snyk-bot <snyk-bot@snyk.io>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* fix: upgrade cmd-ts from 0.13.0 to 0.14.1 (#45)

Snyk has created this PR to upgrade cmd-ts from 0.13.0 to 0.14.1.

See this package in npm:
cmd-ts

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* feat: upgrade p-retry from 6.2.1 to 7.0.0 (#44)

Snyk has created this PR to upgrade p-retry from 6.2.1 to 7.0.0.

See this package in npm:
p-retry

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* chore(deps): bump zip in the cargo group across 1 directory (#47)

Bumps the cargo group with 1 update in the / directory: [zip](https://github.com/zip-rs/zip2).


Updates `zip` from 2.2.0 to 6.0.0
- [Release notes](https://github.com/zip-rs/zip2/releases)
- [Changelog](https://github.com/zip-rs/zip2/blob/master/CHANGELOG.md)
- [Commits](https://github.com/zip-rs/zip2/compare/v2.2.0...v6.0.0)

---
updated-dependencies:
- dependency-name: zip
  dependency-version: 6.0.0
  dependency-type: direct:production
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update release-to-cargo.yml (#55)

CI:

Modify the Publish to crates.io step to use cargo publish --dry-run
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create angry-moose-hug.md (#56)

* Create angry-moose-hug.md

Add a changeset for fnm to patch-release the package and update the release-to-cargo workflow configuration to use the master branch

Bug Fixes:

Update release-to-cargo.yml config to use the master branch
Chores:

Add angry-moose-hug changeset to bump fnm patch version

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/angry-moose-hug.md

New Changeset File: A new changeset file, "angry-moose-hug.md", has been added to the ".changeset" directory, indicating a recorded change for release management.
Release Configuration Update: The changeset documents a "patch" type change for "fnm", specifically a fix to update the "release-to-cargo.yml" configuration to use "base:br master".

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Create funny-falcons-breathe.md (#57)

* Create funny-falcons-breathe.md
Bug Fixes:

Update release-to-cargo.yml workflow config to use master as the base branch for fnm
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/funny-falcons-breathe.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update release.yml (#59)

Streamline the release workflow by restricting triggers to master and main branches and pin Node.js to version 22.

CI:

Remove the 'dev' branch from the release workflow triggers
Pin Node.js version to 22 in the release job
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci.yml (#60)

Add CircleCI pipeline to build, test, and format-check the Rust project with caching for dependencies

CI:

Introduce a CircleCI config (.circleci/ci.yml) using cimg/rust:1.89.0
Run cargo fmt -- --check and cargo test in a single build-and-test job
Cache Cargo dependencies and build artifacts between builds
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci-say-hello.yml (#61)

CI:

Add .circleci/ci-say-hello.yml with a say-hello job using cimg/base:current and a workflow to run it
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci-foundry.yml (#62)

Add .circleci/ci-foundry.yml to scaffold a new CircleCI pipeline with a custom Docker executor, a CI job, and a workflow.

CI:

Add initial CircleCI pipeline configuration using version 2.1
Define custom executor with Docker image and Docker Hub credentials
Introduce job 'web3-defi-game-project-' with checkout and placeholder run step
Add workflow 'my-custom-workflow' to orchestrate the CI job
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update config.yml (#66)

Restructure the CircleCI configuration by removing the custom executor, adding a sample say-hello job and workflow, and enhancing the file with explanatory comments
CI:
Remove custom executor and replace it with a basic say-hello job using the cimg/base:current Docker image
Introduce a say-hello-workflow to orchestrate the new job
Documentation:

Add inline comments to guide configuration of executors, jobs, steps, and workflows in the CI file
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create SECURITY.md (#67)

* Create SECURITY.md

Add a SECURITY.md file to establish the project's security policy, detail supported versions, and outline the vulnerability reporting process.

Documentation:

Introduce SECURITY.md with a security policy and supported versions table
Include guidelines for reporting vulnerabilities and expected response procedures
Signed-off-by: Dargon789 <64915515+Dargon789@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 <64915515+Dargon789@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 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Dargon789 patch 2 (#65)

* chore(deps): update actions/setup-node action to v4

* Create weak-moose-love.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/weak-moose-love.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create config.yml (#64)

CI:
Introduce .circleci/config.yml defining a 'say-hello' job and corresponding workflow

https://github.com/apps/gemini-code-assist
Highlights
New CircleCI Configuration: A new .circleci/config.yml file has been added to the repository, establishing a continuous integration setup.
Basic 'Hello, World!' Job: The initial configuration includes a simple job named say-hello that uses the cimg/base:current Docker image to print 'Hello, World!'.
Workflow Definition: A workflow named say-hello-workflow has been defined to orchestrate and run the say-hello job.
Code Review
This pull request introduces a basic CircleCI configuration file. The initial setup is a good starting point. I have provided a couple of suggestions to improve it for better maintainability and reproducibility. My main feedback is to pin the Docker image version to a specific tag instead of using current to ensure consistent builds. I've also pointed out a minor formatting issue with a trailing empty line.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Delete .circleci/ci-say-hello.yml (#69)

CI:
Delete .circleci/ci-say-hello.yml to clean up unused CI pipeline
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update ci.yml (#70)

CI:
Use cimg/rust:1.88.0 instead of cimg/rust:1.89.0 in the CI configuration
https://github.com/apps/gemini-code-assist
Code Review
This pull request updates the CircleCI configuration to use Rust version 1.88.0, aligning it with the rust-toolchain.toml file. This is a good correction. I have provided one suggestion to use a more flexible image tag to better match the behavior of rustup with the toolchain file, which will improve the long-term maintainability of the CI setup.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update release-to-cargo.yml

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update release-to-cargo.yml (#72)

Switch the GitHub Action for releasing to crates.io from a dry run to a real publish and clean up unused permissions settings.
CI:
Remove redundant permissions block from the release-to-cargo workflow
Replace dry-run with actual cargo publish command
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update grumpy-dingos-turn.md (#73)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update release.yml (#74)

* Update release.yml

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .github/workflows/release.yml

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>

* Update rust.yml (#75)

CI:
Remove 'dev' branch from rust.yml workflow triggers
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create docker.yml (#76)

Add a new GitHub Actions workflow (docker.yml) to automate building, pushing, and signing Docker images via Buildx, metadata extraction, and cosign integration

New Features:

Introduce a Docker CI workflow triggered on schedule, push to master, and semantic version tags, as well as on pull requests
Build and push multi-platform Docker images to GHCR using Buildx with dynamic tagging
Integrate cosign to sign published Docker images using Sigstore identity tokens
Enhancements:

Set up Docker metadata action for tag and label generation
Enable caching strategies for faster builds using GitHub Actions
CI:

Add .github/workflows/docker.yml to define the Docker build and publish pipeline
Chores:

Configure environment variables for registry (GHCR) and image naming based on the repository
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create CNAME

* Update rust.yml (#78)

Refine the GitHub Actions rust.yml workflow by restricting triggers to the master branch, pinning Node.js to version 18.x across all setup-node steps, and cleaning up formatting and commented version entries.
CI:

Limit workflow triggers to the master branch only
Pin Node.js setup in all jobs to version 18.x, removing 20.x and 22.x entries
Remove redundant commented Node.js version lines and extra blank lines
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* chore(deps): bump js-yaml in the npm_and_yarn group across 1 directory (#77)

Bumps the npm_and_yarn group with 1 update in the / directory: [js-yaml](https://github.com/nodeca/js-yaml).


Updates `js-yaml` from 3.14.1 to 3.14.2
- [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nodeca/js-yaml/compare/3.14.1...3.14.2)

---
updated-dependencies:
- dependency-name: js-yaml
  dependency-version: 3.14.2
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Create lazy-snails-return.md (#81)

* Create lazy-snails-return.md
Chores:
Create a new .changeset file to bump the patch version for fnm with a note about fixing the release-to-cargo.yml configuration.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/lazy-snails-return.md
Highlights
Changeset Addition: A new changeset file, lazy-snails-return.md, has been added. This file documents a fix related to the release-to-cargo.yml configuration.
Configuration Fix: The changeset entry specifically notes an update to the release-to-cargo.yml configuration, setting its base to br master.
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Dargon789 patch 2 (#82)

* chore(deps): update actions/setup-node action to v4

* Create weak-moose-love.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/weak-moose-love.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create config.yml (#64)

CI:
Introduce .circleci/config.yml defining a 'say-hello' job and corresponding workflow

https://github.com/apps/gemini-code-assist
Highlights
New CircleCI Configuration: A new .circleci/config.yml file has been added to the repository, establishing a continuous integration setup.
Basic 'Hello, World!' Job: The initial configuration includes a simple job named say-hello that uses the cimg/base:current Docker image to print 'Hello, World!'.
Workflow Definition: A workflow named say-hello-workflow has been defined to orchestrate and run the say-hello job.
Code Review
This pull request introduces a basic CircleCI configuration file. The initial setup is a good starting point. I have provided a couple of suggestions to improve it for better maintainability and reproducibility. My main feedback is to pin the Docker image version to a specific tag instead of using current to ensure consistent builds. I've also pointed out a minor formatting issue with a trailing empty line.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create olive-waves-punch.md (#79)

Chores:
Add a new changeset file for fnm patch release
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update index.mjs (#86)

Code Formatting: Removed an unnecessary blank line in tests/proxy-server/index.mjs to improve code consistency.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create google.yml (#87)

Add a GitHub Actions workflow to build and deploy the application to Google Kubernetes Engine via Google Cloud.
Build:
Introduce a Google Cloud–oriented workflow that builds a Docker image and pushes it to Artifact Registry on pushes to the main branch.
CI:
Add a GitHub Actions pipeline that authenticates with Google Cloud using Workload Identity Federation and runs container build and deployment steps.
Deployment:
Automate deploying the built Docker image to a GKE cluster using kustomize and kubectl.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci-hardhat.yml (#89)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create npm.yml (#91)

* Create npm.yml

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 31: Artifact poisoning

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>

* Update package.json (#93)

* Update package.json

https://github.com/Dargon789/uniswap.app/commit/011f260c7cc540f9bc9b336e0108f10d6f00401f

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update package.json

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update README.md (#94)

* Update README.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@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>

* Delete .kodiak.toml (#96)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create orb.yml (#97)

https://github.com/Dargon789/circleci-docs/commit/cd854b03e8aa7204da46e1da518ff6d80526a7b3

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update Cargo.toml (#98)

* Update Cargo.toml

https://github.com/Dargon789/foundry/commit/fcfa587cbfce70b8eb32ac87207cd8a2e2c4f726

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update Cargo.toml

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update label.yml (#99)

CI:

Adjust GitHub Actions label workflow triggers to use the 'main' branch for push events while keeping pull request triggers on 'master'.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* fix(deps): update all non-major dependencies

* Add build artifacts and fnm.exe to repository

This commit adds the .fnm/fnm.exe binary and various Rust build artifacts under target-wsl/, including .rustc_info.json, CACHEDIR.TAG, and debug fingerprints for dependencies. These files appear to be generated as part of a Rust build process, possibly for debugging or distribution purposes.

* Update issue templates (#102)

* 1462 (#103)

* Adjust install script for POSIX compliance

* Create temporary directory when mktemp is unavailable

* Use "dot" instead of `source` builtin when shell is not fish

* Inform the user where fnm is being installed

* chore(deps): update rust crate indoc to v2.0.7

* Add changeset for updating indoc crate to v2.0.7 (#101)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+…
Dargon789 added a commit that referenced this pull request Jan 31, 2026
* Version Packages

* add hooks mechanism for pre, post and failed install

* 1462 (#103)

* Adjust install script for POSIX compliance

* Create temporary directory when mktemp is unavailable

* Use "dot" instead of `source` builtin when shell is not fish

* Inform the user where fnm is being installed

* chore(deps): update rust crate indoc to v2.0.7

* Add changeset for updating indoc crate to v2.0.7 (#101)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Ricardo Biehl Pasquali <ricardo@pasqua.li>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* Update README.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .github/ISSUE_TEMPLATE/bug_report.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .github/ISSUE_TEMPLATE/bug_report.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* chore(deps): bump lodash in the npm_and_yarn group across 1 directory (#100)

Bumps the npm_and_yarn group with 1 update in the / directory: [lodash](https://github.com/lodash/lodash).


Updates `lodash` from 4.17.21 to 4.17.23
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](https://github.com/lodash/lodash/compare/4.17.21...4.17.23)

---
updated-dependencies:
- dependency-name: lodash
  dependency-version: 4.17.23
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* [Snyk] Upgrade @changesets/cli from 2.29.1 to 2.29.2 (#20)

* update devDependencies

* recovery version corepack

pnpm@8.15.8

* Circleci project setup (#4)

* Add .circleci/config.yml

* Add .circleci/config.yml

* Add .circleci/config.yml

* Bump ring from 0.17.8 to 0.17.13 in the cargo group across 1 directory (#3)

Bumps the cargo group with 1 update in the / directory: [ring](https://github.com/briansmith/ring).


Updates `ring` from 0.17.8 to 0.17.13
- [Changelog](https://github.com/briansmith/ring/blob/main/RELEASES.md)
- [Commits](https://github.com/briansmith/ring/commits)

---
updated-dependencies:
- dependency-name: ring
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Bump dawidd6/action-download-artifact (#2)

Bumps the github_actions group with 1 update in the /.github/workflows directory: [dawidd6/action-download-artifact](https://github.com/dawidd6/action-download-artifact).


Updates `dawidd6/action-download-artifact` from 2 to 6
- [Release notes](https://github.com/dawidd6/action-download-artifact/releases)
- [Commits](https://github.com/dawidd6/action-download-artifact/compare/v2...v6)

---
updated-dependencies:
- dependency-name: dawidd6/action-download-artifact
  dependency-type: direct:production
  dependency-group: github_actions
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Create SECURITY.md (#1)

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Revert "Bump dawidd6/action-download-artifact (#2)" (#5)

This reverts commit b454d73a9022373d51a80f5a33813c58e4dff91d.

* Bump tokio from 1.37.0 to 1.42.0 in the cargo group across 1 directory

Bumps the cargo group with 1 update in the / directory: [tokio](https://github.com/tokio-rs/tokio).


Updates `tokio` from 1.37.0 to 1.42.0
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.37.0...tokio-1.42.0)

---
updated-dependencies:
- dependency-name: tokio
  dependency-version: 1.42.0
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump tokio from 1.42.0 to 1.42.1 in the cargo group across 1 directory (#8)

Bumps the cargo group with 1 update in the / directory: [tokio](https://github.com/tokio-rs/tokio).


Updates `tokio` from 1.42.0 to 1.42.1
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.42.0...tokio-1.42.1)

---
updated-dependencies:
- dependency-name: tokio
  dependency-version: 1.42.1
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump dawidd6/action-download-artifact (#7)

Bumps the github_actions group with 1 update in the /.github/workflows directory: [dawidd6/action-download-artifact](https://github.com/dawidd6/action-download-artifact).


Updates `dawidd6/action-download-artifact` from 2 to 6
- [Release notes](https://github.com/dawidd6/action-download-artifact/releases)
- [Commits](https://github.com/dawidd6/action-download-artifact/compare/v2...v6)

---
updated-dependencies:
- dependency-name: dawidd6/action-download-artifact
  dependency-version: '6'
  dependency-type: direct:production
  dependency-group: github_actions
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* feat: upgrade which from 3.0.1 to 5.0.0 (#17)

Snyk has created this PR to upgrade which from 3.0.1 to 5.0.0.

See this package in npm:
which

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* fix: upgrade @changesets/cli from 2.27.5 to 2.28.1 (#16)

Snyk has created this PR to upgrade @changesets/cli from 2.27.5 to 2.28.1.

See this package in npm:
@changesets/cli

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* fix: upgrade prettier from 3.3.0 to 3.5.3 (#15)

Snyk has created this PR to upgrade prettier from 3.3.0 to 3.5.3.

See this package in npm:
prettier

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* feat: upgrade execa from 7.2.0 to 9.5.2 (#14)

Snyk has created this PR to upgrade execa from 7.2.0 to 9.5.2.

See this package in npm:
execa

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* feat: upgrade @types/node from 18.19.87 to 22.14.0 (#13)

Snyk has created this PR to upgrade @types/node from 18.19.87 to 22.14.0.

See this package in npm:
@types/node

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* fix: upgrade @changesets/cli from 2.28.1 to 2.29.1 (#19)

Snyk has created this PR to upgrade @changesets/cli from 2.28.1 to 2.29.1.

See this package in npm:
@changesets/cli

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* fix: upgrade @changesets/cli from 2.29.1 to 2.29.2

Snyk has created this PR to upgrade @changesets/cli from 2.29.1 to 2.29.2.

See this package in npm:
@changesets/cli

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Legion's <apichanmittare@gmail.com>
Co-authored-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: snyk-bot <snyk-bot@snyk.io>
Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* Add changeset sixty-rice-do.md for patch 1 (#105)  (#107)

* Update Cargo.toml (#98)  (#104)

* chore(deps): bump the cargo group across 1 directory with 4 updates

Bumps the cargo group with 4 updates in the / directory: [hashbrown](https://github.com/rust-lang/hashbrown), [ring](https://github.com/briansmith/ring), [rustls](https://github.com/rustls/rustls) and [tokio](https://github.com/tokio-rs/tokio).


Updates `hashbrown` from 0.15.0 to 0.15.3
- [Release notes](https://github.com/rust-lang/hashbrown/releases)
- [Changelog](https://github.com/rust-lang/hashbrown/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-lang/hashbrown/compare/v0.15.0...v0.15.3)

Updates `ring` from 0.17.8 to 0.17.14
- [Changelog](https://github.com/briansmith/ring/blob/main/RELEASES.md)
- [Commits](https://github.com/briansmith/ring/commits)

Updates `rustls` from 0.23.16 to 0.23.23
- [Release notes](https://github.com/rustls/rustls/releases)
- [Changelog](https://github.com/rustls/rustls/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rustls/rustls/compare/v/0.23.16...v/0.23.23)

Updates `tokio` from 1.41.0 to 1.42.1
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.41.0...tokio-1.42.1)

---
updated-dependencies:
- dependency-name: hashbrown
  dependency-version: 0.15.3
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: ring
  dependency-version: 0.17.14
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: rustls
  dependency-version: 0.23.23
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: tokio
  dependency-version: 1.42.1
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>

* chore(deps): bump the npm_and_yarn group across 1 directory with 2 updates

Bumps the npm_and_yarn group with 2 updates in the / directory: [@babel/helpers](https://github.com/babel/babel/tree/HEAD/packages/babel-helpers) and [@babel/runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-runtime).


Updates `@babel/helpers` from 7.26.0 to 7.27.4
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.27.4/packages/babel-helpers)

Updates `@babel/runtime` from 7.26.0 to 7.27.4
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.27.4/packages/babel-runtime)

---
updated-dependencies:
- dependency-name: "@babel/helpers"
  dependency-version: 7.27.4
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: "@babel/runtime"
  dependency-version: 7.27.4
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>

* Potential fix for code scanning alert no. 3: Server-side request forgery

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 19: Workflow does not contain permissions

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* fix: package.json to reduce vulnerabilities (#27)

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-INFLIGHT-6095116

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* chore(deps): bump brace-expansion

Bumps the npm_and_yarn group with 1 update in the / directory: [brace-expansion](https://github.com/juliangruber/brace-expansion).


Updates `brace-expansion` from 1.1.11 to 1.1.12
- [Release notes](https://github.com/juliangruber/brace-expansion/releases)
- [Commits](https://github.com/juliangruber/brace-expansion/compare/1.1.11...v1.1.12)

---
updated-dependencies:
- dependency-name: brace-expansion
  dependency-version: 1.1.12
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>

* Create config.yml (#34)

* feat: upgrade zod from 3.25.76 to 4.0.0 (#33)

Snyk has created this PR to upgrade zod from 3.25.76 to 4.0.0.

See this package in npm:
zod

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* feat: upgrade @types/jest from 29.5.14 to 30.0.0 (#32)

Snyk has created this PR to upgrade @types/jest from 29.5.14 to 30.0.0.

See this package in npm:
@types/jest

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* fix: upgrade prettier from 3.5.1 to 3.5.3 (#25)

Snyk has created this PR to upgrade prettier from 3.5.1 to 3.5.3.

See this package in npm:
prettier

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* feat: upgrade cross-env from 7.0.3 to 10.0.0 (#39)

Snyk has created this PR to upgrade cross-env from 7.0.3 to 10.0.0.

See this package in npm:
cross-env

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* fix: upgrade prettier from 3.5.3 to 3.6.2 (#38)

Snyk has created this PR to upgrade prettier from 3.5.3 to 3.6.2.

See this package in npm:
prettier

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* feat: upgrade @types/node from 18.19.123 to 24.1.0 (#36)

Snyk has created this PR to upgrade @types/node from 18.19.123 to 24.1.0.

See this package in npm:
@types/node

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* fix: package.json to reduce vulnerabilities (#35)

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-TMP-11501554

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* Create label.yml (#40)

* Create label.yml

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 30: Workflow does not contain permissions

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>

* Update release.yml (#41)

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* chore(deps): bump tracing-subscriber from 0.3.18 to 0.3.20 in the cargo group across 1 directory (#42)

* chore(deps): bump tracing-subscriber

Bumps the cargo group with 1 update in the / directory: [tracing-subscriber](https://github.com/tokio-rs/tracing).


Updates `tracing-subscriber` from 0.3.18 to 0.3.20
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.18...tracing-subscriber-0.3.20)

---
updated-dependencies:
- dependency-name: tracing-subscriber
  dependency-version: 0.3.20
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update rust.yml (#43)

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* [Snyk] Upgrade @changesets/cli from 2.29.6 to 2.29.7 (#46)

* fix: upgrade @changesets/cli from 2.29.6 to 2.29.7

Snyk has created this PR to upgrade @changesets/cli from 2.29.6 to 2.29.7.

See this package in npm:
@changesets/cli

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

* Update package.json

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: snyk-bot <snyk-bot@snyk.io>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* fix: upgrade cmd-ts from 0.13.0 to 0.14.1 (#45)

Snyk has created this PR to upgrade cmd-ts from 0.13.0 to 0.14.1.

See this package in npm:
cmd-ts

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* feat: upgrade p-retry from 6.2.1 to 7.0.0 (#44)

Snyk has created this PR to upgrade p-retry from 6.2.1 to 7.0.0.

See this package in npm:
p-retry

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* chore(deps): bump zip in the cargo group across 1 directory (#47)

Bumps the cargo group with 1 update in the / directory: [zip](https://github.com/zip-rs/zip2).


Updates `zip` from 2.2.0 to 6.0.0
- [Release notes](https://github.com/zip-rs/zip2/releases)
- [Changelog](https://github.com/zip-rs/zip2/blob/master/CHANGELOG.md)
- [Commits](https://github.com/zip-rs/zip2/compare/v2.2.0...v6.0.0)

---
updated-dependencies:
- dependency-name: zip
  dependency-version: 6.0.0
  dependency-type: direct:production
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update release-to-cargo.yml (#55)

CI:

Modify the Publish to crates.io step to use cargo publish --dry-run
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create angry-moose-hug.md (#56)

* Create angry-moose-hug.md

Add a changeset for fnm to patch-release the package and update the release-to-cargo workflow configuration to use the master branch

Bug Fixes:

Update release-to-cargo.yml config to use the master branch
Chores:

Add angry-moose-hug changeset to bump fnm patch version

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/angry-moose-hug.md

New Changeset File: A new changeset file, "angry-moose-hug.md", has been added to the ".changeset" directory, indicating a recorded change for release management.
Release Configuration Update: The changeset documents a "patch" type change for "fnm", specifically a fix to update the "release-to-cargo.yml" configuration to use "base:br master".

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Create funny-falcons-breathe.md (#57)

* Create funny-falcons-breathe.md
Bug Fixes:

Update release-to-cargo.yml workflow config to use master as the base branch for fnm
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/funny-falcons-breathe.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update release.yml (#59)

Streamline the release workflow by restricting triggers to master and main branches and pin Node.js to version 22.

CI:

Remove the 'dev' branch from the release workflow triggers
Pin Node.js version to 22 in the release job
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci.yml (#60)

Add CircleCI pipeline to build, test, and format-check the Rust project with caching for dependencies

CI:

Introduce a CircleCI config (.circleci/ci.yml) using cimg/rust:1.89.0
Run cargo fmt -- --check and cargo test in a single build-and-test job
Cache Cargo dependencies and build artifacts between builds
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci-say-hello.yml (#61)

CI:

Add .circleci/ci-say-hello.yml with a say-hello job using cimg/base:current and a workflow to run it
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci-foundry.yml (#62)

Add .circleci/ci-foundry.yml to scaffold a new CircleCI pipeline with a custom Docker executor, a CI job, and a workflow.

CI:

Add initial CircleCI pipeline configuration using version 2.1
Define custom executor with Docker image and Docker Hub credentials
Introduce job 'web3-defi-game-project-' with checkout and placeholder run step
Add workflow 'my-custom-workflow' to orchestrate the CI job
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update config.yml (#66)

Restructure the CircleCI configuration by removing the custom executor, adding a sample say-hello job and workflow, and enhancing the file with explanatory comments
CI:
Remove custom executor and replace it with a basic say-hello job using the cimg/base:current Docker image
Introduce a say-hello-workflow to orchestrate the new job
Documentation:

Add inline comments to guide configuration of executors, jobs, steps, and workflows in the CI file
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create SECURITY.md (#67)

* Create SECURITY.md

Add a SECURITY.md file to establish the project's security policy, detail supported versions, and outline the vulnerability reporting process.

Documentation:

Introduce SECURITY.md with a security policy and supported versions table
Include guidelines for reporting vulnerabilities and expected response procedures
Signed-off-by: Dargon789 <64915515+Dargon789@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 <64915515+Dargon789@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 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Dargon789 patch 2 (#65)

* chore(deps): update actions/setup-node action to v4

* Create weak-moose-love.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/weak-moose-love.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create config.yml (#64)

CI:
Introduce .circleci/config.yml defining a 'say-hello' job and corresponding workflow

https://github.com/apps/gemini-code-assist
Highlights
New CircleCI Configuration: A new .circleci/config.yml file has been added to the repository, establishing a continuous integration setup.
Basic 'Hello, World!' Job: The initial configuration includes a simple job named say-hello that uses the cimg/base:current Docker image to print 'Hello, World!'.
Workflow Definition: A workflow named say-hello-workflow has been defined to orchestrate and run the say-hello job.
Code Review
This pull request introduces a basic CircleCI configuration file. The initial setup is a good starting point. I have provided a couple of suggestions to improve it for better maintainability and reproducibility. My main feedback is to pin the Docker image version to a specific tag instead of using current to ensure consistent builds. I've also pointed out a minor formatting issue with a trailing empty line.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Delete .circleci/ci-say-hello.yml (#69)

CI:
Delete .circleci/ci-say-hello.yml to clean up unused CI pipeline
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update ci.yml (#70)

CI:
Use cimg/rust:1.88.0 instead of cimg/rust:1.89.0 in the CI configuration
https://github.com/apps/gemini-code-assist
Code Review
This pull request updates the CircleCI configuration to use Rust version 1.88.0, aligning it with the rust-toolchain.toml file. This is a good correction. I have provided one suggestion to use a more flexible image tag to better match the behavior of rustup with the toolchain file, which will improve the long-term maintainability of the CI setup.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update release-to-cargo.yml

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update release-to-cargo.yml (#72)

Switch the GitHub Action for releasing to crates.io from a dry run to a real publish and clean up unused permissions settings.
CI:
Remove redundant permissions block from the release-to-cargo workflow
Replace dry-run with actual cargo publish command
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update grumpy-dingos-turn.md (#73)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update release.yml (#74)

* Update release.yml

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .github/workflows/release.yml

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>

* Update rust.yml (#75)

CI:
Remove 'dev' branch from rust.yml workflow triggers
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create docker.yml (#76)

Add a new GitHub Actions workflow (docker.yml) to automate building, pushing, and signing Docker images via Buildx, metadata extraction, and cosign integration

New Features:

Introduce a Docker CI workflow triggered on schedule, push to master, and semantic version tags, as well as on pull requests
Build and push multi-platform Docker images to GHCR using Buildx with dynamic tagging
Integrate cosign to sign published Docker images using Sigstore identity tokens
Enhancements:

Set up Docker metadata action for tag and label generation
Enable caching strategies for faster builds using GitHub Actions
CI:

Add .github/workflows/docker.yml to define the Docker build and publish pipeline
Chores:

Configure environment variables for registry (GHCR) and image naming based on the repository
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create CNAME

* Update rust.yml (#78)

Refine the GitHub Actions rust.yml workflow by restricting triggers to the master branch, pinning Node.js to version 18.x across all setup-node steps, and cleaning up formatting and commented version entries.
CI:

Limit workflow triggers to the master branch only
Pin Node.js setup in all jobs to version 18.x, removing 20.x and 22.x entries
Remove redundant commented Node.js version lines and extra blank lines
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* chore(deps): bump js-yaml in the npm_and_yarn group across 1 directory (#77)

Bumps the npm_and_yarn group with 1 update in the / directory: [js-yaml](https://github.com/nodeca/js-yaml).


Updates `js-yaml` from 3.14.1 to 3.14.2
- [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nodeca/js-yaml/compare/3.14.1...3.14.2)

---
updated-dependencies:
- dependency-name: js-yaml
  dependency-version: 3.14.2
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Create lazy-snails-return.md (#81)

* Create lazy-snails-return.md
Chores:
Create a new .changeset file to bump the patch version for fnm with a note about fixing the release-to-cargo.yml configuration.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/lazy-snails-return.md
Highlights
Changeset Addition: A new changeset file, lazy-snails-return.md, has been added. This file documents a fix related to the release-to-cargo.yml configuration.
Configuration Fix: The changeset entry specifically notes an update to the release-to-cargo.yml configuration, setting its base to br master.
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Dargon789 patch 2 (#82)

* chore(deps): update actions/setup-node action to v4

* Create weak-moose-love.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/weak-moose-love.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create config.yml (#64)

CI:
Introduce .circleci/config.yml defining a 'say-hello' job and corresponding workflow

https://github.com/apps/gemini-code-assist
Highlights
New CircleCI Configuration: A new .circleci/config.yml file has been added to the repository, establishing a continuous integration setup.
Basic 'Hello, World!' Job: The initial configuration includes a simple job named say-hello that uses the cimg/base:current Docker image to print 'Hello, World!'.
Workflow Definition: A workflow named say-hello-workflow has been defined to orchestrate and run the say-hello job.
Code Review
This pull request introduces a basic CircleCI configuration file. The initial setup is a good starting point. I have provided a couple of suggestions to improve it for better maintainability and reproducibility. My main feedback is to pin the Docker image version to a specific tag instead of using current to ensure consistent builds. I've also pointed out a minor formatting issue with a trailing empty line.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create olive-waves-punch.md (#79)

Chores:
Add a new changeset file for fnm patch release
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update index.mjs (#86)

Code Formatting: Removed an unnecessary blank line in tests/proxy-server/index.mjs to improve code consistency.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create google.yml (#87)

Add a GitHub Actions workflow to build and deploy the application to Google Kubernetes Engine via Google Cloud.
Build:
Introduce a Google Cloud–oriented workflow that builds a Docker image and pushes it to Artifact Registry on pushes to the main branch.
CI:
Add a GitHub Actions pipeline that authenticates with Google Cloud using Workload Identity Federation and runs container build and deployment steps.
Deployment:
Automate deploying the built Docker image to a GKE cluster using kustomize and kubectl.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci-hardhat.yml (#89)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create npm.yml (#91)

* Create npm.yml

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 31: Artifact poisoning

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>

* Update package.json (#93)

* Update package.json

https://github.com/Dargon789/uniswap.app/commit/011f260c7cc540f9bc9b336e0108f10d6f00401f

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update package.json

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update README.md (#94)

* Update README.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@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>

* Delete .kodiak.toml (#96)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create orb.yml (#97)

https://github.com/Dargon789/circleci-docs/commit/cd854b03e8aa7204da46e1da518ff6d80526a7b3

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update Cargo.toml (#98)

* Update Cargo.toml

https://github.com/Dargon789/foundry/commit/fcfa587cbfce70b8eb32ac87207cd8a2e2c4f726

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update Cargo.toml

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update label.yml (#99)

CI:

Adjust GitHub Actions label workflow triggers to use the 'main' branch for push events while keeping pull request triggers on 'master'.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* fix(deps): update all non-major dependencies

* Add build artifacts and fnm.exe to repository

This commit adds the .fnm/fnm.exe binary and various Rust build artifacts under target-wsl/, including .rustc_info.json, CACHEDIR.TAG, and debug fingerprints for dependencies. These files appear to be generated as part of a Rust build process, possibly for debugging or distribution purposes.

* Update issue templates (#102)

* 1462 (#103)

* Adjust install script for POSIX compliance

* Create temporary directory when mktemp is unavailable

* Use "dot" instead of `source` builtin when shell is not fish

* Inform the user where fnm is being installed

* chore(deps): update rust crate indoc to v2.0.7

* Add changeset for updating indoc crate to v2.0.7 (#101)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Ricardo Biehl Pasquali <ricardo@pasqua.li>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* Update README.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .github/ISSUE_TEMPLATE/bug_report.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .github/ISSUE_TEMPLATE/bug_report.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Co-authored-by: snyk-bot <snyk-bot@snyk.io>
Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Co-authored-by: Ricardo Biehl Pasquali <ricardo@pasqua.li>

* Add changeset  sixty-rice-do.md for patch 1 (#105)

 sixty-rice-do.md
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update Cargo.toml

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update Cargo.toml

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@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 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Co-authored-by: snyk-bot <snyk-bot@snyk.io>
Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Co-authored-by: Ricardo Biehl Pasquali <ricardo@pasqua.li>

* Update Rust toolchain version to 1.89 (#108)

https://github.com/Dargon789/foundry/commit/c0d08b1943203e4b3bc3fe31805f49ddca6173f0

*Adjust test runner configuration for nextest to better handle long-running and specific tests.

Enhancements:

Introduce a dedicated test group that limits chisel-serial tests to a single thread.
Increase the default slow-test timeout period to reduce premature terminations for longer-running tests.
Expand the slow-timeout override filter to include both ext_integration and can_test_forge_std tests.

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update redirect destination in vercel.json (#109)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Release update version 1.39.0 (#110)

Release version 1.39.0 with updated changelog and supporting metadata.

New Features:

Add a use flag to the install command to control activating installed versions.
Enhancements:

Update fnm default so calling it without arguments returns the current default version.
Build:

Bump the Rust toolchain to version 1.88 and update package metadata for the 1.39.0 release.
Chores:

Remove obsolete changeset files and refresh generated assets and lockfiles for the new release.
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* Downgrade pnpm/action-setup version to v4.0.0 (#111)

chore(deps): update rust crate chrono to v0.4.43 #3244  https://github.com/Schniz/fnm/commit/00a76adef9d88188b6c05b0bf7780d6537b6f0d9 [![Rust](https://github.com/Schniz/fnm/actions/workflows/rust.yml/badge.svg)](https://github.com/Schniz/fnm/actions/workflows/rust.yml)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Revert "Downgrade pnpm/action-setup version to v4.0.0 (#111)" (#112)

This reverts commit 0c9c155703736cb37a0758839deb2dcd8b6c39e2.

* Version Packages (#114)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* Remove 'main' branch from release workflow triggers (#115)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Revert "Remove 'main' branch from release workflow triggers (#115)" (#118)

This reverts commit 21b6cc151cac241175b2cbd2a640ac05104add6a.

* Create silly-comics-jump.md (#119)

Chores:
Add changeset metadata file to document a patch-level change for fnm.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Patch 1 (#121)

* Make install.sh tee instead of echoing twice

Also, fish bit was the only one that didn't print a newline to
$CONF_FILE, now they're all the same.

* Check if fnm is installed before shell setup

Change $CONF_FILE append strings to check whether $INSTALL_DIR exists
before doing any setup. This way whenever a user syncs their shell
config across machines, the machines without fnm installed won't throw
errors.

* Create smooth-lions-sneeze.md

* add hooks mechanism for pre, post and failed install

* feat: upgrade cross-env from 7.0.3 to 10.0.0 (#39)

Snyk has created this PR to upgrade cross-env from 7.0.3 to 10.0.0.

See this package in npm:
cross-env

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* fix: upgrade prettier from 3.5.3 to 3.6.2 (#38)

Snyk has created this PR to upgrade prettier from 3.5.3 to 3.6.2.

See this package in npm:
prettier

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* feat: upgrade @types/node from 18.19.123 to 24.1.0 (#36)

Snyk has created this PR to upgrade @types/node from 18.19.123 to 24.1.0.

See this package in npm:
@types/node

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* fix: package.json to reduce vulnerabilities (#35)

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-TMP-11501554

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* Create label.yml (#40)

* Create label.yml

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 30: Workflow does not contain permissions

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>

* Update release.yml (#41)

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* chore(deps): bump tracing-subscriber from 0.3.18 to 0.3.20 in the cargo group across 1 directory (#42)

* chore(deps): bump tracing-subscriber

Bumps the cargo group with 1 update in the / directory: [tracing-subscriber](https://github.com/tokio-rs/tracing).


Updates `tracing-subscriber` from 0.3.18 to 0.3.20
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.18...tracing-subscriber-0.3.20)

---
updated-dependencies:
- dependency-name: tracing-subscriber
  dependency-version: 0.3.20
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update rust.yml (#43)

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Adjust install script for POSIX compliance

* Create temporary directory when mktemp is unavailable

* Use "dot" instead of `source` builtin when shell is not fish

* Inform the user where fnm is being installed

* [Snyk] Upgrade @changesets/cli from 2.29.6 to 2.29.7 (#46)

* fix: upgrade @changesets/cli from 2.29.6 to 2.29.7

Snyk has created this PR to upgrade @changesets/cli from 2.29.6 to 2.29.7.

See this package in npm:
@changesets/cli

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

* Update package.json

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: snyk-bot <snyk-bot@snyk.io>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* fix: upgrade cmd-ts from 0.13.0 to 0.14.1 (#45)

Snyk has created this PR to upgrade cmd-ts from 0.13.0 to 0.14.1.

See this package in npm:
cmd-ts

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* feat: upgrade p-retry from 6.2.1 to 7.0.0 (#44)

Snyk has created this PR to upgrade p-retry from 6.2.1 to 7.0.0.

See this package in npm:
p-retry

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* chore(deps): bump zip in the cargo group across 1 directory (#47)

Bumps the cargo group with 1 update in the / directory: [zip](https://github.com/zip-rs/zip2).


Updates `zip` from 2.2.0 to 6.0.0
- [Release notes](https://github.com/zip-rs/zip2/releases)
- [Changelog](https://github.com/zip-rs/zip2/blob/master/CHANGELOG.md)
- [Commits](https://github.com/zip-rs/zip2/compare/v2.2.0...v6.0.0)

---
updated-dependencies:
- dependency-name: zip
  dependency-version: 6.0.0
  dependency-type: direct:production
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Create smart-avocados-try.md (#48)

* Create smart-avocados-try.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/smart-avocados-try.md
New Changeset File: A new changeset file, smart-avocados-try.md, has been added to the .changeset directory. This file is used to record a specific change for future release notes or changelog generation.
Patch Metadata: The newly added changeset file includes front matter metadata specifying "fnm": "patch", indicating the type of change being recorded.
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update release-to-cargo.yml (#55)

CI:

Modify the Publish to crates.io step to use cargo publish --dry-run
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create angry-moose-hug.md (#56)

* Create angry-moose-hug.md

Add a changeset for fnm to patch-release the package and update the release-to-cargo workflow configuration to use the master branch

Bug Fixes:

Update release-to-cargo.yml config to use the master branch
Chores:

Add angry-moose-hug changeset to bump fnm patch version

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/angry-moose-hug.md

New Changeset File: A new changeset file, "angry-moose-hug.md", has been added to the ".changeset" directory, indicating a recorded change for release management.
Release Configuration Update: The changeset documents a "patch" type change for "fnm", specifically a fix to update the "release-to-cargo.yml" configuration to use "base:br master".

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Create funny-falcons-breathe.md (#57)

* Create funny-falcons-breathe.md
Bug Fixes:

Update release-to-cargo.yml workflow config to use master as the base branch for fnm
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/funny-falcons-breathe.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update release.yml (#59)

Streamline the release workflow by restricting triggers to master and main branches and pin Node.js to version 22.

CI:

Remove the 'dev' branch from the release workflow triggers
Pin Node.js version to 22 in the release job
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci.yml (#60)

Add CircleCI pipeline to build, test, and format-check the Rust project with caching for dependencies

CI:

Introduce a CircleCI config (.circleci/ci.yml) using cimg/rust:1.89.0
Run cargo fmt -- --check and cargo test in a single build-and-test job
Cache Cargo dependencies and build artifacts between builds
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci-say-hello.yml (#61)

CI:

Add .circleci/ci-say-hello.yml with a say-hello job using cimg/base:current and a workflow to run it
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci-foundry.yml (#62)

Add .circleci/ci-foundry.yml to scaffold a new CircleCI pipeline with a custom Docker executor, a CI job, and a workflow.

CI:

Add initial CircleCI pipeline configuration using version 2.1
Define custom executor with Docker image and Docker Hub credentials
Introduce job 'web3-defi-game-project-' with checkout and placeholder run step
Add workflow 'my-custom-workflow' to orchestrate the CI job
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update config.yml (#66)

Restructure the CircleCI configuration by removing the custom executor, adding a sample say-hello job and workflow, and enhancing the file with explanatory comments
CI:
Remove custom executor and replace it with a basic say-hello job using the cimg/base:current Docker image
Introduce a say-hello-workflow to orchestrate the new job
Documentation:

Add inline comments to guide configuration of executors, jobs, steps, and workflows in the CI file
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create SECURITY.md (#67)

* Create SECURITY.md

Add a SECURITY.md file to establish the project's security policy, detail supported versions, and outline the vulnerability reporting process.

Documentation:

Introduce SECURITY.md with a security policy and supported versions table
Include guidelines for reporting vulnerabilities and expected response procedures
Signed-off-by: Dargon789 <64915515+Dargon789@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 <64915515+Dargon789@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 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Dargon789 patch 2 (#65)

* chore(deps): update actions/setup-node action to v4

* Create weak-moose-love.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/weak-moose-love.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create config.yml (#64)

CI:
Introduce .circleci/config.yml defining a 'say-hello' job and corresponding workflow

https://github.com/apps/gemini-code-assist
Highlights
New CircleCI Configuration: A new .circleci/config.yml file has been added to the repository, establishing a continuous integration setup.
Basic 'Hello, World!' Job: The initial configuration includes a simple job named say-hello that uses the cimg/base:current Docker image to print 'Hello, World!'.
Workflow Definition: A workflow named say-hello-workflow has been defined to orchestrate and run the say-hello job.
Code Review
This pull request introduces a basic CircleCI configuration file. The initial setup is a good starting point. I have provided a couple of suggestions to improve it for better maintainability and reproducibility. My main feedback is to pin the Docker image version to a specific tag instead of using current to ensure consistent builds. I've also pointed out a minor formatting issue with a trailing empty line.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Delete .circleci/ci-say-hello.yml (#69)

CI:
Delete .circleci/ci-say-hello.yml to clean up unused CI pipeline
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update ci.yml (#70)

CI:
Use cimg/rust:1.88.0 instead of cimg/rust:1.89.0 in the CI configuration
https://github.com/apps/gemini-code-assist
Code Review
This pull request updates the CircleCI configuration to use Rust version 1.88.0, aligning it with the rust-toolchain.toml file. This is a good correction. I have provided one suggestion to use a more flexible image tag to better match the behavior of rustup with the toolchain file, which will improve the long-term maintainability of the CI setup.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update release-to-cargo.yml

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update release-to-cargo.yml (#72)

Switch the GitHub Action for releasing to crates.io from a dry run to a real publish and clean up unused permissions settings.
CI:
Remove redundant permissions block from the release-to-cargo workflow
Replace dry-run with actual cargo publish command
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update grumpy-dingos-turn.md (#73)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update release.yml (#74)

* Update release.yml

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .github/workflows/release.yml

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>

* Update rust.yml (#75)

CI:
Remove 'dev' branch from rust.yml workflow triggers
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create docker.yml (#76)

Add a new GitHub Actions workflow (docker.yml) to automate building, pushing, and signing Docker images via Buildx, metadata extraction, and cosign integration

New Features:

Introduce a Docker CI workflow triggered on schedule, push to master, and semantic version tags, as well as on pull requests
Build and push multi-platform Docker images to GHCR using Buildx with dynamic tagging
Integrate cosign to sign published Docker images using Sigstore identity tokens
Enhancements:

Set up Docker metadata action for tag and label generation
Enable caching strategies for faster builds using GitHub Actions
CI:

Add .github/workflows/docker.yml to define the Docker build and publish pipeline
Chores:

Configure environment variables for registry (GHCR) and image naming based on the repository
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create CNAME

* Update rust.yml (#78)

Refine the GitHub Actions rust.yml workflow by restricting triggers to the master branch, pinning Node.js to version 18.x across all setup-node steps, and cleaning up formatting and commented version entries.
CI:

Limit workflow triggers to the master branch only
Pin Node.js setup in all jobs to version 18.x, removing 20.x and 22.x entries
Remove redundant commented Node.js version lines and extra blank lines
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* chore(deps): bump js-yaml in the npm_and_yarn group across 1 directory (#77)

Bumps the npm_and_yarn group with 1 update in the / directory: [js-yaml](https://github.com/nodeca/js-yaml).


Updates `js-yaml` from 3.14.1 to 3.14.2
- [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nodeca/js-yaml/compare/3.14.1...3.14.2)

---
updated-dependencies:
- dependency-name: js-yaml
  dependency-version: 3.14.2
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Create spotty-weeks-sit.md (#80)

Chores:
Create a spotty-weeks-sit changeset specifying a patch release for fnm
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create lazy-snails-return.md (#81)

* Create lazy-snails-return.md
Chores:
Create a new .changeset file to bump the patch version for fnm with a note about fixing the release-to-cargo.yml configuration.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/lazy-snails-return.md
Highlights
Changeset Addition: A new changeset file, lazy-snails-return.md, has been added. This file documents a fix related to the release-to-cargo.yml configuration.
Configuration Fix: The changeset entry specifically notes an update to the release-to-cargo.yml configuration, setting its base to br master.
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Dargon789 patch 2 (#82)

* chore(deps): update actions/setup-node action to v4

* Create weak-moose-love.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/weak-moose-love.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create config.yml (#64)

CI:
Introduce .circleci/config.yml defining a 'say-hello' job and corresponding workflow

https://github.com/apps/gemini-code-assist
Highlights
New CircleCI Configuration: A new .circleci/config.yml file has been added to the repository, establishing a continuous integration setup.
Basic 'Hello, World!' Job: The initial configuration includes a simple job named say-hello that uses the cimg/base:current Docker image to print 'Hello, World!'.
Workflow Definition: A workflow named say-hello-workflow has been defined to orchestrate and run the say-hello job.
Code Review
This pull request introduces a basic CircleCI configuration file. The initial setup is a good starting point. I have provided a couple of suggestions to improve it for better maintainability and reproducibility. My main feedback is to pin the Docker image version to a specific tag instead of using current to ensure consistent builds. I've also pointed out a minor formatting issue with a trailing empty line.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create olive-waves-punch.md (#79)

Chores:
Add a…
Dargon789 added a commit that referenced this pull request Jan 31, 2026
* Adjust install script for POSIX compliance

* Create temporary directory when mktemp is unavailable

* Use "dot" instead of `source` builtin when shell is not fish

* Inform the user where fnm is being installed

* chore(deps): update rust crate indoc to v2.0.7

* Add changeset for updating indoc crate to v2.0.7 (#101)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* # 1.39.0 (#128)

* Version Packages

* add hooks mechanism for pre, post and failed install

* 1462 (#103)

* Adjust install script for POSIX compliance

* Create temporary directory when mktemp is unavailable

* Use "dot" instead of `source` builtin when shell is not fish

* Inform the user where fnm is being installed

* chore(deps): update rust crate indoc to v2.0.7

* Add changeset for updating indoc crate to v2.0.7 (#101)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Ricardo Biehl Pasquali <ricardo@pasqua.li>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* Update README.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .github/ISSUE_TEMPLATE/bug_report.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .github/ISSUE_TEMPLATE/bug_report.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* chore(deps): bump lodash in the npm_and_yarn group across 1 directory (#100)

Bumps the npm_and_yarn group with 1 update in the / directory: [lodash](https://github.com/lodash/lodash).


Updates `lodash` from 4.17.21 to 4.17.23
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](https://github.com/lodash/lodash/compare/4.17.21...4.17.23)

---
updated-dependencies:
- dependency-name: lodash
  dependency-version: 4.17.23
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* [Snyk] Upgrade @changesets/cli from 2.29.1 to 2.29.2 (#20)

* update devDependencies

* recovery version corepack

pnpm@8.15.8

* Circleci project setup (#4)

* Add .circleci/config.yml

* Add .circleci/config.yml

* Add .circleci/config.yml

* Bump ring from 0.17.8 to 0.17.13 in the cargo group across 1 directory (#3)

Bumps the cargo group with 1 update in the / directory: [ring](https://github.com/briansmith/ring).


Updates `ring` from 0.17.8 to 0.17.13
- [Changelog](https://github.com/briansmith/ring/blob/main/RELEASES.md)
- [Commits](https://github.com/briansmith/ring/commits)

---
updated-dependencies:
- dependency-name: ring
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Bump dawidd6/action-download-artifact (#2)

Bumps the github_actions group with 1 update in the /.github/workflows directory: [dawidd6/action-download-artifact](https://github.com/dawidd6/action-download-artifact).


Updates `dawidd6/action-download-artifact` from 2 to 6
- [Release notes](https://github.com/dawidd6/action-download-artifact/releases)
- [Commits](https://github.com/dawidd6/action-download-artifact/compare/v2...v6)

---
updated-dependencies:
- dependency-name: dawidd6/action-download-artifact
  dependency-type: direct:production
  dependency-group: github_actions
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Create SECURITY.md (#1)

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Revert "Bump dawidd6/action-download-artifact (#2)" (#5)

This reverts commit b454d73a9022373d51a80f5a33813c58e4dff91d.

* Bump tokio from 1.37.0 to 1.42.0 in the cargo group across 1 directory

Bumps the cargo group with 1 update in the / directory: [tokio](https://github.com/tokio-rs/tokio).


Updates `tokio` from 1.37.0 to 1.42.0
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.37.0...tokio-1.42.0)

---
updated-dependencies:
- dependency-name: tokio
  dependency-version: 1.42.0
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump tokio from 1.42.0 to 1.42.1 in the cargo group across 1 directory (#8)

Bumps the cargo group with 1 update in the / directory: [tokio](https://github.com/tokio-rs/tokio).


Updates `tokio` from 1.42.0 to 1.42.1
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.42.0...tokio-1.42.1)

---
updated-dependencies:
- dependency-name: tokio
  dependency-version: 1.42.1
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump dawidd6/action-download-artifact (#7)

Bumps the github_actions group with 1 update in the /.github/workflows directory: [dawidd6/action-download-artifact](https://github.com/dawidd6/action-download-artifact).


Updates `dawidd6/action-download-artifact` from 2 to 6
- [Release notes](https://github.com/dawidd6/action-download-artifact/releases)
- [Commits](https://github.com/dawidd6/action-download-artifact/compare/v2...v6)

---
updated-dependencies:
- dependency-name: dawidd6/action-download-artifact
  dependency-version: '6'
  dependency-type: direct:production
  dependency-group: github_actions
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* feat: upgrade which from 3.0.1 to 5.0.0 (#17)

Snyk has created this PR to upgrade which from 3.0.1 to 5.0.0.

See this package in npm:
which

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* fix: upgrade @changesets/cli from 2.27.5 to 2.28.1 (#16)

Snyk has created this PR to upgrade @changesets/cli from 2.27.5 to 2.28.1.

See this package in npm:
@changesets/cli

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* fix: upgrade prettier from 3.3.0 to 3.5.3 (#15)

Snyk has created this PR to upgrade prettier from 3.3.0 to 3.5.3.

See this package in npm:
prettier

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* feat: upgrade execa from 7.2.0 to 9.5.2 (#14)

Snyk has created this PR to upgrade execa from 7.2.0 to 9.5.2.

See this package in npm:
execa

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* feat: upgrade @types/node from 18.19.87 to 22.14.0 (#13)

Snyk has created this PR to upgrade @types/node from 18.19.87 to 22.14.0.

See this package in npm:
@types/node

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* fix: upgrade @changesets/cli from 2.28.1 to 2.29.1 (#19)

Snyk has created this PR to upgrade @changesets/cli from 2.28.1 to 2.29.1.

See this package in npm:
@changesets/cli

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* fix: upgrade @changesets/cli from 2.29.1 to 2.29.2

Snyk has created this PR to upgrade @changesets/cli from 2.29.1 to 2.29.2.

See this package in npm:
@changesets/cli

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Legion's <apichanmittare@gmail.com>
Co-authored-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: snyk-bot <snyk-bot@snyk.io>
Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* Add changeset sixty-rice-do.md for patch 1 (#105)  (#107)

* Update Cargo.toml (#98)  (#104)

* chore(deps): bump the cargo group across 1 directory with 4 updates

Bumps the cargo group with 4 updates in the / directory: [hashbrown](https://github.com/rust-lang/hashbrown), [ring](https://github.com/briansmith/ring), [rustls](https://github.com/rustls/rustls) and [tokio](https://github.com/tokio-rs/tokio).


Updates `hashbrown` from 0.15.0 to 0.15.3
- [Release notes](https://github.com/rust-lang/hashbrown/releases)
- [Changelog](https://github.com/rust-lang/hashbrown/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-lang/hashbrown/compare/v0.15.0...v0.15.3)

Updates `ring` from 0.17.8 to 0.17.14
- [Changelog](https://github.com/briansmith/ring/blob/main/RELEASES.md)
- [Commits](https://github.com/briansmith/ring/commits)

Updates `rustls` from 0.23.16 to 0.23.23
- [Release notes](https://github.com/rustls/rustls/releases)
- [Changelog](https://github.com/rustls/rustls/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rustls/rustls/compare/v/0.23.16...v/0.23.23)

Updates `tokio` from 1.41.0 to 1.42.1
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.41.0...tokio-1.42.1)

---
updated-dependencies:
- dependency-name: hashbrown
  dependency-version: 0.15.3
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: ring
  dependency-version: 0.17.14
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: rustls
  dependency-version: 0.23.23
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: tokio
  dependency-version: 1.42.1
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>

* chore(deps): bump the npm_and_yarn group across 1 directory with 2 updates

Bumps the npm_and_yarn group with 2 updates in the / directory: [@babel/helpers](https://github.com/babel/babel/tree/HEAD/packages/babel-helpers) and [@babel/runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-runtime).


Updates `@babel/helpers` from 7.26.0 to 7.27.4
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.27.4/packages/babel-helpers)

Updates `@babel/runtime` from 7.26.0 to 7.27.4
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.27.4/packages/babel-runtime)

---
updated-dependencies:
- dependency-name: "@babel/helpers"
  dependency-version: 7.27.4
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: "@babel/runtime"
  dependency-version: 7.27.4
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>

* Potential fix for code scanning alert no. 3: Server-side request forgery

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 19: Workflow does not contain permissions

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* fix: package.json to reduce vulnerabilities (#27)

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-INFLIGHT-6095116

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* chore(deps): bump brace-expansion

Bumps the npm_and_yarn group with 1 update in the / directory: [brace-expansion](https://github.com/juliangruber/brace-expansion).


Updates `brace-expansion` from 1.1.11 to 1.1.12
- [Release notes](https://github.com/juliangruber/brace-expansion/releases)
- [Commits](https://github.com/juliangruber/brace-expansion/compare/1.1.11...v1.1.12)

---
updated-dependencies:
- dependency-name: brace-expansion
  dependency-version: 1.1.12
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>

* Create config.yml (#34)

* feat: upgrade zod from 3.25.76 to 4.0.0 (#33)

Snyk has created this PR to upgrade zod from 3.25.76 to 4.0.0.

See this package in npm:
zod

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* feat: upgrade @types/jest from 29.5.14 to 30.0.0 (#32)

Snyk has created this PR to upgrade @types/jest from 29.5.14 to 30.0.0.

See this package in npm:
@types/jest

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* fix: upgrade prettier from 3.5.1 to 3.5.3 (#25)

Snyk has created this PR to upgrade prettier from 3.5.1 to 3.5.3.

See this package in npm:
prettier

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* feat: upgrade cross-env from 7.0.3 to 10.0.0 (#39)

Snyk has created this PR to upgrade cross-env from 7.0.3 to 10.0.0.

See this package in npm:
cross-env

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* fix: upgrade prettier from 3.5.3 to 3.6.2 (#38)

Snyk has created this PR to upgrade prettier from 3.5.3 to 3.6.2.

See this package in npm:
prettier

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* feat: upgrade @types/node from 18.19.123 to 24.1.0 (#36)

Snyk has created this PR to upgrade @types/node from 18.19.123 to 24.1.0.

See this package in npm:
@types/node

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* fix: package.json to reduce vulnerabilities (#35)

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-TMP-11501554

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* Create label.yml (#40)

* Create label.yml

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 30: Workflow does not contain permissions

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>

* Update release.yml (#41)

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* chore(deps): bump tracing-subscriber from 0.3.18 to 0.3.20 in the cargo group across 1 directory (#42)

* chore(deps): bump tracing-subscriber

Bumps the cargo group with 1 update in the / directory: [tracing-subscriber](https://github.com/tokio-rs/tracing).


Updates `tracing-subscriber` from 0.3.18 to 0.3.20
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.18...tracing-subscriber-0.3.20)

---
updated-dependencies:
- dependency-name: tracing-subscriber
  dependency-version: 0.3.20
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update rust.yml (#43)

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* [Snyk] Upgrade @changesets/cli from 2.29.6 to 2.29.7 (#46)

* fix: upgrade @changesets/cli from 2.29.6 to 2.29.7

Snyk has created this PR to upgrade @changesets/cli from 2.29.6 to 2.29.7.

See this package in npm:
@changesets/cli

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

* Update package.json

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: snyk-bot <snyk-bot@snyk.io>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* fix: upgrade cmd-ts from 0.13.0 to 0.14.1 (#45)

Snyk has created this PR to upgrade cmd-ts from 0.13.0 to 0.14.1.

See this package in npm:
cmd-ts

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* feat: upgrade p-retry from 6.2.1 to 7.0.0 (#44)

Snyk has created this PR to upgrade p-retry from 6.2.1 to 7.0.0.

See this package in npm:
p-retry

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* chore(deps): bump zip in the cargo group across 1 directory (#47)

Bumps the cargo group with 1 update in the / directory: [zip](https://github.com/zip-rs/zip2).


Updates `zip` from 2.2.0 to 6.0.0
- [Release notes](https://github.com/zip-rs/zip2/releases)
- [Changelog](https://github.com/zip-rs/zip2/blob/master/CHANGELOG.md)
- [Commits](https://github.com/zip-rs/zip2/compare/v2.2.0...v6.0.0)

---
updated-dependencies:
- dependency-name: zip
  dependency-version: 6.0.0
  dependency-type: direct:production
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update release-to-cargo.yml (#55)

CI:

Modify the Publish to crates.io step to use cargo publish --dry-run
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create angry-moose-hug.md (#56)

* Create angry-moose-hug.md

Add a changeset for fnm to patch-release the package and update the release-to-cargo workflow configuration to use the master branch

Bug Fixes:

Update release-to-cargo.yml config to use the master branch
Chores:

Add angry-moose-hug changeset to bump fnm patch version

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/angry-moose-hug.md

New Changeset File: A new changeset file, "angry-moose-hug.md", has been added to the ".changeset" directory, indicating a recorded change for release management.
Release Configuration Update: The changeset documents a "patch" type change for "fnm", specifically a fix to update the "release-to-cargo.yml" configuration to use "base:br master".

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Create funny-falcons-breathe.md (#57)

* Create funny-falcons-breathe.md
Bug Fixes:

Update release-to-cargo.yml workflow config to use master as the base branch for fnm
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/funny-falcons-breathe.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update release.yml (#59)

Streamline the release workflow by restricting triggers to master and main branches and pin Node.js to version 22.

CI:

Remove the 'dev' branch from the release workflow triggers
Pin Node.js version to 22 in the release job
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci.yml (#60)

Add CircleCI pipeline to build, test, and format-check the Rust project with caching for dependencies

CI:

Introduce a CircleCI config (.circleci/ci.yml) using cimg/rust:1.89.0
Run cargo fmt -- --check and cargo test in a single build-and-test job
Cache Cargo dependencies and build artifacts between builds
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci-say-hello.yml (#61)

CI:

Add .circleci/ci-say-hello.yml with a say-hello job using cimg/base:current and a workflow to run it
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci-foundry.yml (#62)

Add .circleci/ci-foundry.yml to scaffold a new CircleCI pipeline with a custom Docker executor, a CI job, and a workflow.

CI:

Add initial CircleCI pipeline configuration using version 2.1
Define custom executor with Docker image and Docker Hub credentials
Introduce job 'web3-defi-game-project-' with checkout and placeholder run step
Add workflow 'my-custom-workflow' to orchestrate the CI job
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update config.yml (#66)

Restructure the CircleCI configuration by removing the custom executor, adding a sample say-hello job and workflow, and enhancing the file with explanatory comments
CI:
Remove custom executor and replace it with a basic say-hello job using the cimg/base:current Docker image
Introduce a say-hello-workflow to orchestrate the new job
Documentation:

Add inline comments to guide configuration of executors, jobs, steps, and workflows in the CI file
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create SECURITY.md (#67)

* Create SECURITY.md

Add a SECURITY.md file to establish the project's security policy, detail supported versions, and outline the vulnerability reporting process.

Documentation:

Introduce SECURITY.md with a security policy and supported versions table
Include guidelines for reporting vulnerabilities and expected response procedures
Signed-off-by: Dargon789 <64915515+Dargon789@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 <64915515+Dargon789@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 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Dargon789 patch 2 (#65)

* chore(deps): update actions/setup-node action to v4

* Create weak-moose-love.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/weak-moose-love.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create config.yml (#64)

CI:
Introduce .circleci/config.yml defining a 'say-hello' job and corresponding workflow

https://github.com/apps/gemini-code-assist
Highlights
New CircleCI Configuration: A new .circleci/config.yml file has been added to the repository, establishing a continuous integration setup.
Basic 'Hello, World!' Job: The initial configuration includes a simple job named say-hello that uses the cimg/base:current Docker image to print 'Hello, World!'.
Workflow Definition: A workflow named say-hello-workflow has been defined to orchestrate and run the say-hello job.
Code Review
This pull request introduces a basic CircleCI configuration file. The initial setup is a good starting point. I have provided a couple of suggestions to improve it for better maintainability and reproducibility. My main feedback is to pin the Docker image version to a specific tag instead of using current to ensure consistent builds. I've also pointed out a minor formatting issue with a trailing empty line.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Delete .circleci/ci-say-hello.yml (#69)

CI:
Delete .circleci/ci-say-hello.yml to clean up unused CI pipeline
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update ci.yml (#70)

CI:
Use cimg/rust:1.88.0 instead of cimg/rust:1.89.0 in the CI configuration
https://github.com/apps/gemini-code-assist
Code Review
This pull request updates the CircleCI configuration to use Rust version 1.88.0, aligning it with the rust-toolchain.toml file. This is a good correction. I have provided one suggestion to use a more flexible image tag to better match the behavior of rustup with the toolchain file, which will improve the long-term maintainability of the CI setup.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update release-to-cargo.yml

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update release-to-cargo.yml (#72)

Switch the GitHub Action for releasing to crates.io from a dry run to a real publish and clean up unused permissions settings.
CI:
Remove redundant permissions block from the release-to-cargo workflow
Replace dry-run with actual cargo publish command
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update grumpy-dingos-turn.md (#73)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update release.yml (#74)

* Update release.yml

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .github/workflows/release.yml

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>

* Update rust.yml (#75)

CI:
Remove 'dev' branch from rust.yml workflow triggers
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create docker.yml (#76)

Add a new GitHub Actions workflow (docker.yml) to automate building, pushing, and signing Docker images via Buildx, metadata extraction, and cosign integration

New Features:

Introduce a Docker CI workflow triggered on schedule, push to master, and semantic version tags, as well as on pull requests
Build and push multi-platform Docker images to GHCR using Buildx with dynamic tagging
Integrate cosign to sign published Docker images using Sigstore identity tokens
Enhancements:

Set up Docker metadata action for tag and label generation
Enable caching strategies for faster builds using GitHub Actions
CI:

Add .github/workflows/docker.yml to define the Docker build and publish pipeline
Chores:

Configure environment variables for registry (GHCR) and image naming based on the repository
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create CNAME

* Update rust.yml (#78)

Refine the GitHub Actions rust.yml workflow by restricting triggers to the master branch, pinning Node.js to version 18.x across all setup-node steps, and cleaning up formatting and commented version entries.
CI:

Limit workflow triggers to the master branch only
Pin Node.js setup in all jobs to version 18.x, removing 20.x and 22.x entries
Remove redundant commented Node.js version lines and extra blank lines
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* chore(deps): bump js-yaml in the npm_and_yarn group across 1 directory (#77)

Bumps the npm_and_yarn group with 1 update in the / directory: [js-yaml](https://github.com/nodeca/js-yaml).


Updates `js-yaml` from 3.14.1 to 3.14.2
- [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nodeca/js-yaml/compare/3.14.1...3.14.2)

---
updated-dependencies:
- dependency-name: js-yaml
  dependency-version: 3.14.2
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Create lazy-snails-return.md (#81)

* Create lazy-snails-return.md
Chores:
Create a new .changeset file to bump the patch version for fnm with a note about fixing the release-to-cargo.yml configuration.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/lazy-snails-return.md
Highlights
Changeset Addition: A new changeset file, lazy-snails-return.md, has been added. This file documents a fix related to the release-to-cargo.yml configuration.
Configuration Fix: The changeset entry specifically notes an update to the release-to-cargo.yml configuration, setting its base to br master.
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Dargon789 patch 2 (#82)

* chore(deps): update actions/setup-node action to v4

* Create weak-moose-love.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/weak-moose-love.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create config.yml (#64)

CI:
Introduce .circleci/config.yml defining a 'say-hello' job and corresponding workflow

https://github.com/apps/gemini-code-assist
Highlights
New CircleCI Configuration: A new .circleci/config.yml file has been added to the repository, establishing a continuous integration setup.
Basic 'Hello, World!' Job: The initial configuration includes a simple job named say-hello that uses the cimg/base:current Docker image to print 'Hello, World!'.
Workflow Definition: A workflow named say-hello-workflow has been defined to orchestrate and run the say-hello job.
Code Review
This pull request introduces a basic CircleCI configuration file. The initial setup is a good starting point. I have provided a couple of suggestions to improve it for better maintainability and reproducibility. My main feedback is to pin the Docker image version to a specific tag instead of using current to ensure consistent builds. I've also pointed out a minor formatting issue with a trailing empty line.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create olive-waves-punch.md (#79)

Chores:
Add a new changeset file for fnm patch release
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update index.mjs (#86)

Code Formatting: Removed an unnecessary blank line in tests/proxy-server/index.mjs to improve code consistency.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create google.yml (#87)

Add a GitHub Actions workflow to build and deploy the application to Google Kubernetes Engine via Google Cloud.
Build:
Introduce a Google Cloud–oriented workflow that builds a Docker image and pushes it to Artifact Registry on pushes to the main branch.
CI:
Add a GitHub Actions pipeline that authenticates with Google Cloud using Workload Identity Federation and runs container build and deployment steps.
Deployment:
Automate deploying the built Docker image to a GKE cluster using kustomize and kubectl.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci-hardhat.yml (#89)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create npm.yml (#91)

* Create npm.yml

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 31: Artifact poisoning

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>

* Update package.json (#93)

* Update package.json

https://github.com/Dargon789/uniswap.app/commit/011f260c7cc540f9bc9b336e0108f10d6f00401f

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update package.json

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update README.md (#94)

* Update README.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@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>

* Delete .kodiak.toml (#96)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create orb.yml (#97)

https://github.com/Dargon789/circleci-docs/commit/cd854b03e8aa7204da46e1da518ff6d80526a7b3

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update Cargo.toml (#98)

* Update Cargo.toml

https://github.com/Dargon789/foundry/commit/fcfa587cbfce70b8eb32ac87207cd8a2e2c4f726

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update Cargo.toml

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update label.yml (#99)

CI:

Adjust GitHub Actions label workflow triggers to use the 'main' branch for push events while keeping pull request triggers on 'master'.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* fix(deps): update all non-major dependencies

* Add build artifacts and fnm.exe to repository

This commit adds the .fnm/fnm.exe binary and various Rust build artifacts under target-wsl/, including .rustc_info.json, CACHEDIR.TAG, and debug fingerprints for dependencies. These files appear to be generated as part of a Rust build process, possibly for debugging or distribution purposes.

* Update issue templates (#102)

* 1462 (#103)

* Adjust install script for POSIX compliance

* Create temporary directory when mktemp is unavailable

* Use "dot" instead of `source` builtin when shell is not fish

* Inform the user where fnm is being installed

* chore(deps): update rust crate indoc to v2.0.7

* Add changeset for updating indoc crate to v2.0.7 (#101)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Ricardo Biehl Pasquali <ricardo@pasqua.li>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* Update README.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .github/ISSUE_TEMPLATE/bug_report.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .github/ISSUE_TEMPLATE/bug_report.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Co-authored-by: snyk-bot <snyk-bot@snyk.io>
Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Co-authored-by: Ricardo Biehl Pasquali <ricardo@pasqua.li>

* Add changeset  sixty-rice-do.md for patch 1 (#105)

 sixty-rice-do.md
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update Cargo.toml

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update Cargo.toml

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@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 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Co-authored-by: snyk-bot <snyk-bot@snyk.io>
Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Co-authored-by: Ricardo Biehl Pasquali <ricardo@pasqua.li>

* Update Rust toolchain version to 1.89 (#108)

https://github.com/Dargon789/foundry/commit/c0d08b1943203e4b3bc3fe31805f49ddca6173f0

*Adjust test runner configuration for nextest to better handle long-running and specific tests.

Enhancements:

Introduce a dedicated test group that limits chisel-serial tests to a single thread.
Increase the default slow-test timeout period to reduce premature terminations for longer-running tests.
Expand the slow-timeout override filter to include both ext_integration and can_test_forge_std tests.

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update redirect destination in vercel.json (#109)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Release update version 1.39.0 (#110)

Release version 1.39.0 with updated changelog and supporting metadata.

New Features:

Add a use flag to the install command to control activating installed versions.
Enhancements:

Update fnm default so calling it without arguments returns the current default version.
Build:

Bump the Rust toolchain to version 1.88 and update package metadata for the 1.39.0 release.
Chores:

Remove obsolete changeset files and refresh generated assets and lockfiles for the new release.
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* Downgrade pnpm/action-setup version to v4.0.0 (#111)

chore(deps): update rust crate chrono to v0.4.43 #3244  https://github.com/Schniz/fnm/commit/00a76adef9d88188b6c05b0bf7780d6537b6f0d9 [![Rust](https://github.com/Schniz/fnm/actions/workflows/rust.yml/badge.svg)](https://github.com/Schniz/fnm/actions/workflows/rust.yml)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Revert "Downgrade pnpm/action-setup version to v4.0.0 (#111)" (#112)

This reverts commit 0c9c155703736cb37a0758839deb2dcd8b6c39e2.

* Version Packages (#114)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* Remove 'main' branch from release workflow triggers (#115)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Revert "Remove 'main' branch from release workflow triggers (#115)" (#118)

This reverts commit 21b6cc151cac241175b2cbd2a640ac05104add6a.

* Create silly-comics-jump.md (#119)

Chores:
Add changeset metadata file to document a patch-level change for fnm.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Patch 1 (#121)

* Make install.sh tee instead of echoing twice

Also, fish bit was the only one that didn't print a newline to
$CONF_FILE, now they're all the same.

* Check if fnm is installed before shell setup

Change $CONF_FILE append strings to check whether $INSTALL_DIR exists
before doing any setup. This way whenever a user syncs their shell
config across machines, the machines without fnm installed won't throw
errors.

* Create smooth-lions-sneeze.md

* add hooks mechanism for pre, post and failed install

* feat: upgrade cross-env from 7.0.3 to 10.0.0 (#39)

Snyk has created this PR to upgrade cross-env from 7.0.3 to 10.0.0.

See this package in npm:
cross-env

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* fix: upgrade prettier from 3.5.3 to 3.6.2 (#38)

Snyk has created this PR to upgrade prettier from 3.5.3 to 3.6.2.

See this package in npm:
prettier

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* feat: upgrade @types/node from 18.19.123 to 24.1.0 (#36)

Snyk has created this PR to upgrade @types/node from 18.19.123 to 24.1.0.

See this package in npm:
@types/node

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* fix: package.json to reduce vulnerabilities (#35)

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-TMP-11501554

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* Create label.yml (#40)

* Create label.yml

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 30: Workflow does not contain permissions

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>

* Update release.yml (#41)

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* chore(deps): bump tracing-subscriber from 0.3.18 to 0.3.20 in the cargo group across 1 directory (#42)

* chore(deps): bump tracing-subscriber

Bumps the cargo group with 1 update in the / directory: [tracing-subscriber](https://github.com/tokio-rs/tracing).


Updates `tracing-subscriber` from 0.3.18 to 0.3.20
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.18...tracing-subscriber-0.3.20)

---
updated-dependencies:
- dependency-name: tracing-subscriber
  dependency-version: 0.3.20
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update rust.yml (#43)

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Adjust install script for POSIX compliance

* Create temporary directory when mktemp is unavailable

* Use "dot" instead of `source` builtin when shell is not fish

* Inform the user where fnm is being installed

* [Snyk] Upgrade @changesets/cli from 2.29.6 to 2.29.7 (#46)

* fix: upgrade @changesets/cli from 2.29.6 to 2.29.7

Snyk has created this PR to upgrade @changesets/cli from 2.29.6 to 2.29.7.

See this package in npm:
@changesets/cli

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

* Update package.json

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: snyk-bot <snyk-bot@snyk.io>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* fix: upgrade cmd-ts from 0.13.0 to 0.14.1 (#45)

Snyk has created this PR to upgrade cmd-ts from 0.13.0 to 0.14.1.

See this package in npm:
cmd-ts

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* feat: upgrade p-retry from 6.2.1 to 7.0.0 (#44)

Snyk has created this PR to upgrade p-retry from 6.2.1 to 7.0.0.

See this package in npm:
p-retry

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* chore(deps): bump zip in the cargo group across 1 directory (#47)

Bumps the cargo group with 1 update in the / directory: [zip](https://github.com/zip-rs/zip2).


Updates `zip` from 2.2.0 to 6.0.0
- [Release notes](https://github.com/zip-rs/zip2/releases)
- [Changelog](https://github.com/zip-rs/zip2/blob/master/CHANGELOG.md)
- [Commits](https://github.com/zip-rs/zip2/compare/v2.2.0...v6.0.0)

---
updated-dependencies:
- dependency-name: zip
  dependency-version: 6.0.0
  dependency-type: direct:production
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Create smart-avocados-try.md (#48)

* Create smart-avocados-try.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/smart-avocados-try.md
New Changeset File: A new changeset file, smart-avocados-try.md, has been added to the .changeset directory. This file is used to record a specific change for future release notes or changelog generation.
Patch Metadata: The newly added changeset file includes front matter metadata specifying "fnm": "patch", indicating the type of change being recorded.
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update release-to-cargo.yml (#55)

CI:

Modify the Publish to crates.io step to use cargo publish --dry-run
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create angry-moose-hug.md (#56)

* Create angry-moose-hug.md

Add a changeset for fnm to patch-release the package and update the release-to-cargo workflow configuration to use the master branch

Bug Fixes:

Update release-to-cargo.yml config to use the master branch
Chores:

Add angry-moose-hug changeset to bump fnm patch version

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/angry-moose-hug.md

New Changeset File: A new changeset file, "angry-moose-hug.md", has been added to the ".changeset" directory, indicating a recorded change for release management.
Release Configuration Update: The changeset documents a "patch" type change for "fnm", specifically a fix to update the "release-to-cargo.yml" configuration to use "base:br master".

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Create funny-falcons-breathe.md (#57)

* Create funny-falcons-breathe.md
Bug Fixes:

Update release-to-cargo.yml workflow config to use master as the base branch for fnm
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/funny-falcons-breathe.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update release.yml (#59)

Streamline the release workflow by restricting triggers to master and main branches and pin Node.js to version 22.

CI:

Remove the 'dev' branch from the release workflow triggers
Pin Node.js version to 22 in the release job
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci.yml (#60)

Add CircleCI pipeline to build, test, and format-check the Rust project with caching for dependencies

CI:

Introduce a CircleCI config (.circleci/ci.yml) using cimg/rust:1.89.0
Run cargo fmt -- --check and cargo test in a single build-and-test job
Cache Cargo dependencies and build artifacts between builds
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci-say-hello.yml (#61)

CI:

Add .circleci/ci-say-hello.yml with a say-hello job using cimg/base:current and a workflow to run it
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci-foundry.yml (#62)

Add .circleci/ci-foundry.yml to scaffold a new CircleCI pipeline with a custom Docker executor, a CI job, and a workflow.

CI:

Add initial CircleCI pipeline configuration using version 2.1
Define custom executor with Docker image and Docker Hub credentials
Introduce job 'web3-defi-game-project-' with checkout and placeholder run step
Add workflow 'my-custom-workflow' to orchestrate the CI job
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update config.yml (#66)

Restructure the CircleCI configuration by removing the custom executor, adding a sample say-hello job and workflow, and enhancing the file with explanatory comments
CI:
Remove custom executor and replace it with a basic say-hello job using the cimg/base:current Docker image
Introduce a say-hello-workflow to orchestrate the new job
Documentation:

Add inline comments to guide configuration of executors, jobs, steps, and workflows in the CI file
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create SECURITY.md (#67)

* Create SECURITY.md

Add a SECURITY.md file to establish the project's security policy, detail supported versions, and outline the vulnerability reporting process.

Documentation:

Introduce SECURITY.md with a security policy and supported versions table
Include guidelines for reporting vulnerabilities and expected response procedures
Signed-off-by: Dargon789 <64915515+Dargon789@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 <64915515+Dargon789@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 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Dargon789 patch 2 (#65)

* chore(deps): update actions/setup-node action to v4

* Create weak-moose-love.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/weak-moose-love.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create config.yml (#64)

CI:
Introduce .circleci/config.yml defining a 'say-hello' job and corresponding workflow

https://github.com/apps/gemini-code-assist
Highlights
New CircleCI Configuration: A new .circleci/config.yml file has been added to the repository, establishing a continuous integration setup.
Basic 'Hello, World!' Job: The initial configuration includes a simple job named say-hello that uses the cimg/base:current Docker image to print 'Hello, World!'.
Workflow Definition: A workflow named say-hello-workflow has been defined to orchestrate and run the say-hello job.
Code Review
This pull request introduces a basic CircleCI configuration file. The initial setup is a good starting point. I have provided a couple of suggestions to improve it for better maintainability and reproducibility. My main feedback is to pin the Docker image version to a specific tag instead of using current to ensure consistent builds. I've also pointed out a minor formatting issue with a trailing empty line.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Delete .circleci/ci-say-hello.yml (#69)

CI:
Delete .circleci/ci-say-hello.yml to clean up unused CI pipeline
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update ci.yml (#70)

CI:
Use cimg/rust:1.88.0 instead of cimg/rust:1.89.0 in the CI configuration
https://github.com/apps/gemini-code-assist
Code Review
This pull request updates the CircleCI configuration to use Rust version 1.88.0, aligning it with the rust-toolchain.toml file. This is a good correction. I have provided one suggestion to use a more flexible image tag to better match the behavior of rustup with the toolchain file, which will improve the long-term maintainability of the CI setup.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update release-to-cargo.yml

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update release-to-cargo.yml (#72)

Switch the GitHub Action for releasing to crates.io from a dry run to a real publish and clean up unused permissions settings.
CI:
Remove redundant permissions block from the release-to-cargo workflow
Replace dry-run with actual cargo publish command
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update grumpy-dingos-turn.md (#73)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update release.yml (#74)

* Update release.yml

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .github/workflows/release.yml

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>

* Update rust.yml (#75)

CI:
Remove 'dev' branch from rust.yml workflow triggers
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create docker.yml (#76)

Add a new GitHub Actions workflow (docker.yml) to automate building, pushing, and signing Docker images via Buildx, metadata extraction, and cosign integration

New Features:

Introduce a Docker CI workflow triggered on schedule, push to master, and semantic version tags, as well as on pull requests
Build and push multi-platform Docker images to GHCR using Buildx with dynamic tagging
Integrate cosign to sign published Docker images using Sigstore identity tokens
Enhancements:

Set up Docker metadata action for tag and label generation
Enable caching strategies for faster builds using GitHub Actions
CI:

Add .github/workflows/docker.yml to define the Docker build and publish pipeline
Chores:

Configure environment variables for registry (GHCR) and image naming based on the repository
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create CNAME

* Update rust.yml (#78)

Refine the GitHub Actions rust.yml workflow by restricting triggers to the master branch, pinning Node.js to version 18.x across all setup-node steps, and cleaning up formatting and commented version entries.
CI:

Limit workflow triggers to the master branch only
Pin Node.js setup in all jobs to version 18.x, removing 20.x and 22.x entries
Remove redundant commented Node.js version lines and extra blank lines
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* chore(deps): bump js-yaml in the npm_and_yarn group across 1 directory (#77)

Bumps the npm_and_yarn group with 1 update in the / directory: [js-yaml](https://github.com/nodeca/js-yaml).


Updates `js-yaml` from 3.14.1 to 3.14.2
- [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nodeca/js-yaml/compare/3.14.1...3.14.2)

---
updated-dependencies:
- dependency-name: js-yaml
  dependency-version: 3.14.2
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Create spotty-weeks-sit.md (#80)

Chores:
Create a spotty-weeks-sit changeset specifying a patch release for fnm
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create lazy-snails-return.md (#81)

* Create lazy-snails-return.md
Chores:
Create a new .changeset file to bump the patch version for fnm with a note about fixing the release-to-cargo.yml configuration.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/lazy-snails-return.md
Highlights
Changeset Addition: A new changeset file, lazy-snails-return.md, has been added. This file documents a fix related to the release-to-cargo.yml configuration.
Configuration Fix: The changeset entry specifically notes an update to the release-to-cargo.yml configuration, setting its base to br master.
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Dargon789 patch 2 (#82)

* chore(deps): update actions/setup-node action to v4

* Create weak-moose-love.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/weak-moose-love.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create config.yml (#64)

CI:
Introduce .circleci/config.yml defining a 'say-hello' job and corresponding workflow

https://github.com/apps/gemini-code-assist
Highlights
New CircleCI Configuration: A new .circleci/config.yml file has been added to the repository, establishing a continuous integration setup.
Basic 'Hello, World!' Job: The initial configuration includes a simple job named say-hello that uses the cimg/base:current Docker image to print 'Hello, World!'.
Workflow Definition: A workflow named say-hello-workflow has been defined to orchestrate and run the say-hello job.
Code Review
This pull request introduces a basic CircleCI configuration file. The initial setup is a good starting point. I have provi…
Dargon789 added a commit that referenced this pull request Feb 9, 2026
* Version Packages

* Create silly-comics-jump.md (#119)

Chores:
Add changeset metadata file to document a patch-level change for fnm.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Patch 1 (#121)

* Make install.sh tee instead of echoing twice

Also, fish bit was the only one that didn't print a newline to
$CONF_FILE, now they're all the same.

* Check if fnm is installed before shell setup

Change $CONF_FILE append strings to check whether $INSTALL_DIR exists
before doing any setup. This way whenever a user syncs their shell
config across machines, the machines without fnm installed won't throw
errors.

* Create smooth-lions-sneeze.md

* add hooks mechanism for pre, post and failed install

* feat: upgrade cross-env from 7.0.3 to 10.0.0 (#39)

Snyk has created this PR to upgrade cross-env from 7.0.3 to 10.0.0.

See this package in npm:
cross-env

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* fix: upgrade prettier from 3.5.3 to 3.6.2 (#38)

Snyk has created this PR to upgrade prettier from 3.5.3 to 3.6.2.

See this package in npm:
prettier

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* feat: upgrade @types/node from 18.19.123 to 24.1.0 (#36)

Snyk has created this PR to upgrade @types/node from 18.19.123 to 24.1.0.

See this package in npm:
@types/node

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* fix: package.json to reduce vulnerabilities (#35)

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-TMP-11501554

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* Create label.yml (#40)

* Create label.yml

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 30: Workflow does not contain permissions

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>

* Update release.yml (#41)

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* chore(deps): bump tracing-subscriber from 0.3.18 to 0.3.20 in the cargo group across 1 directory (#42)

* chore(deps): bump tracing-subscriber

Bumps the cargo group with 1 update in the / directory: [tracing-subscriber](https://github.com/tokio-rs/tracing).


Updates `tracing-subscriber` from 0.3.18 to 0.3.20
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.18...tracing-subscriber-0.3.20)

---
updated-dependencies:
- dependency-name: tracing-subscriber
  dependency-version: 0.3.20
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update rust.yml (#43)

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Adjust install script for POSIX compliance

* Create temporary directory when mktemp is unavailable

* Use "dot" instead of `source` builtin when shell is not fish

* Inform the user where fnm is being installed

* [Snyk] Upgrade @changesets/cli from 2.29.6 to 2.29.7 (#46)

* fix: upgrade @changesets/cli from 2.29.6 to 2.29.7

Snyk has created this PR to upgrade @changesets/cli from 2.29.6 to 2.29.7.

See this package in npm:
@changesets/cli

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

* Update package.json

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: snyk-bot <snyk-bot@snyk.io>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* fix: upgrade cmd-ts from 0.13.0 to 0.14.1 (#45)

Snyk has created this PR to upgrade cmd-ts from 0.13.0 to 0.14.1.

See this package in npm:
cmd-ts

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* feat: upgrade p-retry from 6.2.1 to 7.0.0 (#44)

Snyk has created this PR to upgrade p-retry from 6.2.1 to 7.0.0.

See this package in npm:
p-retry

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* chore(deps): bump zip in the cargo group across 1 directory (#47)

Bumps the cargo group with 1 update in the / directory: [zip](https://github.com/zip-rs/zip2).


Updates `zip` from 2.2.0 to 6.0.0
- [Release notes](https://github.com/zip-rs/zip2/releases)
- [Changelog](https://github.com/zip-rs/zip2/blob/master/CHANGELOG.md)
- [Commits](https://github.com/zip-rs/zip2/compare/v2.2.0...v6.0.0)

---
updated-dependencies:
- dependency-name: zip
  dependency-version: 6.0.0
  dependency-type: direct:production
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Create smart-avocados-try.md (#48)

* Create smart-avocados-try.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/smart-avocados-try.md
New Changeset File: A new changeset file, smart-avocados-try.md, has been added to the .changeset directory. This file is used to record a specific change for future release notes or changelog generation.
Patch Metadata: The newly added changeset file includes front matter metadata specifying "fnm": "patch", indicating the type of change being recorded.
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update release-to-cargo.yml (#55)

CI:

Modify the Publish to crates.io step to use cargo publish --dry-run
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create angry-moose-hug.md (#56)

* Create angry-moose-hug.md

Add a changeset for fnm to patch-release the package and update the release-to-cargo workflow configuration to use the master branch

Bug Fixes:

Update release-to-cargo.yml config to use the master branch
Chores:

Add angry-moose-hug changeset to bump fnm patch version

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/angry-moose-hug.md

New Changeset File: A new changeset file, "angry-moose-hug.md", has been added to the ".changeset" directory, indicating a recorded change for release management.
Release Configuration Update: The changeset documents a "patch" type change for "fnm", specifically a fix to update the "release-to-cargo.yml" configuration to use "base:br master".

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Create funny-falcons-breathe.md (#57)

* Create funny-falcons-breathe.md
Bug Fixes:

Update release-to-cargo.yml workflow config to use master as the base branch for fnm
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/funny-falcons-breathe.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update release.yml (#59)

Streamline the release workflow by restricting triggers to master and main branches and pin Node.js to version 22.

CI:

Remove the 'dev' branch from the release workflow triggers
Pin Node.js version to 22 in the release job
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci.yml (#60)

Add CircleCI pipeline to build, test, and format-check the Rust project with caching for dependencies

CI:

Introduce a CircleCI config (.circleci/ci.yml) using cimg/rust:1.89.0
Run cargo fmt -- --check and cargo test in a single build-and-test job
Cache Cargo dependencies and build artifacts between builds
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci-say-hello.yml (#61)

CI:

Add .circleci/ci-say-hello.yml with a say-hello job using cimg/base:current and a workflow to run it
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci-foundry.yml (#62)

Add .circleci/ci-foundry.yml to scaffold a new CircleCI pipeline with a custom Docker executor, a CI job, and a workflow.

CI:

Add initial CircleCI pipeline configuration using version 2.1
Define custom executor with Docker image and Docker Hub credentials
Introduce job 'web3-defi-game-project-' with checkout and placeholder run step
Add workflow 'my-custom-workflow' to orchestrate the CI job
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update config.yml (#66)

Restructure the CircleCI configuration by removing the custom executor, adding a sample say-hello job and workflow, and enhancing the file with explanatory comments
CI:
Remove custom executor and replace it with a basic say-hello job using the cimg/base:current Docker image
Introduce a say-hello-workflow to orchestrate the new job
Documentation:

Add inline comments to guide configuration of executors, jobs, steps, and workflows in the CI file
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create SECURITY.md (#67)

* Create SECURITY.md

Add a SECURITY.md file to establish the project's security policy, detail supported versions, and outline the vulnerability reporting process.

Documentation:

Introduce SECURITY.md with a security policy and supported versions table
Include guidelines for reporting vulnerabilities and expected response procedures
Signed-off-by: Dargon789 <64915515+Dargon789@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 <64915515+Dargon789@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 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Dargon789 patch 2 (#65)

* chore(deps): update actions/setup-node action to v4

* Create weak-moose-love.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/weak-moose-love.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create config.yml (#64)

CI:
Introduce .circleci/config.yml defining a 'say-hello' job and corresponding workflow

https://github.com/apps/gemini-code-assist
Highlights
New CircleCI Configuration: A new .circleci/config.yml file has been added to the repository, establishing a continuous integration setup.
Basic 'Hello, World!' Job: The initial configuration includes a simple job named say-hello that uses the cimg/base:current Docker image to print 'Hello, World!'.
Workflow Definition: A workflow named say-hello-workflow has been defined to orchestrate and run the say-hello job.
Code Review
This pull request introduces a basic CircleCI configuration file. The initial setup is a good starting point. I have provided a couple of suggestions to improve it for better maintainability and reproducibility. My main feedback is to pin the Docker image version to a specific tag instead of using current to ensure consistent builds. I've also pointed out a minor formatting issue with a trailing empty line.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Delete .circleci/ci-say-hello.yml (#69)

CI:
Delete .circleci/ci-say-hello.yml to clean up unused CI pipeline
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update ci.yml (#70)

CI:
Use cimg/rust:1.88.0 instead of cimg/rust:1.89.0 in the CI configuration
https://github.com/apps/gemini-code-assist
Code Review
This pull request updates the CircleCI configuration to use Rust version 1.88.0, aligning it with the rust-toolchain.toml file. This is a good correction. I have provided one suggestion to use a more flexible image tag to better match the behavior of rustup with the toolchain file, which will improve the long-term maintainability of the CI setup.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update release-to-cargo.yml

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update release-to-cargo.yml (#72)

Switch the GitHub Action for releasing to crates.io from a dry run to a real publish and clean up unused permissions settings.
CI:
Remove redundant permissions block from the release-to-cargo workflow
Replace dry-run with actual cargo publish command
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update grumpy-dingos-turn.md (#73)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update release.yml (#74)

* Update release.yml

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .github/workflows/release.yml

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>

* Update rust.yml (#75)

CI:
Remove 'dev' branch from rust.yml workflow triggers
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create docker.yml (#76)

Add a new GitHub Actions workflow (docker.yml) to automate building, pushing, and signing Docker images via Buildx, metadata extraction, and cosign integration

New Features:

Introduce a Docker CI workflow triggered on schedule, push to master, and semantic version tags, as well as on pull requests
Build and push multi-platform Docker images to GHCR using Buildx with dynamic tagging
Integrate cosign to sign published Docker images using Sigstore identity tokens
Enhancements:

Set up Docker metadata action for tag and label generation
Enable caching strategies for faster builds using GitHub Actions
CI:

Add .github/workflows/docker.yml to define the Docker build and publish pipeline
Chores:

Configure environment variables for registry (GHCR) and image naming based on the repository
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create CNAME

* Update rust.yml (#78)

Refine the GitHub Actions rust.yml workflow by restricting triggers to the master branch, pinning Node.js to version 18.x across all setup-node steps, and cleaning up formatting and commented version entries.
CI:

Limit workflow triggers to the master branch only
Pin Node.js setup in all jobs to version 18.x, removing 20.x and 22.x entries
Remove redundant commented Node.js version lines and extra blank lines
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* chore(deps): bump js-yaml in the npm_and_yarn group across 1 directory (#77)

Bumps the npm_and_yarn group with 1 update in the / directory: [js-yaml](https://github.com/nodeca/js-yaml).


Updates `js-yaml` from 3.14.1 to 3.14.2
- [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nodeca/js-yaml/compare/3.14.1...3.14.2)

---
updated-dependencies:
- dependency-name: js-yaml
  dependency-version: 3.14.2
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Create spotty-weeks-sit.md (#80)

Chores:
Create a spotty-weeks-sit changeset specifying a patch release for fnm
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create lazy-snails-return.md (#81)

* Create lazy-snails-return.md
Chores:
Create a new .changeset file to bump the patch version for fnm with a note about fixing the release-to-cargo.yml configuration.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/lazy-snails-return.md
Highlights
Changeset Addition: A new changeset file, lazy-snails-return.md, has been added. This file documents a fix related to the release-to-cargo.yml configuration.
Configuration Fix: The changeset entry specifically notes an update to the release-to-cargo.yml configuration, setting its base to br master.
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Dargon789 patch 2 (#82)

* chore(deps): update actions/setup-node action to v4

* Create weak-moose-love.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/weak-moose-love.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create config.yml (#64)

CI:
Introduce .circleci/config.yml defining a 'say-hello' job and corresponding workflow

https://github.com/apps/gemini-code-assist
Highlights
New CircleCI Configuration: A new .circleci/config.yml file has been added to the repository, establishing a continuous integration setup.
Basic 'Hello, World!' Job: The initial configuration includes a simple job named say-hello that uses the cimg/base:current Docker image to print 'Hello, World!'.
Workflow Definition: A workflow named say-hello-workflow has been defined to orchestrate and run the say-hello job.
Code Review
This pull request introduces a basic CircleCI configuration file. The initial setup is a good starting point. I have provided a couple of suggestions to improve it for better maintainability and reproducibility. My main feedback is to pin the Docker image version to a specific tag instead of using current to ensure consistent builds. I've also pointed out a minor formatting issue with a trailing empty line.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create olive-waves-punch.md (#79)

Chores:
Add a new changeset file for fnm patch release
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update index.mjs (#86)

Code Formatting: Removed an unnecessary blank line in tests/proxy-server/index.mjs to improve code consistency.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create google.yml (#87)

Add a GitHub Actions workflow to build and deploy the application to Google Kubernetes Engine via Google Cloud.
Build:
Introduce a Google Cloud–oriented workflow that builds a Docker image and pushes it to Artifact Registry on pushes to the main branch.
CI:
Add a GitHub Actions pipeline that authenticates with Google Cloud using Workload Identity Federation and runs container build and deployment steps.
Deployment:
Automate deploying the built Docker image to a GKE cluster using kustomize and kubectl.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci-hardhat.yml (#89)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create npm.yml (#91)

* Create npm.yml

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 31: Artifact poisoning

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>

* Update package.json (#93)

* Update package.json

https://github.com/Dargon789/uniswap.app/commit/011f260c7cc540f9bc9b336e0108f10d6f00401f

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update package.json

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update README.md (#94)

* Update README.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@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>

* Delete .kodiak.toml (#96)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create orb.yml (#97)

https://github.com/Dargon789/circleci-docs/commit/cd854b03e8aa7204da46e1da518ff6d80526a7b3

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update Cargo.toml (#98)

* Update Cargo.toml

https://github.com/Dargon789/foundry/commit/fcfa587cbfce70b8eb32ac87207cd8a2e2c4f726

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update Cargo.toml

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update label.yml (#99)

CI:

Adjust GitHub Actions label workflow triggers to use the 'main' branch for push events while keeping pull request triggers on 'master'.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* fix(deps): update all non-major dependencies

* Add build artifacts and fnm.exe to repository

This commit adds the .fnm/fnm.exe binary and various Rust build artifacts under target-wsl/, including .rustc_info.json, CACHEDIR.TAG, and debug fingerprints for dependencies. These files appear to be generated as part of a Rust build process, possibly for debugging or distribution purposes.

* Update issue templates (#102)

* 1462 (#103)

* Adjust install script for POSIX compliance

* Create temporary directory when mktemp is unavailable

* Use "dot" instead of `source` builtin when shell is not fish

* Inform the user where fnm is being installed

* chore(deps): update rust crate indoc to v2.0.7

* Add changeset for updating indoc crate to v2.0.7 (#101)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Ricardo Biehl Pasquali <ricardo@pasqua.li>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* Update README.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .github/ISSUE_TEMPLATE/bug_report.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .github/ISSUE_TEMPLATE/bug_report.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update Cargo.toml (#98)  (#104)

* chore(deps): bump the cargo group across 1 directory with 4 updates

Bumps the cargo group with 4 updates in the / directory: [hashbrown](https://github.com/rust-lang/hashbrown), [ring](https://github.com/briansmith/ring), [rustls](https://github.com/rustls/rustls) and [tokio](https://github.com/tokio-rs/tokio).


Updates `hashbrown` from 0.15.0 to 0.15.3
- [Release notes](https://github.com/rust-lang/hashbrown/releases)
- [Changelog](https://github.com/rust-lang/hashbrown/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-lang/hashbrown/compare/v0.15.0...v0.15.3)

Updates `ring` from 0.17.8 to 0.17.14
- [Changelog](https://github.com/briansmith/ring/blob/main/RELEASES.md)
- [Commits](https://github.com/briansmith/ring/commits)

Updates `rustls` from 0.23.16 to 0.23.23
- [Release notes](https://github.com/rustls/rustls/releases)
- [Changelog](https://github.com/rustls/rustls/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rustls/rustls/compare/v/0.23.16...v/0.23.23)

Updates `tokio` from 1.41.0 to 1.42.1
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.41.0...tokio-1.42.1)

---
updated-dependencies:
- dependency-name: hashbrown
  dependency-version: 0.15.3
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: ring
  dependency-version: 0.17.14
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: rustls
  dependency-version: 0.23.23
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: tokio
  dependency-version: 1.42.1
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>

* chore(deps): bump the npm_and_yarn group across 1 directory with 2 updates

Bumps the npm_and_yarn group with 2 updates in the / directory: [@babel/helpers](https://github.com/babel/babel/tree/HEAD/packages/babel-helpers) and [@babel/runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-runtime).


Updates `@babel/helpers` from 7.26.0 to 7.27.4
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.27.4/packages/babel-helpers)

Updates `@babel/runtime` from 7.26.0 to 7.27.4
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.27.4/packages/babel-runtime)

---
updated-dependencies:
- dependency-name: "@babel/helpers"
  dependency-version: 7.27.4
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: "@babel/runtime"
  dependency-version: 7.27.4
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>

* Potential fix for code scanning alert no. 3: Server-side request forgery

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 19: Workflow does not contain permissions

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* fix: package.json to reduce vulnerabilities (#27)

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-INFLIGHT-6095116

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* chore(deps): bump brace-expansion

Bumps the npm_and_yarn group with 1 update in the / directory: [brace-expansion](https://github.com/juliangruber/brace-expansion).


Updates `brace-expansion` from 1.1.11 to 1.1.12
- [Release notes](https://github.com/juliangruber/brace-expansion/releases)
- [Commits](https://github.com/juliangruber/brace-expansion/compare/1.1.11...v1.1.12)

---
updated-dependencies:
- dependency-name: brace-expansion
  dependency-version: 1.1.12
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>

* Create config.yml (#34)

* feat: upgrade zod from 3.25.76 to 4.0.0 (#33)

Snyk has created this PR to upgrade zod from 3.25.76 to 4.0.0.

See this package in npm:
zod

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* feat: upgrade @types/jest from 29.5.14 to 30.0.0 (#32)

Snyk has created this PR to upgrade @types/jest from 29.5.14 to 30.0.0.

See this package in npm:
@types/jest

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* fix: upgrade prettier from 3.5.1 to 3.5.3 (#25)

Snyk has created this PR to upgrade prettier from 3.5.1 to 3.5.3.

See this package in npm:
prettier

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* feat: upgrade cross-env from 7.0.3 to 10.0.0 (#39)

Snyk has created this PR to upgrade cross-env from 7.0.3 to 10.0.0.

See this package in npm:
cross-env

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* fix: upgrade prettier from 3.5.3 to 3.6.2 (#38)

Snyk has created this PR to upgrade prettier from 3.5.3 to 3.6.2.

See this package in npm:
prettier

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* feat: upgrade @types/node from 18.19.123 to 24.1.0 (#36)

Snyk has created this PR to upgrade @types/node from 18.19.123 to 24.1.0.

See this package in npm:
@types/node

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* fix: package.json to reduce vulnerabilities (#35)

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-TMP-11501554

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* Create label.yml (#40)

* Create label.yml

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 30: Workflow does not contain permissions

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>

* Update release.yml (#41)

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* chore(deps): bump tracing-subscriber from 0.3.18 to 0.3.20 in the cargo group across 1 directory (#42)

* chore(deps): bump tracing-subscriber

Bumps the cargo group with 1 update in the / directory: [tracing-subscriber](https://github.com/tokio-rs/tracing).


Updates `tracing-subscriber` from 0.3.18 to 0.3.20
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.18...tracing-subscriber-0.3.20)

---
updated-dependencies:
- dependency-name: tracing-subscriber
  dependency-version: 0.3.20
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update rust.yml (#43)

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* [Snyk] Upgrade @changesets/cli from 2.29.6 to 2.29.7 (#46)

* fix: upgrade @changesets/cli from 2.29.6 to 2.29.7

Snyk has created this PR to upgrade @changesets/cli from 2.29.6 to 2.29.7.

See this package in npm:
@changesets/cli

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

* Update package.json

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: snyk-bot <snyk-bot@snyk.io>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* fix: upgrade cmd-ts from 0.13.0 to 0.14.1 (#45)

Snyk has created this PR to upgrade cmd-ts from 0.13.0 to 0.14.1.

See this package in npm:
cmd-ts

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* feat: upgrade p-retry from 6.2.1 to 7.0.0 (#44)

Snyk has created this PR to upgrade p-retry from 6.2.1 to 7.0.0.

See this package in npm:
p-retry

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* chore(deps): bump zip in the cargo group across 1 directory (#47)

Bumps the cargo group with 1 update in the / directory: [zip](https://github.com/zip-rs/zip2).


Updates `zip` from 2.2.0 to 6.0.0
- [Release notes](https://github.com/zip-rs/zip2/releases)
- [Changelog](https://github.com/zip-rs/zip2/blob/master/CHANGELOG.md)
- [Commits](https://github.com/zip-rs/zip2/compare/v2.2.0...v6.0.0)

---
updated-dependencies:
- dependency-name: zip
  dependency-version: 6.0.0
  dependency-type: direct:production
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update release-to-cargo.yml (#55)

CI:

Modify the Publish to crates.io step to use cargo publish --dry-run
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create angry-moose-hug.md (#56)

* Create angry-moose-hug.md

Add a changeset for fnm to patch-release the package and update the release-to-cargo workflow configuration to use the master branch

Bug Fixes:

Update release-to-cargo.yml config to use the master branch
Chores:

Add angry-moose-hug changeset to bump fnm patch version

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/angry-moose-hug.md

New Changeset File: A new changeset file, "angry-moose-hug.md", has been added to the ".changeset" directory, indicating a recorded change for release management.
Release Configuration Update: The changeset documents a "patch" type change for "fnm", specifically a fix to update the "release-to-cargo.yml" configuration to use "base:br master".

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Create funny-falcons-breathe.md (#57)

* Create funny-falcons-breathe.md
Bug Fixes:

Update release-to-cargo.yml workflow config to use master as the base branch for fnm
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/funny-falcons-breathe.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update release.yml (#59)

Streamline the release workflow by restricting triggers to master and main branches and pin Node.js to version 22.

CI:

Remove the 'dev' branch from the release workflow triggers
Pin Node.js version to 22 in the release job
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci.yml (#60)

Add CircleCI pipeline to build, test, and format-check the Rust project with caching for dependencies

CI:

Introduce a CircleCI config (.circleci/ci.yml) using cimg/rust:1.89.0
Run cargo fmt -- --check and cargo test in a single build-and-test job
Cache Cargo dependencies and build artifacts between builds
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci-say-hello.yml (#61)

CI:

Add .circleci/ci-say-hello.yml with a say-hello job using cimg/base:current and a workflow to run it
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci-foundry.yml (#62)

Add .circleci/ci-foundry.yml to scaffold a new CircleCI pipeline with a custom Docker executor, a CI job, and a workflow.

CI:

Add initial CircleCI pipeline configuration using version 2.1
Define custom executor with Docker image and Docker Hub credentials
Introduce job 'web3-defi-game-project-' with checkout and placeholder run step
Add workflow 'my-custom-workflow' to orchestrate the CI job
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update config.yml (#66)

Restructure the CircleCI configuration by removing the custom executor, adding a sample say-hello job and workflow, and enhancing the file with explanatory comments
CI:
Remove custom executor and replace it with a basic say-hello job using the cimg/base:current Docker image
Introduce a say-hello-workflow to orchestrate the new job
Documentation:

Add inline comments to guide configuration of executors, jobs, steps, and workflows in the CI file
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create SECURITY.md (#67)

* Create SECURITY.md

Add a SECURITY.md file to establish the project's security policy, detail supported versions, and outline the vulnerability reporting process.

Documentation:

Introduce SECURITY.md with a security policy and supported versions table
Include guidelines for reporting vulnerabilities and expected response procedures
Signed-off-by: Dargon789 <64915515+Dargon789@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 <64915515+Dargon789@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 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Dargon789 patch 2 (#65)

* chore(deps): update actions/setup-node action to v4

* Create weak-moose-love.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/weak-moose-love.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create config.yml (#64)

CI:
Introduce .circleci/config.yml defining a 'say-hello' job and corresponding workflow

https://github.com/apps/gemini-code-assist
Highlights
New CircleCI Configuration: A new .circleci/config.yml file has been added to the repository, establishing a continuous integration setup.
Basic 'Hello, World!' Job: The initial configuration includes a simple job named say-hello that uses the cimg/base:current Docker image to print 'Hello, World!'.
Workflow Definition: A workflow named say-hello-workflow has been defined to orchestrate and run the say-hello job.
Code Review
This pull request introduces a basic CircleCI configuration file. The initial setup is a good starting point. I have provided a couple of suggestions to improve it for better maintainability and reproducibility. My main feedback is to pin the Docker image version to a specific tag instead of using current to ensure consistent builds. I've also pointed out a minor formatting issue with a trailing empty line.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Delete .circleci/ci-say-hello.yml (#69)

CI:
Delete .circleci/ci-say-hello.yml to clean up unused CI pipeline
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update ci.yml (#70)

CI:
Use cimg/rust:1.88.0 instead of cimg/rust:1.89.0 in the CI configuration
https://github.com/apps/gemini-code-assist
Code Review
This pull request updates the CircleCI configuration to use Rust version 1.88.0, aligning it with the rust-toolchain.toml file. This is a good correction. I have provided one suggestion to use a more flexible image tag to better match the behavior of rustup with the toolchain file, which will improve the long-term maintainability of the CI setup.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update release-to-cargo.yml

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update release-to-cargo.yml (#72)

Switch the GitHub Action for releasing to crates.io from a dry run to a real publish and clean up unused permissions settings.
CI:
Remove redundant permissions block from the release-to-cargo workflow
Replace dry-run with actual cargo publish command
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update grumpy-dingos-turn.md (#73)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update release.yml (#74)

* Update release.yml

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .github/workflows/release.yml

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>

* Update rust.yml (#75)

CI:
Remove 'dev' branch from rust.yml workflow triggers
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create docker.yml (#76)

Add a new GitHub Actions workflow (docker.yml) to automate building, pushing, and signing Docker images via Buildx, metadata extraction, and cosign integration

New Features:

Introduce a Docker CI workflow triggered on schedule, push to master, and semantic version tags, as well as on pull requests
Build and push multi-platform Docker images to GHCR using Buildx with dynamic tagging
Integrate cosign to sign published Docker images using Sigstore identity tokens
Enhancements:

Set up Docker metadata action for tag and label generation
Enable caching strategies for faster builds using GitHub Actions
CI:

Add .github/workflows/docker.yml to define the Docker build and publish pipeline
Chores:

Configure environment variables for registry (GHCR) and image naming based on the repository
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create CNAME

* Update rust.yml (#78)

Refine the GitHub Actions rust.yml workflow by restricting triggers to the master branch, pinning Node.js to version 18.x across all setup-node steps, and cleaning up formatting and commented version entries.
CI:

Limit workflow triggers to the master branch only
Pin Node.js setup in all jobs to version 18.x, removing 20.x and 22.x entries
Remove redundant commented Node.js version lines and extra blank lines
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* chore(deps): bump js-yaml in the npm_and_yarn group across 1 directory (#77)

Bumps the npm_and_yarn group with 1 update in the / directory: [js-yaml](https://github.com/nodeca/js-yaml).


Updates `js-yaml` from 3.14.1 to 3.14.2
- [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nodeca/js-yaml/compare/3.14.1...3.14.2)

---
updated-dependencies:
- dependency-name: js-yaml
  dependency-version: 3.14.2
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Create lazy-snails-return.md (#81)

* Create lazy-snails-return.md
Chores:
Create a new .changeset file to bump the patch version for fnm with a note about fixing the release-to-cargo.yml configuration.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/lazy-snails-return.md
Highlights
Changeset Addition: A new changeset file, lazy-snails-return.md, has been added. This file documents a fix related to the release-to-cargo.yml configuration.
Configuration Fix: The changeset entry specifically notes an update to the release-to-cargo.yml configuration, setting its base to br master.
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Dargon789 patch 2 (#82)

* chore(deps): update actions/setup-node action to v4

* Create weak-moose-love.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/weak-moose-love.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create config.yml (#64)

CI:
Introduce .circleci/config.yml defining a 'say-hello' job and corresponding workflow

https://github.com/apps/gemini-code-assist
Highlights
New CircleCI Configuration: A new .circleci/config.yml file has been added to the repository, establishing a continuous integration setup.
Basic 'Hello, World!' Job: The initial configuration includes a simple job named say-hello that uses the cimg/base:current Docker image to print 'Hello, World!'.
Workflow Definition: A workflow named say-hello-workflow has been defined to orchestrate and run the say-hello job.
Code Review
This pull request introduces a basic CircleCI configuration file. The initial setup is a good starting point. I have provided a couple of suggestions to improve it for better maintainability and reproducibility. My main feedback is to pin the Docker image version to a specific tag instead of using current to ensure consistent builds. I've also pointed out a minor formatting issue with a trailing empty line.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create olive-waves-punch.md (#79)

Chores:
Add a new changeset file for fnm patch release
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update index.mjs (#86)

Code Formatting: Removed an unnecessary blank line in tests/proxy-server/index.mjs to improve code consistency.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create google.yml (#87)

Add a GitHub Actions workflow to build and deploy the application to Google Kubernetes Engine via Google Cloud.
Build:
Introduce a Google Cloud–oriented workflow that builds a Docker image and pushes it to Artifact Registry on pushes to the main branch.
CI:
Add a GitHub Actions pipeline that authenticates with Google Cloud using Workload Identity Federation and runs container build and deployment steps.
Deployment:
Automate deploying the built Docker image to a GKE cluster using kustomize and kubectl.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci-hardhat.yml (#89)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create npm.yml (#91)

* Create npm.yml

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 31: Artifact poisoning

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>

* Update package.json (#93)

* Update package.json

https://github.com/Dargon789/uniswap.app/commit/011f260c7cc540f9bc9b336e0108f10d6f00401f

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update package.json

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update README.md (#94)

* Update README.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@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>

* Delete .kodiak.toml (#96)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create orb.yml (#97)

https://github.com/Dargon789/circleci-docs/commit/cd854b03e8aa7204da46e1da518ff6d80526a7b3

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update Cargo.toml (#98)

* Update Cargo.toml

https://github.com/Dargon789/foundry/commit/fcfa587cbfce70b8eb32ac87207cd8a2e2c4f726

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update Cargo.toml

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update label.yml (#99)

CI:

Adjust GitHub Actions label workflow triggers to use the 'main' branch for push events while keeping pull request triggers on 'master'.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* fix(deps): update all non-major dependencies

* Add build artifacts and fnm.exe to repository

This commit adds the .fnm/fnm.exe binary and various Rust build artifacts under target-wsl/, including .rustc_info.json, CACHEDIR.TAG, and debug fingerprints for dependencies. These files appear to be generated as part of a Rust build process, possibly for debugging or distribution purposes.

* Update issue templates (#102)

* 1462 (#103)

* Adjust install script for POSIX compliance

* Create temporary directory when mktemp is unavailable

* Use "dot" instead of `source` builtin when shell is not fish

* Inform the user where fnm is being installed

* chore(deps): update rust crate indoc to v2.0.7

* Add changeset for updating indoc crate to v2.0.7 (#101)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Ricardo Biehl Pasquali <ricardo@pasqua.li>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* Update README.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .github/ISSUE_TEMPLATE/bug_report.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .github/ISSUE_TEMPLATE/bug_report.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Co-authored-by: snyk-bot <snyk-bot@snyk.io>
Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Co-authored-by: Ricardo Biehl Pasquali <ricardo@pasqua.li>

* chore(deps): bump lodash in the npm_and_yarn group across 1 directory (#100)

Bumps the npm_and_yarn group with 1 update in the / directory: [lodash](https://github.com/lodash/lodash).


Updates `lodash` from 4.17.21 to 4.17.23
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](https://github.com/lodash/lodash/compare/4.17.21...4.17.23)

---
updated-dependencies:
- dependency-name: lodash
  dependency-version: 4.17.23
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* [Snyk] Upgrade @changesets/cli from 2.29.1 to 2.29.2 (#20)

* update devDependencies

* recovery version corepack

pnpm@8.15.8

* Circleci project setup (#4)

* Add .circleci/config.yml

* Add .circleci/config.yml

* Add .circleci/config.yml

* Bump ring from 0.17.8 to 0.17.13 in the cargo group across 1 directory (#3)

Bumps the cargo group with 1 update in the / directory: [ring](https://github.com/briansmith/ring).


Updates `ring` from 0.17.8 to 0.17.13
- [Changelog](https://github.com/briansmith/ring/blob/main/RELEASES.md)
- [Commits](https://github.com/briansmith/ring/commits)

---
updated-dependencies:
- dependency-name: ring
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Bump dawidd6/action-download-artifact (#2)

Bumps the github_actions group with 1 update in the /.github/workflows directory: [dawidd6/action-download-artifact](https://github.com/dawidd6/action-download-artifact).


Updates `dawidd6/action-download-artifact` from 2 to 6
- [Release notes](https://github.com/dawidd6/action-download-artifact/releases)
- [Commits](https://github.com/dawidd6/action-download-artifact/compare/v2...v6)

---
updated-dependencies:
- dependency-name: dawidd6/action-download-artifact
  dependency-type: direct:production
  dependency-group: github_actions
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Create SECURITY.md (#1)

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Revert "Bump dawidd6/action-download-artifact (#2)" (#5)

This reverts commit b454d73a9022373d51a80f5a33813c58e4dff91d.

* Bump tokio from 1.37.0 to 1.42.0 in the cargo group across 1 directory

Bumps the cargo group with 1 update in the / directory: [tokio](https://github.com/tokio-rs/tokio).


Updates `tokio` from 1.37.0 to 1.42.0
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.37.0...tokio-1.42.0)

---
updated-dependencies:
- dependency-name: tokio
  dependency-version: 1.42.0
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump tokio from 1.42.0 to 1.42.1 in the cargo group across 1 directory (#8)

Bumps the cargo group with 1 update in the / directory: [tokio](https://github.com/tokio-rs/tokio).


Updates `tokio` from 1.42.0 to 1.42.1
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.42.0...tokio-1.42.1)

---
updated-dependencies:
- dependency-name: tokio
  dependency-version: 1.42.1
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump dawidd6/action-download-artifact (#7)

Bumps the github_actions group with 1 update in the /.github/workflows directory: [dawidd6/action-download-artifact](https://github.com/dawidd6/action-download-artifact).


Updates `dawidd6/action-download-artifact` from 2 to 6
- [Release notes](https://github.com/dawidd6/action-download-artifact/releases)
- [Commits](https://github.com/dawidd6/action-download-artifact/compare/v2...v6)

---
updated-dependencies:
- dependency-name: dawidd6/action-download-artifact
  dependency-version: '6'
  dependency-type: direct:production
  dependency-group: github_actions
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* feat: upgrade which from 3.0.1 to 5.0.0 (#17)

Snyk has created this PR to upgrade which from 3.0.1 to 5.0.0.

See this package in npm:
which

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* fix: upgrade @changesets/cli from 2.27.5 to 2.28.1 (#16)

Snyk has created this PR to upgrade @changesets/cli from 2.27.5 to 2.28.1.

See this package in npm:
@changesets/cli

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* fix: upgrade prettier from 3.3.0 to 3.5.3 (#15)

Snyk has created this PR to upgrade prettier from 3.3.0 to 3.5.3.

See this package in npm:
prettier

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* feat: upgrade execa from 7.2.0 to 9.5.2 (#14)

Snyk has created this PR to upgrade execa from 7.2.0 to 9.5.2.

See this package in npm:
execa

See this project in Snyk:
https://app.snyk.…
Dargon789 added a commit that referenced this pull request Feb 9, 2026
* Version Packages

* Create silly-comics-jump.md (#119)

Chores:
Add changeset metadata file to document a patch-level change for fnm.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Patch 1 (#121)

* Make install.sh tee instead of echoing twice

Also, fish bit was the only one that didn't print a newline to
$CONF_FILE, now they're all the same.

* Check if fnm is installed before shell setup

Change $CONF_FILE append strings to check whether $INSTALL_DIR exists
before doing any setup. This way whenever a user syncs their shell
config across machines, the machines without fnm installed won't throw
errors.

* Create smooth-lions-sneeze.md

* add hooks mechanism for pre, post and failed install

* feat: upgrade cross-env from 7.0.3 to 10.0.0 (#39)

Snyk has created this PR to upgrade cross-env from 7.0.3 to 10.0.0.

See this package in npm:
cross-env

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* fix: upgrade prettier from 3.5.3 to 3.6.2 (#38)

Snyk has created this PR to upgrade prettier from 3.5.3 to 3.6.2.

See this package in npm:
prettier

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* feat: upgrade @types/node from 18.19.123 to 24.1.0 (#36)

Snyk has created this PR to upgrade @types/node from 18.19.123 to 24.1.0.

See this package in npm:
@types/node

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* fix: package.json to reduce vulnerabilities (#35)

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-TMP-11501554

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* Create label.yml (#40)

* Create label.yml

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 30: Workflow does not contain permissions

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>

* Update release.yml (#41)

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* chore(deps): bump tracing-subscriber from 0.3.18 to 0.3.20 in the cargo group across 1 directory (#42)

* chore(deps): bump tracing-subscriber

Bumps the cargo group with 1 update in the / directory: [tracing-subscriber](https://github.com/tokio-rs/tracing).


Updates `tracing-subscriber` from 0.3.18 to 0.3.20
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.18...tracing-subscriber-0.3.20)

---
updated-dependencies:
- dependency-name: tracing-subscriber
  dependency-version: 0.3.20
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update rust.yml (#43)

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Adjust install script for POSIX compliance

* Create temporary directory when mktemp is unavailable

* Use "dot" instead of `source` builtin when shell is not fish

* Inform the user where fnm is being installed

* [Snyk] Upgrade @changesets/cli from 2.29.6 to 2.29.7 (#46)

* fix: upgrade @changesets/cli from 2.29.6 to 2.29.7

Snyk has created this PR to upgrade @changesets/cli from 2.29.6 to 2.29.7.

See this package in npm:
@changesets/cli

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

* Update package.json

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: snyk-bot <snyk-bot@snyk.io>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* fix: upgrade cmd-ts from 0.13.0 to 0.14.1 (#45)

Snyk has created this PR to upgrade cmd-ts from 0.13.0 to 0.14.1.

See this package in npm:
cmd-ts

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* feat: upgrade p-retry from 6.2.1 to 7.0.0 (#44)

Snyk has created this PR to upgrade p-retry from 6.2.1 to 7.0.0.

See this package in npm:
p-retry

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* chore(deps): bump zip in the cargo group across 1 directory (#47)

Bumps the cargo group with 1 update in the / directory: [zip](https://github.com/zip-rs/zip2).


Updates `zip` from 2.2.0 to 6.0.0
- [Release notes](https://github.com/zip-rs/zip2/releases)
- [Changelog](https://github.com/zip-rs/zip2/blob/master/CHANGELOG.md)
- [Commits](https://github.com/zip-rs/zip2/compare/v2.2.0...v6.0.0)

---
updated-dependencies:
- dependency-name: zip
  dependency-version: 6.0.0
  dependency-type: direct:production
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Create smart-avocados-try.md (#48)

* Create smart-avocados-try.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/smart-avocados-try.md
New Changeset File: A new changeset file, smart-avocados-try.md, has been added to the .changeset directory. This file is used to record a specific change for future release notes or changelog generation.
Patch Metadata: The newly added changeset file includes front matter metadata specifying "fnm": "patch", indicating the type of change being recorded.
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update release-to-cargo.yml (#55)

CI:

Modify the Publish to crates.io step to use cargo publish --dry-run
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create angry-moose-hug.md (#56)

* Create angry-moose-hug.md

Add a changeset for fnm to patch-release the package and update the release-to-cargo workflow configuration to use the master branch

Bug Fixes:

Update release-to-cargo.yml config to use the master branch
Chores:

Add angry-moose-hug changeset to bump fnm patch version

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/angry-moose-hug.md

New Changeset File: A new changeset file, "angry-moose-hug.md", has been added to the ".changeset" directory, indicating a recorded change for release management.
Release Configuration Update: The changeset documents a "patch" type change for "fnm", specifically a fix to update the "release-to-cargo.yml" configuration to use "base:br master".

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Create funny-falcons-breathe.md (#57)

* Create funny-falcons-breathe.md
Bug Fixes:

Update release-to-cargo.yml workflow config to use master as the base branch for fnm
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/funny-falcons-breathe.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update release.yml (#59)

Streamline the release workflow by restricting triggers to master and main branches and pin Node.js to version 22.

CI:

Remove the 'dev' branch from the release workflow triggers
Pin Node.js version to 22 in the release job
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci.yml (#60)

Add CircleCI pipeline to build, test, and format-check the Rust project with caching for dependencies

CI:

Introduce a CircleCI config (.circleci/ci.yml) using cimg/rust:1.89.0
Run cargo fmt -- --check and cargo test in a single build-and-test job
Cache Cargo dependencies and build artifacts between builds
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci-say-hello.yml (#61)

CI:

Add .circleci/ci-say-hello.yml with a say-hello job using cimg/base:current and a workflow to run it
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci-foundry.yml (#62)

Add .circleci/ci-foundry.yml to scaffold a new CircleCI pipeline with a custom Docker executor, a CI job, and a workflow.

CI:

Add initial CircleCI pipeline configuration using version 2.1
Define custom executor with Docker image and Docker Hub credentials
Introduce job 'web3-defi-game-project-' with checkout and placeholder run step
Add workflow 'my-custom-workflow' to orchestrate the CI job
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update config.yml (#66)

Restructure the CircleCI configuration by removing the custom executor, adding a sample say-hello job and workflow, and enhancing the file with explanatory comments
CI:
Remove custom executor and replace it with a basic say-hello job using the cimg/base:current Docker image
Introduce a say-hello-workflow to orchestrate the new job
Documentation:

Add inline comments to guide configuration of executors, jobs, steps, and workflows in the CI file
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create SECURITY.md (#67)

* Create SECURITY.md

Add a SECURITY.md file to establish the project's security policy, detail supported versions, and outline the vulnerability reporting process.

Documentation:

Introduce SECURITY.md with a security policy and supported versions table
Include guidelines for reporting vulnerabilities and expected response procedures
Signed-off-by: Dargon789 <64915515+Dargon789@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 <64915515+Dargon789@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 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Dargon789 patch 2 (#65)

* chore(deps): update actions/setup-node action to v4

* Create weak-moose-love.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/weak-moose-love.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create config.yml (#64)

CI:
Introduce .circleci/config.yml defining a 'say-hello' job and corresponding workflow

https://github.com/apps/gemini-code-assist
Highlights
New CircleCI Configuration: A new .circleci/config.yml file has been added to the repository, establishing a continuous integration setup.
Basic 'Hello, World!' Job: The initial configuration includes a simple job named say-hello that uses the cimg/base:current Docker image to print 'Hello, World!'.
Workflow Definition: A workflow named say-hello-workflow has been defined to orchestrate and run the say-hello job.
Code Review
This pull request introduces a basic CircleCI configuration file. The initial setup is a good starting point. I have provided a couple of suggestions to improve it for better maintainability and reproducibility. My main feedback is to pin the Docker image version to a specific tag instead of using current to ensure consistent builds. I've also pointed out a minor formatting issue with a trailing empty line.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Delete .circleci/ci-say-hello.yml (#69)

CI:
Delete .circleci/ci-say-hello.yml to clean up unused CI pipeline
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update ci.yml (#70)

CI:
Use cimg/rust:1.88.0 instead of cimg/rust:1.89.0 in the CI configuration
https://github.com/apps/gemini-code-assist
Code Review
This pull request updates the CircleCI configuration to use Rust version 1.88.0, aligning it with the rust-toolchain.toml file. This is a good correction. I have provided one suggestion to use a more flexible image tag to better match the behavior of rustup with the toolchain file, which will improve the long-term maintainability of the CI setup.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update release-to-cargo.yml

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update release-to-cargo.yml (#72)

Switch the GitHub Action for releasing to crates.io from a dry run to a real publish and clean up unused permissions settings.
CI:
Remove redundant permissions block from the release-to-cargo workflow
Replace dry-run with actual cargo publish command
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update grumpy-dingos-turn.md (#73)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update release.yml (#74)

* Update release.yml

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .github/workflows/release.yml

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>

* Update rust.yml (#75)

CI:
Remove 'dev' branch from rust.yml workflow triggers
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create docker.yml (#76)

Add a new GitHub Actions workflow (docker.yml) to automate building, pushing, and signing Docker images via Buildx, metadata extraction, and cosign integration

New Features:

Introduce a Docker CI workflow triggered on schedule, push to master, and semantic version tags, as well as on pull requests
Build and push multi-platform Docker images to GHCR using Buildx with dynamic tagging
Integrate cosign to sign published Docker images using Sigstore identity tokens
Enhancements:

Set up Docker metadata action for tag and label generation
Enable caching strategies for faster builds using GitHub Actions
CI:

Add .github/workflows/docker.yml to define the Docker build and publish pipeline
Chores:

Configure environment variables for registry (GHCR) and image naming based on the repository
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create CNAME

* Update rust.yml (#78)

Refine the GitHub Actions rust.yml workflow by restricting triggers to the master branch, pinning Node.js to version 18.x across all setup-node steps, and cleaning up formatting and commented version entries.
CI:

Limit workflow triggers to the master branch only
Pin Node.js setup in all jobs to version 18.x, removing 20.x and 22.x entries
Remove redundant commented Node.js version lines and extra blank lines
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* chore(deps): bump js-yaml in the npm_and_yarn group across 1 directory (#77)

Bumps the npm_and_yarn group with 1 update in the / directory: [js-yaml](https://github.com/nodeca/js-yaml).


Updates `js-yaml` from 3.14.1 to 3.14.2
- [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nodeca/js-yaml/compare/3.14.1...3.14.2)

---
updated-dependencies:
- dependency-name: js-yaml
  dependency-version: 3.14.2
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Create spotty-weeks-sit.md (#80)

Chores:
Create a spotty-weeks-sit changeset specifying a patch release for fnm
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create lazy-snails-return.md (#81)

* Create lazy-snails-return.md
Chores:
Create a new .changeset file to bump the patch version for fnm with a note about fixing the release-to-cargo.yml configuration.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/lazy-snails-return.md
Highlights
Changeset Addition: A new changeset file, lazy-snails-return.md, has been added. This file documents a fix related to the release-to-cargo.yml configuration.
Configuration Fix: The changeset entry specifically notes an update to the release-to-cargo.yml configuration, setting its base to br master.
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Dargon789 patch 2 (#82)

* chore(deps): update actions/setup-node action to v4

* Create weak-moose-love.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/weak-moose-love.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create config.yml (#64)

CI:
Introduce .circleci/config.yml defining a 'say-hello' job and corresponding workflow

https://github.com/apps/gemini-code-assist
Highlights
New CircleCI Configuration: A new .circleci/config.yml file has been added to the repository, establishing a continuous integration setup.
Basic 'Hello, World!' Job: The initial configuration includes a simple job named say-hello that uses the cimg/base:current Docker image to print 'Hello, World!'.
Workflow Definition: A workflow named say-hello-workflow has been defined to orchestrate and run the say-hello job.
Code Review
This pull request introduces a basic CircleCI configuration file. The initial setup is a good starting point. I have provided a couple of suggestions to improve it for better maintainability and reproducibility. My main feedback is to pin the Docker image version to a specific tag instead of using current to ensure consistent builds. I've also pointed out a minor formatting issue with a trailing empty line.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create olive-waves-punch.md (#79)

Chores:
Add a new changeset file for fnm patch release
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update index.mjs (#86)

Code Formatting: Removed an unnecessary blank line in tests/proxy-server/index.mjs to improve code consistency.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create google.yml (#87)

Add a GitHub Actions workflow to build and deploy the application to Google Kubernetes Engine via Google Cloud.
Build:
Introduce a Google Cloud–oriented workflow that builds a Docker image and pushes it to Artifact Registry on pushes to the main branch.
CI:
Add a GitHub Actions pipeline that authenticates with Google Cloud using Workload Identity Federation and runs container build and deployment steps.
Deployment:
Automate deploying the built Docker image to a GKE cluster using kustomize and kubectl.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci-hardhat.yml (#89)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create npm.yml (#91)

* Create npm.yml

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 31: Artifact poisoning

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>

* Update package.json (#93)

* Update package.json

https://github.com/Dargon789/uniswap.app/commit/011f260c7cc540f9bc9b336e0108f10d6f00401f

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update package.json

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update README.md (#94)

* Update README.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@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>

* Delete .kodiak.toml (#96)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create orb.yml (#97)

https://github.com/Dargon789/circleci-docs/commit/cd854b03e8aa7204da46e1da518ff6d80526a7b3

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update Cargo.toml (#98)

* Update Cargo.toml

https://github.com/Dargon789/foundry/commit/fcfa587cbfce70b8eb32ac87207cd8a2e2c4f726

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update Cargo.toml

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update label.yml (#99)

CI:

Adjust GitHub Actions label workflow triggers to use the 'main' branch for push events while keeping pull request triggers on 'master'.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* fix(deps): update all non-major dependencies

* Add build artifacts and fnm.exe to repository

This commit adds the .fnm/fnm.exe binary and various Rust build artifacts under target-wsl/, including .rustc_info.json, CACHEDIR.TAG, and debug fingerprints for dependencies. These files appear to be generated as part of a Rust build process, possibly for debugging or distribution purposes.

* Update issue templates (#102)

* 1462 (#103)

* Adjust install script for POSIX compliance

* Create temporary directory when mktemp is unavailable

* Use "dot" instead of `source` builtin when shell is not fish

* Inform the user where fnm is being installed

* chore(deps): update rust crate indoc to v2.0.7

* Add changeset for updating indoc crate to v2.0.7 (#101)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Ricardo Biehl Pasquali <ricardo@pasqua.li>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* Update README.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .github/ISSUE_TEMPLATE/bug_report.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .github/ISSUE_TEMPLATE/bug_report.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update Cargo.toml (#98)  (#104)

* chore(deps): bump the cargo group across 1 directory with 4 updates

Bumps the cargo group with 4 updates in the / directory: [hashbrown](https://github.com/rust-lang/hashbrown), [ring](https://github.com/briansmith/ring), [rustls](https://github.com/rustls/rustls) and [tokio](https://github.com/tokio-rs/tokio).


Updates `hashbrown` from 0.15.0 to 0.15.3
- [Release notes](https://github.com/rust-lang/hashbrown/releases)
- [Changelog](https://github.com/rust-lang/hashbrown/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-lang/hashbrown/compare/v0.15.0...v0.15.3)

Updates `ring` from 0.17.8 to 0.17.14
- [Changelog](https://github.com/briansmith/ring/blob/main/RELEASES.md)
- [Commits](https://github.com/briansmith/ring/commits)

Updates `rustls` from 0.23.16 to 0.23.23
- [Release notes](https://github.com/rustls/rustls/releases)
- [Changelog](https://github.com/rustls/rustls/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rustls/rustls/compare/v/0.23.16...v/0.23.23)

Updates `tokio` from 1.41.0 to 1.42.1
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.41.0...tokio-1.42.1)

---
updated-dependencies:
- dependency-name: hashbrown
  dependency-version: 0.15.3
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: ring
  dependency-version: 0.17.14
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: rustls
  dependency-version: 0.23.23
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: tokio
  dependency-version: 1.42.1
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>

* chore(deps): bump the npm_and_yarn group across 1 directory with 2 updates

Bumps the npm_and_yarn group with 2 updates in the / directory: [@babel/helpers](https://github.com/babel/babel/tree/HEAD/packages/babel-helpers) and [@babel/runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-runtime).


Updates `@babel/helpers` from 7.26.0 to 7.27.4
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.27.4/packages/babel-helpers)

Updates `@babel/runtime` from 7.26.0 to 7.27.4
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.27.4/packages/babel-runtime)

---
updated-dependencies:
- dependency-name: "@babel/helpers"
  dependency-version: 7.27.4
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: "@babel/runtime"
  dependency-version: 7.27.4
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>

* Potential fix for code scanning alert no. 3: Server-side request forgery

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 19: Workflow does not contain permissions

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* fix: package.json to reduce vulnerabilities (#27)

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-INFLIGHT-6095116

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* chore(deps): bump brace-expansion

Bumps the npm_and_yarn group with 1 update in the / directory: [brace-expansion](https://github.com/juliangruber/brace-expansion).


Updates `brace-expansion` from 1.1.11 to 1.1.12
- [Release notes](https://github.com/juliangruber/brace-expansion/releases)
- [Commits](https://github.com/juliangruber/brace-expansion/compare/1.1.11...v1.1.12)

---
updated-dependencies:
- dependency-name: brace-expansion
  dependency-version: 1.1.12
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>

* Create config.yml (#34)

* feat: upgrade zod from 3.25.76 to 4.0.0 (#33)

Snyk has created this PR to upgrade zod from 3.25.76 to 4.0.0.

See this package in npm:
zod

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* feat: upgrade @types/jest from 29.5.14 to 30.0.0 (#32)

Snyk has created this PR to upgrade @types/jest from 29.5.14 to 30.0.0.

See this package in npm:
@types/jest

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* fix: upgrade prettier from 3.5.1 to 3.5.3 (#25)

Snyk has created this PR to upgrade prettier from 3.5.1 to 3.5.3.

See this package in npm:
prettier

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* feat: upgrade cross-env from 7.0.3 to 10.0.0 (#39)

Snyk has created this PR to upgrade cross-env from 7.0.3 to 10.0.0.

See this package in npm:
cross-env

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* fix: upgrade prettier from 3.5.3 to 3.6.2 (#38)

Snyk has created this PR to upgrade prettier from 3.5.3 to 3.6.2.

See this package in npm:
prettier

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* feat: upgrade @types/node from 18.19.123 to 24.1.0 (#36)

Snyk has created this PR to upgrade @types/node from 18.19.123 to 24.1.0.

See this package in npm:
@types/node

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/ad4c7706-9351-484f-a545-90686691e99c?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* fix: package.json to reduce vulnerabilities (#35)

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-TMP-11501554

Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>

* Create label.yml (#40)

* Create label.yml

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 30: Workflow does not contain permissions

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>

* Update release.yml (#41)

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* chore(deps): bump tracing-subscriber from 0.3.18 to 0.3.20 in the cargo group across 1 directory (#42)

* chore(deps): bump tracing-subscriber

Bumps the cargo group with 1 update in the / directory: [tracing-subscriber](https://github.com/tokio-rs/tracing).


Updates `tracing-subscriber` from 0.3.18 to 0.3.20
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.18...tracing-subscriber-0.3.20)

---
updated-dependencies:
- dependency-name: tracing-subscriber
  dependency-version: 0.3.20
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update rust.yml (#43)

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* [Snyk] Upgrade @changesets/cli from 2.29.6 to 2.29.7 (#46)

* fix: upgrade @changesets/cli from 2.29.6 to 2.29.7

Snyk has created this PR to upgrade @changesets/cli from 2.29.6 to 2.29.7.

See this package in npm:
@changesets/cli

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

* Update package.json

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: snyk-bot <snyk-bot@snyk.io>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* fix: upgrade cmd-ts from 0.13.0 to 0.14.1 (#45)

Snyk has created this PR to upgrade cmd-ts from 0.13.0 to 0.14.1.

See this package in npm:
cmd-ts

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* feat: upgrade p-retry from 6.2.1 to 7.0.0 (#44)

Snyk has created this PR to upgrade p-retry from 6.2.1 to 7.0.0.

See this package in npm:
p-retry

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* chore(deps): bump zip in the cargo group across 1 directory (#47)

Bumps the cargo group with 1 update in the / directory: [zip](https://github.com/zip-rs/zip2).


Updates `zip` from 2.2.0 to 6.0.0
- [Release notes](https://github.com/zip-rs/zip2/releases)
- [Changelog](https://github.com/zip-rs/zip2/blob/master/CHANGELOG.md)
- [Commits](https://github.com/zip-rs/zip2/compare/v2.2.0...v6.0.0)

---
updated-dependencies:
- dependency-name: zip
  dependency-version: 6.0.0
  dependency-type: direct:production
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update release-to-cargo.yml (#55)

CI:

Modify the Publish to crates.io step to use cargo publish --dry-run
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create angry-moose-hug.md (#56)

* Create angry-moose-hug.md

Add a changeset for fnm to patch-release the package and update the release-to-cargo workflow configuration to use the master branch

Bug Fixes:

Update release-to-cargo.yml config to use the master branch
Chores:

Add angry-moose-hug changeset to bump fnm patch version

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/angry-moose-hug.md

New Changeset File: A new changeset file, "angry-moose-hug.md", has been added to the ".changeset" directory, indicating a recorded change for release management.
Release Configuration Update: The changeset documents a "patch" type change for "fnm", specifically a fix to update the "release-to-cargo.yml" configuration to use "base:br master".

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Create funny-falcons-breathe.md (#57)

* Create funny-falcons-breathe.md
Bug Fixes:

Update release-to-cargo.yml workflow config to use master as the base branch for fnm
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/funny-falcons-breathe.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update release.yml (#59)

Streamline the release workflow by restricting triggers to master and main branches and pin Node.js to version 22.

CI:

Remove the 'dev' branch from the release workflow triggers
Pin Node.js version to 22 in the release job
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci.yml (#60)

Add CircleCI pipeline to build, test, and format-check the Rust project with caching for dependencies

CI:

Introduce a CircleCI config (.circleci/ci.yml) using cimg/rust:1.89.0
Run cargo fmt -- --check and cargo test in a single build-and-test job
Cache Cargo dependencies and build artifacts between builds
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci-say-hello.yml (#61)

CI:

Add .circleci/ci-say-hello.yml with a say-hello job using cimg/base:current and a workflow to run it
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci-foundry.yml (#62)

Add .circleci/ci-foundry.yml to scaffold a new CircleCI pipeline with a custom Docker executor, a CI job, and a workflow.

CI:

Add initial CircleCI pipeline configuration using version 2.1
Define custom executor with Docker image and Docker Hub credentials
Introduce job 'web3-defi-game-project-' with checkout and placeholder run step
Add workflow 'my-custom-workflow' to orchestrate the CI job
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update config.yml (#66)

Restructure the CircleCI configuration by removing the custom executor, adding a sample say-hello job and workflow, and enhancing the file with explanatory comments
CI:
Remove custom executor and replace it with a basic say-hello job using the cimg/base:current Docker image
Introduce a say-hello-workflow to orchestrate the new job
Documentation:

Add inline comments to guide configuration of executors, jobs, steps, and workflows in the CI file
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create SECURITY.md (#67)

* Create SECURITY.md

Add a SECURITY.md file to establish the project's security policy, detail supported versions, and outline the vulnerability reporting process.

Documentation:

Introduce SECURITY.md with a security policy and supported versions table
Include guidelines for reporting vulnerabilities and expected response procedures
Signed-off-by: Dargon789 <64915515+Dargon789@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 <64915515+Dargon789@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 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Dargon789 patch 2 (#65)

* chore(deps): update actions/setup-node action to v4

* Create weak-moose-love.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/weak-moose-love.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create config.yml (#64)

CI:
Introduce .circleci/config.yml defining a 'say-hello' job and corresponding workflow

https://github.com/apps/gemini-code-assist
Highlights
New CircleCI Configuration: A new .circleci/config.yml file has been added to the repository, establishing a continuous integration setup.
Basic 'Hello, World!' Job: The initial configuration includes a simple job named say-hello that uses the cimg/base:current Docker image to print 'Hello, World!'.
Workflow Definition: A workflow named say-hello-workflow has been defined to orchestrate and run the say-hello job.
Code Review
This pull request introduces a basic CircleCI configuration file. The initial setup is a good starting point. I have provided a couple of suggestions to improve it for better maintainability and reproducibility. My main feedback is to pin the Docker image version to a specific tag instead of using current to ensure consistent builds. I've also pointed out a minor formatting issue with a trailing empty line.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Delete .circleci/ci-say-hello.yml (#69)

CI:
Delete .circleci/ci-say-hello.yml to clean up unused CI pipeline
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update ci.yml (#70)

CI:
Use cimg/rust:1.88.0 instead of cimg/rust:1.89.0 in the CI configuration
https://github.com/apps/gemini-code-assist
Code Review
This pull request updates the CircleCI configuration to use Rust version 1.88.0, aligning it with the rust-toolchain.toml file. This is a good correction. I have provided one suggestion to use a more flexible image tag to better match the behavior of rustup with the toolchain file, which will improve the long-term maintainability of the CI setup.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update release-to-cargo.yml

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update release-to-cargo.yml (#72)

Switch the GitHub Action for releasing to crates.io from a dry run to a real publish and clean up unused permissions settings.
CI:
Remove redundant permissions block from the release-to-cargo workflow
Replace dry-run with actual cargo publish command
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update grumpy-dingos-turn.md (#73)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update release.yml (#74)

* Update release.yml

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .github/workflows/release.yml

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>

* Update rust.yml (#75)

CI:
Remove 'dev' branch from rust.yml workflow triggers
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create docker.yml (#76)

Add a new GitHub Actions workflow (docker.yml) to automate building, pushing, and signing Docker images via Buildx, metadata extraction, and cosign integration

New Features:

Introduce a Docker CI workflow triggered on schedule, push to master, and semantic version tags, as well as on pull requests
Build and push multi-platform Docker images to GHCR using Buildx with dynamic tagging
Integrate cosign to sign published Docker images using Sigstore identity tokens
Enhancements:

Set up Docker metadata action for tag and label generation
Enable caching strategies for faster builds using GitHub Actions
CI:

Add .github/workflows/docker.yml to define the Docker build and publish pipeline
Chores:

Configure environment variables for registry (GHCR) and image naming based on the repository
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create CNAME

* Update rust.yml (#78)

Refine the GitHub Actions rust.yml workflow by restricting triggers to the master branch, pinning Node.js to version 18.x across all setup-node steps, and cleaning up formatting and commented version entries.
CI:

Limit workflow triggers to the master branch only
Pin Node.js setup in all jobs to version 18.x, removing 20.x and 22.x entries
Remove redundant commented Node.js version lines and extra blank lines
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* chore(deps): bump js-yaml in the npm_and_yarn group across 1 directory (#77)

Bumps the npm_and_yarn group with 1 update in the / directory: [js-yaml](https://github.com/nodeca/js-yaml).


Updates `js-yaml` from 3.14.1 to 3.14.2
- [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nodeca/js-yaml/compare/3.14.1...3.14.2)

---
updated-dependencies:
- dependency-name: js-yaml
  dependency-version: 3.14.2
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Create lazy-snails-return.md (#81)

* Create lazy-snails-return.md
Chores:
Create a new .changeset file to bump the patch version for fnm with a note about fixing the release-to-cargo.yml configuration.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/lazy-snails-return.md
Highlights
Changeset Addition: A new changeset file, lazy-snails-return.md, has been added. This file documents a fix related to the release-to-cargo.yml configuration.
Configuration Fix: The changeset entry specifically notes an update to the release-to-cargo.yml configuration, setting its base to br master.
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Dargon789 patch 2 (#82)

* chore(deps): update actions/setup-node action to v4

* Create weak-moose-love.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .changeset/weak-moose-love.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create config.yml (#64)

CI:
Introduce .circleci/config.yml defining a 'say-hello' job and corresponding workflow

https://github.com/apps/gemini-code-assist
Highlights
New CircleCI Configuration: A new .circleci/config.yml file has been added to the repository, establishing a continuous integration setup.
Basic 'Hello, World!' Job: The initial configuration includes a simple job named say-hello that uses the cimg/base:current Docker image to print 'Hello, World!'.
Workflow Definition: A workflow named say-hello-workflow has been defined to orchestrate and run the say-hello job.
Code Review
This pull request introduces a basic CircleCI configuration file. The initial setup is a good starting point. I have provided a couple of suggestions to improve it for better maintainability and reproducibility. My main feedback is to pin the Docker image version to a specific tag instead of using current to ensure consistent builds. I've also pointed out a minor formatting issue with a trailing empty line.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create olive-waves-punch.md (#79)

Chores:
Add a new changeset file for fnm patch release
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update index.mjs (#86)

Code Formatting: Removed an unnecessary blank line in tests/proxy-server/index.mjs to improve code consistency.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create google.yml (#87)

Add a GitHub Actions workflow to build and deploy the application to Google Kubernetes Engine via Google Cloud.
Build:
Introduce a Google Cloud–oriented workflow that builds a Docker image and pushes it to Artifact Registry on pushes to the main branch.
CI:
Add a GitHub Actions pipeline that authenticates with Google Cloud using Workload Identity Federation and runs container build and deployment steps.
Deployment:
Automate deploying the built Docker image to a GKE cluster using kustomize and kubectl.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create ci-hardhat.yml (#89)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create npm.yml (#91)

* Create npm.yml

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Potential fix for code scanning alert no. 31: Artifact poisoning

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>

* Update package.json (#93)

* Update package.json

https://github.com/Dargon789/uniswap.app/commit/011f260c7cc540f9bc9b336e0108f10d6f00401f

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update package.json

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update README.md (#94)

* Update README.md

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update README.md

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@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>

* Delete .kodiak.toml (#96)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Create orb.yml (#97)

https://github.com/Dargon789/circleci-docs/commit/cd854b03e8aa7204da46e1da518ff6d80526a7b3

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update Cargo.toml (#98)

* Update Cargo.toml

https://github.com/Dargon789/foundry/commit/fcfa587cbfce70b8eb32ac87207cd8a2e2c4f726

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update Cargo.toml

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update label.yml (#99)

CI:

Adjust GitHub Actions label workflow triggers to use the 'main' branch for push events while keeping pull request triggers on 'master'.
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* fix(deps): update all non-major dependencies

* Add build artifacts and fnm.exe to repository

This commit adds the .fnm/fnm.exe binary and various Rust build artifacts under target-wsl/, including .rustc_info.json, CACHEDIR.TAG, and debug fingerprints for dependencies. These files appear to be generated as part of a Rust build process, possibly for debugging or distribution purposes.

* Update issue templates (#102)

* 1462 (#103)

* Adjust install script for POSIX compliance

* Create temporary directory when mktemp is unavailable

* Use "dot" instead of `source` builtin when shell is not fish

* Inform the user where fnm is being installed

* chore(deps): update rust crate indoc to v2.0.7

* Add changeset for updating indoc crate to v2.0.7 (#101)

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: Ricardo Biehl Pasquali <ricardo@pasqua.li>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* Update README.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .github/ISSUE_TEMPLATE/bug_report.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

* Update .github/ISSUE_TEMPLATE/bug_report.md

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Co-authored-by: snyk-bot <snyk-bot@snyk.io>
Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Co-authored-by: Ricardo Biehl Pasquali <ricardo@pasqua.li>

* chore(deps): bump lodash in the npm_and_yarn group across 1 directory (#100)

Bumps the npm_and_yarn group with 1 update in the / directory: [lodash](https://github.com/lodash/lodash).


Updates `lodash` from 4.17.21 to 4.17.23
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](https://github.com/lodash/lodash/compare/4.17.21...4.17.23)

---
updated-dependencies:
- dependency-name: lodash
  dependency-version: 4.17.23
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* [Snyk] Upgrade @changesets/cli from 2.29.1 to 2.29.2 (#20)

* update devDependencies

* recovery version corepack

pnpm@8.15.8

* Circleci project setup (#4)

* Add .circleci/config.yml

* Add .circleci/config.yml

* Add .circleci/config.yml

* Bump ring from 0.17.8 to 0.17.13 in the cargo group across 1 directory (#3)

Bumps the cargo group with 1 update in the / directory: [ring](https://github.com/briansmith/ring).


Updates `ring` from 0.17.8 to 0.17.13
- [Changelog](https://github.com/briansmith/ring/blob/main/RELEASES.md)
- [Commits](https://github.com/briansmith/ring/commits)

---
updated-dependencies:
- dependency-name: ring
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Bump dawidd6/action-download-artifact (#2)

Bumps the github_actions group with 1 update in the /.github/workflows directory: [dawidd6/action-download-artifact](https://github.com/dawidd6/action-download-artifact).


Updates `dawidd6/action-download-artifact` from 2 to 6
- [Release notes](https://github.com/dawidd6/action-download-artifact/releases)
- [Commits](https://github.com/dawidd6/action-download-artifact/compare/v2...v6)

---
updated-dependencies:
- dependency-name: dawidd6/action-download-artifact
  dependency-type: direct:production
  dependency-group: github_actions
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Create SECURITY.md (#1)

Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* Revert "Bump dawidd6/action-download-artifact (#2)" (#5)

This reverts commit b454d73a9022373d51a80f5a33813c58e4dff91d.

* Bump tokio from 1.37.0 to 1.42.0 in the cargo group across 1 directory

Bumps the cargo group with 1 update in the / directory: [tokio](https://github.com/tokio-rs/tokio).


Updates `tokio` from 1.37.0 to 1.42.0
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.37.0...tokio-1.42.0)

---
updated-dependencies:
- dependency-name: tokio
  dependency-version: 1.42.0
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump tokio from 1.42.0 to 1.42.1 in the cargo group across 1 directory (#8)

Bumps the cargo group with 1 update in the / directory: [tokio](https://github.com/tokio-rs/tokio).


Updates `tokio` from 1.42.0 to 1.42.1
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.42.0...tokio-1.42.1)

---
updated-dependencies:
- dependency-name: tokio
  dependency-version: 1.42.1
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump dawidd6/action-download-artifact (#7)

Bumps the github_actions group with 1 update in the /.github/workflows directory: [dawidd6/action-download-artifact](https://github.com/dawidd6/action-download-artifact).


Updates `dawidd6/action-download-artifact` from 2 to 6
- [Release notes](https://github.com/dawidd6/action-download-artifact/releases)
- [Commits](https://github.com/dawidd6/action-download-artifact/compare/v2...v6)

---
updated-dependencies:
- dependency-name: dawidd6/action-download-artifact
  dependency-version: '6'
  dependency-type: direct:production
  dependency-group: github_actions
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com>

* feat: upgrade which from 3.0.1 to 5.0.0 (#17)

Snyk has created this PR to upgrade which from 3.0.1 to 5.0.0.

See this package in npm:
which

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* fix: upgrade @changesets/cli from 2.27.5 to 2.28.1 (#16)

Snyk has created this PR to upgrade @changesets/cli from 2.27.5 to 2.28.1.

See this package in npm:
@changesets/cli

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* fix: upgrade prettier from 3.3.0 to 3.5.3 (#15)

Snyk has created this PR to upgrade prettier from 3.3.0 to 3.5.3.

See this package in npm:
prettier

See this project in Snyk:
https://app.snyk.io/org/dargon789/project/d81b0d0c-fd3c-4e68-ba3e-6a804eb0d25e?utm_source=github&utm_medium=referral&page=upgrade-pr

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* feat: upgrade execa from 7.2.0 to 9.5.2 (#14)

Snyk has created this PR to upgrade execa from 7.2.0 to 9.5.2.

See this package in npm:
execa

See this project in Snyk:
https://app.snyk.…
@sourcery-ai sourcery-ai bot mentioned this pull request Feb 10, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

# Flow diagram for npm.yml jobs and steps publishes a meta @foundry-rs/forge package once all per-arch

1 participant