diff --git a/.github/workflows/benchmark-comparision.yaml b/.github/workflows/benchmark-comparision.yaml new file mode 100644 index 000000000..f4b728098 --- /dev/null +++ b/.github/workflows/benchmark-comparision.yaml @@ -0,0 +1,68 @@ +# - When a third-party action is added (i.e., `uses`), please also add it to `download-licenses` in Makefile. +# - When a job is added/removed/renamed, please make corresponding changes in ci-docs.yaml. +name: Benchmark +on: + push: + branches: + - main + paths-ignore: + - '**.md' + - 'contrib/**' + +permissions: + # deployments permission to deploy GitHub pages website + deployments: write + # contents permission to update benchmark contents in gh-pages branch + contents: write + +jobs: + benchmark: + strategy: + fail-fast: false + matrix: + os: + [ ubuntu-latest ] + runs-on: ${{ matrix.os }} + steps: + - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 + with: + # We need to get all the git tags to make version injection work. See VERSION in Makefile for more detail. + fetch-depth: 0 + submodules: true + - uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2 + with: + go-version-file: go.mod + cache: true + - name: Clean up previous files + run: | + sudo rm -rf /opt/finch + sudo rm -rf ~/.finch + sudo rm -rf ./_output + if pgrep '^qemu-system'; then + sudo pkill '^qemu-system' + fi + if pgrep '^socket_vmnet'; then + sudo pkill '^socket_vmnet' + fi + - name: Install Dependencies + run: | + sudo apt-get install -y lz4 automake autoconf libtool + sudo snap install yq + - name: Build project + run: | + make + - name: Run benchmark + run: make test-benchmark-container | tee benchmark-container.txt + - name: Set OS info as env variable + run: | + echo "OS_VERSION=$(lsb_release -sr)" >> $GITHUB_ENV + echo "ARCH=$(uname -m)" >> $GITHUB_ENV + - name: Store benchmark result + uses: benchmark-action/github-action-benchmark@4de1bed97a47495fc4c5404952da0499e31f5c29 # v1.20.3 + with: + name: Finch Benchmark + tool: 'go' + benchmark-data-dir-path: "dev/bench/comparison/${{ env.OS_VERSION }}/${{ env.ARCH }}" + output-file-path: benchmark-container.txt + - name: Push benchmark result + run: git push 'https://github.com/coderbirju/finch.git' gh-pages:gh-pages diff --git a/.github/workflows/release-please.yaml b/.github/workflows/release-please.yaml index bdf566ab0..967050073 100644 --- a/.github/workflows/release-please.yaml +++ b/.github/workflows/release-please.yaml @@ -12,6 +12,8 @@ jobs: steps: - uses: googleapis/release-please-action@7987652d64b4581673a76e33ad5e98e3dd56832f # v4.1.3 id: release + with: + target-branch: ${{ github.head_ref || github.ref_name }} trigger-release-automation: name: Trigger release-automation.yaml if PR is merged needs: [release-please] diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 73d3293b9..f215a3dae 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.4.0" + ".": "1.0.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 27fb3f8c0..eaa33e89d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,689 @@ # Changelog +## [1.0.1](https://github.com/coderbirju/finch/compare/v1.0.1...v1.0.1) (2024-10-09) + + +### Build System or External Dependencies + +* **deps:** Bump github.com/aws/aws-sdk-go-v2 from 1.21.2 to 1.22.0 ([#677](https://github.com/coderbirju/finch/issues/677)) ([c450dc9](https://github.com/coderbirju/finch/commit/c450dc96b5f09b57adcf48a62c09138bc04f3df5)) +* **deps:** Bump github.com/aws/aws-sdk-go-v2 from 1.22.0 to 1.22.1 ([#682](https://github.com/coderbirju/finch/issues/682)) ([2537aa6](https://github.com/coderbirju/finch/commit/2537aa6490f411551f162255d152805cb5c47951)) +* **deps:** Bump github.com/aws/aws-sdk-go-v2 from 1.22.1 to 1.23.5 ([#716](https://github.com/coderbirju/finch/issues/716)) ([feedd95](https://github.com/coderbirju/finch/commit/feedd953825f8736736fa6c796a4bb72cf70aabd)) +* **deps:** Bump github.com/aws/aws-sdk-go-v2 from 1.23.5 to 1.24.0 ([#729](https://github.com/coderbirju/finch/issues/729)) ([963d278](https://github.com/coderbirju/finch/commit/963d278df6cfb2c660f25601a916293b29d51bc8)) +* **deps:** Bump github.com/aws/aws-sdk-go-v2 from 1.24.0 to 1.24.1 ([#749](https://github.com/coderbirju/finch/issues/749)) ([c3ae967](https://github.com/coderbirju/finch/commit/c3ae96794165b4ea696bb94856d40ff91767ed1b)) +* **deps:** Bump github.com/aws/aws-sdk-go-v2 from 1.25.0 to 1.25.2 ([#831](https://github.com/coderbirju/finch/issues/831)) ([9eb8097](https://github.com/coderbirju/finch/commit/9eb80975c7490394d5af082b2738dda7d3090fe1)) +* **deps:** Bump github.com/aws/aws-sdk-go-v2 from 1.25.2 to 1.25.3 ([#856](https://github.com/coderbirju/finch/issues/856)) ([e9314f0](https://github.com/coderbirju/finch/commit/e9314f0e5de309d95e51878a655eceec1e319141)) +* **deps:** Bump github.com/aws/aws-sdk-go-v2 from 1.25.3 to 1.26.0 ([#864](https://github.com/coderbirju/finch/issues/864)) ([9223219](https://github.com/coderbirju/finch/commit/922321930a61affd08697aba50c77931cae84ce6)) +* **deps:** Bump github.com/aws/aws-sdk-go-v2 from 1.26.0 to 1.26.1 ([#882](https://github.com/coderbirju/finch/issues/882)) ([c059d9e](https://github.com/coderbirju/finch/commit/c059d9ec3c4c17ba950bc25a9bb33a2b6c39394e)) +* **deps:** Bump github.com/aws/aws-sdk-go-v2 from 1.26.1 to 1.27.0 ([#954](https://github.com/coderbirju/finch/issues/954)) ([b06280c](https://github.com/coderbirju/finch/commit/b06280cfcd70cfd38a7d7d7aa911aab3469c2e67)) +* **deps:** Bump github.com/aws/aws-sdk-go-v2 from 1.27.0 to 1.27.1 ([#963](https://github.com/coderbirju/finch/issues/963)) ([4c2dc12](https://github.com/coderbirju/finch/commit/4c2dc1220c51990ebd3f96b973d05e30122a4b8d)) +* **deps:** Bump github.com/aws/aws-sdk-go-v2 from 1.27.1 to 1.27.2 ([#974](https://github.com/coderbirju/finch/issues/974)) ([54aa67c](https://github.com/coderbirju/finch/commit/54aa67cd50a9f02122f6c4af15e6299aeb56f833)) +* **deps:** bump github.com/aws/aws-sdk-go-v2 from 1.27.2 to 1.30.0 ([#991](https://github.com/coderbirju/finch/issues/991)) ([bbcb8e7](https://github.com/coderbirju/finch/commit/bbcb8e7fdc518eddeb64d1b6f0b59931a0f8450f)) +* **deps:** bump github.com/aws/aws-sdk-go-v2 from 1.30.0 to 1.30.1 ([#1004](https://github.com/coderbirju/finch/issues/1004)) ([0174b05](https://github.com/coderbirju/finch/commit/0174b05a2cc39971ee45fd92270cb268a918b57b)) +* **deps:** bump github.com/aws/aws-sdk-go-v2 from 1.30.1 to 1.30.3 ([#1028](https://github.com/coderbirju/finch/issues/1028)) ([dcb3865](https://github.com/coderbirju/finch/commit/dcb38650fa4c0038cabecb3fb17b3c8b03ca63a3)) +* **deps:** bump github.com/aws/aws-sdk-go-v2 from 1.30.3 to 1.30.4 ([#1064](https://github.com/coderbirju/finch/issues/1064)) ([51089f6](https://github.com/coderbirju/finch/commit/51089f68e287d66586f5599444e5803e27bdbb7e)) +* **deps:** bump github.com/aws/aws-sdk-go-v2 from 1.30.4 to 1.30.5 ([#1083](https://github.com/coderbirju/finch/issues/1083)) ([e4d4640](https://github.com/coderbirju/finch/commit/e4d46407d42f403f1576385b69e34de3ed7d57f8)) +* **deps:** Bump github.com/aws/aws-sdk-go-v2 from 1.30.5 to 1.31.0 ([#1108](https://github.com/coderbirju/finch/issues/1108)) ([b412103](https://github.com/coderbirju/finch/commit/b4121038c148b8671701935d32e8c7926f606010)) +* **deps:** Bump github.com/aws/aws-sdk-go-v2 from 1.31.0 to 1.32.1 ([#1134](https://github.com/coderbirju/finch/issues/1134)) ([a55450f](https://github.com/coderbirju/finch/commit/a55450f70c96e79ec695ceb234189735b99be896)) +* **deps:** Bump github.com/containerd/containerd from 1.7.10 to 1.7.11 ([#742](https://github.com/coderbirju/finch/issues/742)) ([7d1e250](https://github.com/coderbirju/finch/commit/7d1e25068a503a8b4ea7dd3f349ff4020168a6fb)) +* **deps:** bump github.com/containerd/nerdctl/v2 from 2.0.0-rc.1 to 2.0.0-rc.2 ([#1091](https://github.com/coderbirju/finch/issues/1091)) ([51c006d](https://github.com/coderbirju/finch/commit/51c006dfb9fa1dc3c54bad6cb422c68b69af474e)) +* **deps:** Bump github.com/docker/cli from 24.0.4+incompatible to 24.0.5+incompatible ([#495](https://github.com/coderbirju/finch/issues/495)) ([e9e8617](https://github.com/coderbirju/finch/commit/e9e8617b07301848dc1f6c3afa18643d212d024e)) +* **deps:** Bump github.com/docker/cli from 24.0.5+incompatible to 24.0.6+incompatible ([#560](https://github.com/coderbirju/finch/issues/560)) ([21bb893](https://github.com/coderbirju/finch/commit/21bb893105f0a4fc5541e3a8e9f5306edb739154)) +* **deps:** Bump github.com/docker/cli from 24.0.6+incompatible to 24.0.7+incompatible ([#665](https://github.com/coderbirju/finch/issues/665)) ([43a57ff](https://github.com/coderbirju/finch/commit/43a57ffc052ba1ffcf0f50cdb08dfdb42abc9723)) +* **deps:** Bump github.com/docker/cli from 25.0.3+incompatible to 25.0.4+incompatible ([#857](https://github.com/coderbirju/finch/issues/857)) ([838fc07](https://github.com/coderbirju/finch/commit/838fc07ee4ec22977606a28ea36b267788ace94d)) +* **deps:** Bump github.com/docker/cli from 25.0.4+incompatible to 26.0.0+incompatible ([#867](https://github.com/coderbirju/finch/issues/867)) ([4167d3d](https://github.com/coderbirju/finch/commit/4167d3dd61865b22bca9e7c54f839ba1d90138bf)) +* **deps:** Bump github.com/docker/cli from 26.0.0+incompatible to 26.0.1+incompatible ([#894](https://github.com/coderbirju/finch/issues/894)) ([680e23f](https://github.com/coderbirju/finch/commit/680e23fd5b5406855c65821029d94f777cdacb28)) +* **deps:** Bump github.com/docker/cli from 26.0.1+incompatible to 26.0.2+incompatible ([#906](https://github.com/coderbirju/finch/issues/906)) ([6fc6ce5](https://github.com/coderbirju/finch/commit/6fc6ce5918454f18037733ac9dcc0b9a3e8798af)) +* **deps:** Bump github.com/docker/cli from 26.0.2+incompatible to 26.1.0+incompatible ([#913](https://github.com/coderbirju/finch/issues/913)) ([bfeb585](https://github.com/coderbirju/finch/commit/bfeb585d599959b1af636beb11267dd52ab39c3e)) +* **deps:** Bump github.com/docker/cli from 26.1.0+incompatible to 26.1.1+incompatible ([#922](https://github.com/coderbirju/finch/issues/922)) ([7b6b3d2](https://github.com/coderbirju/finch/commit/7b6b3d24467b1becb0c8c9c6d44815ef6e62910b)) +* **deps:** Bump github.com/docker/cli from 26.1.1+incompatible to 26.1.2+incompatible ([#941](https://github.com/coderbirju/finch/issues/941)) ([eec3462](https://github.com/coderbirju/finch/commit/eec346241518140706129755e6b546394006f3f5)) +* **deps:** Bump github.com/docker/cli from 26.1.2+incompatible to 26.1.3+incompatible ([#952](https://github.com/coderbirju/finch/issues/952)) ([9a94c57](https://github.com/coderbirju/finch/commit/9a94c57cf8d966f42d8ec8510bac5617e292f7ec)) +* **deps:** Bump github.com/docker/cli from 26.1.3+incompatible to 26.1.4+incompatible ([#973](https://github.com/coderbirju/finch/issues/973)) ([f774e2d](https://github.com/coderbirju/finch/commit/f774e2d7316da5bb1a29f12ed58ba1ebd08f5a6c)) +* **deps:** bump github.com/docker/cli from 26.1.4+incompatible to 27.0.2+incompatible ([#999](https://github.com/coderbirju/finch/issues/999)) ([0244698](https://github.com/coderbirju/finch/commit/0244698ebe15f215941a875692246ba5c81cbdea)) +* **deps:** bump github.com/docker/cli from 27.0.2+incompatible to 27.0.3+incompatible ([#1005](https://github.com/coderbirju/finch/issues/1005)) ([c801e69](https://github.com/coderbirju/finch/commit/c801e690330dd44b9e5501dad529543d88849ab2)) +* **deps:** bump github.com/docker/cli from 27.0.3+incompatible to 27.1.0+incompatible ([#1041](https://github.com/coderbirju/finch/issues/1041)) ([187dd56](https://github.com/coderbirju/finch/commit/187dd5659b0a1f9a9644bcbb6bac6cd972a5d698)) +* **deps:** bump github.com/docker/cli from 27.1.0+incompatible to 27.1.1+incompatible ([#1045](https://github.com/coderbirju/finch/issues/1045)) ([9e9dec8](https://github.com/coderbirju/finch/commit/9e9dec89b3c58c2c3f36ac5c7f026cdddc510734)) +* **deps:** bump github.com/docker/cli from 27.1.2+incompatible to 27.2.0+incompatible ([#1074](https://github.com/coderbirju/finch/issues/1074)) ([87bc728](https://github.com/coderbirju/finch/commit/87bc7286ba018838a86a699356b3cfbbdc91e606)) +* **deps:** bump github.com/docker/cli from 27.2.0+incompatible to 27.2.1+incompatible ([#1088](https://github.com/coderbirju/finch/issues/1088)) ([0de5d1d](https://github.com/coderbirju/finch/commit/0de5d1db37660ec992c23117bde8c345f9dda09b)) +* **deps:** Bump github.com/docker/cli from 27.2.1+incompatible to 27.3.1+incompatible ([#1106](https://github.com/coderbirju/finch/issues/1106)) ([397c71c](https://github.com/coderbirju/finch/commit/397c71c38b0514dc27fdd49298199d4f9cdb0f43)) +* **deps:** Bump github.com/docker/docker from 23.0.3+incompatible to 23.0.5+incompatible ([#382](https://github.com/coderbirju/finch/issues/382)) ([3e0581c](https://github.com/coderbirju/finch/commit/3e0581cc0f86efcd9ce7b7dc8c9384fb1e6af785)) +* **deps:** Bump github.com/docker/docker from 23.0.5+incompatible to 23.0.6+incompatible ([#394](https://github.com/coderbirju/finch/issues/394)) ([f44bc2e](https://github.com/coderbirju/finch/commit/f44bc2eb14011640f7a25218bbc18a82d533e76a)) +* **deps:** Bump github.com/docker/docker from 23.0.6+incompatible to 24.0.0+incompatible ([#406](https://github.com/coderbirju/finch/issues/406)) ([25aa324](https://github.com/coderbirju/finch/commit/25aa324ca324248cf2093af23f205af1b5ae276f)) +* **deps:** Bump github.com/docker/docker from 24.0.0+incompatible to 24.0.1+incompatible ([#413](https://github.com/coderbirju/finch/issues/413)) ([bb1cab2](https://github.com/coderbirju/finch/commit/bb1cab229c787752615eb00e74f240c4a4e0e23d)) +* **deps:** Bump github.com/docker/docker from 24.0.1+incompatible to 24.0.2+incompatible ([#419](https://github.com/coderbirju/finch/issues/419)) ([f6f8aeb](https://github.com/coderbirju/finch/commit/f6f8aeb40fa0b2cfaa807c98eb3576ca262d75aa)) +* **deps:** Bump github.com/docker/docker from 24.0.2+incompatible to 24.0.4+incompatible ([#469](https://github.com/coderbirju/finch/issues/469)) ([ad37f4f](https://github.com/coderbirju/finch/commit/ad37f4fbce72a6f479620461127e8fe494d47cad)) +* **deps:** Bump github.com/docker/docker from 24.0.2+incompatible to 24.0.4+incompatible ([#481](https://github.com/coderbirju/finch/issues/481)) ([15d2a4b](https://github.com/coderbirju/finch/commit/15d2a4bf8cfd3956a2f8bb4878bfb86827b4e77d)) +* **deps:** Bump github.com/docker/docker from 24.0.4+incompatible to 24.0.5+incompatible ([#497](https://github.com/coderbirju/finch/issues/497)) ([6f1afbb](https://github.com/coderbirju/finch/commit/6f1afbb69554148efd8eea938278bcc5104ab050)) +* **deps:** Bump github.com/docker/docker from 24.0.5+incompatible to 24.0.6+incompatible ([#561](https://github.com/coderbirju/finch/issues/561)) ([e0160be](https://github.com/coderbirju/finch/commit/e0160be4b90b9db0e9e544a8ad9b170c08b38756)) +* **deps:** Bump github.com/docker/docker from 24.0.6+incompatible to 24.0.7+incompatible ([#666](https://github.com/coderbirju/finch/issues/666)) ([4e06d28](https://github.com/coderbirju/finch/commit/4e06d283512ed851279cb4988089f1c610896ba9)) +* **deps:** Bump github.com/docker/docker from 24.0.7+incompatible to 25.0.1+incompatible ([#772](https://github.com/coderbirju/finch/issues/772)) ([b16f6ae](https://github.com/coderbirju/finch/commit/b16f6aeb31473ce2e49550827d7a1974fd719e0d)) +* **deps:** Bump github.com/docker/docker from 25.0.1+incompatible to 25.0.3+incompatible ([#799](https://github.com/coderbirju/finch/issues/799)) ([d761301](https://github.com/coderbirju/finch/commit/d7613012551bd47c26476a993a35856aab91511c)) +* **deps:** Bump github.com/docker/docker from 25.0.3+incompatible to 25.0.4+incompatible ([#845](https://github.com/coderbirju/finch/issues/845)) ([769ae32](https://github.com/coderbirju/finch/commit/769ae321828eb5842943a2bf503297543551bdfe)) +* **deps:** Bump github.com/docker/docker from 25.0.4+incompatible to 26.0.0+incompatible ([#866](https://github.com/coderbirju/finch/issues/866)) ([7fa6e72](https://github.com/coderbirju/finch/commit/7fa6e72fb8d62f16b88deb6dbd7b09aaaa1acdac)) +* **deps:** Bump github.com/docker/docker from 26.0.0+incompatible to 26.0.1+incompatible ([#892](https://github.com/coderbirju/finch/issues/892)) ([05610c1](https://github.com/coderbirju/finch/commit/05610c1b70d884fdbaf74c467e090ddcadd100e9)) +* **deps:** Bump github.com/docker/docker from 26.0.1+incompatible to 26.0.2+incompatible ([#905](https://github.com/coderbirju/finch/issues/905)) ([69e7d0b](https://github.com/coderbirju/finch/commit/69e7d0b153c60653a4f0299c66bb984c39f6434b)) +* **deps:** Bump github.com/docker/docker from 26.0.2+incompatible to 26.1.0+incompatible ([#912](https://github.com/coderbirju/finch/issues/912)) ([5e5f8a8](https://github.com/coderbirju/finch/commit/5e5f8a83aaaa9602e7e22ef48ea4f93be1bfe3c3)) +* **deps:** Bump github.com/docker/docker from 26.1.0+incompatible to 26.1.1+incompatible ([#924](https://github.com/coderbirju/finch/issues/924)) ([79eb863](https://github.com/coderbirju/finch/commit/79eb86318039016e184fdad7c24ebc95c25b73b0)) +* **deps:** Bump github.com/docker/docker from 26.1.1+incompatible to 26.1.2+incompatible ([#940](https://github.com/coderbirju/finch/issues/940)) ([aa3ab01](https://github.com/coderbirju/finch/commit/aa3ab0129bfba62fbaf8ef82cb45b971fcd555c6)) +* **deps:** Bump github.com/docker/docker from 26.1.2+incompatible to 26.1.3+incompatible ([#951](https://github.com/coderbirju/finch/issues/951)) ([cef9d8f](https://github.com/coderbirju/finch/commit/cef9d8fdc335f9a7d762fb260f84056217f2d7d0)) +* **deps:** Bump github.com/docker/docker from 26.1.3+incompatible to 26.1.4+incompatible ([#972](https://github.com/coderbirju/finch/issues/972)) ([05b9c05](https://github.com/coderbirju/finch/commit/05b9c0506b7c482b916445a4e53664846c5c45b6)) +* **deps:** bump github.com/docker/docker from 26.1.4+incompatible to 27.0.1+incompatible ([#996](https://github.com/coderbirju/finch/issues/996)) ([1f68260](https://github.com/coderbirju/finch/commit/1f682607bb5430cf88ea50c5c5ba3d4f5299ccc0)) +* **deps:** bump github.com/docker/docker from 27.0.1+incompatible to 27.0.2+incompatible ([#1001](https://github.com/coderbirju/finch/issues/1001)) ([50a639b](https://github.com/coderbirju/finch/commit/50a639b4ea9c9c1c59a67ed6a26902aae5b01abe)) +* **deps:** bump github.com/docker/docker from 27.0.2+incompatible to 27.0.3+incompatible ([#1006](https://github.com/coderbirju/finch/issues/1006)) ([537abad](https://github.com/coderbirju/finch/commit/537abadac3acc3e51d81f13e584c6d4e234cd654)) +* **deps:** bump github.com/docker/docker from 27.0.3+incompatible to 27.1.0+incompatible ([#1042](https://github.com/coderbirju/finch/issues/1042)) ([942b639](https://github.com/coderbirju/finch/commit/942b639659f35f43cb740d81c30e46f85b6d0912)) +* **deps:** bump github.com/docker/docker from 27.1.0+incompatible to 27.1.1+incompatible ([#1044](https://github.com/coderbirju/finch/issues/1044)) ([d33cb5d](https://github.com/coderbirju/finch/commit/d33cb5d7fb31218fc001bec8d58c8224852622b3)) +* **deps:** bump github.com/docker/docker from 27.1.1+incompatible to 27.1.2+incompatible ([#1061](https://github.com/coderbirju/finch/issues/1061)) ([801f825](https://github.com/coderbirju/finch/commit/801f8254b6c0070b37d3d1fef0d80e2270b8c6b2)) +* **deps:** bump github.com/docker/docker from 27.1.2+incompatible to 27.2.0+incompatible ([#1073](https://github.com/coderbirju/finch/issues/1073)) ([726dc07](https://github.com/coderbirju/finch/commit/726dc072fb4669d29b294c86d8c916d228680403)) +* **deps:** Bump github.com/docker/docker from 27.2.1+incompatible to 27.3.1+incompatible ([#1105](https://github.com/coderbirju/finch/issues/1105)) ([aa0c15a](https://github.com/coderbirju/finch/commit/aa0c15a2d575ff027f7471023cc478318f634f2a)) +* **deps:** Bump github.com/goccy/go-yaml from 1.11.2 to 1.11.3 ([#780](https://github.com/coderbirju/finch/issues/780)) ([2e616ff](https://github.com/coderbirju/finch/commit/2e616ff18d68931f0da81a04045960f035568322)) +* **deps:** Bump github.com/lima-vm/lima from 0.15.0 to 0.15.1 ([#365](https://github.com/coderbirju/finch/issues/365)) ([1d3ee98](https://github.com/coderbirju/finch/commit/1d3ee985427e601bf3f5659c3bba13467ec01ce0)) +* **deps:** Bump github.com/lima-vm/lima from 0.15.1 to 0.16.0 ([#428](https://github.com/coderbirju/finch/issues/428)) ([6a67f0c](https://github.com/coderbirju/finch/commit/6a67f0cfb0a3a1da438779f4faa04048f25d7dde)) +* **deps:** Bump github.com/lima-vm/lima from 0.16.0 to 0.17.2 ([#531](https://github.com/coderbirju/finch/issues/531)) ([6e33d15](https://github.com/coderbirju/finch/commit/6e33d159e2f522784860bc60ceea897a98d1fe5f)) +* **deps:** Bump github.com/lima-vm/lima from 0.17.2 to 0.18.0 ([#643](https://github.com/coderbirju/finch/issues/643)) ([f181b89](https://github.com/coderbirju/finch/commit/f181b8970c6d63a25d22be44820d1570c95b6f41)) +* **deps:** Bump github.com/lima-vm/lima from 0.18.0 to 0.19.0 ([#721](https://github.com/coderbirju/finch/issues/721)) ([2058164](https://github.com/coderbirju/finch/commit/20581647a1949e7e9d258e851dd25a1105168410)) +* **deps:** Bump github.com/lima-vm/lima from 0.19.0 to 0.20.0 ([#769](https://github.com/coderbirju/finch/issues/769)) ([7f0c86e](https://github.com/coderbirju/finch/commit/7f0c86e208a2d6faf3a93ed72887a7211fb9aa9f)) +* **deps:** Bump github.com/lima-vm/lima from 0.20.1 to 0.20.2 ([#855](https://github.com/coderbirju/finch/issues/855)) ([99d4c3c](https://github.com/coderbirju/finch/commit/99d4c3cd8d1623b70c859077fbe7e07a69cf9853)) +* **deps:** Bump github.com/lima-vm/lima from 0.20.2 to 0.21.0 ([#862](https://github.com/coderbirju/finch/issues/862)) ([120ffcc](https://github.com/coderbirju/finch/commit/120ffccf2bb85fa0f5dd1c8907e9f8ecc70eb416)) +* **deps:** Bump github.com/lima-vm/lima from 0.21.0 to 0.22.0 ([#934](https://github.com/coderbirju/finch/issues/934)) ([62d67d5](https://github.com/coderbirju/finch/commit/62d67d5cd3a069eeee209a9c854afa3b98165975)) +* **deps:** bump github.com/lima-vm/lima from 0.22.0 to 0.23.1 ([#1066](https://github.com/coderbirju/finch/issues/1066)) ([09d7355](https://github.com/coderbirju/finch/commit/09d73552047e83b3bafcbbafab3e9efdbf93ea64)) +* **deps:** bump github.com/lima-vm/lima from 0.23.1 to 0.23.2 ([#1077](https://github.com/coderbirju/finch/issues/1077)) ([0a02a4b](https://github.com/coderbirju/finch/commit/0a02a4b1d8189d33894f0a49bc4412739169373c)) +* **deps:** Bump github.com/onsi/ginkgo/v2 from 2.10.0 to 2.11.0 ([#456](https://github.com/coderbirju/finch/issues/456)) ([f7e0916](https://github.com/coderbirju/finch/commit/f7e091670fb2ac5377423e72f98aa8be33aa41c8)) +* **deps:** Bump github.com/onsi/ginkgo/v2 from 2.11.0 to 2.12.0 ([#542](https://github.com/coderbirju/finch/issues/542)) ([8536481](https://github.com/coderbirju/finch/commit/85364818e9f5a9ca1993fa7a3fc8ce775e002a42)) +* **deps:** Bump github.com/onsi/ginkgo/v2 from 2.13.1 to 2.13.2 ([#708](https://github.com/coderbirju/finch/issues/708)) ([cbbd064](https://github.com/coderbirju/finch/commit/cbbd0645aaa5164ffe9eb31d1d1ab7220a50a03e)) +* **deps:** Bump github.com/onsi/ginkgo/v2 from 2.13.2 to 2.14.0 ([#758](https://github.com/coderbirju/finch/issues/758)) ([7d3a7c8](https://github.com/coderbirju/finch/commit/7d3a7c84b02d70edad7947573f77dada22332f41)) +* **deps:** Bump github.com/onsi/ginkgo/v2 from 2.15.0 to 2.16.0 ([#842](https://github.com/coderbirju/finch/issues/842)) ([8e04421](https://github.com/coderbirju/finch/commit/8e044217f97b9fe8b4557e5770eb2b383768c413)) +* **deps:** Bump github.com/onsi/ginkgo/v2 from 2.17.1 to 2.17.2 ([#920](https://github.com/coderbirju/finch/issues/920)) ([939639e](https://github.com/coderbirju/finch/commit/939639edd7cea38a05ce139d49b5f1b5c4305a1f)) +* **deps:** Bump github.com/onsi/ginkgo/v2 from 2.17.2 to 2.17.3 ([#933](https://github.com/coderbirju/finch/issues/933)) ([c56019d](https://github.com/coderbirju/finch/commit/c56019d4d0d9e0479b7580d72beff1ae677c7c09)) +* **deps:** Bump github.com/onsi/ginkgo/v2 from 2.17.3 to 2.19.0 ([#959](https://github.com/coderbirju/finch/issues/959)) ([08d7a34](https://github.com/coderbirju/finch/commit/08d7a3406106838cf3cad9f27f27f5aba5fef507)) +* **deps:** bump github.com/onsi/ginkgo/v2 from 2.19.0 to 2.19.1 ([#1046](https://github.com/coderbirju/finch/issues/1046)) ([39bba35](https://github.com/coderbirju/finch/commit/39bba35ddfb75d02bacdfac36bb3fffb511dc273)) +* **deps:** bump github.com/onsi/ginkgo/v2 from 2.19.1 to 2.20.0 ([#1057](https://github.com/coderbirju/finch/issues/1057)) ([221a935](https://github.com/coderbirju/finch/commit/221a935a28ac72b7365633abf88d93940d40e285)) +* **deps:** bump github.com/onsi/ginkgo/v2 from 2.20.0 to 2.20.2 ([#1075](https://github.com/coderbirju/finch/issues/1075)) ([81af756](https://github.com/coderbirju/finch/commit/81af756115cd698b375d6a78b8fc2331c26216ab)) +* **deps:** Bump github.com/onsi/ginkgo/v2 from 2.9.2 to 2.9.3 ([#390](https://github.com/coderbirju/finch/issues/390)) ([7102994](https://github.com/coderbirju/finch/commit/710299445ed287c67114b277be7bd2a29715956b)) +* **deps:** Bump github.com/onsi/ginkgo/v2 from 2.9.3 to 2.9.5 ([#400](https://github.com/coderbirju/finch/issues/400)) ([65458f1](https://github.com/coderbirju/finch/commit/65458f1b0c20705e724ac07356d87dd47ae2000c)) +* **deps:** Bump github.com/onsi/ginkgo/v2 from 2.9.5 to 2.9.7 ([#432](https://github.com/coderbirju/finch/issues/432)) ([0a381f1](https://github.com/coderbirju/finch/commit/0a381f17ea2602bc3b19f9b2101da9e3a589f6d3)) +* **deps:** Bump github.com/onsi/ginkgo/v2 from 2.9.7 to 2.10.0 ([#449](https://github.com/coderbirju/finch/issues/449)) ([a415e3e](https://github.com/coderbirju/finch/commit/a415e3ef7b2741853bf352b915c4100c77600619)) +* **deps:** Bump github.com/onsi/gomega from 1.27.10 to 1.28.0 ([#583](https://github.com/coderbirju/finch/issues/583)) ([9d1ad57](https://github.com/coderbirju/finch/commit/9d1ad5748967b8b978131ddb50071200fcceffde)) +* **deps:** Bump github.com/onsi/gomega from 1.27.5 to 1.27.6 ([#331](https://github.com/coderbirju/finch/issues/331)) ([fe388a3](https://github.com/coderbirju/finch/commit/fe388a31f830f854abacb06729ddf710040e9e62)) +* **deps:** Bump github.com/onsi/gomega from 1.27.6 to 1.27.7 ([#409](https://github.com/coderbirju/finch/issues/409)) ([80513c7](https://github.com/coderbirju/finch/commit/80513c7785a6da4ae09d9c871acaf180f5d68f2c)) +* **deps:** Bump github.com/onsi/gomega from 1.27.7 to 1.27.8 ([#448](https://github.com/coderbirju/finch/issues/448)) ([96fc8d0](https://github.com/coderbirju/finch/commit/96fc8d09a051b2ead932e6eef064624b1a842b66)) +* **deps:** Bump github.com/onsi/gomega from 1.27.8 to 1.27.10 ([#496](https://github.com/coderbirju/finch/issues/496)) ([d08d102](https://github.com/coderbirju/finch/commit/d08d102d05a350a8b8e586c42ef83d51495cf4f9)) +* **deps:** Bump github.com/onsi/gomega from 1.28.0 to 1.29.0 ([#662](https://github.com/coderbirju/finch/issues/662)) ([5c9de37](https://github.com/coderbirju/finch/commit/5c9de37cb8ba8a4d5cabfe3c640239bd1afa87e0)) +* **deps:** Bump github.com/onsi/gomega from 1.29.0 to 1.30.0 ([#693](https://github.com/coderbirju/finch/issues/693)) ([2b0c54c](https://github.com/coderbirju/finch/commit/2b0c54c85a227bdca0189a3e96b9981289759f53)) +* **deps:** Bump github.com/onsi/gomega from 1.30.0 to 1.31.1 ([#768](https://github.com/coderbirju/finch/issues/768)) ([889abf8](https://github.com/coderbirju/finch/commit/889abf8d7b8fa795790e509cbc00886dedce5af6)) +* **deps:** Bump github.com/onsi/gomega from 1.31.1 to 1.32.0 ([#860](https://github.com/coderbirju/finch/issues/860)) ([b2c9449](https://github.com/coderbirju/finch/commit/b2c94497ec1c950dfe909265f13d70c8c0f8fed9)) +* **deps:** Bump github.com/onsi/gomega from 1.33.0 to 1.33.1 ([#923](https://github.com/coderbirju/finch/issues/923)) ([e7f4e0d](https://github.com/coderbirju/finch/commit/e7f4e0db0e7e5e4bb246c7b503f51dc59e392d55)) +* **deps:** bump github.com/onsi/gomega from 1.33.1 to 1.34.1 ([#1048](https://github.com/coderbirju/finch/issues/1048)) ([66ceee4](https://github.com/coderbirju/finch/commit/66ceee43089998266812efdc759fd4b57c504bde)) +* **deps:** bump github.com/onsi/gomega from 1.34.1 to 1.34.2 ([#1076](https://github.com/coderbirju/finch/issues/1076)) ([e04a072](https://github.com/coderbirju/finch/commit/e04a072aede5e289faf986adc6423a63bbd61c11)) +* **deps:** Bump github.com/pkg/sftp from 1.13.5 to 1.13.6 ([#530](https://github.com/coderbirju/finch/issues/530)) ([09b3846](https://github.com/coderbirju/finch/commit/09b38467333e5e59eadb76cd5f4612768cde5289)) +* **deps:** Bump github.com/runfinch/common-tests from 0.6.4 to 0.6.5 ([#357](https://github.com/coderbirju/finch/issues/357)) ([dc84864](https://github.com/coderbirju/finch/commit/dc848640b719c623dbf606439e6e3e1d9dcd02d6)) +* **deps:** Bump github.com/runfinch/common-tests from 0.6.5 to 0.7.0 ([#420](https://github.com/coderbirju/finch/issues/420)) ([ac18046](https://github.com/coderbirju/finch/commit/ac18046e70efc0e1e9fe11a30457f6f945df2a23)) +* **deps:** Bump github.com/runfinch/common-tests from 0.7.0 to 0.7.1 ([#477](https://github.com/coderbirju/finch/issues/477)) ([54c03bb](https://github.com/coderbirju/finch/commit/54c03bbfba132d797b0efa1171ce3fdc6eb8af9e)) +* **deps:** Bump github.com/runfinch/common-tests from 0.7.11 to 0.7.12 ([#761](https://github.com/coderbirju/finch/issues/761)) ([bb17a96](https://github.com/coderbirju/finch/commit/bb17a96b58b85c42fdc6fbd093209ce1ab900707)) +* **deps:** Bump github.com/runfinch/common-tests from 0.7.13 to 0.7.14 ([#834](https://github.com/coderbirju/finch/issues/834)) ([2287575](https://github.com/coderbirju/finch/commit/22875751324666cb68f6ef928b9960b8fb9ede08)) +* **deps:** Bump github.com/runfinch/common-tests from 0.7.18 to 0.7.21 ([#878](https://github.com/coderbirju/finch/issues/878)) ([e1cbd0a](https://github.com/coderbirju/finch/commit/e1cbd0a466468eae01b60e3eb30bc3205a551ed4)) +* **deps:** Bump github.com/runfinch/common-tests from 0.7.2 to 0.7.3 ([#548](https://github.com/coderbirju/finch/issues/548)) ([a054ef3](https://github.com/coderbirju/finch/commit/a054ef3aa028b2c50fca93631a7b547b9c535f2e)) +* **deps:** Bump github.com/runfinch/common-tests from 0.7.21 to 0.7.22 ([#907](https://github.com/coderbirju/finch/issues/907)) ([84b4a69](https://github.com/coderbirju/finch/commit/84b4a692fc81bdf28ed215322b2b8f90ca556976)) +* **deps:** Bump github.com/runfinch/common-tests from 0.7.6 to 0.7.7 ([#609](https://github.com/coderbirju/finch/issues/609)) ([e21ae83](https://github.com/coderbirju/finch/commit/e21ae836d4f73ea07852e3cd1fc6cc16d56e4f32)) +* **deps:** Bump github.com/runfinch/common-tests from 0.7.7 to 0.7.8 ([#617](https://github.com/coderbirju/finch/issues/617)) ([4d942f5](https://github.com/coderbirju/finch/commit/4d942f550c86106a224e97f32f1bf90f1b4d44cb)) +* **deps:** Bump github.com/shirou/gopsutil/v3 from 3.23.10 to 3.23.11 ([#720](https://github.com/coderbirju/finch/issues/720)) ([defc6c5](https://github.com/coderbirju/finch/commit/defc6c55050dceab6273e501796b918ce8c86075)) +* **deps:** Bump github.com/shirou/gopsutil/v3 from 3.23.11 to 3.23.12 ([#744](https://github.com/coderbirju/finch/issues/744)) ([eb55877](https://github.com/coderbirju/finch/commit/eb55877a330d4c45eb210a19188f54032d7f8274)) +* **deps:** Bump github.com/shirou/gopsutil/v3 from 3.23.12 to 3.24.1 ([#787](https://github.com/coderbirju/finch/issues/787)) ([55f6d92](https://github.com/coderbirju/finch/commit/55f6d929949c1f776a63b93ea4a4446cc821e74a)) +* **deps:** Bump github.com/shirou/gopsutil/v3 from 3.23.3 to 3.23.4 ([#389](https://github.com/coderbirju/finch/issues/389)) ([76b31c0](https://github.com/coderbirju/finch/commit/76b31c0c453935f22588523f65888e103581cd89)) +* **deps:** Bump github.com/shirou/gopsutil/v3 from 3.23.4 to 3.23.5 ([#437](https://github.com/coderbirju/finch/issues/437)) ([8635294](https://github.com/coderbirju/finch/commit/8635294bcb22207bfdaa3f96756f93ba580ff6e2)) +* **deps:** Bump github.com/shirou/gopsutil/v3 from 3.23.5 to 3.23.6 ([#464](https://github.com/coderbirju/finch/issues/464)) ([43a6720](https://github.com/coderbirju/finch/commit/43a672011fd47830073b8cc7427f82c6f1c3e5bd)) +* **deps:** Bump github.com/shirou/gopsutil/v3 from 3.23.6 to 3.23.7 ([#513](https://github.com/coderbirju/finch/issues/513)) ([83bd718](https://github.com/coderbirju/finch/commit/83bd718be67ddba624e8218034c91bf399e2cccd)) +* **deps:** Bump github.com/shirou/gopsutil/v3 from 3.23.7 to 3.23.8 ([#552](https://github.com/coderbirju/finch/issues/552)) ([cf9399a](https://github.com/coderbirju/finch/commit/cf9399a5dd125b875d6212b029ed19530898cdee)) +* **deps:** Bump github.com/shirou/gopsutil/v3 from 3.23.8 to 3.23.9 ([#588](https://github.com/coderbirju/finch/issues/588)) ([20385b7](https://github.com/coderbirju/finch/commit/20385b7c5c0a45f5495615ebb3ce70220ab15969)) +* **deps:** Bump github.com/shirou/gopsutil/v3 from 3.23.9 to 3.23.10 ([#678](https://github.com/coderbirju/finch/issues/678)) ([1b2b823](https://github.com/coderbirju/finch/commit/1b2b823da40454ac55b755145840bc5b03ab3091)) +* **deps:** Bump github.com/shirou/gopsutil/v3 from 3.24.1 to 3.24.2 ([#838](https://github.com/coderbirju/finch/issues/838)) ([d2612aa](https://github.com/coderbirju/finch/commit/d2612aa7683e93213e0ba5f9e082afb343ddcaf2)) +* **deps:** Bump github.com/shirou/gopsutil/v3 from 3.24.2 to 3.24.3 ([#881](https://github.com/coderbirju/finch/issues/881)) ([465e369](https://github.com/coderbirju/finch/commit/465e369479fb803dde75be02ee4a8e37c3a3ffdf)) +* **deps:** Bump github.com/shirou/gopsutil/v3 from 3.24.3 to 3.24.4 ([#925](https://github.com/coderbirju/finch/issues/925)) ([8cd5643](https://github.com/coderbirju/finch/commit/8cd5643b13adeac92ead09d45e8d890bb99d01a8)) +* **deps:** Bump github.com/shirou/gopsutil/v3 from 3.24.4 to 3.24.5 ([#962](https://github.com/coderbirju/finch/issues/962)) ([8e51db3](https://github.com/coderbirju/finch/commit/8e51db3c0d622d850ffd7e8d38b9e846ff586e95)) +* **deps:** Bump github.com/sirupsen/logrus from 1.9.0 to 1.9.1 ([#405](https://github.com/coderbirju/finch/issues/405)) ([05b6b2e](https://github.com/coderbirju/finch/commit/05b6b2e7364036a3d30b67ad409f55526cc59ffe)) +* **deps:** Bump github.com/sirupsen/logrus from 1.9.1 to 1.9.2 ([#408](https://github.com/coderbirju/finch/issues/408)) ([0ff477a](https://github.com/coderbirju/finch/commit/0ff477ab32e2c427bbc800b6ae65efc72b5ed1eb)) +* **deps:** Bump github.com/sirupsen/logrus from 1.9.2 to 1.9.3 ([#446](https://github.com/coderbirju/finch/issues/446)) ([1823677](https://github.com/coderbirju/finch/commit/18236774d971065dec28d1db204e1f697d418a9b)) +* **deps:** Bump github.com/spf13/afero from 1.10.0 to 1.11.0 ([#705](https://github.com/coderbirju/finch/issues/705)) ([928574f](https://github.com/coderbirju/finch/commit/928574f45f5990627d469a4d5074ef3de104519c)) +* **deps:** Bump github.com/spf13/cobra from 1.7.0 to 1.8.0 ([#686](https://github.com/coderbirju/finch/issues/686)) ([00ba174](https://github.com/coderbirju/finch/commit/00ba174ad1c59981f6ce48bf80fc7e41cfed301b)) +* **deps:** bump github.com/spf13/cobra from 1.8.0 to 1.8.1 ([#983](https://github.com/coderbirju/finch/issues/983)) ([7b2bed6](https://github.com/coderbirju/finch/commit/7b2bed648eae4cb915514981da777b9df7729f88)) +* **deps:** Bump github.com/stretchr/testify from 1.8.2 to 1.8.4 ([#429](https://github.com/coderbirju/finch/issues/429)) ([0f7750e](https://github.com/coderbirju/finch/commit/0f7750ebeee01108a9f6a6fcfe0c7f5f044bc336)) +* **deps:** Bump github.com/stretchr/testify from 1.8.4 to 1.9.0 ([#839](https://github.com/coderbirju/finch/issues/839)) ([9f0953d](https://github.com/coderbirju/finch/commit/9f0953d260c806b4b243472ddce14284b2051a3e)) +* **deps:** Bump github.com/tc-hib/go-winres from 0.3.1 to 0.3.3 ([#893](https://github.com/coderbirju/finch/issues/893)) ([ebb4c9f](https://github.com/coderbirju/finch/commit/ebb4c9f5a40a003aebefa765de971835c461c3d2)) +* **deps:** Bump golang.org/x/crypto from 0.10.0 to 0.11.0 ([#465](https://github.com/coderbirju/finch/issues/465)) ([dc5a3e7](https://github.com/coderbirju/finch/commit/dc5a3e7240d4af6b63874e239bc77bed04d2a0a6)) +* **deps:** Bump golang.org/x/crypto from 0.12.0 to 0.13.0 ([#558](https://github.com/coderbirju/finch/issues/558)) ([f24264d](https://github.com/coderbirju/finch/commit/f24264d30805252d91b531c2bca8d9c883b88196)) +* **deps:** Bump golang.org/x/crypto from 0.14.0 to 0.15.0 ([#692](https://github.com/coderbirju/finch/issues/692)) ([fba68ff](https://github.com/coderbirju/finch/commit/fba68ff03c01032665793b0f27681173ec03ceec)) +* **deps:** Bump golang.org/x/crypto from 0.15.0 to 0.16.0 ([#704](https://github.com/coderbirju/finch/issues/704)) ([f6a920f](https://github.com/coderbirju/finch/commit/f6a920fc80bf7be954527fe5bd765dddcd0d5db5)) +* **deps:** Bump golang.org/x/crypto from 0.16.0 to 0.18.0 ([#751](https://github.com/coderbirju/finch/issues/751)) ([fc434ac](https://github.com/coderbirju/finch/commit/fc434ac4f288bb1d2eeef3c2e2bcb186e8aa5278)) +* **deps:** Bump golang.org/x/crypto from 0.18.0 to 0.19.0 ([#806](https://github.com/coderbirju/finch/issues/806)) ([3fbc87c](https://github.com/coderbirju/finch/commit/3fbc87ce7e6a07a789674a52fb79f968db267951)) +* **deps:** Bump golang.org/x/crypto from 0.19.0 to 0.20.0 ([#833](https://github.com/coderbirju/finch/issues/833)) ([1ed1474](https://github.com/coderbirju/finch/commit/1ed1474fa7eaca97e32a7641da76ca96e5d300d1)) +* **deps:** Bump golang.org/x/crypto from 0.20.0 to 0.21.0 ([#843](https://github.com/coderbirju/finch/issues/843)) ([b7ef6f2](https://github.com/coderbirju/finch/commit/b7ef6f2a946b1a813dd5846e4ea8726a1442b332)) +* **deps:** Bump golang.org/x/crypto from 0.22.0 to 0.23.0 ([#928](https://github.com/coderbirju/finch/issues/928)) ([1687293](https://github.com/coderbirju/finch/commit/16872932c1345d5894a2d5c859f0fbcdc756ff35)) +* **deps:** bump golang.org/x/crypto from 0.24.0 to 0.25.0 ([#1016](https://github.com/coderbirju/finch/issues/1016)) ([b7c711a](https://github.com/coderbirju/finch/commit/b7c711abe4831342dcd3347ce658b9c301d4e191)) +* **deps:** bump golang.org/x/crypto from 0.25.0 to 0.26.0 ([#1054](https://github.com/coderbirju/finch/issues/1054)) ([2ecab35](https://github.com/coderbirju/finch/commit/2ecab35866f2f3d99ba3cf32d6b3f337341cce20)) +* **deps:** Bump golang.org/x/crypto from 0.7.0 to 0.8.0 ([#349](https://github.com/coderbirju/finch/issues/349)) ([82b27c9](https://github.com/coderbirju/finch/commit/82b27c9bb1424ef47fe05cf805aebc337af3bc5e)) +* **deps:** Bump golang.org/x/crypto from 0.8.0 to 0.9.0 ([#397](https://github.com/coderbirju/finch/issues/397)) ([f15c2ee](https://github.com/coderbirju/finch/commit/f15c2ee576416c0cb25de45438bd894ca6b1fdcb)) +* **deps:** Bump golang.org/x/crypto from 0.9.0 to 0.10.0 ([#451](https://github.com/coderbirju/finch/issues/451)) ([fef6e77](https://github.com/coderbirju/finch/commit/fef6e772c28429ef14068702c1dfd8e9fec2dea1)) +* **deps:** Bump golang.org/x/image from 0.0.0-20210220032944-ac19c3e999fb to 0.10.0 ([#752](https://github.com/coderbirju/finch/issues/752)) ([9a08b45](https://github.com/coderbirju/finch/commit/9a08b45466cc58326df05d94dfe91edd07158759)) +* **deps:** bump golang.org/x/image from 0.12.0 to 0.18.0 ([#998](https://github.com/coderbirju/finch/issues/998)) ([398658e](https://github.com/coderbirju/finch/commit/398658eaff3299d6edf705f922ce1f1732d974cb)) +* **deps:** bump golang.org/x/sys from 0.22.0 to 0.23.0 ([#1051](https://github.com/coderbirju/finch/issues/1051)) ([c6402ab](https://github.com/coderbirju/finch/commit/c6402ab9471419ed37a744950a38447e155470d2)) +* **deps:** bump golang.org/x/sys from 0.23.0 to 0.24.0 ([#1059](https://github.com/coderbirju/finch/issues/1059)) ([9529346](https://github.com/coderbirju/finch/commit/9529346e95c48056c71ee7e09cd6ce10044044f8)) +* **deps:** bump golang.org/x/sys from 0.24.0 to 0.25.0 ([#1084](https://github.com/coderbirju/finch/issues/1084)) ([9ace518](https://github.com/coderbirju/finch/commit/9ace5180006a7677ad03ab0dda21506e93022a6e)) +* **deps:** Bump golang.org/x/text from 0.14.0 to 0.15.0 ([#929](https://github.com/coderbirju/finch/issues/929)) ([85e1bec](https://github.com/coderbirju/finch/commit/85e1becd9a1c4a1396c8611dab74ec36d41d10eb)) +* **deps:** Bump golang.org/x/text from 0.15.0 to 0.16.0 ([#964](https://github.com/coderbirju/finch/issues/964)) ([8a3973a](https://github.com/coderbirju/finch/commit/8a3973a4d08e3ed7b33fde4d94a2717126042618)) +* **deps:** bump golang.org/x/text from 0.17.0 to 0.18.0 ([#1082](https://github.com/coderbirju/finch/issues/1082)) ([52b1ba3](https://github.com/coderbirju/finch/commit/52b1ba3cbc4a9896633cb2c15b10d838e4e4c4dc)) +* **deps:** Bump golang.org/x/tools from 0.10.0 to 0.11.0 ([#466](https://github.com/coderbirju/finch/issues/466)) ([a8b32f9](https://github.com/coderbirju/finch/commit/a8b32f9674f93cfe54686a2e29b4cf6ca4534939)) +* **deps:** Bump golang.org/x/tools from 0.11.0 to 0.11.1 ([#509](https://github.com/coderbirju/finch/issues/509)) ([e826bcf](https://github.com/coderbirju/finch/commit/e826bcff385946bb6629db8935d3aa912befb5bb)) +* **deps:** Bump golang.org/x/tools from 0.11.1 to 0.12.0 ([#523](https://github.com/coderbirju/finch/issues/523)) ([09d6514](https://github.com/coderbirju/finch/commit/09d6514bfba31a898e3b3407964113f21fb6b244)) +* **deps:** Bump golang.org/x/tools from 0.12.0 to 0.13.0 ([#559](https://github.com/coderbirju/finch/issues/559)) ([0f56d23](https://github.com/coderbirju/finch/commit/0f56d23b4e9210960c02822cd19a8a47326caa0e)) +* **deps:** Bump golang.org/x/tools from 0.13.0 to 0.14.0 ([#610](https://github.com/coderbirju/finch/issues/610)) ([8938cf3](https://github.com/coderbirju/finch/commit/8938cf394f12b42da976c2963fad82c42a52aa85)) +* **deps:** Bump golang.org/x/tools from 0.14.0 to 0.16.0 ([#706](https://github.com/coderbirju/finch/issues/706)) ([6f021a2](https://github.com/coderbirju/finch/commit/6f021a29fbabb35ef3b5b406d10932c81d2bd0c3)) +* **deps:** Bump golang.org/x/tools from 0.16.0 to 0.16.1 ([#734](https://github.com/coderbirju/finch/issues/734)) ([efecfca](https://github.com/coderbirju/finch/commit/efecfcae8922f47581a4575125acbe375a706b11)) +* **deps:** Bump golang.org/x/tools from 0.16.1 to 0.17.0 ([#757](https://github.com/coderbirju/finch/issues/757)) ([89623da](https://github.com/coderbirju/finch/commit/89623dab53f0128c1616c66a7361a5ce3df847c3)) +* **deps:** Bump golang.org/x/tools from 0.17.0 to 0.18.0 ([#807](https://github.com/coderbirju/finch/issues/807)) ([7323751](https://github.com/coderbirju/finch/commit/7323751937900df76b217736acc51d77b9cff3d9)) +* **deps:** Bump golang.org/x/tools from 0.18.0 to 0.19.0 ([#844](https://github.com/coderbirju/finch/issues/844)) ([f8883b2](https://github.com/coderbirju/finch/commit/f8883b2535e9fb655eaf86f0765e4f46d5d83b0a)) +* **deps:** Bump golang.org/x/tools from 0.19.0 to 0.20.0 ([#889](https://github.com/coderbirju/finch/issues/889)) ([cfac010](https://github.com/coderbirju/finch/commit/cfac010837e0dac39c02fd6ba5154760641074fb)) +* **deps:** Bump golang.org/x/tools from 0.20.0 to 0.21.0 ([#932](https://github.com/coderbirju/finch/issues/932)) ([a853a8a](https://github.com/coderbirju/finch/commit/a853a8a968ff13524521bd0e201640680e5b8e47)) +* **deps:** Bump golang.org/x/tools from 0.21.0 to 0.22.0 ([#967](https://github.com/coderbirju/finch/issues/967)) ([3921b00](https://github.com/coderbirju/finch/commit/3921b00807455aacaeb526fe7db8da2f68a81fd3)) +* **deps:** bump golang.org/x/tools from 0.22.0 to 0.23.0 ([#1019](https://github.com/coderbirju/finch/issues/1019)) ([81b2446](https://github.com/coderbirju/finch/commit/81b2446a3a9f4d13364951e26c2f716a0ab956f7)) +* **deps:** bump golang.org/x/tools from 0.23.0 to 0.24.0 ([#1056](https://github.com/coderbirju/finch/issues/1056)) ([3a34c79](https://github.com/coderbirju/finch/commit/3a34c79996f49a3eb609615c02b5fe4bdbb266fc)) +* **deps:** bump golang.org/x/tools from 0.24.0 to 0.25.0 ([#1090](https://github.com/coderbirju/finch/issues/1090)) ([c382e22](https://github.com/coderbirju/finch/commit/c382e2236ff3cff97d924a5a61682b9a0a491b76)) +* **deps:** Bump golang.org/x/tools from 0.25.0 to 0.26.0 ([#1130](https://github.com/coderbirju/finch/issues/1130)) ([633c1bf](https://github.com/coderbirju/finch/commit/633c1bfbdd8db4434b6822b4481702e30f07deed)) +* **deps:** Bump golang.org/x/tools from 0.9.1 to 0.9.3 ([#443](https://github.com/coderbirju/finch/issues/443)) ([b192874](https://github.com/coderbirju/finch/commit/b192874e2b1c5de1c2148813760cbe65e15d7553)) +* **deps:** Bump golang.org/x/tools from 0.9.3 to 0.10.0 ([#455](https://github.com/coderbirju/finch/issues/455)) ([e321f1d](https://github.com/coderbirju/finch/commit/e321f1dc607626a7f65b33e0a0f503d8c856b1f2)) +* **deps:** Bump google.golang.org/grpc from 1.53.0 to 1.56.3 ([#658](https://github.com/coderbirju/finch/issues/658)) ([321487c](https://github.com/coderbirju/finch/commit/321487c9309a73625512255ff86b6ffc6977b86e)) +* **deps:** Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 ([#858](https://github.com/coderbirju/finch/issues/858)) ([14532d5](https://github.com/coderbirju/finch/commit/14532d599ce17767d8e9ccb2ca3450621e719cc7)) +* **deps:** Bump k8s.io/apimachinery from 0.26.3 to 0.27.1 ([#366](https://github.com/coderbirju/finch/issues/366)) ([b93d3a8](https://github.com/coderbirju/finch/commit/b93d3a8ed8eef42321200ac1386b61765e0b8348)) +* **deps:** Bump k8s.io/apimachinery from 0.27.1 to 0.27.2 ([#407](https://github.com/coderbirju/finch/issues/407)) ([e6cbd2c](https://github.com/coderbirju/finch/commit/e6cbd2c5dba8af5cab9ea8a37a33c580ee4edef9)) +* **deps:** Bump k8s.io/apimachinery from 0.27.2 to 0.27.3 ([#454](https://github.com/coderbirju/finch/issues/454)) ([d6746a4](https://github.com/coderbirju/finch/commit/d6746a447e10bed6c13d197c8d693b27e02ac3aa)) +* **deps:** Bump k8s.io/apimachinery from 0.27.3 to 0.27.4 ([#487](https://github.com/coderbirju/finch/issues/487)) ([444bbc0](https://github.com/coderbirju/finch/commit/444bbc0779dbe22207fec471389810e398c1cf50)) +* **deps:** Bump k8s.io/apimachinery from 0.27.4 to 0.28.0 ([#535](https://github.com/coderbirju/finch/issues/535)) ([8df84cf](https://github.com/coderbirju/finch/commit/8df84cf8c54bd772c28a83df918c251a540c881a)) +* **deps:** Bump k8s.io/apimachinery from 0.28.0 to 0.28.1 ([#543](https://github.com/coderbirju/finch/issues/543)) ([675f76f](https://github.com/coderbirju/finch/commit/675f76fa6d8874587c09237faeb82d9f96c14adb)) +* **deps:** Bump k8s.io/apimachinery from 0.28.1 to 0.28.2 ([#568](https://github.com/coderbirju/finch/issues/568)) ([915d658](https://github.com/coderbirju/finch/commit/915d658fbd6581eec437f2c31121366ff77a5981)) +* **deps:** Bump k8s.io/apimachinery from 0.28.2 to 0.28.3 ([#652](https://github.com/coderbirju/finch/issues/652)) ([05f9d53](https://github.com/coderbirju/finch/commit/05f9d53dab468546918a332f0fc18449de774487)) +* **deps:** Bump k8s.io/apimachinery from 0.28.3 to 0.28.4 ([#697](https://github.com/coderbirju/finch/issues/697)) ([e064d94](https://github.com/coderbirju/finch/commit/e064d94b71acbd7d160c3f061ff3ade7caae3333)) +* **deps:** Bump k8s.io/apimachinery from 0.29.1 to 0.29.2 ([#820](https://github.com/coderbirju/finch/issues/820)) ([6ca0f7f](https://github.com/coderbirju/finch/commit/6ca0f7ff007f88ad37eb02b2c9437042a7350f37)) +* **deps:** Bump k8s.io/apimachinery from 0.29.2 to 0.29.3 ([#863](https://github.com/coderbirju/finch/issues/863)) ([c8a4262](https://github.com/coderbirju/finch/commit/c8a42626538ec3fe301158b5b0f995b84f38a95b)) +* **deps:** Bump k8s.io/apimachinery from 0.29.3 to 0.30.0 ([#904](https://github.com/coderbirju/finch/issues/904)) ([f8b7f25](https://github.com/coderbirju/finch/commit/f8b7f254a67413111dc1de70255a28ffab49d62a)) +* **deps:** Bump k8s.io/apimachinery from 0.30.0 to 0.30.1 ([#946](https://github.com/coderbirju/finch/issues/946)) ([dc4ebf9](https://github.com/coderbirju/finch/commit/dc4ebf92931fe9b44466a6a1a60daa11183fe53d)) +* **deps:** bump k8s.io/apimachinery from 0.30.1 to 0.30.2 ([#981](https://github.com/coderbirju/finch/issues/981)) ([c8ebf20](https://github.com/coderbirju/finch/commit/c8ebf20285afdc23684866e69ef955021260bcc9)) +* **deps:** bump k8s.io/apimachinery from 0.30.2 to 0.30.3 ([#1036](https://github.com/coderbirju/finch/issues/1036)) ([0c5686e](https://github.com/coderbirju/finch/commit/0c5686e86fffde80f7428036aa443fc6629694ae)) +* **deps:** bump k8s.io/apimachinery from 0.30.3 to 0.31.0 ([#1060](https://github.com/coderbirju/finch/issues/1060)) ([2c22e72](https://github.com/coderbirju/finch/commit/2c22e7277a0940ba65126d01b6ea201bbb5f4840)) +* **deps:** bump k8s.io/apimachinery from 0.31.0 to 0.31.1 ([#1093](https://github.com/coderbirju/finch/issues/1093)) ([35bc4dc](https://github.com/coderbirju/finch/commit/35bc4dc05c1f8f5fb2ef0a9ba8a8fe1f5a42c8f3)) +* **deps:** Bump lima version ([#362](https://github.com/coderbirju/finch/issues/362)) ([5e03a4d](https://github.com/coderbirju/finch/commit/5e03a4d40c63a8fcc5a79bdda2ebfec6f993db3c)) +* **deps:** Bump lima version ([#368](https://github.com/coderbirju/finch/issues/368)) ([8e4dfe4](https://github.com/coderbirju/finch/commit/8e4dfe4092a959d853549ed980e1c36a9e630be8)) +* **deps:** Bump lima version ([#476](https://github.com/coderbirju/finch/issues/476)) ([7b330d3](https://github.com/coderbirju/finch/commit/7b330d3e2bd4cc623f46762c8e3b120ddc18f3b0)) +* **deps:** Bump submodules ([#371](https://github.com/coderbirju/finch/issues/371)) ([19fc0c5](https://github.com/coderbirju/finch/commit/19fc0c5d16a6d2fb876b05575420a8080c8a3562)) +* **deps:** Bump submodules ([#375](https://github.com/coderbirju/finch/issues/375)) ([70fe4c3](https://github.com/coderbirju/finch/commit/70fe4c3e0320f237d2e4501fbe2bc4d3320ef3e9)) +* **deps:** Bump submodules ([#402](https://github.com/coderbirju/finch/issues/402)) ([06d86b2](https://github.com/coderbirju/finch/commit/06d86b2bc348db9f0d8d02678faee556719b883d)) +* **deps:** Bump submodules ([#439](https://github.com/coderbirju/finch/issues/439)) ([e9551b5](https://github.com/coderbirju/finch/commit/e9551b50010deb43ad26dcd3671ec2f246e84ed6)) +* **deps:** Bump submodules ([#482](https://github.com/coderbirju/finch/issues/482)) ([92f2494](https://github.com/coderbirju/finch/commit/92f2494f17bde67b785ccf444ac6525b7a856a6c)) +* **deps:** Bump submodules and dependencies ([#1008](https://github.com/coderbirju/finch/issues/1008)) ([6134a5a](https://github.com/coderbirju/finch/commit/6134a5aa96ae424c64101fe91814ca2dcef21555)) +* **deps:** Bump submodules and dependencies ([#1020](https://github.com/coderbirju/finch/issues/1020)) ([30d8e69](https://github.com/coderbirju/finch/commit/30d8e69d17d5c5989ee40c4f71c17821ba58c973)) +* **deps:** Bump submodules and dependencies ([#1021](https://github.com/coderbirju/finch/issues/1021)) ([fd1677b](https://github.com/coderbirju/finch/commit/fd1677b4ca6ddf74f3733812a317305e956ee7bb)) +* **deps:** Bump submodules and dependencies ([#1027](https://github.com/coderbirju/finch/issues/1027)) ([966b8d2](https://github.com/coderbirju/finch/commit/966b8d2e5e189dc89d5e1a07beed42cb0de26363)) +* **deps:** Bump submodules and dependencies ([#1035](https://github.com/coderbirju/finch/issues/1035)) ([4fe6fcf](https://github.com/coderbirju/finch/commit/4fe6fcfca0da292521929033f7067e309ec32971)) +* **deps:** Bump submodules and dependencies ([#1111](https://github.com/coderbirju/finch/issues/1111)) ([53f608f](https://github.com/coderbirju/finch/commit/53f608f34e94e36ec249103dce05c0b2cd75f446)) +* **deps:** Bump submodules and dependencies ([#521](https://github.com/coderbirju/finch/issues/521)) ([1b3ad94](https://github.com/coderbirju/finch/commit/1b3ad94f9477eb3f8d33cbea90880f78ca403ff7)) +* **deps:** Bump submodules and dependencies ([#544](https://github.com/coderbirju/finch/issues/544)) ([94b7497](https://github.com/coderbirju/finch/commit/94b74978e135fbf6375fe1a21ce4b64b77db5ee7)) +* **deps:** Bump submodules and dependencies ([#551](https://github.com/coderbirju/finch/issues/551)) ([baf645f](https://github.com/coderbirju/finch/commit/baf645f250344a42bc4ee3ea53e97b2c82dbb55a)) +* **deps:** Bump submodules and dependencies ([#565](https://github.com/coderbirju/finch/issues/565)) ([c02413f](https://github.com/coderbirju/finch/commit/c02413f47ade25232830a04548625297267caf9f)) +* **deps:** Bump submodules and dependencies ([#567](https://github.com/coderbirju/finch/issues/567)) ([f70314e](https://github.com/coderbirju/finch/commit/f70314ef4a517d1fb69dc8444e621262f7e4dcd0)) +* **deps:** Bump submodules and dependencies ([#637](https://github.com/coderbirju/finch/issues/637)) ([b094751](https://github.com/coderbirju/finch/commit/b094751d3ba56c7855fc6f3af7b8bef2618a7206)) +* **deps:** Bump submodules and dependencies ([#722](https://github.com/coderbirju/finch/issues/722)) ([667c692](https://github.com/coderbirju/finch/commit/667c6923478696da86f3b899edf9a0efdc7c7b9c)) +* **deps:** Bump submodules and dependencies ([#724](https://github.com/coderbirju/finch/issues/724)) ([bb1a273](https://github.com/coderbirju/finch/commit/bb1a273e0b966599d77dd649002e2896ed8b98e5)) +* **deps:** Bump submodules and dependencies ([#733](https://github.com/coderbirju/finch/issues/733)) ([8b2d8cd](https://github.com/coderbirju/finch/commit/8b2d8cddc7fc63264c7f5bf1be2bd4417a92aaeb)) +* **deps:** Bump submodules and dependencies ([#762](https://github.com/coderbirju/finch/issues/762)) ([4889527](https://github.com/coderbirju/finch/commit/4889527dae6494509fce0b3fefc4ac890d113f11)) +* **deps:** Bump submodules and dependencies ([#795](https://github.com/coderbirju/finch/issues/795)) ([ec77f1a](https://github.com/coderbirju/finch/commit/ec77f1abe9c00ddd9cd84ed665204c2c5df4c40b)) +* **deps:** Bump submodules and dependencies ([#805](https://github.com/coderbirju/finch/issues/805)) ([0bf9148](https://github.com/coderbirju/finch/commit/0bf9148a6ce88dde413679cc9a3702a5d398d544)) +* **deps:** Bump submodules and dependencies ([#825](https://github.com/coderbirju/finch/issues/825)) ([8828c56](https://github.com/coderbirju/finch/commit/8828c56251ea792efb9b8fccc8eadec374b30c62)) +* **deps:** Bump submodules and dependencies ([#874](https://github.com/coderbirju/finch/issues/874)) ([a9f73be](https://github.com/coderbirju/finch/commit/a9f73be25a32b9f0d96fe79f92ae02050694fc47)) +* **deps:** Bump submodules and dependencies ([#895](https://github.com/coderbirju/finch/issues/895)) ([c7388bb](https://github.com/coderbirju/finch/commit/c7388bb9638d0c2306efc9dc6c4f11996d6f11bb)) +* **deps:** Bump submodules and dependencies ([#949](https://github.com/coderbirju/finch/issues/949)) ([b5ee424](https://github.com/coderbirju/finch/commit/b5ee42460f58f9ee96b3ae0b908349a04662d20b)) +* **deps:** update nerdctl-full and soci versions ([#1097](https://github.com/coderbirju/finch/issues/1097)) ([a4b9679](https://github.com/coderbirju/finch/commit/a4b9679334ee4a5b353962260fa72e6a7d245e2d)) +* **fix:** pass arch to finch-core install.dependencies target ([#1034](https://github.com/coderbirju/finch/issues/1034)) ([fa5078f](https://github.com/coderbirju/finch/commit/fa5078f2d5f2fcc12b039fe37331cfb18b191f09)) +* **linux:** add Linux packaging and e2e tests ([#1071](https://github.com/coderbirju/finch/issues/1071)) ([985570e](https://github.com/coderbirju/finch/commit/985570eed4b28ab7adae0350164fe9697d4e725a)) +* trigger new release-please build ([6ef2e6b](https://github.com/coderbirju/finch/commit/6ef2e6b157bc6226a878196c0b5dd692dcca4ce3)) +* trigger new release-please PR ([#1114](https://github.com/coderbirju/finch/issues/1114)) ([6ef2e6b](https://github.com/coderbirju/finch/commit/6ef2e6b157bc6226a878196c0b5dd692dcca4ce3)) +* unify macos/windows yamls ([#921](https://github.com/coderbirju/finch/issues/921)) ([86d9a23](https://github.com/coderbirju/finch/commit/86d9a231a9c454bcde220c7a72b122c64df21fdd)) + + +### Experimental + +* make finch work on windows with wsl2 ([#649](https://github.com/coderbirju/finch/issues/649)) ([31cdc41](https://github.com/coderbirju/finch/commit/31cdc411d29758bae54a0b3fdb37be2777bd9fdc)) + + +### Features + +* Add BindMount handler for Linux ([#1119](https://github.com/coderbirju/finch/issues/1119)) ([a49df29](https://github.com/coderbirju/finch/commit/a49df292d00af9e4b8a247c0b24c0faa5d465515)) +* Add Dockercompat Mode & DevContainer Support ([#1100](https://github.com/coderbirju/finch/issues/1100)) ([c004516](https://github.com/coderbirju/finch/commit/c004516c48dcbe85cd16b0c4b0060105e5118fa8)) +* add empty release CR ([3adf46e](https://github.com/coderbirju/finch/commit/3adf46e7c322e60a9631a6f981b286558efc28c8)) +* add exit status code to finch ([5fa30f4](https://github.com/coderbirju/finch/commit/5fa30f45f7ff20605905d456d5dda1c177172527)) +* Add exit status code to finch ([#1068](https://github.com/coderbirju/finch/issues/1068)) ([5fa30f4](https://github.com/coderbirju/finch/commit/5fa30f45f7ff20605905d456d5dda1c177172527)) +* add finch version output to support-bundle ([#1124](https://github.com/coderbirju/finch/issues/1124)) ([33d519b](https://github.com/coderbirju/finch/commit/33d519b824f4df922df654d7ccb6861832eaaa86)) +* add Linux support ([#1023](https://github.com/coderbirju/finch/issues/1023)) ([82f698b](https://github.com/coderbirju/finch/commit/82f698bba086ebcc5112f3ecdc5d6f6344ebc3f2)) +* Add More PassedEnvs for ECR CredHelper ([#1132](https://github.com/coderbirju/finch/issues/1132)) ([0cb6a55](https://github.com/coderbirju/finch/commit/0cb6a55c56d0c26f2648806d7983820796c1b04a)) +* Add the --format option to the finch version command ([#926](https://github.com/coderbirju/finch/issues/926)) ([a9d04e3](https://github.com/coderbirju/finch/commit/a9d04e35515bedb970f403a732377ddf3ce6df18)) +* adding config option for SOCI installation on VM ([#506](https://github.com/coderbirju/finch/issues/506)) ([a2e077b](https://github.com/coderbirju/finch/commit/a2e077b8f72dc8d8d833aedce31b3ad3f9f45eb4)) +* allow user configurable docker compose version env variable ([#1133](https://github.com/coderbirju/finch/issues/1133)) ([69b066b](https://github.com/coderbirju/finch/commit/69b066b2e9b2ffe39c78f21eb809fa74e9728c2e)) +* ECR credential integration into Finch ([#462](https://github.com/coderbirju/finch/issues/462)) ([d3514b3](https://github.com/coderbirju/finch/commit/d3514b3dbe69e1bed3d40838af01ebec184f7413)) +* handle dockercompat inspect for devcontainers ([#1121](https://github.com/coderbirju/finch/issues/1121)) ([5ba7305](https://github.com/coderbirju/finch/commit/5ba730580300e6b49d37fd6be8ee7d75ac396462)) +* **macOS:** Support host DNS aliases for macos ([#1085](https://github.com/coderbirju/finch/issues/1085)) ([6b7f053](https://github.com/coderbirju/finch/commit/6b7f05322141d187246c7d2f3925927a69eb4491)) +* make Virtualization Framework default ([#956](https://github.com/coderbirju/finch/issues/956)) ([75b69b8](https://github.com/coderbirju/finch/commit/75b69b8a79d51c71d21fbddec15e5593c717edcf)) +* support push with SOCI ([#578](https://github.com/coderbirju/finch/issues/578)) ([69721b7](https://github.com/coderbirju/finch/commit/69721b76151a4c24d82cdc1c9338bacf72afb15d)) +* supports adding files inside the VM to support bundles ([#549](https://github.com/coderbirju/finch/issues/549)) ([3b1df46](https://github.com/coderbirju/finch/commit/3b1df4697e7b020d6c7339fb71bacf62ca0b3ee0)) +* upgrade Windows support to "feature" ([#778](https://github.com/coderbirju/finch/issues/778)) ([63894d1](https://github.com/coderbirju/finch/commit/63894d12f3ab9d2c02700779e42182d06019a85f)) + + +### Bug Fixes + +* Add cleanup script to Makefile ([#444](https://github.com/coderbirju/finch/issues/444)) ([da91f87](https://github.com/coderbirju/finch/commit/da91f87369e5fde221b8edbac374954e71dae947)) +* add finch vm settings subcommand ([#887](https://github.com/coderbirju/finch/issues/887)) ([8e809cc](https://github.com/coderbirju/finch/commit/8e809cce3c4032b145682da724308782acc74ad1)) +* add force to cni cleanup on boot service ([#785](https://github.com/coderbirju/finch/issues/785)) ([9b2438b](https://github.com/coderbirju/finch/commit/9b2438b5827706b134bb791a78643af37854b377)) +* add SOCI snapshotter hash check ([#985](https://github.com/coderbirju/finch/issues/985)) ([563f346](https://github.com/coderbirju/finch/commit/563f346fa1b5380576213175055e308500a0cdbb)) +* allow finch commands to run using default config ([#1109](https://github.com/coderbirju/finch/issues/1109)) ([4b57a00](https://github.com/coderbirju/finch/commit/4b57a00181bb5f085d60b7f89fd9899e79cde7e0)) +* Allow to use the COMPOSE_FILE variable in finch compose ([#994](https://github.com/coderbirju/finch/issues/994)) ([17d4bc8](https://github.com/coderbirju/finch/commit/17d4bc8fbdf6b80e5070d2aa3ed1c85b112252fb)) +* Change the default behavoir for deleting .finch folder to false when uninstall ([#732](https://github.com/coderbirju/finch/issues/732)) ([e818743](https://github.com/coderbirju/finch/commit/e8187432a02c59a821a0d3b39c9cbc51f75a60cd)) +* check config file before accessing values ([#1120](https://github.com/coderbirju/finch/issues/1120)) ([5a47eec](https://github.com/coderbirju/finch/commit/5a47eecdff1371ae0611aadcea251cadf648f856)) +* Clean up all previous finch version installation registries in postinstall and uninstall ([#688](https://github.com/coderbirju/finch/issues/688)) ([9afc0b9](https://github.com/coderbirju/finch/commit/9afc0b9a5e73a3c261aeac87b977e44129b311bd)) +* configure aws creds in sync submodules/deps action ([#518](https://github.com/coderbirju/finch/issues/518)) ([b67452e](https://github.com/coderbirju/finch/commit/b67452e012d5d00f2ff66e023b4672f7957fe625)) +* Correct typo in type name of struct (NerdctlClientOuput) ([#743](https://github.com/coderbirju/finch/issues/743)) ([13de2b9](https://github.com/coderbirju/finch/commit/13de2b99fcd6f952beda9f75e6f3660974a815d0)) +* ecr credential helper hash check ([#668](https://github.com/coderbirju/finch/issues/668)) ([4b1b0a2](https://github.com/coderbirju/finch/commit/4b1b0a2fa515bcfaaa6784ffa53a5918245cbd72)) +* ecr creds helper and credential_process ([#510](https://github.com/coderbirju/finch/issues/510)) ([0525753](https://github.com/coderbirju/finch/commit/0525753105403e27e5d1372588c0c87aa6b6cbe6)) +* Enable `finch support-bundle generate` to execute on Windows whe… ([#976](https://github.com/coderbirju/finch/issues/976)) ([9c1caf0](https://github.com/coderbirju/finch/commit/9c1caf0af243cc925f51e24abc59ed29172ddd21)) +* enables bridge-nf-call-iptables by default ([#539](https://github.com/coderbirju/finch/issues/539)) ([6ea1499](https://github.com/coderbirju/finch/commit/6ea1499c1320545ba4efe8a7820dcf0998e28782)) +* Env variable CONTAINERD_SNAPSHOTTER cleared on overlayfs and ref… ([#816](https://github.com/coderbirju/finch/issues/816)) ([d222a34](https://github.com/coderbirju/finch/commit/d222a347632f9898ed223a122c97d3a973bde3a5)) +* explicitly set permissions for socket_vmnet dependencies ([#363](https://github.com/coderbirju/finch/issues/363)) ([0801b88](https://github.com/coderbirju/finch/commit/0801b8841776e7a08d2a0826bbca535310b02f37)) +* Fix Automated release workflow ([e40f683](https://github.com/coderbirju/finch/commit/e40f683084d1731ef3b7343d980743f2e73c7864)) +* Fix to be able to run finch build with --ssh option ([#696](https://github.com/coderbirju/finch/issues/696)) ([4d1e6cf](https://github.com/coderbirju/finch/commit/4d1e6cf6d8f4b6f2cbdf0229e8dcf4ad0c80d80c)) +* Fix to delete ~/.finch when uninstalling finch ([#703](https://github.com/coderbirju/finch/issues/703)) ([8d7389f](https://github.com/coderbirju/finch/commit/8d7389f607fc0211ebd6cfafe13197b945d877a3)) +* give pull request write permissions to sync job ([#520](https://github.com/coderbirju/finch/issues/520)) ([55b5235](https://github.com/coderbirju/finch/commit/55b5235d50feb6557108c00cd8543d21f1fdf315)) +* give token write perms to sync-submodules ([#519](https://github.com/coderbirju/finch/issues/519)) ([8b639ea](https://github.com/coderbirju/finch/commit/8b639eac14691caa99a6bfddd61be0b811a796d9)) +* Improve CLI parsing for Image Args ([#1072](https://github.com/coderbirju/finch/issues/1072)) ([6d49ac7](https://github.com/coderbirju/finch/commit/6d49ac7fcc080302938a96630327c20eb9491a00)) +* improve creds helper UX ([#673](https://github.com/coderbirju/finch/issues/673)) ([bc238cf](https://github.com/coderbirju/finch/commit/bc238cf9383d0fbc983a7f76f2cc15821eafd265)) +* **linux:** DOCKER_CONFIG path ([#1102](https://github.com/coderbirju/finch/issues/1102)) ([5b45b75](https://github.com/coderbirju/finch/commit/5b45b756460a85a0dcc0a9986336a92c9b74ff7e)) +* **linux:** support bundles ([#1101](https://github.com/coderbirju/finch/issues/1101)) ([f32a97f](https://github.com/coderbirju/finch/commit/f32a97f4e5ab846c1868cba3c81835a9c4e935a8)) +* **Makefile:** use POSIX tar syntax for stdin ([#529](https://github.com/coderbirju/finch/issues/529)) ([e222131](https://github.com/coderbirju/finch/commit/e2221310e1725b3a6072abe12e72f01859ce3320)) +* Mount /var/folders to finch vm ([#525](https://github.com/coderbirju/finch/issues/525)) ([c97d2e9](https://github.com/coderbirju/finch/commit/c97d2e93edaf139c3960620ec00454f856a8daee)) +* msi release tests cleanup ([#819](https://github.com/coderbirju/finch/issues/819)) ([0f23660](https://github.com/coderbirju/finch/commit/0f236609429534bab3057971e6126cf9b3ff47fc)) +* option to use installed lima for SOCI e2e tests ([#533](https://github.com/coderbirju/finch/issues/533)) ([8b66659](https://github.com/coderbirju/finch/commit/8b666590631235f6430d652d5c50f0047a120893)) +* parse management commands with proper arguments ([#876](https://github.com/coderbirju/finch/issues/876)) ([e2f42fe](https://github.com/coderbirju/finch/commit/e2f42fe243ca41fd9d0fcb8db9b06d30d95b283e)) +* properly reload persistent snapshotter data and restart services ([#767](https://github.com/coderbirju/finch/issues/767)) ([700cb92](https://github.com/coderbirju/finch/commit/700cb92da72510b47498c48f188c50806382a291)) +* quote recursive calls to make ([#515](https://github.com/coderbirju/finch/issues/515)) ([d603096](https://github.com/coderbirju/finch/commit/d6030965414e80e1f3c550e67097ce5f34aeff41)) +* remove llvm copy to fix build errors ([#1030](https://github.com/coderbirju/finch/issues/1030)) ([5104857](https://github.com/coderbirju/finch/commit/51048575d4c325fb215c8e1a1a226052c473d3d2)) +* Remove unnecessary error handling ([#961](https://github.com/coderbirju/finch/issues/961)) ([f441fc9](https://github.com/coderbirju/finch/commit/f441fc9767d75ad893277a86cd846e7bfbb33a77)) +* remove virtual machine image when running make clean ([98c8ee4](https://github.com/coderbirju/finch/commit/98c8ee4f783d01cb1340e77b508d868c3bb4bf04)) +* Reset disks and force remove vm after suite execution ([#846](https://github.com/coderbirju/finch/issues/846)) ([c2363b1](https://github.com/coderbirju/finch/commit/c2363b18dc9531d81898dbbce131d13205e40017)) +* resolve shellcheck warnings ([#684](https://github.com/coderbirju/finch/issues/684)) ([d9f695a](https://github.com/coderbirju/finch/commit/d9f695a39f17af6ab00722fbf5191b6fa5c9166b)) +* Restart buildkit after containerd when provisioning ([#461](https://github.com/coderbirju/finch/issues/461)) ([fca1828](https://github.com/coderbirju/finch/commit/fca182877ca616257527f6186dd1e88b2919feeb)) +* run SOCI as a systemd service ([#667](https://github.com/coderbirju/finch/issues/667)) ([24fd649](https://github.com/coderbirju/finch/commit/24fd649152b3ca18a1024d3a2ea40806c0c96cf2)) +* soci being reset on vm stop/start ([#672](https://github.com/coderbirju/finch/issues/672)) ([9df7d32](https://github.com/coderbirju/finch/commit/9df7d325b25fe98fdb8327bc4603ae4441b6a190)) +* sort volume args in DOCKER_COMPAT mode ([#417](https://github.com/coderbirju/finch/issues/417)) ([6a8ca1a](https://github.com/coderbirju/finch/commit/6a8ca1a559dada6ed320c9454fbc3229446a0a40)) +* stop Finch on uninstall ([#818](https://github.com/coderbirju/finch/issues/818)) ([a96788b](https://github.com/coderbirju/finch/commit/a96788bbce5e9a6af805650a1c21d1c60e04fa68)) +* Stop lima process in postinstall and uninstall ([#438](https://github.com/coderbirju/finch/issues/438)) ([975c4ee](https://github.com/coderbirju/finch/commit/975c4ee42c1529673a51382c62c4096dc663f80a)) +* temporarily switch to our own nerdctl-full bundle with patched runc and buildkit ([#783](https://github.com/coderbirju/finch/issues/783)) ([f677e2e](https://github.com/coderbirju/finch/commit/f677e2e03c7ee94e18ea990c1723f41bac660698)) +* typo causing error while downloading license ([#1033](https://github.com/coderbirju/finch/issues/1033)) ([2452614](https://github.com/coderbirju/finch/commit/2452614189f1b41ba32f7824e6874716418c3028)) +* update snapshotters reference ([#986](https://github.com/coderbirju/finch/issues/986)) ([06b9027](https://github.com/coderbirju/finch/commit/06b9027d7194a6b8d7cc32f8bc40988fcde5a64a)) +* Use LimaUser method instead of host user name ([#712](https://github.com/coderbirju/finch/issues/712)) ([7c02e08](https://github.com/coderbirju/finch/commit/7c02e08394f667e1f69cd304ef0258c1f0ff1c0f)) +* verify shasum for finch dependencies ([#969](https://github.com/coderbirju/finch/issues/969)) ([9d85f25](https://github.com/coderbirju/finch/commit/9d85f25c2026032122c05d54fdcf6dcb4031ea86)) +* **windows-installer:** add new cleanup script on install ([#824](https://github.com/coderbirju/finch/issues/824)) ([fccfa1d](https://github.com/coderbirju/finch/commit/fccfa1dd5773242039254e067dcde0cd9fd4fe5e)) +* **windows-installer:** ignore FilesInUse/Restart dialogue ([#823](https://github.com/coderbirju/finch/issues/823)) ([f64835d](https://github.com/coderbirju/finch/commit/f64835d6b7d473eda434cbb932d3c049cac6a5d5)) +* **windows-installer:** uninstall script behavior ([#822](https://github.com/coderbirju/finch/issues/822)) ([ace37ea](https://github.com/coderbirju/finch/commit/ace37eaf48fca613f692e7a08b182d268fc60555)) + + +### Reverts + +* "always force stop when using Virtualization.framework" ([#370](https://github.com/coderbirju/finch/issues/370)) ([cb3051e](https://github.com/coderbirju/finch/commit/cb3051e60d80aabce550377696d4251c9a9b0eec)) +* "chore(main): release 1.0.1" ([#727](https://github.com/coderbirju/finch/issues/727)) ([52e08d2](https://github.com/coderbirju/finch/commit/52e08d27d8a29b4988cb228d3d270d85ba54337a)) +* "fix: resolve shellcheck warnings" ([#725](https://github.com/coderbirju/finch/issues/725)) ([8ea255a](https://github.com/coderbirju/finch/commit/8ea255abb64c653a8c35e82c9c17aec9904278c5)) +* **linux:** DOCKER_CONFIG path ([#1102](https://github.com/coderbirju/finch/issues/1102)) ([#1110](https://github.com/coderbirju/finch/issues/1110)) ([839221c](https://github.com/coderbirju/finch/commit/839221c16136954643fb7f923594d78f9a423c97)) + + +### Miscellaneous Chores + +* update Release-As version to 1.0.0 (not-squashed) ([2c97323](https://github.com/coderbirju/finch/commit/2c97323deccfbc860e304b3297c8e51f91b7e2c0)) +* update Release-As version to 1.0.1 ([#731](https://github.com/coderbirju/finch/issues/731)) ([8fd5a70](https://github.com/coderbirju/finch/commit/8fd5a705e01823d159d1c48b06a8d7bc84f61ee3)) + +## [1.0.1](https://github.com/coderbirju/finch/compare/v1.4.0...v1.0.1) (2024-10-09) + + +### Build System or External Dependencies + +* **deps:** Bump github.com/aws/aws-sdk-go-v2 from 1.21.2 to 1.22.0 ([#677](https://github.com/coderbirju/finch/issues/677)) ([c450dc9](https://github.com/coderbirju/finch/commit/c450dc96b5f09b57adcf48a62c09138bc04f3df5)) +* **deps:** Bump github.com/aws/aws-sdk-go-v2 from 1.22.0 to 1.22.1 ([#682](https://github.com/coderbirju/finch/issues/682)) ([2537aa6](https://github.com/coderbirju/finch/commit/2537aa6490f411551f162255d152805cb5c47951)) +* **deps:** Bump github.com/aws/aws-sdk-go-v2 from 1.22.1 to 1.23.5 ([#716](https://github.com/coderbirju/finch/issues/716)) ([feedd95](https://github.com/coderbirju/finch/commit/feedd953825f8736736fa6c796a4bb72cf70aabd)) +* **deps:** Bump github.com/aws/aws-sdk-go-v2 from 1.23.5 to 1.24.0 ([#729](https://github.com/coderbirju/finch/issues/729)) ([963d278](https://github.com/coderbirju/finch/commit/963d278df6cfb2c660f25601a916293b29d51bc8)) +* **deps:** Bump github.com/aws/aws-sdk-go-v2 from 1.24.0 to 1.24.1 ([#749](https://github.com/coderbirju/finch/issues/749)) ([c3ae967](https://github.com/coderbirju/finch/commit/c3ae96794165b4ea696bb94856d40ff91767ed1b)) +* **deps:** Bump github.com/aws/aws-sdk-go-v2 from 1.25.0 to 1.25.2 ([#831](https://github.com/coderbirju/finch/issues/831)) ([9eb8097](https://github.com/coderbirju/finch/commit/9eb80975c7490394d5af082b2738dda7d3090fe1)) +* **deps:** Bump github.com/aws/aws-sdk-go-v2 from 1.25.2 to 1.25.3 ([#856](https://github.com/coderbirju/finch/issues/856)) ([e9314f0](https://github.com/coderbirju/finch/commit/e9314f0e5de309d95e51878a655eceec1e319141)) +* **deps:** Bump github.com/aws/aws-sdk-go-v2 from 1.25.3 to 1.26.0 ([#864](https://github.com/coderbirju/finch/issues/864)) ([9223219](https://github.com/coderbirju/finch/commit/922321930a61affd08697aba50c77931cae84ce6)) +* **deps:** Bump github.com/aws/aws-sdk-go-v2 from 1.26.0 to 1.26.1 ([#882](https://github.com/coderbirju/finch/issues/882)) ([c059d9e](https://github.com/coderbirju/finch/commit/c059d9ec3c4c17ba950bc25a9bb33a2b6c39394e)) +* **deps:** Bump github.com/aws/aws-sdk-go-v2 from 1.26.1 to 1.27.0 ([#954](https://github.com/coderbirju/finch/issues/954)) ([b06280c](https://github.com/coderbirju/finch/commit/b06280cfcd70cfd38a7d7d7aa911aab3469c2e67)) +* **deps:** Bump github.com/aws/aws-sdk-go-v2 from 1.27.0 to 1.27.1 ([#963](https://github.com/coderbirju/finch/issues/963)) ([4c2dc12](https://github.com/coderbirju/finch/commit/4c2dc1220c51990ebd3f96b973d05e30122a4b8d)) +* **deps:** Bump github.com/aws/aws-sdk-go-v2 from 1.27.1 to 1.27.2 ([#974](https://github.com/coderbirju/finch/issues/974)) ([54aa67c](https://github.com/coderbirju/finch/commit/54aa67cd50a9f02122f6c4af15e6299aeb56f833)) +* **deps:** bump github.com/aws/aws-sdk-go-v2 from 1.27.2 to 1.30.0 ([#991](https://github.com/coderbirju/finch/issues/991)) ([bbcb8e7](https://github.com/coderbirju/finch/commit/bbcb8e7fdc518eddeb64d1b6f0b59931a0f8450f)) +* **deps:** bump github.com/aws/aws-sdk-go-v2 from 1.30.0 to 1.30.1 ([#1004](https://github.com/coderbirju/finch/issues/1004)) ([0174b05](https://github.com/coderbirju/finch/commit/0174b05a2cc39971ee45fd92270cb268a918b57b)) +* **deps:** bump github.com/aws/aws-sdk-go-v2 from 1.30.1 to 1.30.3 ([#1028](https://github.com/coderbirju/finch/issues/1028)) ([dcb3865](https://github.com/coderbirju/finch/commit/dcb38650fa4c0038cabecb3fb17b3c8b03ca63a3)) +* **deps:** bump github.com/aws/aws-sdk-go-v2 from 1.30.3 to 1.30.4 ([#1064](https://github.com/coderbirju/finch/issues/1064)) ([51089f6](https://github.com/coderbirju/finch/commit/51089f68e287d66586f5599444e5803e27bdbb7e)) +* **deps:** bump github.com/aws/aws-sdk-go-v2 from 1.30.4 to 1.30.5 ([#1083](https://github.com/coderbirju/finch/issues/1083)) ([e4d4640](https://github.com/coderbirju/finch/commit/e4d46407d42f403f1576385b69e34de3ed7d57f8)) +* **deps:** Bump github.com/aws/aws-sdk-go-v2 from 1.30.5 to 1.31.0 ([#1108](https://github.com/coderbirju/finch/issues/1108)) ([b412103](https://github.com/coderbirju/finch/commit/b4121038c148b8671701935d32e8c7926f606010)) +* **deps:** Bump github.com/aws/aws-sdk-go-v2 from 1.31.0 to 1.32.1 ([#1134](https://github.com/coderbirju/finch/issues/1134)) ([a55450f](https://github.com/coderbirju/finch/commit/a55450f70c96e79ec695ceb234189735b99be896)) +* **deps:** Bump github.com/containerd/containerd from 1.7.10 to 1.7.11 ([#742](https://github.com/coderbirju/finch/issues/742)) ([7d1e250](https://github.com/coderbirju/finch/commit/7d1e25068a503a8b4ea7dd3f349ff4020168a6fb)) +* **deps:** bump github.com/containerd/nerdctl/v2 from 2.0.0-rc.1 to 2.0.0-rc.2 ([#1091](https://github.com/coderbirju/finch/issues/1091)) ([51c006d](https://github.com/coderbirju/finch/commit/51c006dfb9fa1dc3c54bad6cb422c68b69af474e)) +* **deps:** Bump github.com/docker/cli from 24.0.4+incompatible to 24.0.5+incompatible ([#495](https://github.com/coderbirju/finch/issues/495)) ([e9e8617](https://github.com/coderbirju/finch/commit/e9e8617b07301848dc1f6c3afa18643d212d024e)) +* **deps:** Bump github.com/docker/cli from 24.0.5+incompatible to 24.0.6+incompatible ([#560](https://github.com/coderbirju/finch/issues/560)) ([21bb893](https://github.com/coderbirju/finch/commit/21bb893105f0a4fc5541e3a8e9f5306edb739154)) +* **deps:** Bump github.com/docker/cli from 24.0.6+incompatible to 24.0.7+incompatible ([#665](https://github.com/coderbirju/finch/issues/665)) ([43a57ff](https://github.com/coderbirju/finch/commit/43a57ffc052ba1ffcf0f50cdb08dfdb42abc9723)) +* **deps:** Bump github.com/docker/cli from 25.0.3+incompatible to 25.0.4+incompatible ([#857](https://github.com/coderbirju/finch/issues/857)) ([838fc07](https://github.com/coderbirju/finch/commit/838fc07ee4ec22977606a28ea36b267788ace94d)) +* **deps:** Bump github.com/docker/cli from 25.0.4+incompatible to 26.0.0+incompatible ([#867](https://github.com/coderbirju/finch/issues/867)) ([4167d3d](https://github.com/coderbirju/finch/commit/4167d3dd61865b22bca9e7c54f839ba1d90138bf)) +* **deps:** Bump github.com/docker/cli from 26.0.0+incompatible to 26.0.1+incompatible ([#894](https://github.com/coderbirju/finch/issues/894)) ([680e23f](https://github.com/coderbirju/finch/commit/680e23fd5b5406855c65821029d94f777cdacb28)) +* **deps:** Bump github.com/docker/cli from 26.0.1+incompatible to 26.0.2+incompatible ([#906](https://github.com/coderbirju/finch/issues/906)) ([6fc6ce5](https://github.com/coderbirju/finch/commit/6fc6ce5918454f18037733ac9dcc0b9a3e8798af)) +* **deps:** Bump github.com/docker/cli from 26.0.2+incompatible to 26.1.0+incompatible ([#913](https://github.com/coderbirju/finch/issues/913)) ([bfeb585](https://github.com/coderbirju/finch/commit/bfeb585d599959b1af636beb11267dd52ab39c3e)) +* **deps:** Bump github.com/docker/cli from 26.1.0+incompatible to 26.1.1+incompatible ([#922](https://github.com/coderbirju/finch/issues/922)) ([7b6b3d2](https://github.com/coderbirju/finch/commit/7b6b3d24467b1becb0c8c9c6d44815ef6e62910b)) +* **deps:** Bump github.com/docker/cli from 26.1.1+incompatible to 26.1.2+incompatible ([#941](https://github.com/coderbirju/finch/issues/941)) ([eec3462](https://github.com/coderbirju/finch/commit/eec346241518140706129755e6b546394006f3f5)) +* **deps:** Bump github.com/docker/cli from 26.1.2+incompatible to 26.1.3+incompatible ([#952](https://github.com/coderbirju/finch/issues/952)) ([9a94c57](https://github.com/coderbirju/finch/commit/9a94c57cf8d966f42d8ec8510bac5617e292f7ec)) +* **deps:** Bump github.com/docker/cli from 26.1.3+incompatible to 26.1.4+incompatible ([#973](https://github.com/coderbirju/finch/issues/973)) ([f774e2d](https://github.com/coderbirju/finch/commit/f774e2d7316da5bb1a29f12ed58ba1ebd08f5a6c)) +* **deps:** bump github.com/docker/cli from 26.1.4+incompatible to 27.0.2+incompatible ([#999](https://github.com/coderbirju/finch/issues/999)) ([0244698](https://github.com/coderbirju/finch/commit/0244698ebe15f215941a875692246ba5c81cbdea)) +* **deps:** bump github.com/docker/cli from 27.0.2+incompatible to 27.0.3+incompatible ([#1005](https://github.com/coderbirju/finch/issues/1005)) ([c801e69](https://github.com/coderbirju/finch/commit/c801e690330dd44b9e5501dad529543d88849ab2)) +* **deps:** bump github.com/docker/cli from 27.0.3+incompatible to 27.1.0+incompatible ([#1041](https://github.com/coderbirju/finch/issues/1041)) ([187dd56](https://github.com/coderbirju/finch/commit/187dd5659b0a1f9a9644bcbb6bac6cd972a5d698)) +* **deps:** bump github.com/docker/cli from 27.1.0+incompatible to 27.1.1+incompatible ([#1045](https://github.com/coderbirju/finch/issues/1045)) ([9e9dec8](https://github.com/coderbirju/finch/commit/9e9dec89b3c58c2c3f36ac5c7f026cdddc510734)) +* **deps:** bump github.com/docker/cli from 27.1.2+incompatible to 27.2.0+incompatible ([#1074](https://github.com/coderbirju/finch/issues/1074)) ([87bc728](https://github.com/coderbirju/finch/commit/87bc7286ba018838a86a699356b3cfbbdc91e606)) +* **deps:** bump github.com/docker/cli from 27.2.0+incompatible to 27.2.1+incompatible ([#1088](https://github.com/coderbirju/finch/issues/1088)) ([0de5d1d](https://github.com/coderbirju/finch/commit/0de5d1db37660ec992c23117bde8c345f9dda09b)) +* **deps:** Bump github.com/docker/cli from 27.2.1+incompatible to 27.3.1+incompatible ([#1106](https://github.com/coderbirju/finch/issues/1106)) ([397c71c](https://github.com/coderbirju/finch/commit/397c71c38b0514dc27fdd49298199d4f9cdb0f43)) +* **deps:** Bump github.com/docker/docker from 23.0.3+incompatible to 23.0.5+incompatible ([#382](https://github.com/coderbirju/finch/issues/382)) ([3e0581c](https://github.com/coderbirju/finch/commit/3e0581cc0f86efcd9ce7b7dc8c9384fb1e6af785)) +* **deps:** Bump github.com/docker/docker from 23.0.5+incompatible to 23.0.6+incompatible ([#394](https://github.com/coderbirju/finch/issues/394)) ([f44bc2e](https://github.com/coderbirju/finch/commit/f44bc2eb14011640f7a25218bbc18a82d533e76a)) +* **deps:** Bump github.com/docker/docker from 23.0.6+incompatible to 24.0.0+incompatible ([#406](https://github.com/coderbirju/finch/issues/406)) ([25aa324](https://github.com/coderbirju/finch/commit/25aa324ca324248cf2093af23f205af1b5ae276f)) +* **deps:** Bump github.com/docker/docker from 24.0.0+incompatible to 24.0.1+incompatible ([#413](https://github.com/coderbirju/finch/issues/413)) ([bb1cab2](https://github.com/coderbirju/finch/commit/bb1cab229c787752615eb00e74f240c4a4e0e23d)) +* **deps:** Bump github.com/docker/docker from 24.0.1+incompatible to 24.0.2+incompatible ([#419](https://github.com/coderbirju/finch/issues/419)) ([f6f8aeb](https://github.com/coderbirju/finch/commit/f6f8aeb40fa0b2cfaa807c98eb3576ca262d75aa)) +* **deps:** Bump github.com/docker/docker from 24.0.2+incompatible to 24.0.4+incompatible ([#469](https://github.com/coderbirju/finch/issues/469)) ([ad37f4f](https://github.com/coderbirju/finch/commit/ad37f4fbce72a6f479620461127e8fe494d47cad)) +* **deps:** Bump github.com/docker/docker from 24.0.2+incompatible to 24.0.4+incompatible ([#481](https://github.com/coderbirju/finch/issues/481)) ([15d2a4b](https://github.com/coderbirju/finch/commit/15d2a4bf8cfd3956a2f8bb4878bfb86827b4e77d)) +* **deps:** Bump github.com/docker/docker from 24.0.4+incompatible to 24.0.5+incompatible ([#497](https://github.com/coderbirju/finch/issues/497)) ([6f1afbb](https://github.com/coderbirju/finch/commit/6f1afbb69554148efd8eea938278bcc5104ab050)) +* **deps:** Bump github.com/docker/docker from 24.0.5+incompatible to 24.0.6+incompatible ([#561](https://github.com/coderbirju/finch/issues/561)) ([e0160be](https://github.com/coderbirju/finch/commit/e0160be4b90b9db0e9e544a8ad9b170c08b38756)) +* **deps:** Bump github.com/docker/docker from 24.0.6+incompatible to 24.0.7+incompatible ([#666](https://github.com/coderbirju/finch/issues/666)) ([4e06d28](https://github.com/coderbirju/finch/commit/4e06d283512ed851279cb4988089f1c610896ba9)) +* **deps:** Bump github.com/docker/docker from 24.0.7+incompatible to 25.0.1+incompatible ([#772](https://github.com/coderbirju/finch/issues/772)) ([b16f6ae](https://github.com/coderbirju/finch/commit/b16f6aeb31473ce2e49550827d7a1974fd719e0d)) +* **deps:** Bump github.com/docker/docker from 25.0.1+incompatible to 25.0.3+incompatible ([#799](https://github.com/coderbirju/finch/issues/799)) ([d761301](https://github.com/coderbirju/finch/commit/d7613012551bd47c26476a993a35856aab91511c)) +* **deps:** Bump github.com/docker/docker from 25.0.3+incompatible to 25.0.4+incompatible ([#845](https://github.com/coderbirju/finch/issues/845)) ([769ae32](https://github.com/coderbirju/finch/commit/769ae321828eb5842943a2bf503297543551bdfe)) +* **deps:** Bump github.com/docker/docker from 25.0.4+incompatible to 26.0.0+incompatible ([#866](https://github.com/coderbirju/finch/issues/866)) ([7fa6e72](https://github.com/coderbirju/finch/commit/7fa6e72fb8d62f16b88deb6dbd7b09aaaa1acdac)) +* **deps:** Bump github.com/docker/docker from 26.0.0+incompatible to 26.0.1+incompatible ([#892](https://github.com/coderbirju/finch/issues/892)) ([05610c1](https://github.com/coderbirju/finch/commit/05610c1b70d884fdbaf74c467e090ddcadd100e9)) +* **deps:** Bump github.com/docker/docker from 26.0.1+incompatible to 26.0.2+incompatible ([#905](https://github.com/coderbirju/finch/issues/905)) ([69e7d0b](https://github.com/coderbirju/finch/commit/69e7d0b153c60653a4f0299c66bb984c39f6434b)) +* **deps:** Bump github.com/docker/docker from 26.0.2+incompatible to 26.1.0+incompatible ([#912](https://github.com/coderbirju/finch/issues/912)) ([5e5f8a8](https://github.com/coderbirju/finch/commit/5e5f8a83aaaa9602e7e22ef48ea4f93be1bfe3c3)) +* **deps:** Bump github.com/docker/docker from 26.1.0+incompatible to 26.1.1+incompatible ([#924](https://github.com/coderbirju/finch/issues/924)) ([79eb863](https://github.com/coderbirju/finch/commit/79eb86318039016e184fdad7c24ebc95c25b73b0)) +* **deps:** Bump github.com/docker/docker from 26.1.1+incompatible to 26.1.2+incompatible ([#940](https://github.com/coderbirju/finch/issues/940)) ([aa3ab01](https://github.com/coderbirju/finch/commit/aa3ab0129bfba62fbaf8ef82cb45b971fcd555c6)) +* **deps:** Bump github.com/docker/docker from 26.1.2+incompatible to 26.1.3+incompatible ([#951](https://github.com/coderbirju/finch/issues/951)) ([cef9d8f](https://github.com/coderbirju/finch/commit/cef9d8fdc335f9a7d762fb260f84056217f2d7d0)) +* **deps:** Bump github.com/docker/docker from 26.1.3+incompatible to 26.1.4+incompatible ([#972](https://github.com/coderbirju/finch/issues/972)) ([05b9c05](https://github.com/coderbirju/finch/commit/05b9c0506b7c482b916445a4e53664846c5c45b6)) +* **deps:** bump github.com/docker/docker from 26.1.4+incompatible to 27.0.1+incompatible ([#996](https://github.com/coderbirju/finch/issues/996)) ([1f68260](https://github.com/coderbirju/finch/commit/1f682607bb5430cf88ea50c5c5ba3d4f5299ccc0)) +* **deps:** bump github.com/docker/docker from 27.0.1+incompatible to 27.0.2+incompatible ([#1001](https://github.com/coderbirju/finch/issues/1001)) ([50a639b](https://github.com/coderbirju/finch/commit/50a639b4ea9c9c1c59a67ed6a26902aae5b01abe)) +* **deps:** bump github.com/docker/docker from 27.0.2+incompatible to 27.0.3+incompatible ([#1006](https://github.com/coderbirju/finch/issues/1006)) ([537abad](https://github.com/coderbirju/finch/commit/537abadac3acc3e51d81f13e584c6d4e234cd654)) +* **deps:** bump github.com/docker/docker from 27.0.3+incompatible to 27.1.0+incompatible ([#1042](https://github.com/coderbirju/finch/issues/1042)) ([942b639](https://github.com/coderbirju/finch/commit/942b639659f35f43cb740d81c30e46f85b6d0912)) +* **deps:** bump github.com/docker/docker from 27.1.0+incompatible to 27.1.1+incompatible ([#1044](https://github.com/coderbirju/finch/issues/1044)) ([d33cb5d](https://github.com/coderbirju/finch/commit/d33cb5d7fb31218fc001bec8d58c8224852622b3)) +* **deps:** bump github.com/docker/docker from 27.1.1+incompatible to 27.1.2+incompatible ([#1061](https://github.com/coderbirju/finch/issues/1061)) ([801f825](https://github.com/coderbirju/finch/commit/801f8254b6c0070b37d3d1fef0d80e2270b8c6b2)) +* **deps:** bump github.com/docker/docker from 27.1.2+incompatible to 27.2.0+incompatible ([#1073](https://github.com/coderbirju/finch/issues/1073)) ([726dc07](https://github.com/coderbirju/finch/commit/726dc072fb4669d29b294c86d8c916d228680403)) +* **deps:** Bump github.com/docker/docker from 27.2.1+incompatible to 27.3.1+incompatible ([#1105](https://github.com/coderbirju/finch/issues/1105)) ([aa0c15a](https://github.com/coderbirju/finch/commit/aa0c15a2d575ff027f7471023cc478318f634f2a)) +* **deps:** Bump github.com/goccy/go-yaml from 1.11.2 to 1.11.3 ([#780](https://github.com/coderbirju/finch/issues/780)) ([2e616ff](https://github.com/coderbirju/finch/commit/2e616ff18d68931f0da81a04045960f035568322)) +* **deps:** Bump github.com/lima-vm/lima from 0.15.0 to 0.15.1 ([#365](https://github.com/coderbirju/finch/issues/365)) ([1d3ee98](https://github.com/coderbirju/finch/commit/1d3ee985427e601bf3f5659c3bba13467ec01ce0)) +* **deps:** Bump github.com/lima-vm/lima from 0.15.1 to 0.16.0 ([#428](https://github.com/coderbirju/finch/issues/428)) ([6a67f0c](https://github.com/coderbirju/finch/commit/6a67f0cfb0a3a1da438779f4faa04048f25d7dde)) +* **deps:** Bump github.com/lima-vm/lima from 0.16.0 to 0.17.2 ([#531](https://github.com/coderbirju/finch/issues/531)) ([6e33d15](https://github.com/coderbirju/finch/commit/6e33d159e2f522784860bc60ceea897a98d1fe5f)) +* **deps:** Bump github.com/lima-vm/lima from 0.17.2 to 0.18.0 ([#643](https://github.com/coderbirju/finch/issues/643)) ([f181b89](https://github.com/coderbirju/finch/commit/f181b8970c6d63a25d22be44820d1570c95b6f41)) +* **deps:** Bump github.com/lima-vm/lima from 0.18.0 to 0.19.0 ([#721](https://github.com/coderbirju/finch/issues/721)) ([2058164](https://github.com/coderbirju/finch/commit/20581647a1949e7e9d258e851dd25a1105168410)) +* **deps:** Bump github.com/lima-vm/lima from 0.19.0 to 0.20.0 ([#769](https://github.com/coderbirju/finch/issues/769)) ([7f0c86e](https://github.com/coderbirju/finch/commit/7f0c86e208a2d6faf3a93ed72887a7211fb9aa9f)) +* **deps:** Bump github.com/lima-vm/lima from 0.20.1 to 0.20.2 ([#855](https://github.com/coderbirju/finch/issues/855)) ([99d4c3c](https://github.com/coderbirju/finch/commit/99d4c3cd8d1623b70c859077fbe7e07a69cf9853)) +* **deps:** Bump github.com/lima-vm/lima from 0.20.2 to 0.21.0 ([#862](https://github.com/coderbirju/finch/issues/862)) ([120ffcc](https://github.com/coderbirju/finch/commit/120ffccf2bb85fa0f5dd1c8907e9f8ecc70eb416)) +* **deps:** Bump github.com/lima-vm/lima from 0.21.0 to 0.22.0 ([#934](https://github.com/coderbirju/finch/issues/934)) ([62d67d5](https://github.com/coderbirju/finch/commit/62d67d5cd3a069eeee209a9c854afa3b98165975)) +* **deps:** bump github.com/lima-vm/lima from 0.22.0 to 0.23.1 ([#1066](https://github.com/coderbirju/finch/issues/1066)) ([09d7355](https://github.com/coderbirju/finch/commit/09d73552047e83b3bafcbbafab3e9efdbf93ea64)) +* **deps:** bump github.com/lima-vm/lima from 0.23.1 to 0.23.2 ([#1077](https://github.com/coderbirju/finch/issues/1077)) ([0a02a4b](https://github.com/coderbirju/finch/commit/0a02a4b1d8189d33894f0a49bc4412739169373c)) +* **deps:** Bump github.com/onsi/ginkgo/v2 from 2.10.0 to 2.11.0 ([#456](https://github.com/coderbirju/finch/issues/456)) ([f7e0916](https://github.com/coderbirju/finch/commit/f7e091670fb2ac5377423e72f98aa8be33aa41c8)) +* **deps:** Bump github.com/onsi/ginkgo/v2 from 2.11.0 to 2.12.0 ([#542](https://github.com/coderbirju/finch/issues/542)) ([8536481](https://github.com/coderbirju/finch/commit/85364818e9f5a9ca1993fa7a3fc8ce775e002a42)) +* **deps:** Bump github.com/onsi/ginkgo/v2 from 2.13.1 to 2.13.2 ([#708](https://github.com/coderbirju/finch/issues/708)) ([cbbd064](https://github.com/coderbirju/finch/commit/cbbd0645aaa5164ffe9eb31d1d1ab7220a50a03e)) +* **deps:** Bump github.com/onsi/ginkgo/v2 from 2.13.2 to 2.14.0 ([#758](https://github.com/coderbirju/finch/issues/758)) ([7d3a7c8](https://github.com/coderbirju/finch/commit/7d3a7c84b02d70edad7947573f77dada22332f41)) +* **deps:** Bump github.com/onsi/ginkgo/v2 from 2.15.0 to 2.16.0 ([#842](https://github.com/coderbirju/finch/issues/842)) ([8e04421](https://github.com/coderbirju/finch/commit/8e044217f97b9fe8b4557e5770eb2b383768c413)) +* **deps:** Bump github.com/onsi/ginkgo/v2 from 2.17.1 to 2.17.2 ([#920](https://github.com/coderbirju/finch/issues/920)) ([939639e](https://github.com/coderbirju/finch/commit/939639edd7cea38a05ce139d49b5f1b5c4305a1f)) +* **deps:** Bump github.com/onsi/ginkgo/v2 from 2.17.2 to 2.17.3 ([#933](https://github.com/coderbirju/finch/issues/933)) ([c56019d](https://github.com/coderbirju/finch/commit/c56019d4d0d9e0479b7580d72beff1ae677c7c09)) +* **deps:** Bump github.com/onsi/ginkgo/v2 from 2.17.3 to 2.19.0 ([#959](https://github.com/coderbirju/finch/issues/959)) ([08d7a34](https://github.com/coderbirju/finch/commit/08d7a3406106838cf3cad9f27f27f5aba5fef507)) +* **deps:** bump github.com/onsi/ginkgo/v2 from 2.19.0 to 2.19.1 ([#1046](https://github.com/coderbirju/finch/issues/1046)) ([39bba35](https://github.com/coderbirju/finch/commit/39bba35ddfb75d02bacdfac36bb3fffb511dc273)) +* **deps:** bump github.com/onsi/ginkgo/v2 from 2.19.1 to 2.20.0 ([#1057](https://github.com/coderbirju/finch/issues/1057)) ([221a935](https://github.com/coderbirju/finch/commit/221a935a28ac72b7365633abf88d93940d40e285)) +* **deps:** bump github.com/onsi/ginkgo/v2 from 2.20.0 to 2.20.2 ([#1075](https://github.com/coderbirju/finch/issues/1075)) ([81af756](https://github.com/coderbirju/finch/commit/81af756115cd698b375d6a78b8fc2331c26216ab)) +* **deps:** Bump github.com/onsi/ginkgo/v2 from 2.9.2 to 2.9.3 ([#390](https://github.com/coderbirju/finch/issues/390)) ([7102994](https://github.com/coderbirju/finch/commit/710299445ed287c67114b277be7bd2a29715956b)) +* **deps:** Bump github.com/onsi/ginkgo/v2 from 2.9.3 to 2.9.5 ([#400](https://github.com/coderbirju/finch/issues/400)) ([65458f1](https://github.com/coderbirju/finch/commit/65458f1b0c20705e724ac07356d87dd47ae2000c)) +* **deps:** Bump github.com/onsi/ginkgo/v2 from 2.9.5 to 2.9.7 ([#432](https://github.com/coderbirju/finch/issues/432)) ([0a381f1](https://github.com/coderbirju/finch/commit/0a381f17ea2602bc3b19f9b2101da9e3a589f6d3)) +* **deps:** Bump github.com/onsi/ginkgo/v2 from 2.9.7 to 2.10.0 ([#449](https://github.com/coderbirju/finch/issues/449)) ([a415e3e](https://github.com/coderbirju/finch/commit/a415e3ef7b2741853bf352b915c4100c77600619)) +* **deps:** Bump github.com/onsi/gomega from 1.27.10 to 1.28.0 ([#583](https://github.com/coderbirju/finch/issues/583)) ([9d1ad57](https://github.com/coderbirju/finch/commit/9d1ad5748967b8b978131ddb50071200fcceffde)) +* **deps:** Bump github.com/onsi/gomega from 1.27.5 to 1.27.6 ([#331](https://github.com/coderbirju/finch/issues/331)) ([fe388a3](https://github.com/coderbirju/finch/commit/fe388a31f830f854abacb06729ddf710040e9e62)) +* **deps:** Bump github.com/onsi/gomega from 1.27.6 to 1.27.7 ([#409](https://github.com/coderbirju/finch/issues/409)) ([80513c7](https://github.com/coderbirju/finch/commit/80513c7785a6da4ae09d9c871acaf180f5d68f2c)) +* **deps:** Bump github.com/onsi/gomega from 1.27.7 to 1.27.8 ([#448](https://github.com/coderbirju/finch/issues/448)) ([96fc8d0](https://github.com/coderbirju/finch/commit/96fc8d09a051b2ead932e6eef064624b1a842b66)) +* **deps:** Bump github.com/onsi/gomega from 1.27.8 to 1.27.10 ([#496](https://github.com/coderbirju/finch/issues/496)) ([d08d102](https://github.com/coderbirju/finch/commit/d08d102d05a350a8b8e586c42ef83d51495cf4f9)) +* **deps:** Bump github.com/onsi/gomega from 1.28.0 to 1.29.0 ([#662](https://github.com/coderbirju/finch/issues/662)) ([5c9de37](https://github.com/coderbirju/finch/commit/5c9de37cb8ba8a4d5cabfe3c640239bd1afa87e0)) +* **deps:** Bump github.com/onsi/gomega from 1.29.0 to 1.30.0 ([#693](https://github.com/coderbirju/finch/issues/693)) ([2b0c54c](https://github.com/coderbirju/finch/commit/2b0c54c85a227bdca0189a3e96b9981289759f53)) +* **deps:** Bump github.com/onsi/gomega from 1.30.0 to 1.31.1 ([#768](https://github.com/coderbirju/finch/issues/768)) ([889abf8](https://github.com/coderbirju/finch/commit/889abf8d7b8fa795790e509cbc00886dedce5af6)) +* **deps:** Bump github.com/onsi/gomega from 1.31.1 to 1.32.0 ([#860](https://github.com/coderbirju/finch/issues/860)) ([b2c9449](https://github.com/coderbirju/finch/commit/b2c94497ec1c950dfe909265f13d70c8c0f8fed9)) +* **deps:** Bump github.com/onsi/gomega from 1.33.0 to 1.33.1 ([#923](https://github.com/coderbirju/finch/issues/923)) ([e7f4e0d](https://github.com/coderbirju/finch/commit/e7f4e0db0e7e5e4bb246c7b503f51dc59e392d55)) +* **deps:** bump github.com/onsi/gomega from 1.33.1 to 1.34.1 ([#1048](https://github.com/coderbirju/finch/issues/1048)) ([66ceee4](https://github.com/coderbirju/finch/commit/66ceee43089998266812efdc759fd4b57c504bde)) +* **deps:** bump github.com/onsi/gomega from 1.34.1 to 1.34.2 ([#1076](https://github.com/coderbirju/finch/issues/1076)) ([e04a072](https://github.com/coderbirju/finch/commit/e04a072aede5e289faf986adc6423a63bbd61c11)) +* **deps:** Bump github.com/pkg/sftp from 1.13.5 to 1.13.6 ([#530](https://github.com/coderbirju/finch/issues/530)) ([09b3846](https://github.com/coderbirju/finch/commit/09b38467333e5e59eadb76cd5f4612768cde5289)) +* **deps:** Bump github.com/runfinch/common-tests from 0.6.4 to 0.6.5 ([#357](https://github.com/coderbirju/finch/issues/357)) ([dc84864](https://github.com/coderbirju/finch/commit/dc848640b719c623dbf606439e6e3e1d9dcd02d6)) +* **deps:** Bump github.com/runfinch/common-tests from 0.6.5 to 0.7.0 ([#420](https://github.com/coderbirju/finch/issues/420)) ([ac18046](https://github.com/coderbirju/finch/commit/ac18046e70efc0e1e9fe11a30457f6f945df2a23)) +* **deps:** Bump github.com/runfinch/common-tests from 0.7.0 to 0.7.1 ([#477](https://github.com/coderbirju/finch/issues/477)) ([54c03bb](https://github.com/coderbirju/finch/commit/54c03bbfba132d797b0efa1171ce3fdc6eb8af9e)) +* **deps:** Bump github.com/runfinch/common-tests from 0.7.11 to 0.7.12 ([#761](https://github.com/coderbirju/finch/issues/761)) ([bb17a96](https://github.com/coderbirju/finch/commit/bb17a96b58b85c42fdc6fbd093209ce1ab900707)) +* **deps:** Bump github.com/runfinch/common-tests from 0.7.13 to 0.7.14 ([#834](https://github.com/coderbirju/finch/issues/834)) ([2287575](https://github.com/coderbirju/finch/commit/22875751324666cb68f6ef928b9960b8fb9ede08)) +* **deps:** Bump github.com/runfinch/common-tests from 0.7.18 to 0.7.21 ([#878](https://github.com/coderbirju/finch/issues/878)) ([e1cbd0a](https://github.com/coderbirju/finch/commit/e1cbd0a466468eae01b60e3eb30bc3205a551ed4)) +* **deps:** Bump github.com/runfinch/common-tests from 0.7.2 to 0.7.3 ([#548](https://github.com/coderbirju/finch/issues/548)) ([a054ef3](https://github.com/coderbirju/finch/commit/a054ef3aa028b2c50fca93631a7b547b9c535f2e)) +* **deps:** Bump github.com/runfinch/common-tests from 0.7.21 to 0.7.22 ([#907](https://github.com/coderbirju/finch/issues/907)) ([84b4a69](https://github.com/coderbirju/finch/commit/84b4a692fc81bdf28ed215322b2b8f90ca556976)) +* **deps:** Bump github.com/runfinch/common-tests from 0.7.6 to 0.7.7 ([#609](https://github.com/coderbirju/finch/issues/609)) ([e21ae83](https://github.com/coderbirju/finch/commit/e21ae836d4f73ea07852e3cd1fc6cc16d56e4f32)) +* **deps:** Bump github.com/runfinch/common-tests from 0.7.7 to 0.7.8 ([#617](https://github.com/coderbirju/finch/issues/617)) ([4d942f5](https://github.com/coderbirju/finch/commit/4d942f550c86106a224e97f32f1bf90f1b4d44cb)) +* **deps:** Bump github.com/shirou/gopsutil/v3 from 3.23.10 to 3.23.11 ([#720](https://github.com/coderbirju/finch/issues/720)) ([defc6c5](https://github.com/coderbirju/finch/commit/defc6c55050dceab6273e501796b918ce8c86075)) +* **deps:** Bump github.com/shirou/gopsutil/v3 from 3.23.11 to 3.23.12 ([#744](https://github.com/coderbirju/finch/issues/744)) ([eb55877](https://github.com/coderbirju/finch/commit/eb55877a330d4c45eb210a19188f54032d7f8274)) +* **deps:** Bump github.com/shirou/gopsutil/v3 from 3.23.12 to 3.24.1 ([#787](https://github.com/coderbirju/finch/issues/787)) ([55f6d92](https://github.com/coderbirju/finch/commit/55f6d929949c1f776a63b93ea4a4446cc821e74a)) +* **deps:** Bump github.com/shirou/gopsutil/v3 from 3.23.3 to 3.23.4 ([#389](https://github.com/coderbirju/finch/issues/389)) ([76b31c0](https://github.com/coderbirju/finch/commit/76b31c0c453935f22588523f65888e103581cd89)) +* **deps:** Bump github.com/shirou/gopsutil/v3 from 3.23.4 to 3.23.5 ([#437](https://github.com/coderbirju/finch/issues/437)) ([8635294](https://github.com/coderbirju/finch/commit/8635294bcb22207bfdaa3f96756f93ba580ff6e2)) +* **deps:** Bump github.com/shirou/gopsutil/v3 from 3.23.5 to 3.23.6 ([#464](https://github.com/coderbirju/finch/issues/464)) ([43a6720](https://github.com/coderbirju/finch/commit/43a672011fd47830073b8cc7427f82c6f1c3e5bd)) +* **deps:** Bump github.com/shirou/gopsutil/v3 from 3.23.6 to 3.23.7 ([#513](https://github.com/coderbirju/finch/issues/513)) ([83bd718](https://github.com/coderbirju/finch/commit/83bd718be67ddba624e8218034c91bf399e2cccd)) +* **deps:** Bump github.com/shirou/gopsutil/v3 from 3.23.7 to 3.23.8 ([#552](https://github.com/coderbirju/finch/issues/552)) ([cf9399a](https://github.com/coderbirju/finch/commit/cf9399a5dd125b875d6212b029ed19530898cdee)) +* **deps:** Bump github.com/shirou/gopsutil/v3 from 3.23.8 to 3.23.9 ([#588](https://github.com/coderbirju/finch/issues/588)) ([20385b7](https://github.com/coderbirju/finch/commit/20385b7c5c0a45f5495615ebb3ce70220ab15969)) +* **deps:** Bump github.com/shirou/gopsutil/v3 from 3.23.9 to 3.23.10 ([#678](https://github.com/coderbirju/finch/issues/678)) ([1b2b823](https://github.com/coderbirju/finch/commit/1b2b823da40454ac55b755145840bc5b03ab3091)) +* **deps:** Bump github.com/shirou/gopsutil/v3 from 3.24.1 to 3.24.2 ([#838](https://github.com/coderbirju/finch/issues/838)) ([d2612aa](https://github.com/coderbirju/finch/commit/d2612aa7683e93213e0ba5f9e082afb343ddcaf2)) +* **deps:** Bump github.com/shirou/gopsutil/v3 from 3.24.2 to 3.24.3 ([#881](https://github.com/coderbirju/finch/issues/881)) ([465e369](https://github.com/coderbirju/finch/commit/465e369479fb803dde75be02ee4a8e37c3a3ffdf)) +* **deps:** Bump github.com/shirou/gopsutil/v3 from 3.24.3 to 3.24.4 ([#925](https://github.com/coderbirju/finch/issues/925)) ([8cd5643](https://github.com/coderbirju/finch/commit/8cd5643b13adeac92ead09d45e8d890bb99d01a8)) +* **deps:** Bump github.com/shirou/gopsutil/v3 from 3.24.4 to 3.24.5 ([#962](https://github.com/coderbirju/finch/issues/962)) ([8e51db3](https://github.com/coderbirju/finch/commit/8e51db3c0d622d850ffd7e8d38b9e846ff586e95)) +* **deps:** Bump github.com/sirupsen/logrus from 1.9.0 to 1.9.1 ([#405](https://github.com/coderbirju/finch/issues/405)) ([05b6b2e](https://github.com/coderbirju/finch/commit/05b6b2e7364036a3d30b67ad409f55526cc59ffe)) +* **deps:** Bump github.com/sirupsen/logrus from 1.9.1 to 1.9.2 ([#408](https://github.com/coderbirju/finch/issues/408)) ([0ff477a](https://github.com/coderbirju/finch/commit/0ff477ab32e2c427bbc800b6ae65efc72b5ed1eb)) +* **deps:** Bump github.com/sirupsen/logrus from 1.9.2 to 1.9.3 ([#446](https://github.com/coderbirju/finch/issues/446)) ([1823677](https://github.com/coderbirju/finch/commit/18236774d971065dec28d1db204e1f697d418a9b)) +* **deps:** Bump github.com/spf13/afero from 1.10.0 to 1.11.0 ([#705](https://github.com/coderbirju/finch/issues/705)) ([928574f](https://github.com/coderbirju/finch/commit/928574f45f5990627d469a4d5074ef3de104519c)) +* **deps:** Bump github.com/spf13/cobra from 1.7.0 to 1.8.0 ([#686](https://github.com/coderbirju/finch/issues/686)) ([00ba174](https://github.com/coderbirju/finch/commit/00ba174ad1c59981f6ce48bf80fc7e41cfed301b)) +* **deps:** bump github.com/spf13/cobra from 1.8.0 to 1.8.1 ([#983](https://github.com/coderbirju/finch/issues/983)) ([7b2bed6](https://github.com/coderbirju/finch/commit/7b2bed648eae4cb915514981da777b9df7729f88)) +* **deps:** Bump github.com/stretchr/testify from 1.8.2 to 1.8.4 ([#429](https://github.com/coderbirju/finch/issues/429)) ([0f7750e](https://github.com/coderbirju/finch/commit/0f7750ebeee01108a9f6a6fcfe0c7f5f044bc336)) +* **deps:** Bump github.com/stretchr/testify from 1.8.4 to 1.9.0 ([#839](https://github.com/coderbirju/finch/issues/839)) ([9f0953d](https://github.com/coderbirju/finch/commit/9f0953d260c806b4b243472ddce14284b2051a3e)) +* **deps:** Bump github.com/tc-hib/go-winres from 0.3.1 to 0.3.3 ([#893](https://github.com/coderbirju/finch/issues/893)) ([ebb4c9f](https://github.com/coderbirju/finch/commit/ebb4c9f5a40a003aebefa765de971835c461c3d2)) +* **deps:** Bump golang.org/x/crypto from 0.10.0 to 0.11.0 ([#465](https://github.com/coderbirju/finch/issues/465)) ([dc5a3e7](https://github.com/coderbirju/finch/commit/dc5a3e7240d4af6b63874e239bc77bed04d2a0a6)) +* **deps:** Bump golang.org/x/crypto from 0.12.0 to 0.13.0 ([#558](https://github.com/coderbirju/finch/issues/558)) ([f24264d](https://github.com/coderbirju/finch/commit/f24264d30805252d91b531c2bca8d9c883b88196)) +* **deps:** Bump golang.org/x/crypto from 0.14.0 to 0.15.0 ([#692](https://github.com/coderbirju/finch/issues/692)) ([fba68ff](https://github.com/coderbirju/finch/commit/fba68ff03c01032665793b0f27681173ec03ceec)) +* **deps:** Bump golang.org/x/crypto from 0.15.0 to 0.16.0 ([#704](https://github.com/coderbirju/finch/issues/704)) ([f6a920f](https://github.com/coderbirju/finch/commit/f6a920fc80bf7be954527fe5bd765dddcd0d5db5)) +* **deps:** Bump golang.org/x/crypto from 0.16.0 to 0.18.0 ([#751](https://github.com/coderbirju/finch/issues/751)) ([fc434ac](https://github.com/coderbirju/finch/commit/fc434ac4f288bb1d2eeef3c2e2bcb186e8aa5278)) +* **deps:** Bump golang.org/x/crypto from 0.18.0 to 0.19.0 ([#806](https://github.com/coderbirju/finch/issues/806)) ([3fbc87c](https://github.com/coderbirju/finch/commit/3fbc87ce7e6a07a789674a52fb79f968db267951)) +* **deps:** Bump golang.org/x/crypto from 0.19.0 to 0.20.0 ([#833](https://github.com/coderbirju/finch/issues/833)) ([1ed1474](https://github.com/coderbirju/finch/commit/1ed1474fa7eaca97e32a7641da76ca96e5d300d1)) +* **deps:** Bump golang.org/x/crypto from 0.20.0 to 0.21.0 ([#843](https://github.com/coderbirju/finch/issues/843)) ([b7ef6f2](https://github.com/coderbirju/finch/commit/b7ef6f2a946b1a813dd5846e4ea8726a1442b332)) +* **deps:** Bump golang.org/x/crypto from 0.22.0 to 0.23.0 ([#928](https://github.com/coderbirju/finch/issues/928)) ([1687293](https://github.com/coderbirju/finch/commit/16872932c1345d5894a2d5c859f0fbcdc756ff35)) +* **deps:** bump golang.org/x/crypto from 0.24.0 to 0.25.0 ([#1016](https://github.com/coderbirju/finch/issues/1016)) ([b7c711a](https://github.com/coderbirju/finch/commit/b7c711abe4831342dcd3347ce658b9c301d4e191)) +* **deps:** bump golang.org/x/crypto from 0.25.0 to 0.26.0 ([#1054](https://github.com/coderbirju/finch/issues/1054)) ([2ecab35](https://github.com/coderbirju/finch/commit/2ecab35866f2f3d99ba3cf32d6b3f337341cce20)) +* **deps:** Bump golang.org/x/crypto from 0.7.0 to 0.8.0 ([#349](https://github.com/coderbirju/finch/issues/349)) ([82b27c9](https://github.com/coderbirju/finch/commit/82b27c9bb1424ef47fe05cf805aebc337af3bc5e)) +* **deps:** Bump golang.org/x/crypto from 0.8.0 to 0.9.0 ([#397](https://github.com/coderbirju/finch/issues/397)) ([f15c2ee](https://github.com/coderbirju/finch/commit/f15c2ee576416c0cb25de45438bd894ca6b1fdcb)) +* **deps:** Bump golang.org/x/crypto from 0.9.0 to 0.10.0 ([#451](https://github.com/coderbirju/finch/issues/451)) ([fef6e77](https://github.com/coderbirju/finch/commit/fef6e772c28429ef14068702c1dfd8e9fec2dea1)) +* **deps:** Bump golang.org/x/image from 0.0.0-20210220032944-ac19c3e999fb to 0.10.0 ([#752](https://github.com/coderbirju/finch/issues/752)) ([9a08b45](https://github.com/coderbirju/finch/commit/9a08b45466cc58326df05d94dfe91edd07158759)) +* **deps:** bump golang.org/x/image from 0.12.0 to 0.18.0 ([#998](https://github.com/coderbirju/finch/issues/998)) ([398658e](https://github.com/coderbirju/finch/commit/398658eaff3299d6edf705f922ce1f1732d974cb)) +* **deps:** bump golang.org/x/sys from 0.22.0 to 0.23.0 ([#1051](https://github.com/coderbirju/finch/issues/1051)) ([c6402ab](https://github.com/coderbirju/finch/commit/c6402ab9471419ed37a744950a38447e155470d2)) +* **deps:** bump golang.org/x/sys from 0.23.0 to 0.24.0 ([#1059](https://github.com/coderbirju/finch/issues/1059)) ([9529346](https://github.com/coderbirju/finch/commit/9529346e95c48056c71ee7e09cd6ce10044044f8)) +* **deps:** bump golang.org/x/sys from 0.24.0 to 0.25.0 ([#1084](https://github.com/coderbirju/finch/issues/1084)) ([9ace518](https://github.com/coderbirju/finch/commit/9ace5180006a7677ad03ab0dda21506e93022a6e)) +* **deps:** Bump golang.org/x/text from 0.14.0 to 0.15.0 ([#929](https://github.com/coderbirju/finch/issues/929)) ([85e1bec](https://github.com/coderbirju/finch/commit/85e1becd9a1c4a1396c8611dab74ec36d41d10eb)) +* **deps:** Bump golang.org/x/text from 0.15.0 to 0.16.0 ([#964](https://github.com/coderbirju/finch/issues/964)) ([8a3973a](https://github.com/coderbirju/finch/commit/8a3973a4d08e3ed7b33fde4d94a2717126042618)) +* **deps:** bump golang.org/x/text from 0.17.0 to 0.18.0 ([#1082](https://github.com/coderbirju/finch/issues/1082)) ([52b1ba3](https://github.com/coderbirju/finch/commit/52b1ba3cbc4a9896633cb2c15b10d838e4e4c4dc)) +* **deps:** Bump golang.org/x/tools from 0.10.0 to 0.11.0 ([#466](https://github.com/coderbirju/finch/issues/466)) ([a8b32f9](https://github.com/coderbirju/finch/commit/a8b32f9674f93cfe54686a2e29b4cf6ca4534939)) +* **deps:** Bump golang.org/x/tools from 0.11.0 to 0.11.1 ([#509](https://github.com/coderbirju/finch/issues/509)) ([e826bcf](https://github.com/coderbirju/finch/commit/e826bcff385946bb6629db8935d3aa912befb5bb)) +* **deps:** Bump golang.org/x/tools from 0.11.1 to 0.12.0 ([#523](https://github.com/coderbirju/finch/issues/523)) ([09d6514](https://github.com/coderbirju/finch/commit/09d6514bfba31a898e3b3407964113f21fb6b244)) +* **deps:** Bump golang.org/x/tools from 0.12.0 to 0.13.0 ([#559](https://github.com/coderbirju/finch/issues/559)) ([0f56d23](https://github.com/coderbirju/finch/commit/0f56d23b4e9210960c02822cd19a8a47326caa0e)) +* **deps:** Bump golang.org/x/tools from 0.13.0 to 0.14.0 ([#610](https://github.com/coderbirju/finch/issues/610)) ([8938cf3](https://github.com/coderbirju/finch/commit/8938cf394f12b42da976c2963fad82c42a52aa85)) +* **deps:** Bump golang.org/x/tools from 0.14.0 to 0.16.0 ([#706](https://github.com/coderbirju/finch/issues/706)) ([6f021a2](https://github.com/coderbirju/finch/commit/6f021a29fbabb35ef3b5b406d10932c81d2bd0c3)) +* **deps:** Bump golang.org/x/tools from 0.16.0 to 0.16.1 ([#734](https://github.com/coderbirju/finch/issues/734)) ([efecfca](https://github.com/coderbirju/finch/commit/efecfcae8922f47581a4575125acbe375a706b11)) +* **deps:** Bump golang.org/x/tools from 0.16.1 to 0.17.0 ([#757](https://github.com/coderbirju/finch/issues/757)) ([89623da](https://github.com/coderbirju/finch/commit/89623dab53f0128c1616c66a7361a5ce3df847c3)) +* **deps:** Bump golang.org/x/tools from 0.17.0 to 0.18.0 ([#807](https://github.com/coderbirju/finch/issues/807)) ([7323751](https://github.com/coderbirju/finch/commit/7323751937900df76b217736acc51d77b9cff3d9)) +* **deps:** Bump golang.org/x/tools from 0.18.0 to 0.19.0 ([#844](https://github.com/coderbirju/finch/issues/844)) ([f8883b2](https://github.com/coderbirju/finch/commit/f8883b2535e9fb655eaf86f0765e4f46d5d83b0a)) +* **deps:** Bump golang.org/x/tools from 0.19.0 to 0.20.0 ([#889](https://github.com/coderbirju/finch/issues/889)) ([cfac010](https://github.com/coderbirju/finch/commit/cfac010837e0dac39c02fd6ba5154760641074fb)) +* **deps:** Bump golang.org/x/tools from 0.20.0 to 0.21.0 ([#932](https://github.com/coderbirju/finch/issues/932)) ([a853a8a](https://github.com/coderbirju/finch/commit/a853a8a968ff13524521bd0e201640680e5b8e47)) +* **deps:** Bump golang.org/x/tools from 0.21.0 to 0.22.0 ([#967](https://github.com/coderbirju/finch/issues/967)) ([3921b00](https://github.com/coderbirju/finch/commit/3921b00807455aacaeb526fe7db8da2f68a81fd3)) +* **deps:** bump golang.org/x/tools from 0.22.0 to 0.23.0 ([#1019](https://github.com/coderbirju/finch/issues/1019)) ([81b2446](https://github.com/coderbirju/finch/commit/81b2446a3a9f4d13364951e26c2f716a0ab956f7)) +* **deps:** bump golang.org/x/tools from 0.23.0 to 0.24.0 ([#1056](https://github.com/coderbirju/finch/issues/1056)) ([3a34c79](https://github.com/coderbirju/finch/commit/3a34c79996f49a3eb609615c02b5fe4bdbb266fc)) +* **deps:** bump golang.org/x/tools from 0.24.0 to 0.25.0 ([#1090](https://github.com/coderbirju/finch/issues/1090)) ([c382e22](https://github.com/coderbirju/finch/commit/c382e2236ff3cff97d924a5a61682b9a0a491b76)) +* **deps:** Bump golang.org/x/tools from 0.25.0 to 0.26.0 ([#1130](https://github.com/coderbirju/finch/issues/1130)) ([633c1bf](https://github.com/coderbirju/finch/commit/633c1bfbdd8db4434b6822b4481702e30f07deed)) +* **deps:** Bump golang.org/x/tools from 0.9.1 to 0.9.3 ([#443](https://github.com/coderbirju/finch/issues/443)) ([b192874](https://github.com/coderbirju/finch/commit/b192874e2b1c5de1c2148813760cbe65e15d7553)) +* **deps:** Bump golang.org/x/tools from 0.9.3 to 0.10.0 ([#455](https://github.com/coderbirju/finch/issues/455)) ([e321f1d](https://github.com/coderbirju/finch/commit/e321f1dc607626a7f65b33e0a0f503d8c856b1f2)) +* **deps:** Bump google.golang.org/grpc from 1.53.0 to 1.56.3 ([#658](https://github.com/coderbirju/finch/issues/658)) ([321487c](https://github.com/coderbirju/finch/commit/321487c9309a73625512255ff86b6ffc6977b86e)) +* **deps:** Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 ([#858](https://github.com/coderbirju/finch/issues/858)) ([14532d5](https://github.com/coderbirju/finch/commit/14532d599ce17767d8e9ccb2ca3450621e719cc7)) +* **deps:** Bump k8s.io/apimachinery from 0.26.3 to 0.27.1 ([#366](https://github.com/coderbirju/finch/issues/366)) ([b93d3a8](https://github.com/coderbirju/finch/commit/b93d3a8ed8eef42321200ac1386b61765e0b8348)) +* **deps:** Bump k8s.io/apimachinery from 0.27.1 to 0.27.2 ([#407](https://github.com/coderbirju/finch/issues/407)) ([e6cbd2c](https://github.com/coderbirju/finch/commit/e6cbd2c5dba8af5cab9ea8a37a33c580ee4edef9)) +* **deps:** Bump k8s.io/apimachinery from 0.27.2 to 0.27.3 ([#454](https://github.com/coderbirju/finch/issues/454)) ([d6746a4](https://github.com/coderbirju/finch/commit/d6746a447e10bed6c13d197c8d693b27e02ac3aa)) +* **deps:** Bump k8s.io/apimachinery from 0.27.3 to 0.27.4 ([#487](https://github.com/coderbirju/finch/issues/487)) ([444bbc0](https://github.com/coderbirju/finch/commit/444bbc0779dbe22207fec471389810e398c1cf50)) +* **deps:** Bump k8s.io/apimachinery from 0.27.4 to 0.28.0 ([#535](https://github.com/coderbirju/finch/issues/535)) ([8df84cf](https://github.com/coderbirju/finch/commit/8df84cf8c54bd772c28a83df918c251a540c881a)) +* **deps:** Bump k8s.io/apimachinery from 0.28.0 to 0.28.1 ([#543](https://github.com/coderbirju/finch/issues/543)) ([675f76f](https://github.com/coderbirju/finch/commit/675f76fa6d8874587c09237faeb82d9f96c14adb)) +* **deps:** Bump k8s.io/apimachinery from 0.28.1 to 0.28.2 ([#568](https://github.com/coderbirju/finch/issues/568)) ([915d658](https://github.com/coderbirju/finch/commit/915d658fbd6581eec437f2c31121366ff77a5981)) +* **deps:** Bump k8s.io/apimachinery from 0.28.2 to 0.28.3 ([#652](https://github.com/coderbirju/finch/issues/652)) ([05f9d53](https://github.com/coderbirju/finch/commit/05f9d53dab468546918a332f0fc18449de774487)) +* **deps:** Bump k8s.io/apimachinery from 0.28.3 to 0.28.4 ([#697](https://github.com/coderbirju/finch/issues/697)) ([e064d94](https://github.com/coderbirju/finch/commit/e064d94b71acbd7d160c3f061ff3ade7caae3333)) +* **deps:** Bump k8s.io/apimachinery from 0.29.1 to 0.29.2 ([#820](https://github.com/coderbirju/finch/issues/820)) ([6ca0f7f](https://github.com/coderbirju/finch/commit/6ca0f7ff007f88ad37eb02b2c9437042a7350f37)) +* **deps:** Bump k8s.io/apimachinery from 0.29.2 to 0.29.3 ([#863](https://github.com/coderbirju/finch/issues/863)) ([c8a4262](https://github.com/coderbirju/finch/commit/c8a42626538ec3fe301158b5b0f995b84f38a95b)) +* **deps:** Bump k8s.io/apimachinery from 0.29.3 to 0.30.0 ([#904](https://github.com/coderbirju/finch/issues/904)) ([f8b7f25](https://github.com/coderbirju/finch/commit/f8b7f254a67413111dc1de70255a28ffab49d62a)) +* **deps:** Bump k8s.io/apimachinery from 0.30.0 to 0.30.1 ([#946](https://github.com/coderbirju/finch/issues/946)) ([dc4ebf9](https://github.com/coderbirju/finch/commit/dc4ebf92931fe9b44466a6a1a60daa11183fe53d)) +* **deps:** bump k8s.io/apimachinery from 0.30.1 to 0.30.2 ([#981](https://github.com/coderbirju/finch/issues/981)) ([c8ebf20](https://github.com/coderbirju/finch/commit/c8ebf20285afdc23684866e69ef955021260bcc9)) +* **deps:** bump k8s.io/apimachinery from 0.30.2 to 0.30.3 ([#1036](https://github.com/coderbirju/finch/issues/1036)) ([0c5686e](https://github.com/coderbirju/finch/commit/0c5686e86fffde80f7428036aa443fc6629694ae)) +* **deps:** bump k8s.io/apimachinery from 0.30.3 to 0.31.0 ([#1060](https://github.com/coderbirju/finch/issues/1060)) ([2c22e72](https://github.com/coderbirju/finch/commit/2c22e7277a0940ba65126d01b6ea201bbb5f4840)) +* **deps:** bump k8s.io/apimachinery from 0.31.0 to 0.31.1 ([#1093](https://github.com/coderbirju/finch/issues/1093)) ([35bc4dc](https://github.com/coderbirju/finch/commit/35bc4dc05c1f8f5fb2ef0a9ba8a8fe1f5a42c8f3)) +* **deps:** Bump lima version ([#354](https://github.com/coderbirju/finch/issues/354)) ([c721ee6](https://github.com/coderbirju/finch/commit/c721ee69f470eaf81b24fc043f088713fce88ad6)) +* **deps:** Bump lima version ([#362](https://github.com/coderbirju/finch/issues/362)) ([5e03a4d](https://github.com/coderbirju/finch/commit/5e03a4d40c63a8fcc5a79bdda2ebfec6f993db3c)) +* **deps:** Bump lima version ([#368](https://github.com/coderbirju/finch/issues/368)) ([8e4dfe4](https://github.com/coderbirju/finch/commit/8e4dfe4092a959d853549ed980e1c36a9e630be8)) +* **deps:** Bump lima version ([#476](https://github.com/coderbirju/finch/issues/476)) ([7b330d3](https://github.com/coderbirju/finch/commit/7b330d3e2bd4cc623f46762c8e3b120ddc18f3b0)) +* **deps:** Bump submodules ([#371](https://github.com/coderbirju/finch/issues/371)) ([19fc0c5](https://github.com/coderbirju/finch/commit/19fc0c5d16a6d2fb876b05575420a8080c8a3562)) +* **deps:** Bump submodules ([#375](https://github.com/coderbirju/finch/issues/375)) ([70fe4c3](https://github.com/coderbirju/finch/commit/70fe4c3e0320f237d2e4501fbe2bc4d3320ef3e9)) +* **deps:** Bump submodules ([#402](https://github.com/coderbirju/finch/issues/402)) ([06d86b2](https://github.com/coderbirju/finch/commit/06d86b2bc348db9f0d8d02678faee556719b883d)) +* **deps:** Bump submodules ([#439](https://github.com/coderbirju/finch/issues/439)) ([e9551b5](https://github.com/coderbirju/finch/commit/e9551b50010deb43ad26dcd3671ec2f246e84ed6)) +* **deps:** Bump submodules ([#482](https://github.com/coderbirju/finch/issues/482)) ([92f2494](https://github.com/coderbirju/finch/commit/92f2494f17bde67b785ccf444ac6525b7a856a6c)) +* **deps:** Bump submodules and dependencies ([#1008](https://github.com/coderbirju/finch/issues/1008)) ([6134a5a](https://github.com/coderbirju/finch/commit/6134a5aa96ae424c64101fe91814ca2dcef21555)) +* **deps:** Bump submodules and dependencies ([#1020](https://github.com/coderbirju/finch/issues/1020)) ([30d8e69](https://github.com/coderbirju/finch/commit/30d8e69d17d5c5989ee40c4f71c17821ba58c973)) +* **deps:** Bump submodules and dependencies ([#1021](https://github.com/coderbirju/finch/issues/1021)) ([fd1677b](https://github.com/coderbirju/finch/commit/fd1677b4ca6ddf74f3733812a317305e956ee7bb)) +* **deps:** Bump submodules and dependencies ([#1027](https://github.com/coderbirju/finch/issues/1027)) ([966b8d2](https://github.com/coderbirju/finch/commit/966b8d2e5e189dc89d5e1a07beed42cb0de26363)) +* **deps:** Bump submodules and dependencies ([#1035](https://github.com/coderbirju/finch/issues/1035)) ([4fe6fcf](https://github.com/coderbirju/finch/commit/4fe6fcfca0da292521929033f7067e309ec32971)) +* **deps:** Bump submodules and dependencies ([#1111](https://github.com/coderbirju/finch/issues/1111)) ([53f608f](https://github.com/coderbirju/finch/commit/53f608f34e94e36ec249103dce05c0b2cd75f446)) +* **deps:** Bump submodules and dependencies ([#521](https://github.com/coderbirju/finch/issues/521)) ([1b3ad94](https://github.com/coderbirju/finch/commit/1b3ad94f9477eb3f8d33cbea90880f78ca403ff7)) +* **deps:** Bump submodules and dependencies ([#544](https://github.com/coderbirju/finch/issues/544)) ([94b7497](https://github.com/coderbirju/finch/commit/94b74978e135fbf6375fe1a21ce4b64b77db5ee7)) +* **deps:** Bump submodules and dependencies ([#551](https://github.com/coderbirju/finch/issues/551)) ([baf645f](https://github.com/coderbirju/finch/commit/baf645f250344a42bc4ee3ea53e97b2c82dbb55a)) +* **deps:** Bump submodules and dependencies ([#565](https://github.com/coderbirju/finch/issues/565)) ([c02413f](https://github.com/coderbirju/finch/commit/c02413f47ade25232830a04548625297267caf9f)) +* **deps:** Bump submodules and dependencies ([#567](https://github.com/coderbirju/finch/issues/567)) ([f70314e](https://github.com/coderbirju/finch/commit/f70314ef4a517d1fb69dc8444e621262f7e4dcd0)) +* **deps:** Bump submodules and dependencies ([#637](https://github.com/coderbirju/finch/issues/637)) ([b094751](https://github.com/coderbirju/finch/commit/b094751d3ba56c7855fc6f3af7b8bef2618a7206)) +* **deps:** Bump submodules and dependencies ([#722](https://github.com/coderbirju/finch/issues/722)) ([667c692](https://github.com/coderbirju/finch/commit/667c6923478696da86f3b899edf9a0efdc7c7b9c)) +* **deps:** Bump submodules and dependencies ([#724](https://github.com/coderbirju/finch/issues/724)) ([bb1a273](https://github.com/coderbirju/finch/commit/bb1a273e0b966599d77dd649002e2896ed8b98e5)) +* **deps:** Bump submodules and dependencies ([#733](https://github.com/coderbirju/finch/issues/733)) ([8b2d8cd](https://github.com/coderbirju/finch/commit/8b2d8cddc7fc63264c7f5bf1be2bd4417a92aaeb)) +* **deps:** Bump submodules and dependencies ([#762](https://github.com/coderbirju/finch/issues/762)) ([4889527](https://github.com/coderbirju/finch/commit/4889527dae6494509fce0b3fefc4ac890d113f11)) +* **deps:** Bump submodules and dependencies ([#795](https://github.com/coderbirju/finch/issues/795)) ([ec77f1a](https://github.com/coderbirju/finch/commit/ec77f1abe9c00ddd9cd84ed665204c2c5df4c40b)) +* **deps:** Bump submodules and dependencies ([#805](https://github.com/coderbirju/finch/issues/805)) ([0bf9148](https://github.com/coderbirju/finch/commit/0bf9148a6ce88dde413679cc9a3702a5d398d544)) +* **deps:** Bump submodules and dependencies ([#825](https://github.com/coderbirju/finch/issues/825)) ([8828c56](https://github.com/coderbirju/finch/commit/8828c56251ea792efb9b8fccc8eadec374b30c62)) +* **deps:** Bump submodules and dependencies ([#874](https://github.com/coderbirju/finch/issues/874)) ([a9f73be](https://github.com/coderbirju/finch/commit/a9f73be25a32b9f0d96fe79f92ae02050694fc47)) +* **deps:** Bump submodules and dependencies ([#895](https://github.com/coderbirju/finch/issues/895)) ([c7388bb](https://github.com/coderbirju/finch/commit/c7388bb9638d0c2306efc9dc6c4f11996d6f11bb)) +* **deps:** Bump submodules and dependencies ([#949](https://github.com/coderbirju/finch/issues/949)) ([b5ee424](https://github.com/coderbirju/finch/commit/b5ee42460f58f9ee96b3ae0b908349a04662d20b)) +* **deps:** update nerdctl-full and soci versions ([#1097](https://github.com/coderbirju/finch/issues/1097)) ([a4b9679](https://github.com/coderbirju/finch/commit/a4b9679334ee4a5b353962260fa72e6a7d245e2d)) +* **fix:** pass arch to finch-core install.dependencies target ([#1034](https://github.com/coderbirju/finch/issues/1034)) ([fa5078f](https://github.com/coderbirju/finch/commit/fa5078f2d5f2fcc12b039fe37331cfb18b191f09)) +* **linux:** add Linux packaging and e2e tests ([#1071](https://github.com/coderbirju/finch/issues/1071)) ([985570e](https://github.com/coderbirju/finch/commit/985570eed4b28ab7adae0350164fe9697d4e725a)) +* trigger new release-please build ([6ef2e6b](https://github.com/coderbirju/finch/commit/6ef2e6b157bc6226a878196c0b5dd692dcca4ce3)) +* trigger new release-please PR ([#1114](https://github.com/coderbirju/finch/issues/1114)) ([6ef2e6b](https://github.com/coderbirju/finch/commit/6ef2e6b157bc6226a878196c0b5dd692dcca4ce3)) +* unify macos/windows yamls ([#921](https://github.com/coderbirju/finch/issues/921)) ([86d9a23](https://github.com/coderbirju/finch/commit/86d9a231a9c454bcde220c7a72b122c64df21fdd)) + + +### Experimental + +* make finch work on windows with wsl2 ([#649](https://github.com/coderbirju/finch/issues/649)) ([31cdc41](https://github.com/coderbirju/finch/commit/31cdc411d29758bae54a0b3fdb37be2777bd9fdc)) + + +### Features + +* Add BindMount handler for Linux ([#1119](https://github.com/coderbirju/finch/issues/1119)) ([a49df29](https://github.com/coderbirju/finch/commit/a49df292d00af9e4b8a247c0b24c0faa5d465515)) +* Add Dockercompat Mode & DevContainer Support ([#1100](https://github.com/coderbirju/finch/issues/1100)) ([c004516](https://github.com/coderbirju/finch/commit/c004516c48dcbe85cd16b0c4b0060105e5118fa8)) +* add exit status code to finch ([5fa30f4](https://github.com/coderbirju/finch/commit/5fa30f45f7ff20605905d456d5dda1c177172527)) +* Add exit status code to finch ([#1068](https://github.com/coderbirju/finch/issues/1068)) ([5fa30f4](https://github.com/coderbirju/finch/commit/5fa30f45f7ff20605905d456d5dda1c177172527)) +* add experimental support for Cosign signing and verification ([#296](https://github.com/coderbirju/finch/issues/296)) ([84c2634](https://github.com/coderbirju/finch/commit/84c2634b7c1226ba9746d0cda4d22ec571454160)) +* add finch version output to support-bundle ([#1124](https://github.com/coderbirju/finch/issues/1124)) ([33d519b](https://github.com/coderbirju/finch/commit/33d519b824f4df922df654d7ccb6861832eaaa86)) +* add Linux support ([#1023](https://github.com/coderbirju/finch/issues/1023)) ([82f698b](https://github.com/coderbirju/finch/commit/82f698bba086ebcc5112f3ecdc5d6f6344ebc3f2)) +* Add More PassedEnvs for ECR CredHelper ([#1132](https://github.com/coderbirju/finch/issues/1132)) ([0cb6a55](https://github.com/coderbirju/finch/commit/0cb6a55c56d0c26f2648806d7983820796c1b04a)) +* Add the --format option to the finch version command ([#926](https://github.com/coderbirju/finch/issues/926)) ([a9d04e3](https://github.com/coderbirju/finch/commit/a9d04e35515bedb970f403a732377ddf3ce6df18)) +* adding config option for SOCI installation on VM ([#506](https://github.com/coderbirju/finch/issues/506)) ([a2e077b](https://github.com/coderbirju/finch/commit/a2e077b8f72dc8d8d833aedce31b3ad3f9f45eb4)) +* allow user configurable docker compose version env variable ([#1133](https://github.com/coderbirju/finch/issues/1133)) ([69b066b](https://github.com/coderbirju/finch/commit/69b066b2e9b2ffe39c78f21eb809fa74e9728c2e)) +* ECR credential integration into Finch ([#462](https://github.com/coderbirju/finch/issues/462)) ([d3514b3](https://github.com/coderbirju/finch/commit/d3514b3dbe69e1bed3d40838af01ebec184f7413)) +* handle dockercompat inspect for devcontainers ([#1121](https://github.com/coderbirju/finch/issues/1121)) ([5ba7305](https://github.com/coderbirju/finch/commit/5ba730580300e6b49d37fd6be8ee7d75ac396462)) +* **macOS:** Support host DNS aliases for macos ([#1085](https://github.com/coderbirju/finch/issues/1085)) ([6b7f053](https://github.com/coderbirju/finch/commit/6b7f05322141d187246c7d2f3925927a69eb4491)) +* make Virtualization Framework default ([#956](https://github.com/coderbirju/finch/issues/956)) ([75b69b8](https://github.com/coderbirju/finch/commit/75b69b8a79d51c71d21fbddec15e5593c717edcf)) +* support push with SOCI ([#578](https://github.com/coderbirju/finch/issues/578)) ([69721b7](https://github.com/coderbirju/finch/commit/69721b76151a4c24d82cdc1c9338bacf72afb15d)) +* supports adding files inside the VM to support bundles ([#549](https://github.com/coderbirju/finch/issues/549)) ([3b1df46](https://github.com/coderbirju/finch/commit/3b1df4697e7b020d6c7339fb71bacf62ca0b3ee0)) +* upgrade Windows support to "feature" ([#778](https://github.com/coderbirju/finch/issues/778)) ([63894d1](https://github.com/coderbirju/finch/commit/63894d12f3ab9d2c02700779e42182d06019a85f)) + + +### Bug Fixes + +* Add cleanup script to Makefile ([#444](https://github.com/coderbirju/finch/issues/444)) ([da91f87](https://github.com/coderbirju/finch/commit/da91f87369e5fde221b8edbac374954e71dae947)) +* add finch vm settings subcommand ([#887](https://github.com/coderbirju/finch/issues/887)) ([8e809cc](https://github.com/coderbirju/finch/commit/8e809cce3c4032b145682da724308782acc74ad1)) +* add force to cni cleanup on boot service ([#785](https://github.com/coderbirju/finch/issues/785)) ([9b2438b](https://github.com/coderbirju/finch/commit/9b2438b5827706b134bb791a78643af37854b377)) +* add SOCI snapshotter hash check ([#985](https://github.com/coderbirju/finch/issues/985)) ([563f346](https://github.com/coderbirju/finch/commit/563f346fa1b5380576213175055e308500a0cdbb)) +* allow finch commands to run using default config ([#1109](https://github.com/coderbirju/finch/issues/1109)) ([4b57a00](https://github.com/coderbirju/finch/commit/4b57a00181bb5f085d60b7f89fd9899e79cde7e0)) +* Allow to use the COMPOSE_FILE variable in finch compose ([#994](https://github.com/coderbirju/finch/issues/994)) ([17d4bc8](https://github.com/coderbirju/finch/commit/17d4bc8fbdf6b80e5070d2aa3ed1c85b112252fb)) +* always force stop when using Virtualization.framework ([#350](https://github.com/coderbirju/finch/issues/350)) ([c521f1f](https://github.com/coderbirju/finch/commit/c521f1f65d406094c653b7a78d0009285b9fc627)) +* Change the default behavoir for deleting .finch folder to false when uninstall ([#732](https://github.com/coderbirju/finch/issues/732)) ([e818743](https://github.com/coderbirju/finch/commit/e8187432a02c59a821a0d3b39c9cbc51f75a60cd)) +* check config file before accessing values ([#1120](https://github.com/coderbirju/finch/issues/1120)) ([5a47eec](https://github.com/coderbirju/finch/commit/5a47eecdff1371ae0611aadcea251cadf648f856)) +* Clean up all previous finch version installation registries in postinstall and uninstall ([#688](https://github.com/coderbirju/finch/issues/688)) ([9afc0b9](https://github.com/coderbirju/finch/commit/9afc0b9a5e73a3c261aeac87b977e44129b311bd)) +* configure aws creds in sync submodules/deps action ([#518](https://github.com/coderbirju/finch/issues/518)) ([b67452e](https://github.com/coderbirju/finch/commit/b67452e012d5d00f2ff66e023b4672f7957fe625)) +* Correct typo in type name of struct (NerdctlClientOuput) ([#743](https://github.com/coderbirju/finch/issues/743)) ([13de2b9](https://github.com/coderbirju/finch/commit/13de2b99fcd6f952beda9f75e6f3660974a815d0)) +* ecr credential helper hash check ([#668](https://github.com/coderbirju/finch/issues/668)) ([4b1b0a2](https://github.com/coderbirju/finch/commit/4b1b0a2fa515bcfaaa6784ffa53a5918245cbd72)) +* ecr creds helper and credential_process ([#510](https://github.com/coderbirju/finch/issues/510)) ([0525753](https://github.com/coderbirju/finch/commit/0525753105403e27e5d1372588c0c87aa6b6cbe6)) +* Enable `finch support-bundle generate` to execute on Windows whe… ([#976](https://github.com/coderbirju/finch/issues/976)) ([9c1caf0](https://github.com/coderbirju/finch/commit/9c1caf0af243cc925f51e24abc59ed29172ddd21)) +* enables bridge-nf-call-iptables by default ([#539](https://github.com/coderbirju/finch/issues/539)) ([6ea1499](https://github.com/coderbirju/finch/commit/6ea1499c1320545ba4efe8a7820dcf0998e28782)) +* Env variable CONTAINERD_SNAPSHOTTER cleared on overlayfs and ref… ([#816](https://github.com/coderbirju/finch/issues/816)) ([d222a34](https://github.com/coderbirju/finch/commit/d222a347632f9898ed223a122c97d3a973bde3a5)) +* explicitly set permissions for socket_vmnet dependencies ([#363](https://github.com/coderbirju/finch/issues/363)) ([0801b88](https://github.com/coderbirju/finch/commit/0801b8841776e7a08d2a0826bbca535310b02f37)) +* Fix Automated release workflow ([e40f683](https://github.com/coderbirju/finch/commit/e40f683084d1731ef3b7343d980743f2e73c7864)) +* Fix to be able to run finch build with --ssh option ([#696](https://github.com/coderbirju/finch/issues/696)) ([4d1e6cf](https://github.com/coderbirju/finch/commit/4d1e6cf6d8f4b6f2cbdf0229e8dcf4ad0c80d80c)) +* Fix to delete ~/.finch when uninstalling finch ([#703](https://github.com/coderbirju/finch/issues/703)) ([8d7389f](https://github.com/coderbirju/finch/commit/8d7389f607fc0211ebd6cfafe13197b945d877a3)) +* give pull request write permissions to sync job ([#520](https://github.com/coderbirju/finch/issues/520)) ([55b5235](https://github.com/coderbirju/finch/commit/55b5235d50feb6557108c00cd8543d21f1fdf315)) +* give token write perms to sync-submodules ([#519](https://github.com/coderbirju/finch/issues/519)) ([8b639ea](https://github.com/coderbirju/finch/commit/8b639eac14691caa99a6bfddd61be0b811a796d9)) +* Improve CLI parsing for Image Args ([#1072](https://github.com/coderbirju/finch/issues/1072)) ([6d49ac7](https://github.com/coderbirju/finch/commit/6d49ac7fcc080302938a96630327c20eb9491a00)) +* improve creds helper UX ([#673](https://github.com/coderbirju/finch/issues/673)) ([bc238cf](https://github.com/coderbirju/finch/commit/bc238cf9383d0fbc983a7f76f2cc15821eafd265)) +* **linux:** DOCKER_CONFIG path ([#1102](https://github.com/coderbirju/finch/issues/1102)) ([5b45b75](https://github.com/coderbirju/finch/commit/5b45b756460a85a0dcc0a9986336a92c9b74ff7e)) +* **linux:** support bundles ([#1101](https://github.com/coderbirju/finch/issues/1101)) ([f32a97f](https://github.com/coderbirju/finch/commit/f32a97f4e5ab846c1868cba3c81835a9c4e935a8)) +* **Makefile:** use POSIX tar syntax for stdin ([#529](https://github.com/coderbirju/finch/issues/529)) ([e222131](https://github.com/coderbirju/finch/commit/e2221310e1725b3a6072abe12e72f01859ce3320)) +* Mount /var/folders to finch vm ([#525](https://github.com/coderbirju/finch/issues/525)) ([c97d2e9](https://github.com/coderbirju/finch/commit/c97d2e93edaf139c3960620ec00454f856a8daee)) +* msi release tests cleanup ([#819](https://github.com/coderbirju/finch/issues/819)) ([0f23660](https://github.com/coderbirju/finch/commit/0f236609429534bab3057971e6126cf9b3ff47fc)) +* option to use installed lima for SOCI e2e tests ([#533](https://github.com/coderbirju/finch/issues/533)) ([8b66659](https://github.com/coderbirju/finch/commit/8b666590631235f6430d652d5c50f0047a120893)) +* parse management commands with proper arguments ([#876](https://github.com/coderbirju/finch/issues/876)) ([e2f42fe](https://github.com/coderbirju/finch/commit/e2f42fe243ca41fd9d0fcb8db9b06d30d95b283e)) +* properly reload persistent snapshotter data and restart services ([#767](https://github.com/coderbirju/finch/issues/767)) ([700cb92](https://github.com/coderbirju/finch/commit/700cb92da72510b47498c48f188c50806382a291)) +* quote recursive calls to make ([#515](https://github.com/coderbirju/finch/issues/515)) ([d603096](https://github.com/coderbirju/finch/commit/d6030965414e80e1f3c550e67097ce5f34aeff41)) +* remove llvm copy to fix build errors ([#1030](https://github.com/coderbirju/finch/issues/1030)) ([5104857](https://github.com/coderbirju/finch/commit/51048575d4c325fb215c8e1a1a226052c473d3d2)) +* Remove unnecessary error handling ([#961](https://github.com/coderbirju/finch/issues/961)) ([f441fc9](https://github.com/coderbirju/finch/commit/f441fc9767d75ad893277a86cd846e7bfbb33a77)) +* remove virtual machine image when running make clean ([98c8ee4](https://github.com/coderbirju/finch/commit/98c8ee4f783d01cb1340e77b508d868c3bb4bf04)) +* Reset disks and force remove vm after suite execution ([#846](https://github.com/coderbirju/finch/issues/846)) ([c2363b1](https://github.com/coderbirju/finch/commit/c2363b18dc9531d81898dbbce131d13205e40017)) +* resolve shellcheck warnings ([#684](https://github.com/coderbirju/finch/issues/684)) ([d9f695a](https://github.com/coderbirju/finch/commit/d9f695a39f17af6ab00722fbf5191b6fa5c9166b)) +* Restart buildkit after containerd when provisioning ([#461](https://github.com/coderbirju/finch/issues/461)) ([fca1828](https://github.com/coderbirju/finch/commit/fca182877ca616257527f6186dd1e88b2919feeb)) +* run SOCI as a systemd service ([#667](https://github.com/coderbirju/finch/issues/667)) ([24fd649](https://github.com/coderbirju/finch/commit/24fd649152b3ca18a1024d3a2ea40806c0c96cf2)) +* soci being reset on vm stop/start ([#672](https://github.com/coderbirju/finch/issues/672)) ([9df7d32](https://github.com/coderbirju/finch/commit/9df7d325b25fe98fdb8327bc4603ae4441b6a190)) +* sort volume args in DOCKER_COMPAT mode ([#417](https://github.com/coderbirju/finch/issues/417)) ([6a8ca1a](https://github.com/coderbirju/finch/commit/6a8ca1a559dada6ed320c9454fbc3229446a0a40)) +* stop Finch on uninstall ([#818](https://github.com/coderbirju/finch/issues/818)) ([a96788b](https://github.com/coderbirju/finch/commit/a96788bbce5e9a6af805650a1c21d1c60e04fa68)) +* Stop lima process in postinstall and uninstall ([#438](https://github.com/coderbirju/finch/issues/438)) ([975c4ee](https://github.com/coderbirju/finch/commit/975c4ee42c1529673a51382c62c4096dc663f80a)) +* temporarily switch to our own nerdctl-full bundle with patched runc and buildkit ([#783](https://github.com/coderbirju/finch/issues/783)) ([f677e2e](https://github.com/coderbirju/finch/commit/f677e2e03c7ee94e18ea990c1723f41bac660698)) +* typo causing error while downloading license ([#1033](https://github.com/coderbirju/finch/issues/1033)) ([2452614](https://github.com/coderbirju/finch/commit/2452614189f1b41ba32f7824e6874716418c3028)) +* update snapshotters reference ([#986](https://github.com/coderbirju/finch/issues/986)) ([06b9027](https://github.com/coderbirju/finch/commit/06b9027d7194a6b8d7cc32f8bc40988fcde5a64a)) +* Use LimaUser method instead of host user name ([#712](https://github.com/coderbirju/finch/issues/712)) ([7c02e08](https://github.com/coderbirju/finch/commit/7c02e08394f667e1f69cd304ef0258c1f0ff1c0f)) +* verify shasum for finch dependencies ([#969](https://github.com/coderbirju/finch/issues/969)) ([9d85f25](https://github.com/coderbirju/finch/commit/9d85f25c2026032122c05d54fdcf6dcb4031ea86)) +* **windows-installer:** add new cleanup script on install ([#824](https://github.com/coderbirju/finch/issues/824)) ([fccfa1d](https://github.com/coderbirju/finch/commit/fccfa1dd5773242039254e067dcde0cd9fd4fe5e)) +* **windows-installer:** ignore FilesInUse/Restart dialogue ([#823](https://github.com/coderbirju/finch/issues/823)) ([f64835d](https://github.com/coderbirju/finch/commit/f64835d6b7d473eda434cbb932d3c049cac6a5d5)) +* **windows-installer:** uninstall script behavior ([#822](https://github.com/coderbirju/finch/issues/822)) ([ace37ea](https://github.com/coderbirju/finch/commit/ace37eaf48fca613f692e7a08b182d268fc60555)) + + +### Reverts + +* "always force stop when using Virtualization.framework" ([#370](https://github.com/coderbirju/finch/issues/370)) ([cb3051e](https://github.com/coderbirju/finch/commit/cb3051e60d80aabce550377696d4251c9a9b0eec)) +* "chore(main): release 1.0.1" ([#727](https://github.com/coderbirju/finch/issues/727)) ([52e08d2](https://github.com/coderbirju/finch/commit/52e08d27d8a29b4988cb228d3d270d85ba54337a)) +* "fix: resolve shellcheck warnings" ([#725](https://github.com/coderbirju/finch/issues/725)) ([8ea255a](https://github.com/coderbirju/finch/commit/8ea255abb64c653a8c35e82c9c17aec9904278c5)) +* **linux:** DOCKER_CONFIG path ([#1102](https://github.com/coderbirju/finch/issues/1102)) ([#1110](https://github.com/coderbirju/finch/issues/1110)) ([839221c](https://github.com/coderbirju/finch/commit/839221c16136954643fb7f923594d78f9a423c97)) + + +### Miscellaneous Chores + +* update Release-As version to 1.0.0 (not-squashed) ([2c97323](https://github.com/coderbirju/finch/commit/2c97323deccfbc860e304b3297c8e51f91b7e2c0)) +* update Release-As version to 1.0.1 ([#731](https://github.com/coderbirju/finch/issues/731)) ([8fd5a70](https://github.com/coderbirju/finch/commit/8fd5a705e01823d159d1c48b06a8d7bc84f61ee3)) + ## [1.4.0](https://github.com/runfinch/finch/compare/v1.3.1...v1.4.0) (2024-10-08) diff --git a/Makefile b/Makefile index c5adf413f..5eeca3527 100644 --- a/Makefile +++ b/Makefile @@ -284,7 +284,7 @@ test-benchmark-vm: .PHONY: test-benchmark-container test-benchmark-container: - cd benchmark/container && go test -ldflags $(LDFLAGS) -bench=. -benchmem --installed="$(INSTALLED)" + cd benchmark/container && go test -ldflags $(LDFLAGS) -bench=. -benchmem -benchtime=1x -timeout 2h --installed="$(INSTALLED)" .PHONY: gen-code # Since different projects may have different versions of tool binaries, diff --git a/benchmark/all/all_test.go b/benchmark/all/all_test.go index 1ba257d8d..ea548b9c1 100644 --- a/benchmark/all/all_test.go +++ b/benchmark/all/all_test.go @@ -31,11 +31,11 @@ func BenchmarkAll(b *testing.B) { } b.Run("BenchmarkContainerRun", func(b *testing.B) { - suite.BenchmarkContainerRun(b) + suite.BenchmarkContainerRun(b, "finch") }) b.Run("BenchmarkImageBuild", func(b *testing.B) { - suite.BenchmarkImageBuild(b) + suite.BenchmarkImageBuild(b, "finch") }) err = suite.StopVM() diff --git a/benchmark/benchmark.go b/benchmark/benchmark.go index 941333b04..32af71b10 100644 --- a/benchmark/benchmark.go +++ b/benchmark/benchmark.go @@ -57,6 +57,58 @@ func GetSubject() (string, error) { return subject, nil } +func GetDocker() (string, error) { + subject := filepath.Join("/usr/bin/", "docker") + return subject, nil +} + +// func CleanUpFunc() error { +// cmd0 := exec.Command("sudo", "systemctl", "stop", "docker") +// if err := cmd0.Run(); err != nil { +// return fmt.Errorf("docker stop failed: %v", err) +// } +// cmd1 := exec.Command("sudo", "rm", "-rf", "/var/lib/docker") +// if err := cmd1.Run(); err != nil { +// return fmt.Errorf("docker cleanup failed: %v", err) +// } +// cmd2 := exec.Command("sudo", "rm", "-rf", "/var/run/docker.pid") +// if err := cmd2.Run(); err != nil { +// return fmt.Errorf("failed to stop docker process: %v", err) +// } +// cmd3 := exec.Command("sudo", "systemctl", "restart", "docker") +// if err := cmd3.Run(); err != nil { +// return fmt.Errorf("docker failed to restart: %v", err) +// } + +// cmd4 := exec.Command("sudo", "rm", "-rf", "/var/lib/finch/buildkit/cache.db") +// if err := cmd4.Run(); err != nil { +// return fmt.Errorf("finch buildkit cleanup failed: %v", err) +// } + +// cmd5 := exec.Command("sudo", "docker", "builder", "prune", "-a", "-f") +// if err := cmd5.Run(); err != nil { +// return fmt.Errorf("docker builder prune failed: %v", err) +// } + +// cmd6 := exec.Command("sudo", "docker", "image", "prune", "-a", "-f") +// if err := cmd6.Run(); err != nil { +// return fmt.Errorf("docker image prune failed: %v", err) +// } + +// cmd7 := exec.Command("sudo", "rm", "-rf", "/var/lib/containerd") +// if err := cmd7.Run(); err != nil { +// return fmt.Errorf("containerd cleanup failed: %v", err) +// } + +// cmd8 := exec.Command("sudo", "systemctl", "restart", "containerd") +// if err := cmd8.Run(); err != nil { +// return fmt.Errorf("docker failed to restart: %v", err) +// } + +// return nil + +// } + // Wrapper reports the benchmarking metrics of targetFunc to testing.B. func Wrapper(b *testing.B, targetFunc func(), cleanupFunc func()) { metricsSum := Metrics{} diff --git a/benchmark/container/container_test.go b/benchmark/container/container_test.go index cc84d7432..3970a1be5 100644 --- a/benchmark/container/container_test.go +++ b/benchmark/container/container_test.go @@ -17,11 +17,36 @@ func BenchmarkContainer(b *testing.B) { b.Fatal(err) } - b.Run("BenchmarkContainerRun", func(b *testing.B) { - suite.BenchmarkContainerRun(b) + b.Run("BenchmarkContainerRun-docker", func(b *testing.B) { + suite.BenchmarkContainerRun(b, "docker") }) - b.Run("BenchmarkImageBuild", func(b *testing.B) { - suite.BenchmarkImageBuild(b) + b.Run("BenchmarkContainerRun-finch", func(b *testing.B) { + suite.BenchmarkContainerRun(b, "finch") }) + + b.Run("BenchmarkContainerPull-docker", func(b *testing.B) { + suite.BenchmarkContainerPull(b, "docker") + }) + + b.Run("BenchmarkContainerPull-finch", func(b *testing.B) { + suite.BenchmarkContainerPull(b, "finch") + }) + + b.Run("BenchmarkImageBuild-docker", func(b *testing.B) { + suite.BenchmarkImageBuild(b, "docker") + }) + + b.Run("BenchmarkImageBuild-finch", func(b *testing.B) { + suite.BenchmarkImageBuild(b, "finch") + }) + + b.Run("BenchmarkImageDelete-docker", func(b *testing.B) { + suite.BenchmarkImageDelete(b, "docker") + }) + + b.Run("BenchmarkImageDelete-finch", func(b *testing.B) { + suite.BenchmarkImageDelete(b, "finch") + }) + } diff --git a/benchmark/suite.go b/benchmark/suite.go index ec9b0c7da..6138e92cb 100644 --- a/benchmark/suite.go +++ b/benchmark/suite.go @@ -16,14 +16,17 @@ import ( const ( virtualMachineRootCmd = "vm" - alpineImage = "public.ecr.aws/docker/library/alpine:latest" + alpineImage = "public.ecr.aws/y0o4y9o3/anaconda-pkg-build:latest" testImageName = "test:tag" testContainerName = "ctr-test" + ligthImage = "public.ecr.aws/docker/library/amazonlinux:latest" ) +// public.ecr.aws/soci-workshop-examples/mongo:latest public.ecr.aws/soci-workshop-examples/redis:latest public.ecr.aws/docker/library/alpine:latest // Suite is a struct that groups benchmark functions and shared state. type Suite struct { subject string + docker string } // Setup initializes the Suite by getting the subject. @@ -32,7 +35,13 @@ func (suite *Suite) Setup() error { if err != nil { return err } + + docker, err := GetDocker() + if err != nil { + return err + } suite.subject = subject + suite.docker = docker return nil } @@ -80,18 +89,49 @@ func (suite *Suite) BenchmarkVMStart(b *testing.B) { } // BenchmarkContainerRun measures the metrics to run a container. -func (suite *Suite) BenchmarkContainerRun(b *testing.B) { - assert.NoError(b, exec.Command(suite.subject, "pull", alpineImage).Run()) //nolint:gosec // testing only - Wrapper(b, func() { - assert.NoError(b, exec.Command(suite.subject, "run", "--name", testContainerName, alpineImage).Run()) //nolint:gosec // testing only - }, func() { - assert.NoError(b, exec.Command(suite.subject, "rm", "--force", testContainerName).Run()) //nolint:gosec // testing only - }) - assert.NoError(b, exec.Command(suite.subject, "rmi", "--force", alpineImage).Run()) //nolint:gosec // testing only +func (suite *Suite) BenchmarkContainerRun(b *testing.B, binaryName string) { + // assert.NoError(b, CleanUpFunc()) + if binaryName == "finch" { + assert.NoError(b, exec.Command("sudo", suite.subject, "pull", alpineImage).Run()) //nolint:gosec // testing only + Wrapper(b, func() { + assert.NoError(b, exec.Command("sudo", suite.subject, "run", "--name", testContainerName, alpineImage).Run()) //nolint:gosec // testing only + }, func() { + assert.NoError(b, exec.Command("sudo", suite.subject, "rm", "--force", testContainerName).Run()) //nolint:gosec // testing only + }) + assert.NoError(b, exec.Command("sudo", suite.subject, "rmi", "--force", alpineImage).Run()) //nolint:gosec // testing only + } else { + // assert.NoError(b, CleanUpFunc()) + assert.NoError(b, exec.Command("sudo", suite.docker, "pull", alpineImage).Run()) //nolint:gosec // testing only + Wrapper(b, func() { + assert.NoError(b, exec.Command("sudo", suite.docker, "run", "--name", testContainerName, alpineImage).Run()) //nolint:gosec // testing only + }, func() { + assert.NoError(b, exec.Command("sudo", suite.docker, "rm", "--force", testContainerName).Run()) //nolint:gosec // testing only + }) + assert.NoError(b, exec.Command("sudo", suite.docker, "rmi", "--force", alpineImage).Run()) //nolint:gosec // testing only + } + +} + +func (suite *Suite) BenchmarkContainerPull(b *testing.B, binaryName string) { + if binaryName == "finch" { + Wrapper(b, func() { + assert.NoError(b, exec.Command("sudo", suite.subject, "pull", alpineImage, "--namespace=finch").Run()) //nolint:gosec // testing only + }, func() { + assert.NoError(b, exec.Command("sudo", suite.subject, "rmi", "--force", alpineImage).Run()) //nolint:gosec // testing only + }) + } else { + assert.NoError(b, exec.Command("sudo", suite.docker, "images", "prune", "-a").Run()) + assert.NoError(b, exec.Command("sudo", suite.docker, "volume", "prune", "-a").Run()) + Wrapper(b, func() { + assert.NoError(b, exec.Command("sudo", suite.docker, "pull", alpineImage).Run()) //nolint:gosec // testing only + }, func() { + assert.NoError(b, exec.Command("sudo", suite.docker, "rmi", "--force", alpineImage).Run()) //nolint:gosec // testing only + }) + } } // BenchmarkImageBuild measures the metrics to build an image. -func (suite *Suite) BenchmarkImageBuild(b *testing.B) { +func (suite *Suite) BenchmarkImageBuild(b *testing.B, binaryName string) { homeDir, err := os.UserHomeDir() assert.NoError(b, err) tempDir, err := os.MkdirTemp(homeDir, "finch-test") @@ -103,9 +143,50 @@ func (suite *Suite) BenchmarkImageBuild(b *testing.B) { assert.NoError(b, err) buildContext := filepath.Dir(dockerFilePath) defer os.RemoveAll(buildContext) //nolint:errcheck // testing only - Wrapper(b, func() { - assert.NoError(b, exec.Command(suite.subject, "build", "--tag", testImageName, buildContext).Run()) //nolint:gosec // testing only - }, func() { - assert.NoError(b, exec.Command(suite.subject, "rmi", "--force", testImageName).Run()) //nolint:gosec // testing only - }) + // assert.NoError(b, CleanUpFunc()) + if binaryName == "finch" { + assert.NoError(b, exec.Command("sudo", suite.subject, "builder", "prune").Run()) + Wrapper(b, func() { + assert.NoError(b, exec.Command("sudo", suite.subject, "build", "--tag", testImageName, buildContext, "--namespace=finch").Run()) //nolint:gosec // testing only + }, func() { + assert.NoError(b, exec.Command("sudo", suite.subject, "rmi", "--force", testImageName).Run()) //nolint:gosec // testing only + }) + } else { + // assert.NoError(b, CleanUpFunc()) + assert.NoError(b, exec.Command("sudo", suite.docker, "builder", "prune").Run()) + Wrapper(b, func() { + assert.NoError(b, exec.Command("sudo", suite.docker, "build", "--tag", testImageName, buildContext, "--no-cache").Run()) //nolint:gosec // testing only + }, func() { + assert.NoError(b, exec.Command("sudo", suite.docker, "rmi", "--force", testImageName).Run()) //nolint:gosec // testing only + }) + } +} + +func (suite *Suite) BenchmarkImageDelete(b *testing.B, binaryImage string) { + homeDir, err := os.UserHomeDir() + assert.NoError(b, err) + tempDir, err := os.MkdirTemp(homeDir, "finch-test") + assert.NoError(b, err) + dockerFilePath := filepath.Join(tempDir, "Dockerfile") + err = os.WriteFile(dockerFilePath, []byte(fmt.Sprintf(`FROM %s + CMD ["echo", "finch-test-dummy-output"] + `, alpineImage)), 0o600) + assert.NoError(b, err) + buildContext := filepath.Dir(dockerFilePath) + defer os.RemoveAll(buildContext) //nolint:errcheck // testing only + if binaryImage == "finch" { + assert.NoError(b, exec.Command("sudo", suite.subject, "build", "--tag", testImageName, buildContext).Run()) //nolint:gosec // testing only + Wrapper(b, func() { + assert.NoError(b, exec.Command("sudo", suite.subject, "rmi", "--force", testImageName).Run()) //nolint:gosec // testing only + }, func() { + assert.NoError(b, exec.Command("sudo", suite.subject, "rmi", "--help").Run()) + }) + } else { + assert.NoError(b, exec.Command("sudo", suite.docker, "build", "--tag", testImageName, buildContext).Run()) //nolint:gosec // testing only + Wrapper(b, func() { + assert.NoError(b, exec.Command("sudo", suite.docker, "rmi", "--force", testImageName).Run()) //nolint:gosec // testing only + }, func() { + assert.NoError(b, exec.Command("sudo", suite.docker, "rmi", "--help").Run()) + }) + } }