From 6f59fc68f1940802b1ef0f331611faaec30b7dad Mon Sep 17 00:00:00 2001 From: Risu <79110363+risu729@users.noreply.github.com> Date: Thu, 19 Dec 2024 12:13:36 +0900 Subject: [PATCH 01/75] ci(.github/workflows/autofix.yml): set continue-on-error for autofix (#1141) --- .github/workflows/autofix.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/autofix.yml b/.github/workflows/autofix.yml index bc675553..119d3b15 100644 --- a/.github/workflows/autofix.yml +++ b/.github/workflows/autofix.yml @@ -34,7 +34,7 @@ jobs: GITHUB_TOKEN: ${{ github.token }} - name: Run autofix - run: mise run check + run: mise run check --continue-on-error continue-on-error: true - name: autofix.ci From c2062568eee51917de56346deca792aaf8767082 Mon Sep 17 00:00:00 2001 From: Risu <79110363+risu729@users.noreply.github.com> Date: Thu, 19 Dec 2024 12:55:06 +0900 Subject: [PATCH 02/75] fix(wsl/home/.config/mise/config.toml): manage env vars using mise (#1071) * fix(wsl/home/.config/mise/config.toml): manage env vars using mise * fix(wsl/home/.config/mise/config.toml): set tools=true for env vars using mise tools * fix(wsl/home/.config/mise/config.toml): use cache for exec templates --- wsl/home/.bashrc | 8 -------- wsl/home/.config/mise/config.toml | 9 +++++++++ 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/wsl/home/.bashrc b/wsl/home/.bashrc index acc6e35f..a0a5bac4 100644 --- a/wsl/home/.bashrc +++ b/wsl/home/.bashrc @@ -110,14 +110,6 @@ eval "${gh_completion}" fzf_integration="$(fzf --bash)" eval "${fzf_integration}" -# gpg -GPG_TTY=$(tty) -export GPG_TTY - -# set GITHUB_TOKEN to avoid rate limit while using mise -GITHUB_TOKEN=$(gh auth token) -export GITHUB_TOKEN - # aliases alias beep="printf '\a'" alias l="eza --all --long --git" diff --git a/wsl/home/.config/mise/config.toml b/wsl/home/.config/mise/config.toml index 28302dfd..c47f3aff 100644 --- a/wsl/home/.config/mise/config.toml +++ b/wsl/home/.config/mise/config.toml @@ -6,6 +6,15 @@ min_version = "2024.12.14" [env] # disable bat paging BAT_PAGING = "never" +# gpg requires tty +# GitHub Actions doesn't have tty +# ref: https://github.com/actions/runner/issues/241 +GPG_TTY = "{% if env.CI is undefined %}{{ exec(command='tty', cache_key='tty', cache_duration='1 week') }}{% endif %}" + +# set GITHUB_TOKEN to avoid rate limit while using mise +[env.GITHUB_TOKEN] +value = "{% if env.CI is undefined %}{{ exec(command='gh auth token', cache_key='github_token', cache_duration='1 day') }}{% endif %}" +tools = true [tools] # language tools From 9e74dfc3eaf43047b442a76c1596ef35836d7267 Mon Sep 17 00:00:00 2001 From: Risu <79110363+risu729@users.noreply.github.com> Date: Thu, 19 Dec 2024 13:07:35 +0900 Subject: [PATCH 03/75] ci(.github/workflows/pr-updater.yml): skip reonvate prs (#1142) --- .github/workflows/pr-updater.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pr-updater.yml b/.github/workflows/pr-updater.yml index fb0e79f6..3c121cf4 100644 --- a/.github/workflows/pr-updater.yml +++ b/.github/workflows/pr-updater.yml @@ -29,11 +29,13 @@ jobs: - name: List PRs id: list-prs run: | - numbers=$(gh pr list --repo ${{ github.repository }} --json number --jq 'map(.number)' ${{ - github.event_name == 'workflow_dispatch' && github.ref_name != github.event.repository.default_branch - && format('--head {0}', github.ref_name) - || '' - }}) + numbers=$(gh pr list --repo ${{ github.repository }} \ + --json number,headRefName \ + --jq '[.[] | select(.headRefName | startswith("renovate/") | not) | .number]' ${{ + github.event_name == 'workflow_dispatch' && github.ref_name != github.event.repository.default_branch + && format('--head {0}', github.ref_name) + || '' + }}) echo "numbers=${numbers}" > "${GITHUB_OUTPUT}" env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 8a6ddcb3410602daa928e676dd20dd37ad7a7f72 Mon Sep 17 00:00:00 2001 From: Risu <79110363+risu729@users.noreply.github.com> Date: Thu, 19 Dec 2024 13:51:35 +0900 Subject: [PATCH 04/75] ci(.github/workflows/test.yml): override GITHUB_TOKEN with GH_TOKEN (#1143) * ci(wsl/home/.config/mise/config.toml): don't override GITHUB_TOKEN with empty string * Revert "ci(wsl/home/.config/mise/config.toml): don't override GITHUB_TOKEN with empty string" This reverts commit 51f201e07e9856803bb5ed49a3de22809021e4a0. * ci(.github/workflows/test.yml): override GITHUB_TOKEN with GH_TOKEN --- .github/workflows/test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 95484fdb..11787066 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -36,7 +36,8 @@ jobs: github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }} | bash env: - GITHUB_TOKEN: ${{ github.token }} + # GH_TOKEN take precedence over GITHUB_TOKEN which is set by mise + GH_TOKEN: ${{ github.token }} actions-timeline: needs: From 99f1ed3565fa98fd5b13d704e3f844b5c01945a4 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 19 Dec 2024 15:57:35 +0000 Subject: [PATCH 05/75] chore(deps): update dependency renovate to v39.75.1 (#1146) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index 414ad769..0d14cd7e 100644 --- a/mise.toml +++ b/mise.toml @@ -25,7 +25,7 @@ shfmt = "3.10.0" shellcheck = "0.10.0" yamlfmt = "0.14.0" yamllint = "1.35.1" -"npm:renovate" = "39.75.0" +"npm:renovate" = "39.75.1" "npm:cspell" = "8.17.1" "cargo:lychee" = "0.18.0" typos = "1.28.4" From c4d811f9936dc88b8bea3f3b2e3149ceb07b9131 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 19 Dec 2024 20:23:42 +0000 Subject: [PATCH 06/75] chore(deps): update dependency node to v23.5.0 (#1148) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index 0d14cd7e..b99c3180 100644 --- a/mise.toml +++ b/mise.toml @@ -5,7 +5,7 @@ min_version = "2024.12.14" [tools] bun = "1.1.40" -node = "23.4.0" +node = "23.5.0" # cspell:ignore datasource binstall # renovate: datasource=crate cargo-binstall = "1.10.11" From b53f8b6c1b19eaa02c64495216e841449d97798d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 19 Dec 2024 22:25:07 +0000 Subject: [PATCH 07/75] chore(deps): update dependency mise to v2024.12.15 (#1147) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/autofix.yml | 2 +- .github/workflows/lint.yml | 6 +++--- .github/workflows/worker.yml | 4 ++-- .github/workflows/wsl-docker.yml | 2 +- mise.toml | 2 +- wsl/home/.config/mise/config.toml | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/autofix.yml b/.github/workflows/autofix.yml index 119d3b15..21a4b357 100644 --- a/.github/workflows/autofix.yml +++ b/.github/workflows/autofix.yml @@ -28,7 +28,7 @@ jobs: - name: Install mise uses: jdx/mise-action@5bb8f8c1911837cf42064e6490e7634fc842ee7e # v2.1.8 with: - version: 2024.12.14 + version: 2024.12.15 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 7c712cbf..ffd8b947 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -34,7 +34,7 @@ jobs: - name: Install mise uses: jdx/mise-action@5bb8f8c1911837cf42064e6490e7634fc842ee7e # v2.1.8 with: - version: 2024.12.14 + version: 2024.12.15 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} @@ -70,7 +70,7 @@ jobs: - name: Install mise uses: jdx/mise-action@5bb8f8c1911837cf42064e6490e7634fc842ee7e # v2.1.8 with: - version: 2024.12.14 + version: 2024.12.15 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} @@ -93,7 +93,7 @@ jobs: - name: Install mise uses: jdx/mise-action@5bb8f8c1911837cf42064e6490e7634fc842ee7e # v2.1.8 with: - version: 2024.12.14 + version: 2024.12.15 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} diff --git a/.github/workflows/worker.yml b/.github/workflows/worker.yml index 8463f6e2..10f8355e 100644 --- a/.github/workflows/worker.yml +++ b/.github/workflows/worker.yml @@ -38,7 +38,7 @@ jobs: - name: Install mise uses: jdx/mise-action@5bb8f8c1911837cf42064e6490e7634fc842ee7e # v2.1.8 with: - version: 2024.12.14 + version: 2024.12.15 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} @@ -72,7 +72,7 @@ jobs: - name: Install mise uses: jdx/mise-action@5bb8f8c1911837cf42064e6490e7634fc842ee7e # v2.1.8 with: - version: 2024.12.14 + version: 2024.12.15 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} diff --git a/.github/workflows/wsl-docker.yml b/.github/workflows/wsl-docker.yml index b8daf4fa..61d3ca26 100644 --- a/.github/workflows/wsl-docker.yml +++ b/.github/workflows/wsl-docker.yml @@ -37,7 +37,7 @@ jobs: - name: Install mise uses: jdx/mise-action@5bb8f8c1911837cf42064e6490e7634fc842ee7e # v2.1.8 with: - version: 2024.12.14 + version: 2024.12.15 # cspell:ignore kellyjonbrazil mise_toml: | [tools] diff --git a/mise.toml b/mise.toml index b99c3180..61878e8c 100644 --- a/mise.toml +++ b/mise.toml @@ -1,7 +1,7 @@ # ref: https://mise.jdx.dev/configuration.html #:schema https://mise.jdx.dev/schema/mise.json -min_version = "2024.12.14" +min_version = "2024.12.15" [tools] bun = "1.1.40" diff --git a/wsl/home/.config/mise/config.toml b/wsl/home/.config/mise/config.toml index c47f3aff..637811de 100644 --- a/wsl/home/.config/mise/config.toml +++ b/wsl/home/.config/mise/config.toml @@ -1,7 +1,7 @@ # ref: https://mise.jdx.dev/configuration.html#global-config-config-mise-config-toml #:schema https://mise.jdx.dev/schema/mise.json -min_version = "2024.12.14" +min_version = "2024.12.15" [env] # disable bat paging From 849383189a3014f4cef5c4861d06686083f4fc57 Mon Sep 17 00:00:00 2001 From: Risu <79110363+risu729@users.noreply.github.com> Date: Fri, 20 Dec 2024 10:22:33 +0900 Subject: [PATCH 08/75] fix(wsl/home/.config/mise/config.toml): don't cache tty (#1152) --- wsl/home/.config/mise/config.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wsl/home/.config/mise/config.toml b/wsl/home/.config/mise/config.toml index 637811de..9dd7bc3b 100644 --- a/wsl/home/.config/mise/config.toml +++ b/wsl/home/.config/mise/config.toml @@ -9,7 +9,8 @@ BAT_PAGING = "never" # gpg requires tty # GitHub Actions doesn't have tty # ref: https://github.com/actions/runner/issues/241 -GPG_TTY = "{% if env.CI is undefined %}{{ exec(command='tty', cache_key='tty', cache_duration='1 week') }}{% endif %}" +# don't cache tty because it depends on shell session +GPG_TTY = "{% if env.CI is undefined %}{{ exec(command='tty') }}{% endif %}" # set GITHUB_TOKEN to avoid rate limit while using mise [env.GITHUB_TOKEN] From d5422c754168c53512923b7b0b2e35ebdaac4e12 Mon Sep 17 00:00:00 2001 From: Risu <79110363+risu729@users.noreply.github.com> Date: Fri, 20 Dec 2024 10:22:49 +0900 Subject: [PATCH 09/75] Revert "ci(.github/workflows/test.yml): override GITHUB_TOKEN with GH_TOKEN (#1143)" (#1150) This reverts commit 8a6ddcb3410602daa928e676dd20dd37ad7a7f72. --- .github/workflows/test.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 11787066..95484fdb 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -36,8 +36,7 @@ jobs: github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }} | bash env: - # GH_TOKEN take precedence over GITHUB_TOKEN which is set by mise - GH_TOKEN: ${{ github.token }} + GITHUB_TOKEN: ${{ github.token }} actions-timeline: needs: From 7ecf994c4c17d323b2266c367b8e90a905841622 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 20 Dec 2024 01:24:48 +0000 Subject: [PATCH 10/75] chore(deps): update dependency uv to v0.5.11 (#1149) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index 61878e8c..5a9fb557 100644 --- a/mise.toml +++ b/mise.toml @@ -9,7 +9,7 @@ node = "23.5.0" # cspell:ignore datasource binstall # renovate: datasource=crate cargo-binstall = "1.10.11" -uv = "0.5.10" +uv = "0.5.11" "aqua:biomejs/biome" = "1.9.4" actionlint = "1.7.4" # renovate: extractVersion=^v(?.+) From 4957e3fde99a412986b1bfbee5acda97cd328d8b Mon Sep 17 00:00:00 2001 From: Risu <79110363+risu729@users.noreply.github.com> Date: Fri, 20 Dec 2024 10:25:58 +0900 Subject: [PATCH 11/75] ci(wsl/home/.config/mise/config.toml): pass through GITHUB_TOKEN in test (#1151) --- wsl/home/.config/mise/config.toml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/wsl/home/.config/mise/config.toml b/wsl/home/.config/mise/config.toml index 9dd7bc3b..764daa9b 100644 --- a/wsl/home/.config/mise/config.toml +++ b/wsl/home/.config/mise/config.toml @@ -14,7 +14,13 @@ GPG_TTY = "{% if env.CI is undefined %}{{ exec(command='tty') }}{% endif %}" # set GITHUB_TOKEN to avoid rate limit while using mise [env.GITHUB_TOKEN] -value = "{% if env.CI is undefined %}{{ exec(command='gh auth token', cache_key='github_token', cache_duration='1 day') }}{% endif %}" +value = """ +{% if env.CI is undefined %}\ + {{ exec(command='gh auth token', cache_key='github_token', cache_duration='1 day') }}\ +{% else %}\ + {{ env.GITHUB_TOKEN }}\ +{% endif %}\ +""" tools = true [tools] From eecbca52c18cda5cdfcfe203d58e5807b636907d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 20 Dec 2024 08:55:38 +0000 Subject: [PATCH 12/75] chore(deps): update dependency renovate to v39.76.0 (#1153) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index 5a9fb557..8746b013 100644 --- a/mise.toml +++ b/mise.toml @@ -25,7 +25,7 @@ shfmt = "3.10.0" shellcheck = "0.10.0" yamlfmt = "0.14.0" yamllint = "1.35.1" -"npm:renovate" = "39.75.1" +"npm:renovate" = "39.76.0" "npm:cspell" = "8.17.1" "cargo:lychee" = "0.18.0" typos = "1.28.4" From d2b125ec182a7855f5546714c6926341db778000 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 20 Dec 2024 19:20:46 +0900 Subject: [PATCH 13/75] chore(deps): update dependency ignore-sync to v8 (#1154) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index 8746b013..f5b9ae4e 100644 --- a/mise.toml +++ b/mise.toml @@ -29,7 +29,7 @@ yamllint = "1.35.1" "npm:cspell" = "8.17.1" "cargo:lychee" = "0.18.0" typos = "1.28.4" -"npm:ignore-sync" = "7.0.1" +"npm:ignore-sync" = "8.0.0" [settings] experimental = true From b14b29ebaa7e33392ee373d760384fc0d0225871 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 20 Dec 2024 15:03:58 +0000 Subject: [PATCH 14/75] chore(deps): update dependency renovate to v39.77.0 (#1156) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index f5b9ae4e..e548e087 100644 --- a/mise.toml +++ b/mise.toml @@ -25,7 +25,7 @@ shfmt = "3.10.0" shellcheck = "0.10.0" yamlfmt = "0.14.0" yamllint = "1.35.1" -"npm:renovate" = "39.76.0" +"npm:renovate" = "39.77.0" "npm:cspell" = "8.17.1" "cargo:lychee" = "0.18.0" typos = "1.28.4" From 49bb5f5917f51a0cc6b56c8328fdac5b5484c57e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 20 Dec 2024 15:05:57 +0000 Subject: [PATCH 15/75] chore(deps): update dependency bun to v1.1.41 (#1155) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index e548e087..6ae6a4f4 100644 --- a/mise.toml +++ b/mise.toml @@ -4,7 +4,7 @@ min_version = "2024.12.15" [tools] -bun = "1.1.40" +bun = "1.1.41" node = "23.5.0" # cspell:ignore datasource binstall # renovate: datasource=crate From 29489058017d1b6bfd70edd397e013a83fc68053 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 20 Dec 2024 18:36:10 +0000 Subject: [PATCH 16/75] chore(deps): update dependency renovate to v39.79.0 (#1157) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index 6ae6a4f4..8b768006 100644 --- a/mise.toml +++ b/mise.toml @@ -25,7 +25,7 @@ shfmt = "3.10.0" shellcheck = "0.10.0" yamlfmt = "0.14.0" yamllint = "1.35.1" -"npm:renovate" = "39.77.0" +"npm:renovate" = "39.79.0" "npm:cspell" = "8.17.1" "cargo:lychee" = "0.18.0" typos = "1.28.4" From 1e15895ffb5a42c652a63c6c163d9906bbead58b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 20 Dec 2024 22:18:17 +0000 Subject: [PATCH 17/75] chore(deps): update dependency mise to v2024.12.16 (#1158) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/autofix.yml | 2 +- .github/workflows/lint.yml | 6 +++--- .github/workflows/worker.yml | 4 ++-- .github/workflows/wsl-docker.yml | 2 +- mise.toml | 2 +- wsl/home/.config/mise/config.toml | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/autofix.yml b/.github/workflows/autofix.yml index 21a4b357..f0f69863 100644 --- a/.github/workflows/autofix.yml +++ b/.github/workflows/autofix.yml @@ -28,7 +28,7 @@ jobs: - name: Install mise uses: jdx/mise-action@5bb8f8c1911837cf42064e6490e7634fc842ee7e # v2.1.8 with: - version: 2024.12.15 + version: 2024.12.16 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index ffd8b947..bd9017b7 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -34,7 +34,7 @@ jobs: - name: Install mise uses: jdx/mise-action@5bb8f8c1911837cf42064e6490e7634fc842ee7e # v2.1.8 with: - version: 2024.12.15 + version: 2024.12.16 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} @@ -70,7 +70,7 @@ jobs: - name: Install mise uses: jdx/mise-action@5bb8f8c1911837cf42064e6490e7634fc842ee7e # v2.1.8 with: - version: 2024.12.15 + version: 2024.12.16 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} @@ -93,7 +93,7 @@ jobs: - name: Install mise uses: jdx/mise-action@5bb8f8c1911837cf42064e6490e7634fc842ee7e # v2.1.8 with: - version: 2024.12.15 + version: 2024.12.16 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} diff --git a/.github/workflows/worker.yml b/.github/workflows/worker.yml index 10f8355e..0e50a24f 100644 --- a/.github/workflows/worker.yml +++ b/.github/workflows/worker.yml @@ -38,7 +38,7 @@ jobs: - name: Install mise uses: jdx/mise-action@5bb8f8c1911837cf42064e6490e7634fc842ee7e # v2.1.8 with: - version: 2024.12.15 + version: 2024.12.16 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} @@ -72,7 +72,7 @@ jobs: - name: Install mise uses: jdx/mise-action@5bb8f8c1911837cf42064e6490e7634fc842ee7e # v2.1.8 with: - version: 2024.12.15 + version: 2024.12.16 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} diff --git a/.github/workflows/wsl-docker.yml b/.github/workflows/wsl-docker.yml index 61d3ca26..fa3215cd 100644 --- a/.github/workflows/wsl-docker.yml +++ b/.github/workflows/wsl-docker.yml @@ -37,7 +37,7 @@ jobs: - name: Install mise uses: jdx/mise-action@5bb8f8c1911837cf42064e6490e7634fc842ee7e # v2.1.8 with: - version: 2024.12.15 + version: 2024.12.16 # cspell:ignore kellyjonbrazil mise_toml: | [tools] diff --git a/mise.toml b/mise.toml index 8b768006..57e7e21e 100644 --- a/mise.toml +++ b/mise.toml @@ -1,7 +1,7 @@ # ref: https://mise.jdx.dev/configuration.html #:schema https://mise.jdx.dev/schema/mise.json -min_version = "2024.12.15" +min_version = "2024.12.16" [tools] bun = "1.1.41" diff --git a/wsl/home/.config/mise/config.toml b/wsl/home/.config/mise/config.toml index 764daa9b..e775ca71 100644 --- a/wsl/home/.config/mise/config.toml +++ b/wsl/home/.config/mise/config.toml @@ -1,7 +1,7 @@ # ref: https://mise.jdx.dev/configuration.html#global-config-config-mise-config-toml #:schema https://mise.jdx.dev/schema/mise.json -min_version = "2024.12.15" +min_version = "2024.12.16" [env] # disable bat paging From 063c07ddb049659a7d6c745733da95126abc6813 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 20 Dec 2024 22:18:26 +0000 Subject: [PATCH 18/75] ci(deps): update actions/create-github-app-token action to v1.11.1 (#1160) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/pr-updater.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-updater.yml b/.github/workflows/pr-updater.yml index 3c121cf4..bb47bacc 100644 --- a/.github/workflows/pr-updater.yml +++ b/.github/workflows/pr-updater.yml @@ -21,7 +21,7 @@ jobs: steps: - name: Create GitHub App token id: app-token - uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1.11.0 + uses: actions/create-github-app-token@c1a285145b9d317df6ced56c09f525b5c2b6f755 # v1.11.1 with: app-id: ${{ vars.PR_UPDATER_APP_ID }} private-key: ${{ secrets.PR_UPDATER_SECRET_KEY }} From ff66367b6771f444897007fa39f6873cfda7a4c1 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 20 Dec 2024 22:19:14 +0000 Subject: [PATCH 19/75] chore(deps): update dependency renovate to v39.79.1 (#1159) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index 57e7e21e..3d34d9a1 100644 --- a/mise.toml +++ b/mise.toml @@ -25,7 +25,7 @@ shfmt = "3.10.0" shellcheck = "0.10.0" yamlfmt = "0.14.0" yamllint = "1.35.1" -"npm:renovate" = "39.79.0" +"npm:renovate" = "39.79.1" "npm:cspell" = "8.17.1" "cargo:lychee" = "0.18.0" typos = "1.28.4" From d502d0fe515419b4e708b48a25ef9d86552d0356 Mon Sep 17 00:00:00 2001 From: Risu <79110363+risu729@users.noreply.github.com> Date: Sat, 21 Dec 2024 13:11:36 +0900 Subject: [PATCH 20/75] feat(wsl/home/.gitconfig): set submodule.recurse to true (#1161) --- wsl/home/.gitconfig | 3 +++ 1 file changed, 3 insertions(+) diff --git a/wsl/home/.gitconfig b/wsl/home/.gitconfig index 9ab8cfda..afa3467c 100644 --- a/wsl/home/.gitconfig +++ b/wsl/home/.gitconfig @@ -9,6 +9,9 @@ [tag] gpgSign = true +[submodule] + recurse = true + [credential "https://github.com"] # set helper to empty to avoid using the default helper # ref: https://github.com/cli/cli/issues/3796#issuecomment-1065150465 From 0f1c81c03986d30907a1ac875fd6008020da5800 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 21 Dec 2024 08:04:41 +0000 Subject: [PATCH 21/75] chore(deps): update dependency bun to v1.1.42 (#1162) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index 3d34d9a1..4b701bd5 100644 --- a/mise.toml +++ b/mise.toml @@ -4,7 +4,7 @@ min_version = "2024.12.16" [tools] -bun = "1.1.41" +bun = "1.1.42" node = "23.5.0" # cspell:ignore datasource binstall # renovate: datasource=crate From f1ca6f81b9a0f979b37408c8d8768e396f501d7c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 21 Dec 2024 15:22:19 +0000 Subject: [PATCH 22/75] chore(deps): update dependency renovate to v39.80.0 (#1163) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index 4b701bd5..83c362a2 100644 --- a/mise.toml +++ b/mise.toml @@ -25,7 +25,7 @@ shfmt = "3.10.0" shellcheck = "0.10.0" yamlfmt = "0.14.0" yamllint = "1.35.1" -"npm:renovate" = "39.79.1" +"npm:renovate" = "39.80.0" "npm:cspell" = "8.17.1" "cargo:lychee" = "0.18.0" typos = "1.28.4" From bbe5058084dc955041a34247404d4e5c64cd12d2 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 21 Dec 2024 16:52:34 +0000 Subject: [PATCH 23/75] chore(deps): update dependency mise to v2024.12.17 (#1164) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/autofix.yml | 2 +- .github/workflows/lint.yml | 6 +++--- .github/workflows/worker.yml | 4 ++-- .github/workflows/wsl-docker.yml | 2 +- mise.toml | 2 +- wsl/home/.config/mise/config.toml | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/autofix.yml b/.github/workflows/autofix.yml index f0f69863..794df34f 100644 --- a/.github/workflows/autofix.yml +++ b/.github/workflows/autofix.yml @@ -28,7 +28,7 @@ jobs: - name: Install mise uses: jdx/mise-action@5bb8f8c1911837cf42064e6490e7634fc842ee7e # v2.1.8 with: - version: 2024.12.16 + version: 2024.12.17 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index bd9017b7..70a19816 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -34,7 +34,7 @@ jobs: - name: Install mise uses: jdx/mise-action@5bb8f8c1911837cf42064e6490e7634fc842ee7e # v2.1.8 with: - version: 2024.12.16 + version: 2024.12.17 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} @@ -70,7 +70,7 @@ jobs: - name: Install mise uses: jdx/mise-action@5bb8f8c1911837cf42064e6490e7634fc842ee7e # v2.1.8 with: - version: 2024.12.16 + version: 2024.12.17 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} @@ -93,7 +93,7 @@ jobs: - name: Install mise uses: jdx/mise-action@5bb8f8c1911837cf42064e6490e7634fc842ee7e # v2.1.8 with: - version: 2024.12.16 + version: 2024.12.17 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} diff --git a/.github/workflows/worker.yml b/.github/workflows/worker.yml index 0e50a24f..06132b2f 100644 --- a/.github/workflows/worker.yml +++ b/.github/workflows/worker.yml @@ -38,7 +38,7 @@ jobs: - name: Install mise uses: jdx/mise-action@5bb8f8c1911837cf42064e6490e7634fc842ee7e # v2.1.8 with: - version: 2024.12.16 + version: 2024.12.17 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} @@ -72,7 +72,7 @@ jobs: - name: Install mise uses: jdx/mise-action@5bb8f8c1911837cf42064e6490e7634fc842ee7e # v2.1.8 with: - version: 2024.12.16 + version: 2024.12.17 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} diff --git a/.github/workflows/wsl-docker.yml b/.github/workflows/wsl-docker.yml index fa3215cd..3c4d889c 100644 --- a/.github/workflows/wsl-docker.yml +++ b/.github/workflows/wsl-docker.yml @@ -37,7 +37,7 @@ jobs: - name: Install mise uses: jdx/mise-action@5bb8f8c1911837cf42064e6490e7634fc842ee7e # v2.1.8 with: - version: 2024.12.16 + version: 2024.12.17 # cspell:ignore kellyjonbrazil mise_toml: | [tools] diff --git a/mise.toml b/mise.toml index 83c362a2..cd9a519c 100644 --- a/mise.toml +++ b/mise.toml @@ -1,7 +1,7 @@ # ref: https://mise.jdx.dev/configuration.html #:schema https://mise.jdx.dev/schema/mise.json -min_version = "2024.12.16" +min_version = "2024.12.17" [tools] bun = "1.1.42" diff --git a/wsl/home/.config/mise/config.toml b/wsl/home/.config/mise/config.toml index e775ca71..78c64a2c 100644 --- a/wsl/home/.config/mise/config.toml +++ b/wsl/home/.config/mise/config.toml @@ -1,7 +1,7 @@ # ref: https://mise.jdx.dev/configuration.html#global-config-config-mise-config-toml #:schema https://mise.jdx.dev/schema/mise.json -min_version = "2024.12.16" +min_version = "2024.12.17" [env] # disable bat paging From 1b1e1a8d8b2e43bb6df384e45bf6d55aa4528a47 Mon Sep 17 00:00:00 2001 From: Risu <79110363+risu729@users.noreply.github.com> Date: Sun, 22 Dec 2024 02:17:15 +0900 Subject: [PATCH 24/75] chore(tasks.toml): use tera templates to distinguish ci env (#1113) * chore(tasks.toml): use tera templates to distinguish ci env * ci(.github/workflows/worker.yml): update task name * chore(tasks.toml): use dummy task in depends_post --------- Co-authored-by: risu729-pr-updater[bot] <191982472+risu729-pr-updater[bot]@users.noreply.github.com> --- .github/workflows/lint.yml | 6 +- .github/workflows/worker.yml | 2 +- tasks.toml | 118 ++++++++++++----------------------- 3 files changed, 44 insertions(+), 82 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 70a19816..67929961 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -42,9 +42,9 @@ jobs: - name: List mise tasks id: list run: | - tasks=$(mise tasks ls --json --hidden \ + tasks=$(mise tasks ls --json \ | jq --raw-output --compact-output \ - 'map(select(.name | test("^(ci:|lint:)")) | {name: (.name | sub("^(ci:|lint:)" ; "")), task: .name})') + 'map(select(.name | test("^(check:)")) | {name: (.name | sub("^.+:" ; "")), task: .name})') echo "tasks=${tasks}" >> "${GITHUB_OUTPUT}" lint: @@ -77,6 +77,8 @@ jobs: - name: Run ${{ matrix.name }} run: mise run ${{ matrix.task }} + env: + LINT: true commitlint: runs-on: ubuntu-24.04 diff --git a/.github/workflows/worker.yml b/.github/workflows/worker.yml index 06132b2f..1bc57f4a 100644 --- a/.github/workflows/worker.yml +++ b/.github/workflows/worker.yml @@ -44,7 +44,7 @@ jobs: GITHUB_TOKEN: ${{ github.token }} - name: Run tests - run: mise run worker:test:ci + run: mise run worker:test deploy-worker: needs: diff --git a/tasks.toml b/tasks.toml index bd95a42e..40608fbc 100644 --- a/tasks.toml +++ b/tasks.toml @@ -12,44 +12,24 @@ run = "bun run git-cz" [check] depends = ["check:*"] -[ci] -depends = [ - "ci:*", # lint and/or check formatting - "lint:*", # lint only -] -hide = true - ["check:biome"] -run = "biome check --write --error-on-warnings" -["ci:biome"] -run = "biome ci --error-on-warnings" -hide = true +run = "biome {% if env.LINT is undefined %}check --write{% else %}ci{% endif %} --error-on-warnings" ["check:tsc"] depends = ["buni"] run = [ - "bun run tsc", - "bun run --cwd worker tsc --project tsconfig.base.json", - "bun run --cwd worker tsc --project tsconfig.src.json", - "bun run --cwd worker tsc --project tsconfig.test.json", -] -["ci:tsc"] -depends = ["buni"] -run = [ - "bun run tsc --incremental false", - "bun run --cwd worker tsc --project tsconfig.base.json --incremental false", - "bun run --cwd worker tsc --project tsconfig.src.json --incremental false", - "bun run --cwd worker tsc --project tsconfig.test.json --incremental false", + "bun run tsc {% if env.CI is defined %}--incremental false{% endif %}", + "bun run --cwd worker tsc --project tsconfig.base.json {% if env.CI is defined %}--incremental false{% endif %}", + "bun run --cwd worker tsc --project tsconfig.src.json {% if env.CI is defined %}--incremental false{% endif %}", + "bun run --cwd worker tsc --project tsconfig.test.json {% if env.CI is defined %}--incremental false{% endif %}", ] -hide = true -["lint:jsonschema"] +["check:jsonschema"] # schema of wrangler.jsonc is in node_modules depends = ["buni:root", "buni:worker"] run = "bun run scripts/validate-json-schema.ts" -alias = "check:jsonschema" -["lint:actionlint"] +["check:actionlint"] run = "actionlint -color" alias = "check:actionlint" # SC2312: check-extra-masked-returns @@ -57,89 +37,69 @@ alias = "check:actionlint" # ref: https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#defaultsrunshell env = { "SHELLCHECK_OPTS" = "--enable=all --exclude=SC2312" } -["lint:ghalint"] +["check:ghalint"] wait_for = ["check:pinact"] run = "ghalint run" -alias = "check:ghalint" ["check:pinact"] run = "pinact run --verify" -["ci:pinact"] -depends = ["check:pinact"] -depends_post = ["util:nodiff"] -hide = true +depends_post = [ + "{% if env.CI is defined %}util:nodiff{% else %}util:donothing{% endif %}", +] ["check:taplo"] -run = ["taplo lint", "taplo fmt"] -["ci:taplo"] -run = ["taplo lint", "taplo fmt --check --diff"] -hide = true +run = [ + "taplo lint", + "taplo fmt {% if env.LINT is undefined %}--check --diff{% endif %}", +] ["check:prettier"] -run = "prettier --write --cache ." -["ci:prettier"] -run = "prettier --check ." -hide = true +run = """ +prettier {% if env.LINT is undefined %}--write{% else %}--check{% endif %} \ + {% if env.CI is undefined %}--cache{% endif %} .""" ["check:markdownlint"] -run = "markdownlint-cli2 --fix" -["ci:markdownlint"] -run = "markdownlint-cli2" -hide = true +run = "markdownlint-cli2 {% if env.LINT is undefined %}--fix{% endif %}" ["check:shfmt"] # cannot exclude gitignored files # ref: https://github.com/mvdan/sh/issues/288 -run = "shfmt --list --write --simplify {{ exec(command='mise run util:list-scripts') }}" -["ci:shfmt"] -run = "shfmt --diff --simplify {{ exec(command='mise run util:list-scripts') }}" -hide = true +run = """ +shfmt {% if env.LINT is undefined %}--list --write{% else %}--diff{% endif %} \ + --simplify {{ exec(command='mise run util:list-scripts') }}""" -["lint:shellcheck"] +["check:shellcheck"] # recursive globbing is not supported # ref: https://www.shellcheck.net/wiki/Recursiveness # ref: https://github.com/koalaman/shellcheck/issues/143 run = "shellcheck --external-sources {{ exec(command='mise run util:list-scripts') }}" -alias = "check:shellcheck" ["check:yamlfmt"] -run = "yamlfmt ." -["ci:yamlfmt"] -run = "yamlfmt -lint ." -hide = true +run = "yamlfmt {% if env.LINT is defined %}-lint{% endif %} ." -["lint:yamllint"] +["check:yamllint"] run = "yamllint --strict ." -alias = "check:yamllint" ["lint:renovate"] run = "renovate-config-validator --strict" alias = "check:renovate" ["check:cspell"] -run = "cspell --cache \"**/*\"" -["ci:cspell"] -run = "cspell \"**/*\"" -hide = true +run = "cspell {% if env.CI is undefined %}--cache{% endif %} \"**/*\"" ["check:lychee"] -run = "lychee --cache \"**/*\"" -["ci:lychee"] -run = "lychee --verbose \"**/*\"" -hide = true +run = """ +lychee {% if env.LINT is defined %}--verbose{% endif %} \ + {% if env.CI is undefined %}--cache{% endif %} \"**/*\"""" ["check:typos"] -run = "typos --write-changes" -["ci:typos"] -run = "typos" -hide = true +run = "typos {% if env.LINT is undefined %}--write-changes{% endif %}" ["check:ignore-sync"] run = "ignore-sync ." -["ci:ignore-sync"] -depends = ["check:ignore-sync"] -depends_post = ["util:nodiff"] -hide = true +depends_post = [ + "{% if env.CI is defined %}util:nodiff{% else %}util:donothing{% endif %}", +] ["worker:dev"] depends = ["buni:worker"] @@ -148,13 +108,8 @@ run = "bun run wrangler dev ${{ exec(command='mise run worker:wrangler-args') }} ["worker:test"] depends = ["buni:worker"] -run = "bun run vitest watch --ui" -dir = "worker" -["worker:test:ci"] -depends = ["buni:worker"] -run = "bun run vitest run" +run = "bun run vitest {% if env.CI is undefined %}watch --ui{% else %}run{% endif %}" dir = "worker" -hide = true ["buni"] depends = ["buni:root", "buni:worker"] @@ -172,6 +127,11 @@ hide = true run = ["git add .", "git diff --staged --exit-code"] hide = true +# cspell:ignore donothing +["util:donothing"] +run = "" +hide = true + ["util:list-scripts"] # .bashrc is not detected by shfmt --find run = "git_files=$(git ls-files) && scripts=$(shfmt --find $git_files) && echo wsl/home/.bashrc $scripts" From 23e963d778f2adec8cc7405fc2c441c5127409e0 Mon Sep 17 00:00:00 2001 From: Risu <79110363+risu729@users.noreply.github.com> Date: Sun, 22 Dec 2024 21:03:46 +0900 Subject: [PATCH 25/75] chore: rename mise tasks dir (#1165) --- .vscode/settings.json | 2 +- lychee.toml | 2 +- worker/package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 7d944090..da886070 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -42,7 +42,7 @@ "winget.json": "jsonc", "gpg-agent.conf": "plaintext", // match on the absolute path if / is contained - "**/mise-tasks/**": "shellscript", + "**/tasks/**": "shellscript", "**/wsl/etc/**": "plaintext" }, diff --git a/lychee.toml b/lychee.toml index 281ae48a..9b163341 100644 --- a/lychee.toml +++ b/lychee.toml @@ -28,7 +28,7 @@ exclude = [ # wsl/install.sh # can't be accessed "https://mise.jdx.dev/deb", - # mise-tasks/worker/wrangler-args + # tasks/worker/wrangler-args # an example of a url with authentication "https://.+@github.com/owner/repo", ] diff --git a/worker/package.json b/worker/package.json index f3eaa082..4164c5f4 100644 --- a/worker/package.json +++ b/worker/package.json @@ -7,7 +7,7 @@ "zod": "3.24.1" }, "scripts": { - "deploy": "wrangler deploy $(../mise-tasks/worker/wrangler-args)" + "deploy": "wrangler deploy $(../tasks/worker/wrangler-args)" }, "devDependencies": { "@cloudflare/vitest-pool-workers": "0.5.38", From 123fd3f62761b4cc16ac431c695fb377db6edf69 Mon Sep 17 00:00:00 2001 From: Risu <79110363+risu729@users.noreply.github.com> Date: Sun, 22 Dec 2024 21:25:39 +0900 Subject: [PATCH 26/75] chore(tasks/worker/wrangler-args): call task script directly if mise is not installed (#1166) --- tasks/worker/wrangler-args | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tasks/worker/wrangler-args b/tasks/worker/wrangler-args index 62653aab..dd6a67a2 100755 --- a/tasks/worker/wrangler-args +++ b/tasks/worker/wrangler-args @@ -5,7 +5,12 @@ set -euo pipefail -compat_date=$(mise run worker:wrangler-compat-date) +# call script directly for direct call in workers build environment +if command -v mise >/dev/null 2>&1; then + compat_date=$(mise run worker:wrangler-compat-date) +else + compat_date=$(./wrangler-compat-date) +fi remote_info=$(git remote show origin) # in cloudflare workers builds, the url is in the format `https://*****@github.com/owner/repo` From 5ffef70614d41056706081936b541da5e8534fdf Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 22 Dec 2024 17:01:00 +0000 Subject: [PATCH 27/75] chore(deps): update dependency renovate to v39.82.0 (#1167) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index cd9a519c..1a7e95b0 100644 --- a/mise.toml +++ b/mise.toml @@ -25,7 +25,7 @@ shfmt = "3.10.0" shellcheck = "0.10.0" yamlfmt = "0.14.0" yamllint = "1.35.1" -"npm:renovate" = "39.80.0" +"npm:renovate" = "39.82.0" "npm:cspell" = "8.17.1" "cargo:lychee" = "0.18.0" typos = "1.28.4" From 51b66e89c36a96bee7af5983eb3ca91c76bab8b0 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 22 Dec 2024 19:40:06 +0000 Subject: [PATCH 28/75] chore(deps): update dependency wrangler to v3.99.0 (#1145) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- worker/bun.lock | 48 ++++++++++++++++++++++++++++++++++++--------- worker/package.json | 2 +- 2 files changed, 40 insertions(+), 10 deletions(-) diff --git a/worker/bun.lock b/worker/bun.lock index c15f318b..43602345 100755 --- a/worker/bun.lock +++ b/worker/bun.lock @@ -18,7 +18,7 @@ "diff": "7.0.0", "typescript": "5.7.2", "vitest": "2.1.8", - "wrangler": "3.97.0", + "wrangler": "3.99.0", }, }, }, @@ -27,15 +27,15 @@ "@cloudflare/vitest-pool-workers": ["@cloudflare/vitest-pool-workers@0.5.38", "", { "dependencies": { "birpc": "0.2.14", "cjs-module-lexer": "^1.2.3", "devalue": "^4.3.0", "esbuild": "0.17.19", "miniflare": "3.20241205.0", "semver": "^7.5.1", "wrangler": "3.97.0", "zod": "^3.22.3" }, "peerDependencies": { "@vitest/runner": "2.0.x - 2.1.x", "@vitest/snapshot": "2.0.x - 2.1.x", "vitest": "2.0.x - 2.1.x" } }, "sha512-dkcC3KeNVXP+KFU236BeZh1EgmHudjisJ7qr1oRlg+rMPsNlclEGeJ8PuAl3T2IgBQdZo/D1qLY205XZlcm7bg=="], - "@cloudflare/workerd-darwin-64": ["@cloudflare/workerd-darwin-64@1.20241205.0", "", { "os": "darwin", "cpu": "x64" }, "sha512-TArEZkSZkHJyEwnlWWkSpCI99cF6lJ14OVeEoI9Um/+cD9CKZLM9vCmsLeKglKheJ0KcdCnkA+DbeD15t3VaWg=="], + "@cloudflare/workerd-darwin-64": ["@cloudflare/workerd-darwin-64@1.20241218.0", "", { "os": "darwin", "cpu": "x64" }, "sha512-8rveQoxtUvlmORKqTWgjv2ycM8uqWox0u9evn3zd2iWKdou5sncFwH517ZRLI3rq9P31ZLmCQBZ0gloFsTeY6w=="], - "@cloudflare/workerd-darwin-arm64": ["@cloudflare/workerd-darwin-arm64@1.20241205.0", "", { "os": "darwin", "cpu": "arm64" }, "sha512-u5eqKa9QRdA8MugfgCoD+ADDjY6EpKbv3hSYJETmmUh17l7WXjWBzv4pUvOKIX67C0UzMUy4jZYwC53MymhX3w=="], + "@cloudflare/workerd-darwin-arm64": ["@cloudflare/workerd-darwin-arm64@1.20241218.0", "", { "os": "darwin", "cpu": "arm64" }, "sha512-be59Ad9nmM9lCkhHqmTs/uZ3JVZt8NJ9Z0PY+B0xnc5z6WwmV2lj0RVLtq7xJhQsQJA189zt5rXqDP6J+2mu7Q=="], - "@cloudflare/workerd-linux-64": ["@cloudflare/workerd-linux-64@1.20241205.0", "", { "os": "linux", "cpu": "x64" }, "sha512-OYA7S5zpumMamWEW+IhhBU6YojIEocyE5X/YFPiTOCrDE3dsfr9t6oqNE7hxGm1VAAu+Irtl+a/5LwmBOU681w=="], + "@cloudflare/workerd-linux-64": ["@cloudflare/workerd-linux-64@1.20241218.0", "", { "os": "linux", "cpu": "x64" }, "sha512-MzpSBcfZXRxrYWxQ4pVDYDrUbkQuM62ssl4ZtHH8J35OAeGsWFAYji6MkS2SpVwVcvacPwJXIF4JSzp4xKImKw=="], - "@cloudflare/workerd-linux-arm64": ["@cloudflare/workerd-linux-arm64@1.20241205.0", "", { "os": "linux", "cpu": "arm64" }, "sha512-qAzecONjFJGIAVJZKExQ5dlbic0f3d4A+GdKa+H6SoUJtPaWiE3K6WuePo4JOT7W3/Zfh25McmX+MmpMUUcM5Q=="], + "@cloudflare/workerd-linux-arm64": ["@cloudflare/workerd-linux-arm64@1.20241218.0", "", { "os": "linux", "cpu": "arm64" }, "sha512-RIuJjPxpNqvwIs52vQsXeRMttvhIjgg9NLjjFa3jK8Ijnj8c3ZDru9Wqi48lJP07yDFIRr4uDMMqh/y29YQi2A=="], - "@cloudflare/workerd-windows-64": ["@cloudflare/workerd-windows-64@1.20241205.0", "", { "os": "win32", "cpu": "x64" }, "sha512-BEab+HiUgCdl6GXAT7EI2yaRtDPiRJlB94XLvRvXi1ZcmQqsrq6awGo6apctFo4WUL29V7c09LxmN4HQ3X2Tvg=="], + "@cloudflare/workerd-windows-64": ["@cloudflare/workerd-windows-64@1.20241218.0", "", { "os": "win32", "cpu": "x64" }, "sha512-tO1VjlvK3F6Yb2d1jgEy/QBYl//9Pyv3K0j+lq8Eu7qdfm0IgKwSRgDWLept84/qmNsQfausZ4JdNGxTf9xsxQ=="], "@cloudflare/workers-types": ["@cloudflare/workers-types@4.20241216.0", "", {}, "sha512-PGIINXS+aE9vD2GYyWXfRG+VyxxceRkGDCoPxqwUweh1Bfv75HVotyL/adJ7mRVwh3XZDifGBdTaLReTT+Fcog=="], @@ -351,7 +351,7 @@ "undici-types": ["undici-types@5.26.5", "", {}, "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA=="], - "unenv": ["unenv-nightly@2.0.0-20241212-153011-af71c96", "", { "dependencies": { "defu": "^6.1.4", "mlly": "^1.7.3", "ohash": "^1.1.4", "pathe": "^1.1.2", "ufo": "^1.5.4" } }, "sha512-Yugb9yPs/EZsPOY+IHloqVVEcZeJ0uwwViTedsZjOtVeYO8I29B1rzU/p84FMT0R1Ht3bHsKkNV/rzrjSd07QA=="], + "unenv": ["unenv-nightly@2.0.0-20241204-140205-a5d5190", "", { "dependencies": { "defu": "^6.1.4", "ohash": "^1.1.4", "pathe": "^1.1.2", "ufo": "^1.5.4" } }, "sha512-jpmAytLeiiW01pl5bhVn9wYJ4vtiLdhGe10oXlJBuQEX8mxjxO8BlEXGHU4vr4yEikjFP1wsomTHt/CLU8kUwg=="], "vite": ["vite@5.4.11", "", { "dependencies": { "esbuild": "^0.21.3", "postcss": "^8.4.43", "rollup": "^4.20.0" }, "optionalDependencies": { "fsevents": "~2.3.3" }, "peerDependencies": { "@types/node": "^18.0.0 || >=20.0.0", "less": "*", "lightningcss": "^1.21.0", "sass": "*", "sass-embedded": "*", "stylus": "*", "sugarss": "*", "terser": "^5.4.0" }, "optionalPeers": ["@types/node", "less", "lightningcss", "sass", "sass-embedded", "stylus", "sugarss", "terser"], "bin": { "vite": "bin/vite.js" } }, "sha512-c7jFQRklXua0mTzneGW9QVyxFjUgwcihC4bXEtujIo2ouWCe1Ajt/amn2PCxYnhYfd5k09JX3SB7OYWFKYqj8Q=="], @@ -361,9 +361,9 @@ "why-is-node-running": ["why-is-node-running@2.3.0", "", { "dependencies": { "siginfo": "^2.0.0", "stackback": "0.0.2" }, "bin": { "why-is-node-running": "cli.js" } }, "sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w=="], - "workerd": ["workerd@1.20241205.0", "", { "optionalDependencies": { "@cloudflare/workerd-darwin-64": "1.20241205.0", "@cloudflare/workerd-darwin-arm64": "1.20241205.0", "@cloudflare/workerd-linux-64": "1.20241205.0", "@cloudflare/workerd-linux-arm64": "1.20241205.0", "@cloudflare/workerd-windows-64": "1.20241205.0" }, "bin": { "workerd": "bin/workerd" } }, "sha512-vso/2n0c5SdBDWiD+Sx5gM7unA6SiZXRVUHDqH1euoP/9mFVHZF8icoYsNLB87b/TX8zNgpae+I5N/xFpd9v0g=="], + "workerd": ["workerd@1.20241218.0", "", { "optionalDependencies": { "@cloudflare/workerd-darwin-64": "1.20241218.0", "@cloudflare/workerd-darwin-arm64": "1.20241218.0", "@cloudflare/workerd-linux-64": "1.20241218.0", "@cloudflare/workerd-linux-arm64": "1.20241218.0", "@cloudflare/workerd-windows-64": "1.20241218.0" }, "bin": { "workerd": "bin/workerd" } }, "sha512-7Z3D4vOVChMz9mWDffE299oQxUWm/pbkeAWx1btVamPcAK/2IuoNBhwflWo3jyuKuxvYuFAdIucgYxc8ICqXiA=="], - "wrangler": ["wrangler@3.97.0", "", { "dependencies": { "@cloudflare/kv-asset-handler": "0.3.4", "@esbuild-plugins/node-globals-polyfill": "^0.2.3", "@esbuild-plugins/node-modules-polyfill": "^0.2.2", "blake3-wasm": "^2.1.5", "chokidar": "^4.0.1", "date-fns": "^4.1.0", "esbuild": "0.17.19", "itty-time": "^1.0.6", "miniflare": "3.20241205.0", "nanoid": "^3.3.3", "path-to-regexp": "^6.3.0", "resolve": "^1.22.8", "selfsigned": "^2.0.1", "source-map": "^0.6.1", "unenv": "npm:unenv-nightly@2.0.0-20241212-153011-af71c96", "workerd": "1.20241205.0", "xxhash-wasm": "^1.0.1" }, "optionalDependencies": { "fsevents": "~2.3.2" }, "peerDependencies": { "@cloudflare/workers-types": "^4.20241205.0" }, "optionalPeers": ["@cloudflare/workers-types"], "bin": { "wrangler": "bin/wrangler.js", "wrangler2": "bin/wrangler.js" } }, "sha512-NkFAigqZWe4NOK0gYROcpvdugaYJE/JRFrIZ+c5Q5/uie+25WH8OVbRvvmiXhWVhso56cZs2W2TPmAxT/sgHkw=="], + "wrangler": ["wrangler@3.99.0", "", { "dependencies": { "@cloudflare/kv-asset-handler": "0.3.4", "@esbuild-plugins/node-globals-polyfill": "^0.2.3", "@esbuild-plugins/node-modules-polyfill": "^0.2.2", "blake3-wasm": "^2.1.5", "chokidar": "^4.0.1", "date-fns": "^4.1.0", "esbuild": "0.17.19", "itty-time": "^1.0.6", "miniflare": "3.20241218.0", "nanoid": "^3.3.3", "path-to-regexp": "^6.3.0", "resolve": "^1.22.8", "selfsigned": "^2.0.1", "source-map": "^0.6.1", "unenv": "npm:unenv-nightly@2.0.0-20241204-140205-a5d5190", "workerd": "1.20241218.0", "xxhash-wasm": "^1.0.1" }, "optionalDependencies": { "fsevents": "~2.3.2" }, "peerDependencies": { "@cloudflare/workers-types": "^4.20241218.0" }, "optionalPeers": ["@cloudflare/workers-types"], "bin": { "wrangler": "bin/wrangler.js", "wrangler2": "bin/wrangler.js" } }, "sha512-k0x4rT3G/QCbxcoZY7CHRVlAIS8WMmKdga6lf4d2c3gXFqssh44vwlTDuARA9QANBxKJTcA7JPTJRfUDhd9QBA=="], "ws": ["ws@8.18.0", "", { "peerDependencies": { "bufferutil": "^4.0.1", "utf-8-validate": ">=5.0.2" }, "optionalPeers": ["bufferutil", "utf-8-validate"] }, "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw=="], @@ -373,6 +373,10 @@ "zod": ["zod@3.24.1", "", {}, "sha512-muH7gBL9sI1nciMZV67X5fTKKBLtwpZ5VBp1vsOQzj1MhrBZ4wlVCm3gedKZWLp0Oyel8sIGfeiz54Su+OVT+A=="], + "@cloudflare/vitest-pool-workers/wrangler": ["wrangler@3.97.0", "", { "dependencies": { "@cloudflare/kv-asset-handler": "0.3.4", "@esbuild-plugins/node-globals-polyfill": "^0.2.3", "@esbuild-plugins/node-modules-polyfill": "^0.2.2", "blake3-wasm": "^2.1.5", "chokidar": "^4.0.1", "date-fns": "^4.1.0", "esbuild": "0.17.19", "itty-time": "^1.0.6", "miniflare": "3.20241205.0", "nanoid": "^3.3.3", "path-to-regexp": "^6.3.0", "resolve": "^1.22.8", "selfsigned": "^2.0.1", "source-map": "^0.6.1", "unenv": "npm:unenv-nightly@2.0.0-20241212-153011-af71c96", "workerd": "1.20241205.0", "xxhash-wasm": "^1.0.1" }, "optionalDependencies": { "fsevents": "~2.3.2" }, "peerDependencies": { "@cloudflare/workers-types": "^4.20241205.0" }, "optionalPeers": ["@cloudflare/workers-types"], "bin": { "wrangler": "bin/wrangler.js", "wrangler2": "bin/wrangler.js" } }, "sha512-NkFAigqZWe4NOK0gYROcpvdugaYJE/JRFrIZ+c5Q5/uie+25WH8OVbRvvmiXhWVhso56cZs2W2TPmAxT/sgHkw=="], + + "miniflare/workerd": ["workerd@1.20241205.0", "", { "optionalDependencies": { "@cloudflare/workerd-darwin-64": "1.20241205.0", "@cloudflare/workerd-darwin-arm64": "1.20241205.0", "@cloudflare/workerd-linux-64": "1.20241205.0", "@cloudflare/workerd-linux-arm64": "1.20241205.0", "@cloudflare/workerd-windows-64": "1.20241205.0" }, "bin": { "workerd": "bin/workerd" } }, "sha512-vso/2n0c5SdBDWiD+Sx5gM7unA6SiZXRVUHDqH1euoP/9mFVHZF8icoYsNLB87b/TX8zNgpae+I5N/xFpd9v0g=="], + "rollup-plugin-inject/estree-walker": ["estree-walker@0.6.1", "", {}, "sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w=="], "rollup-plugin-inject/magic-string": ["magic-string@0.25.9", "", { "dependencies": { "sourcemap-codec": "^1.4.8" } }, "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ=="], @@ -381,6 +385,22 @@ "vite/esbuild": ["esbuild@0.21.5", "", { "optionalDependencies": { "@esbuild/aix-ppc64": "0.21.5", "@esbuild/android-arm": "0.21.5", "@esbuild/android-arm64": "0.21.5", "@esbuild/android-x64": "0.21.5", "@esbuild/darwin-arm64": "0.21.5", "@esbuild/darwin-x64": "0.21.5", "@esbuild/freebsd-arm64": "0.21.5", "@esbuild/freebsd-x64": "0.21.5", "@esbuild/linux-arm": "0.21.5", "@esbuild/linux-arm64": "0.21.5", "@esbuild/linux-ia32": "0.21.5", "@esbuild/linux-loong64": "0.21.5", "@esbuild/linux-mips64el": "0.21.5", "@esbuild/linux-ppc64": "0.21.5", "@esbuild/linux-riscv64": "0.21.5", "@esbuild/linux-s390x": "0.21.5", "@esbuild/linux-x64": "0.21.5", "@esbuild/netbsd-x64": "0.21.5", "@esbuild/openbsd-x64": "0.21.5", "@esbuild/sunos-x64": "0.21.5", "@esbuild/win32-arm64": "0.21.5", "@esbuild/win32-ia32": "0.21.5", "@esbuild/win32-x64": "0.21.5" }, "bin": { "esbuild": "bin/esbuild" } }, "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw=="], + "wrangler/miniflare": ["miniflare@3.20241218.0", "", { "dependencies": { "@cspotcode/source-map-support": "0.8.1", "acorn": "^8.8.0", "acorn-walk": "^8.2.0", "capnp-ts": "^0.7.0", "exit-hook": "^2.2.1", "glob-to-regexp": "^0.4.1", "stoppable": "^1.1.0", "undici": "^5.28.4", "workerd": "1.20241218.0", "ws": "^8.18.0", "youch": "^3.2.2", "zod": "^3.22.3" }, "bin": { "miniflare": "bootstrap.js" } }, "sha512-spYFDArH0wd+wJSTrzBrWrXJrbyJhRMJa35mat947y1jYhVV8I5V8vnD3LwjfpLr0SaEilojz1OIW7ekmnRe+w=="], + + "@cloudflare/vitest-pool-workers/wrangler/unenv": ["unenv-nightly@2.0.0-20241212-153011-af71c96", "", { "dependencies": { "defu": "^6.1.4", "mlly": "^1.7.3", "ohash": "^1.1.4", "pathe": "^1.1.2", "ufo": "^1.5.4" } }, "sha512-Yugb9yPs/EZsPOY+IHloqVVEcZeJ0uwwViTedsZjOtVeYO8I29B1rzU/p84FMT0R1Ht3bHsKkNV/rzrjSd07QA=="], + + "@cloudflare/vitest-pool-workers/wrangler/workerd": ["workerd@1.20241205.0", "", { "optionalDependencies": { "@cloudflare/workerd-darwin-64": "1.20241205.0", "@cloudflare/workerd-darwin-arm64": "1.20241205.0", "@cloudflare/workerd-linux-64": "1.20241205.0", "@cloudflare/workerd-linux-arm64": "1.20241205.0", "@cloudflare/workerd-windows-64": "1.20241205.0" }, "bin": { "workerd": "bin/workerd" } }, "sha512-vso/2n0c5SdBDWiD+Sx5gM7unA6SiZXRVUHDqH1euoP/9mFVHZF8icoYsNLB87b/TX8zNgpae+I5N/xFpd9v0g=="], + + "miniflare/workerd/@cloudflare/workerd-darwin-64": ["@cloudflare/workerd-darwin-64@1.20241205.0", "", { "os": "darwin", "cpu": "x64" }, "sha512-TArEZkSZkHJyEwnlWWkSpCI99cF6lJ14OVeEoI9Um/+cD9CKZLM9vCmsLeKglKheJ0KcdCnkA+DbeD15t3VaWg=="], + + "miniflare/workerd/@cloudflare/workerd-darwin-arm64": ["@cloudflare/workerd-darwin-arm64@1.20241205.0", "", { "os": "darwin", "cpu": "arm64" }, "sha512-u5eqKa9QRdA8MugfgCoD+ADDjY6EpKbv3hSYJETmmUh17l7WXjWBzv4pUvOKIX67C0UzMUy4jZYwC53MymhX3w=="], + + "miniflare/workerd/@cloudflare/workerd-linux-64": ["@cloudflare/workerd-linux-64@1.20241205.0", "", { "os": "linux", "cpu": "x64" }, "sha512-OYA7S5zpumMamWEW+IhhBU6YojIEocyE5X/YFPiTOCrDE3dsfr9t6oqNE7hxGm1VAAu+Irtl+a/5LwmBOU681w=="], + + "miniflare/workerd/@cloudflare/workerd-linux-arm64": ["@cloudflare/workerd-linux-arm64@1.20241205.0", "", { "os": "linux", "cpu": "arm64" }, "sha512-qAzecONjFJGIAVJZKExQ5dlbic0f3d4A+GdKa+H6SoUJtPaWiE3K6WuePo4JOT7W3/Zfh25McmX+MmpMUUcM5Q=="], + + "miniflare/workerd/@cloudflare/workerd-windows-64": ["@cloudflare/workerd-windows-64@1.20241205.0", "", { "os": "win32", "cpu": "x64" }, "sha512-BEab+HiUgCdl6GXAT7EI2yaRtDPiRJlB94XLvRvXi1ZcmQqsrq6awGo6apctFo4WUL29V7c09LxmN4HQ3X2Tvg=="], + "vite/esbuild/@esbuild/android-arm": ["@esbuild/android-arm@0.21.5", "", { "os": "android", "cpu": "arm" }, "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg=="], "vite/esbuild/@esbuild/android-arm64": ["@esbuild/android-arm64@0.21.5", "", { "os": "android", "cpu": "arm64" }, "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A=="], @@ -424,5 +444,15 @@ "vite/esbuild/@esbuild/win32-ia32": ["@esbuild/win32-ia32@0.21.5", "", { "os": "win32", "cpu": "ia32" }, "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA=="], "vite/esbuild/@esbuild/win32-x64": ["@esbuild/win32-x64@0.21.5", "", { "os": "win32", "cpu": "x64" }, "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw=="], + + "@cloudflare/vitest-pool-workers/wrangler/workerd/@cloudflare/workerd-darwin-64": ["@cloudflare/workerd-darwin-64@1.20241205.0", "", { "os": "darwin", "cpu": "x64" }, "sha512-TArEZkSZkHJyEwnlWWkSpCI99cF6lJ14OVeEoI9Um/+cD9CKZLM9vCmsLeKglKheJ0KcdCnkA+DbeD15t3VaWg=="], + + "@cloudflare/vitest-pool-workers/wrangler/workerd/@cloudflare/workerd-darwin-arm64": ["@cloudflare/workerd-darwin-arm64@1.20241205.0", "", { "os": "darwin", "cpu": "arm64" }, "sha512-u5eqKa9QRdA8MugfgCoD+ADDjY6EpKbv3hSYJETmmUh17l7WXjWBzv4pUvOKIX67C0UzMUy4jZYwC53MymhX3w=="], + + "@cloudflare/vitest-pool-workers/wrangler/workerd/@cloudflare/workerd-linux-64": ["@cloudflare/workerd-linux-64@1.20241205.0", "", { "os": "linux", "cpu": "x64" }, "sha512-OYA7S5zpumMamWEW+IhhBU6YojIEocyE5X/YFPiTOCrDE3dsfr9t6oqNE7hxGm1VAAu+Irtl+a/5LwmBOU681w=="], + + "@cloudflare/vitest-pool-workers/wrangler/workerd/@cloudflare/workerd-linux-arm64": ["@cloudflare/workerd-linux-arm64@1.20241205.0", "", { "os": "linux", "cpu": "arm64" }, "sha512-qAzecONjFJGIAVJZKExQ5dlbic0f3d4A+GdKa+H6SoUJtPaWiE3K6WuePo4JOT7W3/Zfh25McmX+MmpMUUcM5Q=="], + + "@cloudflare/vitest-pool-workers/wrangler/workerd/@cloudflare/workerd-windows-64": ["@cloudflare/workerd-windows-64@1.20241205.0", "", { "os": "win32", "cpu": "x64" }, "sha512-BEab+HiUgCdl6GXAT7EI2yaRtDPiRJlB94XLvRvXi1ZcmQqsrq6awGo6apctFo4WUL29V7c09LxmN4HQ3X2Tvg=="], } } diff --git a/worker/package.json b/worker/package.json index 4164c5f4..cbcf8b92 100644 --- a/worker/package.json +++ b/worker/package.json @@ -21,6 +21,6 @@ "diff": "7.0.0", "typescript": "5.7.2", "vitest": "2.1.8", - "wrangler": "3.97.0" + "wrangler": "3.99.0" } } From 3e4a7cb18e7ca546846b0fae97e58ee163ec99ee Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 22 Dec 2024 19:40:22 +0000 Subject: [PATCH 29/75] chore(deps): update dependency @cloudflare/workers-types to v4.20241218.0 (#1128) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- worker/bun.lock | 4 ++-- worker/package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/worker/bun.lock b/worker/bun.lock index 43602345..7046784c 100755 --- a/worker/bun.lock +++ b/worker/bun.lock @@ -8,7 +8,7 @@ }, "devDependencies": { "@cloudflare/vitest-pool-workers": "0.5.38", - "@cloudflare/workers-types": "4.20241216.0", + "@cloudflare/workers-types": "4.20241218.0", "@total-typescript/tsconfig": "1.0.4", "@tsconfig/bun": "1.0.7", "@tsconfig/strictest": "2.0.5", @@ -37,7 +37,7 @@ "@cloudflare/workerd-windows-64": ["@cloudflare/workerd-windows-64@1.20241218.0", "", { "os": "win32", "cpu": "x64" }, "sha512-tO1VjlvK3F6Yb2d1jgEy/QBYl//9Pyv3K0j+lq8Eu7qdfm0IgKwSRgDWLept84/qmNsQfausZ4JdNGxTf9xsxQ=="], - "@cloudflare/workers-types": ["@cloudflare/workers-types@4.20241216.0", "", {}, "sha512-PGIINXS+aE9vD2GYyWXfRG+VyxxceRkGDCoPxqwUweh1Bfv75HVotyL/adJ7mRVwh3XZDifGBdTaLReTT+Fcog=="], + "@cloudflare/workers-types": ["@cloudflare/workers-types@4.20241218.0", "", {}, "sha512-Y0brjmJHcAZBXOPI7lU5hbiXglQWniA1kQjot2ata+HFimyjPPcz+4QWBRrmWcMPo0OadR2Vmac7WStDLpvz0w=="], "@cspotcode/source-map-support": ["@cspotcode/source-map-support@0.8.1", "", { "dependencies": { "@jridgewell/trace-mapping": "0.3.9" } }, "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw=="], diff --git a/worker/package.json b/worker/package.json index cbcf8b92..5ec07b47 100644 --- a/worker/package.json +++ b/worker/package.json @@ -11,7 +11,7 @@ }, "devDependencies": { "@cloudflare/vitest-pool-workers": "0.5.38", - "@cloudflare/workers-types": "4.20241216.0", + "@cloudflare/workers-types": "4.20241218.0", "@total-typescript/tsconfig": "1.0.4", "@tsconfig/bun": "1.0.7", "@tsconfig/strictest": "2.0.5", From fd080c910637c3a5d36fa9ac864dc1c4b246deaa Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 22 Dec 2024 23:14:36 +0000 Subject: [PATCH 30/75] chore(deps): update dependency renovate to v39.82.1 (#1168) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index 1a7e95b0..89cfb420 100644 --- a/mise.toml +++ b/mise.toml @@ -25,7 +25,7 @@ shfmt = "3.10.0" shellcheck = "0.10.0" yamlfmt = "0.14.0" yamllint = "1.35.1" -"npm:renovate" = "39.82.0" +"npm:renovate" = "39.82.1" "npm:cspell" = "8.17.1" "cargo:lychee" = "0.18.0" typos = "1.28.4" From cea4ee73a59a3e41cc4f51be3d566e4eb348e1a5 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 22 Dec 2024 23:14:51 +0000 Subject: [PATCH 31/75] chore(deps): update dependency @cloudflare/vitest-pool-workers to v0.5.40 (#1144) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- worker/bun.lock | 42 +++--------------------------------------- worker/package.json | 2 +- 2 files changed, 4 insertions(+), 40 deletions(-) diff --git a/worker/bun.lock b/worker/bun.lock index 7046784c..2399ecaf 100755 --- a/worker/bun.lock +++ b/worker/bun.lock @@ -7,7 +7,7 @@ "zod": "3.24.1", }, "devDependencies": { - "@cloudflare/vitest-pool-workers": "0.5.38", + "@cloudflare/vitest-pool-workers": "0.5.40", "@cloudflare/workers-types": "4.20241218.0", "@total-typescript/tsconfig": "1.0.4", "@tsconfig/bun": "1.0.7", @@ -25,7 +25,7 @@ "packages": { "@cloudflare/kv-asset-handler": ["@cloudflare/kv-asset-handler@0.3.4", "", { "dependencies": { "mime": "^3.0.0" } }, "sha512-YLPHc8yASwjNkmcDMQMY35yiWjoKAKnhUbPRszBRS0YgH+IXtsMp61j+yTcnCE3oO2DgP0U3iejLC8FTtKDC8Q=="], - "@cloudflare/vitest-pool-workers": ["@cloudflare/vitest-pool-workers@0.5.38", "", { "dependencies": { "birpc": "0.2.14", "cjs-module-lexer": "^1.2.3", "devalue": "^4.3.0", "esbuild": "0.17.19", "miniflare": "3.20241205.0", "semver": "^7.5.1", "wrangler": "3.97.0", "zod": "^3.22.3" }, "peerDependencies": { "@vitest/runner": "2.0.x - 2.1.x", "@vitest/snapshot": "2.0.x - 2.1.x", "vitest": "2.0.x - 2.1.x" } }, "sha512-dkcC3KeNVXP+KFU236BeZh1EgmHudjisJ7qr1oRlg+rMPsNlclEGeJ8PuAl3T2IgBQdZo/D1qLY205XZlcm7bg=="], + "@cloudflare/vitest-pool-workers": ["@cloudflare/vitest-pool-workers@0.5.40", "", { "dependencies": { "birpc": "0.2.14", "cjs-module-lexer": "^1.2.3", "devalue": "^4.3.0", "esbuild": "0.17.19", "miniflare": "3.20241218.0", "semver": "^7.5.1", "wrangler": "3.99.0", "zod": "^3.22.3" }, "peerDependencies": { "@vitest/runner": "2.0.x - 2.1.x", "@vitest/snapshot": "2.0.x - 2.1.x", "vitest": "2.0.x - 2.1.x" } }, "sha512-aBHNj55l6G07+ZJuhJsuElDYOEKcGJ4nEdE+X7XmyCRxiw7eRjc1iPQOfEFqprzKQ/2tPEOO8hL0mgRIgt8K3g=="], "@cloudflare/workerd-darwin-64": ["@cloudflare/workerd-darwin-64@1.20241218.0", "", { "os": "darwin", "cpu": "x64" }, "sha512-8rveQoxtUvlmORKqTWgjv2ycM8uqWox0u9evn3zd2iWKdou5sncFwH517ZRLI3rq9P31ZLmCQBZ0gloFsTeY6w=="], @@ -199,8 +199,6 @@ "cjs-module-lexer": ["cjs-module-lexer@1.4.1", "", {}, "sha512-cuSVIHi9/9E/+821Qjdvngor+xpnlwnuwIyZOaLmHBVdXL+gP+I6QQB9VkO7RI77YIcTV+S1W9AreJ5eN63JBA=="], - "confbox": ["confbox@0.1.8", "", {}, "sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w=="], - "cookie": ["cookie@0.7.2", "", {}, "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w=="], "data-uri-to-buffer": ["data-uri-to-buffer@2.0.2", "", {}, "sha512-ND9qDTLc6diwj+Xe5cdAgVTbLVdXbtxTJRXRhli8Mowuaan+0EJOtdqJ0QCHNSSPyoXGx9HX2/VMnKeC34AChA=="], @@ -257,9 +255,7 @@ "mime": ["mime@3.0.0", "", { "bin": { "mime": "cli.js" } }, "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A=="], - "miniflare": ["miniflare@3.20241205.0", "", { "dependencies": { "@cspotcode/source-map-support": "0.8.1", "acorn": "^8.8.0", "acorn-walk": "^8.2.0", "capnp-ts": "^0.7.0", "exit-hook": "^2.2.1", "glob-to-regexp": "^0.4.1", "stoppable": "^1.1.0", "undici": "^5.28.4", "workerd": "1.20241205.0", "ws": "^8.18.0", "youch": "^3.2.2", "zod": "^3.22.3" }, "bin": { "miniflare": "bootstrap.js" } }, "sha512-Z0cTtIf6ZrcAJ3SrOI9EUM3s4dkGhNeU6Ubl8sroYhsPVD+rtz3m5+p6McHFWCkcMff1o60X5XEKVTmkz0gbpA=="], - - "mlly": ["mlly@1.7.3", "", { "dependencies": { "acorn": "^8.14.0", "pathe": "^1.1.2", "pkg-types": "^1.2.1", "ufo": "^1.5.4" } }, "sha512-xUsx5n/mN0uQf4V548PKQ+YShA4/IW0KI1dZhrNrPCLG+xizETbHTkOa1f8/xut9JRPp8kQuMnz0oqwkTiLo/A=="], + "miniflare": ["miniflare@3.20241218.0", "", { "dependencies": { "@cspotcode/source-map-support": "0.8.1", "acorn": "^8.8.0", "acorn-walk": "^8.2.0", "capnp-ts": "^0.7.0", "exit-hook": "^2.2.1", "glob-to-regexp": "^0.4.1", "stoppable": "^1.1.0", "undici": "^5.28.4", "workerd": "1.20241218.0", "ws": "^8.18.0", "youch": "^3.2.2", "zod": "^3.22.3" }, "bin": { "miniflare": "bootstrap.js" } }, "sha512-spYFDArH0wd+wJSTrzBrWrXJrbyJhRMJa35mat947y1jYhVV8I5V8vnD3LwjfpLr0SaEilojz1OIW7ekmnRe+w=="], "mrmime": ["mrmime@2.0.0", "", {}, "sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw=="], @@ -285,8 +281,6 @@ "picomatch": ["picomatch@4.0.2", "", {}, "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg=="], - "pkg-types": ["pkg-types@1.2.1", "", { "dependencies": { "confbox": "^0.1.8", "mlly": "^1.7.2", "pathe": "^1.1.2" } }, "sha512-sQoqa8alT3nHjGuTjuKgOnvjo4cljkufdtLMnO2LBP/wRwuDlo1tkaEdMxCRhyGRPacv/ztlZgDPm2b7FAmEvw=="], - "postcss": ["postcss@8.4.49", "", { "dependencies": { "nanoid": "^3.3.7", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" } }, "sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA=="], "printable-characters": ["printable-characters@1.0.42", "", {}, "sha512-dKp+C4iXWK4vVYZmYSd0KBH5F/h1HoZRsbJ82AVKRO3PEo8L4lBS/vLwhVtpwwuYcoIsVY+1JYKR268yn480uQ=="], @@ -373,10 +367,6 @@ "zod": ["zod@3.24.1", "", {}, "sha512-muH7gBL9sI1nciMZV67X5fTKKBLtwpZ5VBp1vsOQzj1MhrBZ4wlVCm3gedKZWLp0Oyel8sIGfeiz54Su+OVT+A=="], - "@cloudflare/vitest-pool-workers/wrangler": ["wrangler@3.97.0", "", { "dependencies": { "@cloudflare/kv-asset-handler": "0.3.4", "@esbuild-plugins/node-globals-polyfill": "^0.2.3", "@esbuild-plugins/node-modules-polyfill": "^0.2.2", "blake3-wasm": "^2.1.5", "chokidar": "^4.0.1", "date-fns": "^4.1.0", "esbuild": "0.17.19", "itty-time": "^1.0.6", "miniflare": "3.20241205.0", "nanoid": "^3.3.3", "path-to-regexp": "^6.3.0", "resolve": "^1.22.8", "selfsigned": "^2.0.1", "source-map": "^0.6.1", "unenv": "npm:unenv-nightly@2.0.0-20241212-153011-af71c96", "workerd": "1.20241205.0", "xxhash-wasm": "^1.0.1" }, "optionalDependencies": { "fsevents": "~2.3.2" }, "peerDependencies": { "@cloudflare/workers-types": "^4.20241205.0" }, "optionalPeers": ["@cloudflare/workers-types"], "bin": { "wrangler": "bin/wrangler.js", "wrangler2": "bin/wrangler.js" } }, "sha512-NkFAigqZWe4NOK0gYROcpvdugaYJE/JRFrIZ+c5Q5/uie+25WH8OVbRvvmiXhWVhso56cZs2W2TPmAxT/sgHkw=="], - - "miniflare/workerd": ["workerd@1.20241205.0", "", { "optionalDependencies": { "@cloudflare/workerd-darwin-64": "1.20241205.0", "@cloudflare/workerd-darwin-arm64": "1.20241205.0", "@cloudflare/workerd-linux-64": "1.20241205.0", "@cloudflare/workerd-linux-arm64": "1.20241205.0", "@cloudflare/workerd-windows-64": "1.20241205.0" }, "bin": { "workerd": "bin/workerd" } }, "sha512-vso/2n0c5SdBDWiD+Sx5gM7unA6SiZXRVUHDqH1euoP/9mFVHZF8icoYsNLB87b/TX8zNgpae+I5N/xFpd9v0g=="], - "rollup-plugin-inject/estree-walker": ["estree-walker@0.6.1", "", {}, "sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w=="], "rollup-plugin-inject/magic-string": ["magic-string@0.25.9", "", { "dependencies": { "sourcemap-codec": "^1.4.8" } }, "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ=="], @@ -385,22 +375,6 @@ "vite/esbuild": ["esbuild@0.21.5", "", { "optionalDependencies": { "@esbuild/aix-ppc64": "0.21.5", "@esbuild/android-arm": "0.21.5", "@esbuild/android-arm64": "0.21.5", "@esbuild/android-x64": "0.21.5", "@esbuild/darwin-arm64": "0.21.5", "@esbuild/darwin-x64": "0.21.5", "@esbuild/freebsd-arm64": "0.21.5", "@esbuild/freebsd-x64": "0.21.5", "@esbuild/linux-arm": "0.21.5", "@esbuild/linux-arm64": "0.21.5", "@esbuild/linux-ia32": "0.21.5", "@esbuild/linux-loong64": "0.21.5", "@esbuild/linux-mips64el": "0.21.5", "@esbuild/linux-ppc64": "0.21.5", "@esbuild/linux-riscv64": "0.21.5", "@esbuild/linux-s390x": "0.21.5", "@esbuild/linux-x64": "0.21.5", "@esbuild/netbsd-x64": "0.21.5", "@esbuild/openbsd-x64": "0.21.5", "@esbuild/sunos-x64": "0.21.5", "@esbuild/win32-arm64": "0.21.5", "@esbuild/win32-ia32": "0.21.5", "@esbuild/win32-x64": "0.21.5" }, "bin": { "esbuild": "bin/esbuild" } }, "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw=="], - "wrangler/miniflare": ["miniflare@3.20241218.0", "", { "dependencies": { "@cspotcode/source-map-support": "0.8.1", "acorn": "^8.8.0", "acorn-walk": "^8.2.0", "capnp-ts": "^0.7.0", "exit-hook": "^2.2.1", "glob-to-regexp": "^0.4.1", "stoppable": "^1.1.0", "undici": "^5.28.4", "workerd": "1.20241218.0", "ws": "^8.18.0", "youch": "^3.2.2", "zod": "^3.22.3" }, "bin": { "miniflare": "bootstrap.js" } }, "sha512-spYFDArH0wd+wJSTrzBrWrXJrbyJhRMJa35mat947y1jYhVV8I5V8vnD3LwjfpLr0SaEilojz1OIW7ekmnRe+w=="], - - "@cloudflare/vitest-pool-workers/wrangler/unenv": ["unenv-nightly@2.0.0-20241212-153011-af71c96", "", { "dependencies": { "defu": "^6.1.4", "mlly": "^1.7.3", "ohash": "^1.1.4", "pathe": "^1.1.2", "ufo": "^1.5.4" } }, "sha512-Yugb9yPs/EZsPOY+IHloqVVEcZeJ0uwwViTedsZjOtVeYO8I29B1rzU/p84FMT0R1Ht3bHsKkNV/rzrjSd07QA=="], - - "@cloudflare/vitest-pool-workers/wrangler/workerd": ["workerd@1.20241205.0", "", { "optionalDependencies": { "@cloudflare/workerd-darwin-64": "1.20241205.0", "@cloudflare/workerd-darwin-arm64": "1.20241205.0", "@cloudflare/workerd-linux-64": "1.20241205.0", "@cloudflare/workerd-linux-arm64": "1.20241205.0", "@cloudflare/workerd-windows-64": "1.20241205.0" }, "bin": { "workerd": "bin/workerd" } }, "sha512-vso/2n0c5SdBDWiD+Sx5gM7unA6SiZXRVUHDqH1euoP/9mFVHZF8icoYsNLB87b/TX8zNgpae+I5N/xFpd9v0g=="], - - "miniflare/workerd/@cloudflare/workerd-darwin-64": ["@cloudflare/workerd-darwin-64@1.20241205.0", "", { "os": "darwin", "cpu": "x64" }, "sha512-TArEZkSZkHJyEwnlWWkSpCI99cF6lJ14OVeEoI9Um/+cD9CKZLM9vCmsLeKglKheJ0KcdCnkA+DbeD15t3VaWg=="], - - "miniflare/workerd/@cloudflare/workerd-darwin-arm64": ["@cloudflare/workerd-darwin-arm64@1.20241205.0", "", { "os": "darwin", "cpu": "arm64" }, "sha512-u5eqKa9QRdA8MugfgCoD+ADDjY6EpKbv3hSYJETmmUh17l7WXjWBzv4pUvOKIX67C0UzMUy4jZYwC53MymhX3w=="], - - "miniflare/workerd/@cloudflare/workerd-linux-64": ["@cloudflare/workerd-linux-64@1.20241205.0", "", { "os": "linux", "cpu": "x64" }, "sha512-OYA7S5zpumMamWEW+IhhBU6YojIEocyE5X/YFPiTOCrDE3dsfr9t6oqNE7hxGm1VAAu+Irtl+a/5LwmBOU681w=="], - - "miniflare/workerd/@cloudflare/workerd-linux-arm64": ["@cloudflare/workerd-linux-arm64@1.20241205.0", "", { "os": "linux", "cpu": "arm64" }, "sha512-qAzecONjFJGIAVJZKExQ5dlbic0f3d4A+GdKa+H6SoUJtPaWiE3K6WuePo4JOT7W3/Zfh25McmX+MmpMUUcM5Q=="], - - "miniflare/workerd/@cloudflare/workerd-windows-64": ["@cloudflare/workerd-windows-64@1.20241205.0", "", { "os": "win32", "cpu": "x64" }, "sha512-BEab+HiUgCdl6GXAT7EI2yaRtDPiRJlB94XLvRvXi1ZcmQqsrq6awGo6apctFo4WUL29V7c09LxmN4HQ3X2Tvg=="], - "vite/esbuild/@esbuild/android-arm": ["@esbuild/android-arm@0.21.5", "", { "os": "android", "cpu": "arm" }, "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg=="], "vite/esbuild/@esbuild/android-arm64": ["@esbuild/android-arm64@0.21.5", "", { "os": "android", "cpu": "arm64" }, "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A=="], @@ -444,15 +418,5 @@ "vite/esbuild/@esbuild/win32-ia32": ["@esbuild/win32-ia32@0.21.5", "", { "os": "win32", "cpu": "ia32" }, "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA=="], "vite/esbuild/@esbuild/win32-x64": ["@esbuild/win32-x64@0.21.5", "", { "os": "win32", "cpu": "x64" }, "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw=="], - - "@cloudflare/vitest-pool-workers/wrangler/workerd/@cloudflare/workerd-darwin-64": ["@cloudflare/workerd-darwin-64@1.20241205.0", "", { "os": "darwin", "cpu": "x64" }, "sha512-TArEZkSZkHJyEwnlWWkSpCI99cF6lJ14OVeEoI9Um/+cD9CKZLM9vCmsLeKglKheJ0KcdCnkA+DbeD15t3VaWg=="], - - "@cloudflare/vitest-pool-workers/wrangler/workerd/@cloudflare/workerd-darwin-arm64": ["@cloudflare/workerd-darwin-arm64@1.20241205.0", "", { "os": "darwin", "cpu": "arm64" }, "sha512-u5eqKa9QRdA8MugfgCoD+ADDjY6EpKbv3hSYJETmmUh17l7WXjWBzv4pUvOKIX67C0UzMUy4jZYwC53MymhX3w=="], - - "@cloudflare/vitest-pool-workers/wrangler/workerd/@cloudflare/workerd-linux-64": ["@cloudflare/workerd-linux-64@1.20241205.0", "", { "os": "linux", "cpu": "x64" }, "sha512-OYA7S5zpumMamWEW+IhhBU6YojIEocyE5X/YFPiTOCrDE3dsfr9t6oqNE7hxGm1VAAu+Irtl+a/5LwmBOU681w=="], - - "@cloudflare/vitest-pool-workers/wrangler/workerd/@cloudflare/workerd-linux-arm64": ["@cloudflare/workerd-linux-arm64@1.20241205.0", "", { "os": "linux", "cpu": "arm64" }, "sha512-qAzecONjFJGIAVJZKExQ5dlbic0f3d4A+GdKa+H6SoUJtPaWiE3K6WuePo4JOT7W3/Zfh25McmX+MmpMUUcM5Q=="], - - "@cloudflare/vitest-pool-workers/wrangler/workerd/@cloudflare/workerd-windows-64": ["@cloudflare/workerd-windows-64@1.20241205.0", "", { "os": "win32", "cpu": "x64" }, "sha512-BEab+HiUgCdl6GXAT7EI2yaRtDPiRJlB94XLvRvXi1ZcmQqsrq6awGo6apctFo4WUL29V7c09LxmN4HQ3X2Tvg=="], } } diff --git a/worker/package.json b/worker/package.json index 5ec07b47..85336994 100644 --- a/worker/package.json +++ b/worker/package.json @@ -10,7 +10,7 @@ "deploy": "wrangler deploy $(../tasks/worker/wrangler-args)" }, "devDependencies": { - "@cloudflare/vitest-pool-workers": "0.5.38", + "@cloudflare/vitest-pool-workers": "0.5.40", "@cloudflare/workers-types": "4.20241218.0", "@total-typescript/tsconfig": "1.0.4", "@tsconfig/bun": "1.0.7", From 049c089002a3b921e8013c0a932570c568c7f15a Mon Sep 17 00:00:00 2001 From: Risu <79110363+risu729@users.noreply.github.com> Date: Mon, 23 Dec 2024 21:06:44 +0900 Subject: [PATCH 32/75] fix(wsl/home/.bashrc): enable select-1 flag of fzf in gcd (#1169) --- wsl/home/.bashrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wsl/home/.bashrc b/wsl/home/.bashrc index a0a5bac4..30ffdd81 100644 --- a/wsl/home/.bashrc +++ b/wsl/home/.bashrc @@ -119,7 +119,7 @@ alias code="code-insiders" gcd() { local ghq_dir dir root ghq_dir=$(ghq list) - dir=$(echo -n "${ghq_dir}" | fzf --exit-0 --query="$*" --no-sort --exact) + dir=$(echo -n "${ghq_dir}" | fzf --exit-0 --select-1 --query="$*" --no-sort --exact) root=$(ghq root) [[ -n ${dir} ]] && cd "${root}/${dir}" || return 1 } From cfea6f3375523fc92c0fa3af3ba08d6d3abc044e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 23 Dec 2024 12:08:59 +0000 Subject: [PATCH 33/75] chore(deps): update dependency renovate to v39.82.2 (#1170) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index 89cfb420..3334f370 100644 --- a/mise.toml +++ b/mise.toml @@ -25,7 +25,7 @@ shfmt = "3.10.0" shellcheck = "0.10.0" yamlfmt = "0.14.0" yamllint = "1.35.1" -"npm:renovate" = "39.82.1" +"npm:renovate" = "39.82.2" "npm:cspell" = "8.17.1" "cargo:lychee" = "0.18.0" typos = "1.28.4" From 1099a63e94c66269c39b51a0d8a34dde9966c30f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 23 Dec 2024 15:39:20 +0000 Subject: [PATCH 34/75] chore(deps): update dependency renovate to v39.82.3 (#1171) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index 3334f370..080ff4e0 100644 --- a/mise.toml +++ b/mise.toml @@ -25,7 +25,7 @@ shfmt = "3.10.0" shellcheck = "0.10.0" yamlfmt = "0.14.0" yamllint = "1.35.1" -"npm:renovate" = "39.82.2" +"npm:renovate" = "39.82.3" "npm:cspell" = "8.17.1" "cargo:lychee" = "0.18.0" typos = "1.28.4" From dd493d1c2ac1dcbdcd0f3f682b89d7df2551e474 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 23 Dec 2024 20:44:56 +0000 Subject: [PATCH 35/75] ci(deps): update jdx/mise-action action to v2.1.10 (#1173) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/autofix.yml | 2 +- .github/workflows/lint.yml | 6 +++--- .github/workflows/worker.yml | 4 ++-- .github/workflows/wsl-docker.yml | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/autofix.yml b/.github/workflows/autofix.yml index 794df34f..1c7bd613 100644 --- a/.github/workflows/autofix.yml +++ b/.github/workflows/autofix.yml @@ -26,7 +26,7 @@ jobs: uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: Install mise - uses: jdx/mise-action@5bb8f8c1911837cf42064e6490e7634fc842ee7e # v2.1.8 + uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 with: version: 2024.12.17 cache_save: ${{ github.ref_name == 'main' }} diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 67929961..6f25de24 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -32,7 +32,7 @@ jobs: uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: Install mise - uses: jdx/mise-action@5bb8f8c1911837cf42064e6490e7634fc842ee7e # v2.1.8 + uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 with: version: 2024.12.17 cache_save: ${{ github.ref_name == 'main' }} @@ -68,7 +68,7 @@ jobs: uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: Install mise - uses: jdx/mise-action@5bb8f8c1911837cf42064e6490e7634fc842ee7e # v2.1.8 + uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 with: version: 2024.12.17 cache_save: ${{ github.ref_name == 'main' }} @@ -93,7 +93,7 @@ jobs: fetch-depth: 0 # fetch all history for commitlint - name: Install mise - uses: jdx/mise-action@5bb8f8c1911837cf42064e6490e7634fc842ee7e # v2.1.8 + uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 with: version: 2024.12.17 cache_save: ${{ github.ref_name == 'main' }} diff --git a/.github/workflows/worker.yml b/.github/workflows/worker.yml index 1bc57f4a..88629c8c 100644 --- a/.github/workflows/worker.yml +++ b/.github/workflows/worker.yml @@ -36,7 +36,7 @@ jobs: sparse-checkout-cone-mode: false - name: Install mise - uses: jdx/mise-action@5bb8f8c1911837cf42064e6490e7634fc842ee7e # v2.1.8 + uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 with: version: 2024.12.17 cache_save: ${{ github.ref_name == 'main' }} @@ -70,7 +70,7 @@ jobs: sparse-checkout-cone-mode: false - name: Install mise - uses: jdx/mise-action@5bb8f8c1911837cf42064e6490e7634fc842ee7e # v2.1.8 + uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 with: version: 2024.12.17 cache_save: ${{ github.ref_name == 'main' }} diff --git a/.github/workflows/wsl-docker.yml b/.github/workflows/wsl-docker.yml index 3c4d889c..01170c89 100644 --- a/.github/workflows/wsl-docker.yml +++ b/.github/workflows/wsl-docker.yml @@ -35,7 +35,7 @@ jobs: steps: - name: Install mise - uses: jdx/mise-action@5bb8f8c1911837cf42064e6490e7634fc842ee7e # v2.1.8 + uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 with: version: 2024.12.17 # cspell:ignore kellyjonbrazil From 6aa08e3f47c12c2f3a30b6593bee41be8d3e67e3 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 23 Dec 2024 20:45:07 +0000 Subject: [PATCH 36/75] chore(deps): update dependency mise to v2024.12.19 (#1172) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/autofix.yml | 2 +- .github/workflows/lint.yml | 6 +++--- .github/workflows/worker.yml | 4 ++-- .github/workflows/wsl-docker.yml | 2 +- mise.toml | 2 +- wsl/home/.config/mise/config.toml | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/autofix.yml b/.github/workflows/autofix.yml index 1c7bd613..1e12673f 100644 --- a/.github/workflows/autofix.yml +++ b/.github/workflows/autofix.yml @@ -28,7 +28,7 @@ jobs: - name: Install mise uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 with: - version: 2024.12.17 + version: 2024.12.19 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 6f25de24..ae2a89d4 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -34,7 +34,7 @@ jobs: - name: Install mise uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 with: - version: 2024.12.17 + version: 2024.12.19 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} @@ -70,7 +70,7 @@ jobs: - name: Install mise uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 with: - version: 2024.12.17 + version: 2024.12.19 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} @@ -95,7 +95,7 @@ jobs: - name: Install mise uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 with: - version: 2024.12.17 + version: 2024.12.19 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} diff --git a/.github/workflows/worker.yml b/.github/workflows/worker.yml index 88629c8c..749af13b 100644 --- a/.github/workflows/worker.yml +++ b/.github/workflows/worker.yml @@ -38,7 +38,7 @@ jobs: - name: Install mise uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 with: - version: 2024.12.17 + version: 2024.12.19 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} @@ -72,7 +72,7 @@ jobs: - name: Install mise uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 with: - version: 2024.12.17 + version: 2024.12.19 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} diff --git a/.github/workflows/wsl-docker.yml b/.github/workflows/wsl-docker.yml index 01170c89..d34e2f6f 100644 --- a/.github/workflows/wsl-docker.yml +++ b/.github/workflows/wsl-docker.yml @@ -37,7 +37,7 @@ jobs: - name: Install mise uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 with: - version: 2024.12.17 + version: 2024.12.19 # cspell:ignore kellyjonbrazil mise_toml: | [tools] diff --git a/mise.toml b/mise.toml index 080ff4e0..1789efe9 100644 --- a/mise.toml +++ b/mise.toml @@ -1,7 +1,7 @@ # ref: https://mise.jdx.dev/configuration.html #:schema https://mise.jdx.dev/schema/mise.json -min_version = "2024.12.17" +min_version = "2024.12.19" [tools] bun = "1.1.42" diff --git a/wsl/home/.config/mise/config.toml b/wsl/home/.config/mise/config.toml index 78c64a2c..374149df 100644 --- a/wsl/home/.config/mise/config.toml +++ b/wsl/home/.config/mise/config.toml @@ -1,7 +1,7 @@ # ref: https://mise.jdx.dev/configuration.html#global-config-config-mise-config-toml #:schema https://mise.jdx.dev/schema/mise.json -min_version = "2024.12.17" +min_version = "2024.12.19" [env] # disable bat paging From d2a901901acd3004cf1760a8dce6b96c58641133 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 24 Dec 2024 04:05:08 +0000 Subject: [PATCH 37/75] chore(deps): update dependency renovate to v39.82.5 (#1174) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index 1789efe9..743361d4 100644 --- a/mise.toml +++ b/mise.toml @@ -25,7 +25,7 @@ shfmt = "3.10.0" shellcheck = "0.10.0" yamlfmt = "0.14.0" yamllint = "1.35.1" -"npm:renovate" = "39.82.3" +"npm:renovate" = "39.82.5" "npm:cspell" = "8.17.1" "cargo:lychee" = "0.18.0" typos = "1.28.4" From 87af92e0afeb62999e5be880aa4f1b5bc76a5256 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 24 Dec 2024 06:26:16 +0000 Subject: [PATCH 38/75] chore(deps): update dependency renovate to v39.82.6 (#1175) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index 743361d4..e711c623 100644 --- a/mise.toml +++ b/mise.toml @@ -25,7 +25,7 @@ shfmt = "3.10.0" shellcheck = "0.10.0" yamlfmt = "0.14.0" yamllint = "1.35.1" -"npm:renovate" = "39.82.5" +"npm:renovate" = "39.82.6" "npm:cspell" = "8.17.1" "cargo:lychee" = "0.18.0" typos = "1.28.4" From 665f3b0d9fed7e50adc9893d070e956fbb6929a0 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 24 Dec 2024 16:38:25 +0000 Subject: [PATCH 39/75] chore(deps): update dependency @cloudflare/workers-types to v4.20241224.0 (#1176) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- worker/bun.lock | 4 ++-- worker/package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/worker/bun.lock b/worker/bun.lock index 2399ecaf..f145dd63 100755 --- a/worker/bun.lock +++ b/worker/bun.lock @@ -8,7 +8,7 @@ }, "devDependencies": { "@cloudflare/vitest-pool-workers": "0.5.40", - "@cloudflare/workers-types": "4.20241218.0", + "@cloudflare/workers-types": "4.20241224.0", "@total-typescript/tsconfig": "1.0.4", "@tsconfig/bun": "1.0.7", "@tsconfig/strictest": "2.0.5", @@ -37,7 +37,7 @@ "@cloudflare/workerd-windows-64": ["@cloudflare/workerd-windows-64@1.20241218.0", "", { "os": "win32", "cpu": "x64" }, "sha512-tO1VjlvK3F6Yb2d1jgEy/QBYl//9Pyv3K0j+lq8Eu7qdfm0IgKwSRgDWLept84/qmNsQfausZ4JdNGxTf9xsxQ=="], - "@cloudflare/workers-types": ["@cloudflare/workers-types@4.20241218.0", "", {}, "sha512-Y0brjmJHcAZBXOPI7lU5hbiXglQWniA1kQjot2ata+HFimyjPPcz+4QWBRrmWcMPo0OadR2Vmac7WStDLpvz0w=="], + "@cloudflare/workers-types": ["@cloudflare/workers-types@4.20241224.0", "", {}, "sha512-1ZmFc8qqM7S/HUGmLplc4P8n8DoMqiJmc47r9Lr7VbuaotoqCXVljz09w1V1mc4K3pbFPgvqSy4XYStZ08HrlQ=="], "@cspotcode/source-map-support": ["@cspotcode/source-map-support@0.8.1", "", { "dependencies": { "@jridgewell/trace-mapping": "0.3.9" } }, "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw=="], diff --git a/worker/package.json b/worker/package.json index 85336994..90b6f9c5 100644 --- a/worker/package.json +++ b/worker/package.json @@ -11,7 +11,7 @@ }, "devDependencies": { "@cloudflare/vitest-pool-workers": "0.5.40", - "@cloudflare/workers-types": "4.20241218.0", + "@cloudflare/workers-types": "4.20241224.0", "@total-typescript/tsconfig": "1.0.4", "@tsconfig/bun": "1.0.7", "@tsconfig/strictest": "2.0.5", From 4ecb2f8486b0f9420406874afe5574da190ff45d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 24 Dec 2024 23:23:35 +0000 Subject: [PATCH 40/75] chore(deps): update dependency renovate to v39.82.7 (#1178) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index e711c623..36e87d8d 100644 --- a/mise.toml +++ b/mise.toml @@ -25,7 +25,7 @@ shfmt = "3.10.0" shellcheck = "0.10.0" yamlfmt = "0.14.0" yamllint = "1.35.1" -"npm:renovate" = "39.82.6" +"npm:renovate" = "39.82.7" "npm:cspell" = "8.17.1" "cargo:lychee" = "0.18.0" typos = "1.28.4" From 02a7c33f4447c5267dce28d530c100d9b0c8ba2c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 25 Dec 2024 10:49:12 +0000 Subject: [PATCH 41/75] chore(deps): update dependency suzuki-shunsuke/ghalint to v1.2.0 (#1177) * chore(deps): update dependency suzuki-shunsuke/ghalint to v1.2.0 * ci(.github/workflows/): set persist-credentials to false --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Risu <79110363+risu729@users.noreply.github.com> --- .github/workflows/autofix.yml | 2 ++ .github/workflows/lint.yml | 5 +++++ .github/workflows/worker.yml | 2 ++ mise.toml | 2 +- 4 files changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/autofix.yml b/.github/workflows/autofix.yml index 1e12673f..b674f1fa 100644 --- a/.github/workflows/autofix.yml +++ b/.github/workflows/autofix.yml @@ -24,6 +24,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + with: + persist-credentials: false - name: Install mise uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index ae2a89d4..5ff30914 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -30,6 +30,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + with: + persist-credentials: false - name: Install mise uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 @@ -66,6 +68,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + with: + persist-credentials: false - name: Install mise uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 @@ -91,6 +95,7 @@ jobs: uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: fetch-depth: 0 # fetch all history for commitlint + persist-credentials: false - name: Install mise uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 diff --git a/.github/workflows/worker.yml b/.github/workflows/worker.yml index 749af13b..3ffd38e1 100644 --- a/.github/workflows/worker.yml +++ b/.github/workflows/worker.yml @@ -34,6 +34,7 @@ jobs: tasks/* worker/* sparse-checkout-cone-mode: false + persist-credentials: false - name: Install mise uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 @@ -68,6 +69,7 @@ jobs: tasks/* worker/* sparse-checkout-cone-mode: false + persist-credentials: false - name: Install mise uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 diff --git a/mise.toml b/mise.toml index 36e87d8d..1527c60c 100644 --- a/mise.toml +++ b/mise.toml @@ -13,7 +13,7 @@ uv = "0.5.11" "aqua:biomejs/biome" = "1.9.4" actionlint = "1.7.4" # renovate: extractVersion=^v(?.+) -"aqua:suzuki-shunsuke/ghalint" = "1.1.0" # cspell:ignore shunsuke +"aqua:suzuki-shunsuke/ghalint" = "1.2.0" # cspell:ignore shunsuke # renovate: extractVersion=^v(?.+) "aqua:suzuki-shunsuke/pinact" = "1.0.0" # cspell:ignore tamasfe From 672c02cccb5a875de4f76d909713f08b38e4fbd2 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 25 Dec 2024 13:43:16 +0000 Subject: [PATCH 42/75] chore(deps): update dependency renovate to v39.82.8 (#1179) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index 1527c60c..fd4c56b5 100644 --- a/mise.toml +++ b/mise.toml @@ -25,7 +25,7 @@ shfmt = "3.10.0" shellcheck = "0.10.0" yamlfmt = "0.14.0" yamllint = "1.35.1" -"npm:renovate" = "39.82.7" +"npm:renovate" = "39.82.8" "npm:cspell" = "8.17.1" "cargo:lychee" = "0.18.0" typos = "1.28.4" From 168d9b1e3cf8ee6d67849e48a195969342be0a26 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 25 Dec 2024 16:23:55 +0000 Subject: [PATCH 43/75] chore(deps): update dependency renovate to v39.82.9 (#1180) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index fd4c56b5..136cb1b0 100644 --- a/mise.toml +++ b/mise.toml @@ -25,7 +25,7 @@ shfmt = "3.10.0" shellcheck = "0.10.0" yamlfmt = "0.14.0" yamllint = "1.35.1" -"npm:renovate" = "39.82.8" +"npm:renovate" = "39.82.9" "npm:cspell" = "8.17.1" "cargo:lychee" = "0.18.0" typos = "1.28.4" From 83831b370b4c8278c0d7acfb4d796676e6dc2840 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 26 Dec 2024 00:58:18 +0000 Subject: [PATCH 44/75] chore(deps): update dependency mise to v2024.12.20 (#1181) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/autofix.yml | 2 +- .github/workflows/lint.yml | 6 +++--- .github/workflows/worker.yml | 4 ++-- .github/workflows/wsl-docker.yml | 2 +- mise.toml | 2 +- wsl/home/.config/mise/config.toml | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/autofix.yml b/.github/workflows/autofix.yml index b674f1fa..85a7aa8f 100644 --- a/.github/workflows/autofix.yml +++ b/.github/workflows/autofix.yml @@ -30,7 +30,7 @@ jobs: - name: Install mise uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 with: - version: 2024.12.19 + version: 2024.12.20 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 5ff30914..d336628a 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -36,7 +36,7 @@ jobs: - name: Install mise uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 with: - version: 2024.12.19 + version: 2024.12.20 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} @@ -74,7 +74,7 @@ jobs: - name: Install mise uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 with: - version: 2024.12.19 + version: 2024.12.20 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} @@ -100,7 +100,7 @@ jobs: - name: Install mise uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 with: - version: 2024.12.19 + version: 2024.12.20 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} diff --git a/.github/workflows/worker.yml b/.github/workflows/worker.yml index 3ffd38e1..3fa07387 100644 --- a/.github/workflows/worker.yml +++ b/.github/workflows/worker.yml @@ -39,7 +39,7 @@ jobs: - name: Install mise uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 with: - version: 2024.12.19 + version: 2024.12.20 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} @@ -74,7 +74,7 @@ jobs: - name: Install mise uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 with: - version: 2024.12.19 + version: 2024.12.20 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} diff --git a/.github/workflows/wsl-docker.yml b/.github/workflows/wsl-docker.yml index d34e2f6f..d3ac634f 100644 --- a/.github/workflows/wsl-docker.yml +++ b/.github/workflows/wsl-docker.yml @@ -37,7 +37,7 @@ jobs: - name: Install mise uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 with: - version: 2024.12.19 + version: 2024.12.20 # cspell:ignore kellyjonbrazil mise_toml: | [tools] diff --git a/mise.toml b/mise.toml index 136cb1b0..d5c21389 100644 --- a/mise.toml +++ b/mise.toml @@ -1,7 +1,7 @@ # ref: https://mise.jdx.dev/configuration.html #:schema https://mise.jdx.dev/schema/mise.json -min_version = "2024.12.19" +min_version = "2024.12.20" [tools] bun = "1.1.42" diff --git a/wsl/home/.config/mise/config.toml b/wsl/home/.config/mise/config.toml index 374149df..ce68f1b9 100644 --- a/wsl/home/.config/mise/config.toml +++ b/wsl/home/.config/mise/config.toml @@ -1,7 +1,7 @@ # ref: https://mise.jdx.dev/configuration.html#global-config-config-mise-config-toml #:schema https://mise.jdx.dev/schema/mise.json -min_version = "2024.12.19" +min_version = "2024.12.20" [env] # disable bat paging From d14ad4e4b6bf5b93b597438940e479226cdbae1d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 26 Dec 2024 04:28:24 +0000 Subject: [PATCH 45/75] chore(deps): update dependency markdownlint-cli2 to v0.17.0 (#1182) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index d5c21389..22e85182 100644 --- a/mise.toml +++ b/mise.toml @@ -20,7 +20,7 @@ actionlint = "1.7.4" # renovate: packageName=tamasfe/taplo taplo = "0.9.3" "npm:prettier" = "3.4.2" -markdownlint-cli2 = "0.16.0" +markdownlint-cli2 = "0.17.0" shfmt = "3.10.0" shellcheck = "0.10.0" yamlfmt = "0.14.0" From 704a8ace192e4f6265b309efa56492c0895fe0ae Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 26 Dec 2024 22:47:28 +0000 Subject: [PATCH 46/75] chore(deps): update dependency uv to v0.5.12 (#1184) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index 22e85182..7dd5dc46 100644 --- a/mise.toml +++ b/mise.toml @@ -9,7 +9,7 @@ node = "23.5.0" # cspell:ignore datasource binstall # renovate: datasource=crate cargo-binstall = "1.10.11" -uv = "0.5.11" +uv = "0.5.12" "aqua:biomejs/biome" = "1.9.4" actionlint = "1.7.4" # renovate: extractVersion=^v(?.+) From 0e42a8dfc54343df7ae0328f0ae387d7c65bdf15 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 26 Dec 2024 22:47:40 +0000 Subject: [PATCH 47/75] chore(deps): update dependency renovate to v39.83.2 (#1183) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index 7dd5dc46..6f711409 100644 --- a/mise.toml +++ b/mise.toml @@ -25,7 +25,7 @@ shfmt = "3.10.0" shellcheck = "0.10.0" yamlfmt = "0.14.0" yamllint = "1.35.1" -"npm:renovate" = "39.82.9" +"npm:renovate" = "39.83.2" "npm:cspell" = "8.17.1" "cargo:lychee" = "0.18.0" typos = "1.28.4" From e5f3e9baa71cf479e6a04744e10f3dca677b65fa Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 27 Dec 2024 04:40:52 +0000 Subject: [PATCH 48/75] chore(deps): update dependency renovate to v39.83.3 (#1185) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index 6f711409..1a64df05 100644 --- a/mise.toml +++ b/mise.toml @@ -25,7 +25,7 @@ shfmt = "3.10.0" shellcheck = "0.10.0" yamlfmt = "0.14.0" yamllint = "1.35.1" -"npm:renovate" = "39.83.2" +"npm:renovate" = "39.83.3" "npm:cspell" = "8.17.1" "cargo:lychee" = "0.18.0" typos = "1.28.4" From 01522822cd56f6b09c4b13668232dcfd6083e069 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 27 Dec 2024 15:57:35 +0000 Subject: [PATCH 49/75] chore(deps): update dependency suzuki-shunsuke/pinact to v1.1.0 (#1187) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index 1a64df05..a6be199b 100644 --- a/mise.toml +++ b/mise.toml @@ -15,7 +15,7 @@ actionlint = "1.7.4" # renovate: extractVersion=^v(?.+) "aqua:suzuki-shunsuke/ghalint" = "1.2.0" # cspell:ignore shunsuke # renovate: extractVersion=^v(?.+) -"aqua:suzuki-shunsuke/pinact" = "1.0.0" +"aqua:suzuki-shunsuke/pinact" = "1.1.0" # cspell:ignore tamasfe # renovate: packageName=tamasfe/taplo taplo = "0.9.3" From e2a98b41f603b1734c907e73bd38ea4ed1141d3c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 27 Dec 2024 15:57:39 +0000 Subject: [PATCH 50/75] chore(deps): update dependency uv to v0.5.13 (#1186) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index a6be199b..1a4e090e 100644 --- a/mise.toml +++ b/mise.toml @@ -9,7 +9,7 @@ node = "23.5.0" # cspell:ignore datasource binstall # renovate: datasource=crate cargo-binstall = "1.10.11" -uv = "0.5.12" +uv = "0.5.13" "aqua:biomejs/biome" = "1.9.4" actionlint = "1.7.4" # renovate: extractVersion=^v(?.+) From 05277511ff327af85241242d9e34ecbeec079fa3 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 27 Dec 2024 22:25:25 +0000 Subject: [PATCH 51/75] chore(deps): update dependency mise to v2024.12.21 (#1188) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/autofix.yml | 2 +- .github/workflows/lint.yml | 6 +++--- .github/workflows/worker.yml | 4 ++-- .github/workflows/wsl-docker.yml | 2 +- mise.toml | 2 +- wsl/home/.config/mise/config.toml | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/autofix.yml b/.github/workflows/autofix.yml index 85a7aa8f..ce334d15 100644 --- a/.github/workflows/autofix.yml +++ b/.github/workflows/autofix.yml @@ -30,7 +30,7 @@ jobs: - name: Install mise uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 with: - version: 2024.12.20 + version: 2024.12.21 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index d336628a..7526d685 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -36,7 +36,7 @@ jobs: - name: Install mise uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 with: - version: 2024.12.20 + version: 2024.12.21 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} @@ -74,7 +74,7 @@ jobs: - name: Install mise uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 with: - version: 2024.12.20 + version: 2024.12.21 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} @@ -100,7 +100,7 @@ jobs: - name: Install mise uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 with: - version: 2024.12.20 + version: 2024.12.21 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} diff --git a/.github/workflows/worker.yml b/.github/workflows/worker.yml index 3fa07387..11d66725 100644 --- a/.github/workflows/worker.yml +++ b/.github/workflows/worker.yml @@ -39,7 +39,7 @@ jobs: - name: Install mise uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 with: - version: 2024.12.20 + version: 2024.12.21 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} @@ -74,7 +74,7 @@ jobs: - name: Install mise uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 with: - version: 2024.12.20 + version: 2024.12.21 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} diff --git a/.github/workflows/wsl-docker.yml b/.github/workflows/wsl-docker.yml index d3ac634f..ff79facd 100644 --- a/.github/workflows/wsl-docker.yml +++ b/.github/workflows/wsl-docker.yml @@ -37,7 +37,7 @@ jobs: - name: Install mise uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 with: - version: 2024.12.20 + version: 2024.12.21 # cspell:ignore kellyjonbrazil mise_toml: | [tools] diff --git a/mise.toml b/mise.toml index 1a4e090e..4a56de1b 100644 --- a/mise.toml +++ b/mise.toml @@ -1,7 +1,7 @@ # ref: https://mise.jdx.dev/configuration.html #:schema https://mise.jdx.dev/schema/mise.json -min_version = "2024.12.20" +min_version = "2024.12.21" [tools] bun = "1.1.42" diff --git a/wsl/home/.config/mise/config.toml b/wsl/home/.config/mise/config.toml index ce68f1b9..eb6a2365 100644 --- a/wsl/home/.config/mise/config.toml +++ b/wsl/home/.config/mise/config.toml @@ -1,7 +1,7 @@ # ref: https://mise.jdx.dev/configuration.html#global-config-config-mise-config-toml #:schema https://mise.jdx.dev/schema/mise.json -min_version = "2024.12.20" +min_version = "2024.12.21" [env] # disable bat paging From d59236541e873f3be77357a648f1ef9f44178aec Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 27 Dec 2024 22:25:29 +0000 Subject: [PATCH 52/75] chore(deps): update dependency renovate to v39.83.4 (#1189) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index 4a56de1b..369a18b7 100644 --- a/mise.toml +++ b/mise.toml @@ -25,7 +25,7 @@ shfmt = "3.10.0" shellcheck = "0.10.0" yamlfmt = "0.14.0" yamllint = "1.35.1" -"npm:renovate" = "39.83.3" +"npm:renovate" = "39.83.4" "npm:cspell" = "8.17.1" "cargo:lychee" = "0.18.0" typos = "1.28.4" From ad8b3ad7acdd3b82687eda7508f5ca4aff9d7b2a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 28 Dec 2024 03:32:45 +0000 Subject: [PATCH 53/75] chore(deps): update dependency renovate to v39.83.5 (#1190) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index 369a18b7..2256b75e 100644 --- a/mise.toml +++ b/mise.toml @@ -25,7 +25,7 @@ shfmt = "3.10.0" shellcheck = "0.10.0" yamlfmt = "0.14.0" yamllint = "1.35.1" -"npm:renovate" = "39.83.4" +"npm:renovate" = "39.83.5" "npm:cspell" = "8.17.1" "cargo:lychee" = "0.18.0" typos = "1.28.4" From 54073090dc50575aa00e339a9804c8c423df08e5 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 28 Dec 2024 10:39:17 +0000 Subject: [PATCH 54/75] chore(deps): update dependency suzuki-shunsuke/pinact to v1.1.1 (#1192) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index 2256b75e..78234516 100644 --- a/mise.toml +++ b/mise.toml @@ -15,7 +15,7 @@ actionlint = "1.7.4" # renovate: extractVersion=^v(?.+) "aqua:suzuki-shunsuke/ghalint" = "1.2.0" # cspell:ignore shunsuke # renovate: extractVersion=^v(?.+) -"aqua:suzuki-shunsuke/pinact" = "1.1.0" +"aqua:suzuki-shunsuke/pinact" = "1.1.1" # cspell:ignore tamasfe # renovate: packageName=tamasfe/taplo taplo = "0.9.3" From d53446bdf02d6b7e8515013a6f6ca905b7995ce1 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 28 Dec 2024 10:39:23 +0000 Subject: [PATCH 55/75] chore(deps): update dependency renovate to v39.84.0 (#1193) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index 78234516..c3460d44 100644 --- a/mise.toml +++ b/mise.toml @@ -25,7 +25,7 @@ shfmt = "3.10.0" shellcheck = "0.10.0" yamlfmt = "0.14.0" yamllint = "1.35.1" -"npm:renovate" = "39.83.5" +"npm:renovate" = "39.84.0" "npm:cspell" = "8.17.1" "cargo:lychee" = "0.18.0" typos = "1.28.4" From f97c79d874be08a3f0aba5f64d33f0e16ccd50a9 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 28 Dec 2024 10:39:34 +0000 Subject: [PATCH 56/75] chore(deps): update dependency hono to v4.6.15 (#1191) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- worker/bun.lock | 4 ++-- worker/package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/worker/bun.lock b/worker/bun.lock index f145dd63..0627577c 100755 --- a/worker/bun.lock +++ b/worker/bun.lock @@ -3,7 +3,7 @@ "workspaces": { "": { "dependencies": { - "hono": "4.6.14", + "hono": "4.6.15", "zod": "3.24.1", }, "devDependencies": { @@ -243,7 +243,7 @@ "hasown": ["hasown@2.0.2", "", { "dependencies": { "function-bind": "^1.1.2" } }, "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ=="], - "hono": ["hono@4.6.14", "", {}, "sha512-j4VkyUp2xazGJ8eCCLN1Vm/bxdvm/j5ZuU9AIjLu9vapn2M44p9L3Ktr9Vnb2RN2QtcR/wVjZVMlT5k7GJQgPw=="], + "hono": ["hono@4.6.15", "", {}, "sha512-OiQwvAOAaI2JrABBH69z5rsctHDzFzIKJge0nYXgtzGJ0KftwLWcBXm1upJC23/omNRtnqM0gjRMbtXshPdqhQ=="], "is-core-module": ["is-core-module@2.16.0", "", { "dependencies": { "hasown": "^2.0.2" } }, "sha512-urTSINYfAYgcbLb0yDQ6egFm6h3Mo1DcF9EkyXSRjjzdHbsulg01qhwWuXdOoUBuTkbQ80KDboXa0vFJ+BDH+g=="], diff --git a/worker/package.json b/worker/package.json index 90b6f9c5..11826e8a 100644 --- a/worker/package.json +++ b/worker/package.json @@ -3,7 +3,7 @@ "name": "@risu729/dotfiles-worker", "type": "module", "dependencies": { - "hono": "4.6.14", + "hono": "4.6.15", "zod": "3.24.1" }, "scripts": { From 9766a1cdd5f4a03d86d4a98e58d287a58cf7f279 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 28 Dec 2024 14:23:56 +0000 Subject: [PATCH 57/75] chore(deps): update dependency actionlint to v1.7.5 (#1194) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index c3460d44..23fad7fb 100644 --- a/mise.toml +++ b/mise.toml @@ -11,7 +11,7 @@ node = "23.5.0" cargo-binstall = "1.10.11" uv = "0.5.13" "aqua:biomejs/biome" = "1.9.4" -actionlint = "1.7.4" +actionlint = "1.7.5" # renovate: extractVersion=^v(?.+) "aqua:suzuki-shunsuke/ghalint" = "1.2.0" # cspell:ignore shunsuke # renovate: extractVersion=^v(?.+) From fd37573f8e5465bebacdd5718539322fb436b5ec Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 29 Dec 2024 04:51:55 +0000 Subject: [PATCH 58/75] chore(deps): update dependency suzuki-shunsuke/pinact to v1.1.2 (#1195) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index 23fad7fb..a0e3290f 100644 --- a/mise.toml +++ b/mise.toml @@ -15,7 +15,7 @@ actionlint = "1.7.5" # renovate: extractVersion=^v(?.+) "aqua:suzuki-shunsuke/ghalint" = "1.2.0" # cspell:ignore shunsuke # renovate: extractVersion=^v(?.+) -"aqua:suzuki-shunsuke/pinact" = "1.1.1" +"aqua:suzuki-shunsuke/pinact" = "1.1.2" # cspell:ignore tamasfe # renovate: packageName=tamasfe/taplo taplo = "0.9.3" From c47a8bd5a8747c3aacbfa59a7a155c8ae78b57a0 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 29 Dec 2024 09:41:15 +0000 Subject: [PATCH 59/75] chore(deps): update dependency renovate to v39.85.0 (#1196) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index a0e3290f..e2d1b888 100644 --- a/mise.toml +++ b/mise.toml @@ -25,7 +25,7 @@ shfmt = "3.10.0" shellcheck = "0.10.0" yamlfmt = "0.14.0" yamllint = "1.35.1" -"npm:renovate" = "39.84.0" +"npm:renovate" = "39.85.0" "npm:cspell" = "8.17.1" "cargo:lychee" = "0.18.0" typos = "1.28.4" From ae9d574fd7f0e796d5b3119704199bf2d6ce01c1 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 29 Dec 2024 19:20:17 +0000 Subject: [PATCH 60/75] chore(deps): update dependency renovate to v39.86.0 (#1197) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index e2d1b888..a58693bb 100644 --- a/mise.toml +++ b/mise.toml @@ -25,7 +25,7 @@ shfmt = "3.10.0" shellcheck = "0.10.0" yamlfmt = "0.14.0" yamllint = "1.35.1" -"npm:renovate" = "39.85.0" +"npm:renovate" = "39.86.0" "npm:cspell" = "8.17.1" "cargo:lychee" = "0.18.0" typos = "1.28.4" From c01ac6fbad55893192ab35f111dfca145aa210ed Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 30 Dec 2024 04:44:18 +0000 Subject: [PATCH 61/75] chore(deps): update dependency mise to v2024.12.22 (#1198) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/autofix.yml | 2 +- .github/workflows/lint.yml | 6 +++--- .github/workflows/worker.yml | 4 ++-- .github/workflows/wsl-docker.yml | 2 +- mise.toml | 2 +- wsl/home/.config/mise/config.toml | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/autofix.yml b/.github/workflows/autofix.yml index ce334d15..fa88a0f3 100644 --- a/.github/workflows/autofix.yml +++ b/.github/workflows/autofix.yml @@ -30,7 +30,7 @@ jobs: - name: Install mise uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 with: - version: 2024.12.21 + version: 2024.12.22 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 7526d685..44b81088 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -36,7 +36,7 @@ jobs: - name: Install mise uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 with: - version: 2024.12.21 + version: 2024.12.22 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} @@ -74,7 +74,7 @@ jobs: - name: Install mise uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 with: - version: 2024.12.21 + version: 2024.12.22 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} @@ -100,7 +100,7 @@ jobs: - name: Install mise uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 with: - version: 2024.12.21 + version: 2024.12.22 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} diff --git a/.github/workflows/worker.yml b/.github/workflows/worker.yml index 11d66725..75ec5e4f 100644 --- a/.github/workflows/worker.yml +++ b/.github/workflows/worker.yml @@ -39,7 +39,7 @@ jobs: - name: Install mise uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 with: - version: 2024.12.21 + version: 2024.12.22 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} @@ -74,7 +74,7 @@ jobs: - name: Install mise uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 with: - version: 2024.12.21 + version: 2024.12.22 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} diff --git a/.github/workflows/wsl-docker.yml b/.github/workflows/wsl-docker.yml index ff79facd..7c4a0b4f 100644 --- a/.github/workflows/wsl-docker.yml +++ b/.github/workflows/wsl-docker.yml @@ -37,7 +37,7 @@ jobs: - name: Install mise uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 with: - version: 2024.12.21 + version: 2024.12.22 # cspell:ignore kellyjonbrazil mise_toml: | [tools] diff --git a/mise.toml b/mise.toml index a58693bb..7762aa69 100644 --- a/mise.toml +++ b/mise.toml @@ -1,7 +1,7 @@ # ref: https://mise.jdx.dev/configuration.html #:schema https://mise.jdx.dev/schema/mise.json -min_version = "2024.12.21" +min_version = "2024.12.22" [tools] bun = "1.1.42" diff --git a/wsl/home/.config/mise/config.toml b/wsl/home/.config/mise/config.toml index eb6a2365..8bc2575d 100644 --- a/wsl/home/.config/mise/config.toml +++ b/wsl/home/.config/mise/config.toml @@ -1,7 +1,7 @@ # ref: https://mise.jdx.dev/configuration.html#global-config-config-mise-config-toml #:schema https://mise.jdx.dev/schema/mise.json -min_version = "2024.12.21" +min_version = "2024.12.22" [env] # disable bat paging From ccd0b6133c52ffdf1cd190e9b7bca4c19d26fb80 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 30 Dec 2024 04:44:38 +0000 Subject: [PATCH 62/75] chore(deps): update dependency suzuki-shunsuke/ghalint to v1.2.1 (#1199) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index 7762aa69..9063a272 100644 --- a/mise.toml +++ b/mise.toml @@ -13,7 +13,7 @@ uv = "0.5.13" "aqua:biomejs/biome" = "1.9.4" actionlint = "1.7.5" # renovate: extractVersion=^v(?.+) -"aqua:suzuki-shunsuke/ghalint" = "1.2.0" # cspell:ignore shunsuke +"aqua:suzuki-shunsuke/ghalint" = "1.2.1" # cspell:ignore shunsuke # renovate: extractVersion=^v(?.+) "aqua:suzuki-shunsuke/pinact" = "1.1.2" # cspell:ignore tamasfe From d92c7b3764b5b508635729b381b88d2f6415f75b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 30 Dec 2024 13:45:22 +0000 Subject: [PATCH 63/75] chore(deps): update dependency renovate to v39.86.1 (#1200) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index 9063a272..24923208 100644 --- a/mise.toml +++ b/mise.toml @@ -25,7 +25,7 @@ shfmt = "3.10.0" shellcheck = "0.10.0" yamlfmt = "0.14.0" yamllint = "1.35.1" -"npm:renovate" = "39.86.0" +"npm:renovate" = "39.86.1" "npm:cspell" = "8.17.1" "cargo:lychee" = "0.18.0" typos = "1.28.4" From 306099a4f67bde6e621e5c5ef297f689df26ace9 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 30 Dec 2024 19:39:23 +0000 Subject: [PATCH 64/75] ci(deps): update jdx/mise-action action to v2.1.11 (#1201) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/autofix.yml | 2 +- .github/workflows/lint.yml | 6 +++--- .github/workflows/worker.yml | 4 ++-- .github/workflows/wsl-docker.yml | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/autofix.yml b/.github/workflows/autofix.yml index fa88a0f3..791d6cff 100644 --- a/.github/workflows/autofix.yml +++ b/.github/workflows/autofix.yml @@ -28,7 +28,7 @@ jobs: persist-credentials: false - name: Install mise - uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 + uses: jdx/mise-action@5083fe46898c414b2475087cc79da59e7da859e8 # v2.1.11 with: version: 2024.12.22 cache_save: ${{ github.ref_name == 'main' }} diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 44b81088..0de77785 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -34,7 +34,7 @@ jobs: persist-credentials: false - name: Install mise - uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 + uses: jdx/mise-action@5083fe46898c414b2475087cc79da59e7da859e8 # v2.1.11 with: version: 2024.12.22 cache_save: ${{ github.ref_name == 'main' }} @@ -72,7 +72,7 @@ jobs: persist-credentials: false - name: Install mise - uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 + uses: jdx/mise-action@5083fe46898c414b2475087cc79da59e7da859e8 # v2.1.11 with: version: 2024.12.22 cache_save: ${{ github.ref_name == 'main' }} @@ -98,7 +98,7 @@ jobs: persist-credentials: false - name: Install mise - uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 + uses: jdx/mise-action@5083fe46898c414b2475087cc79da59e7da859e8 # v2.1.11 with: version: 2024.12.22 cache_save: ${{ github.ref_name == 'main' }} diff --git a/.github/workflows/worker.yml b/.github/workflows/worker.yml index 75ec5e4f..9b0c058d 100644 --- a/.github/workflows/worker.yml +++ b/.github/workflows/worker.yml @@ -37,7 +37,7 @@ jobs: persist-credentials: false - name: Install mise - uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 + uses: jdx/mise-action@5083fe46898c414b2475087cc79da59e7da859e8 # v2.1.11 with: version: 2024.12.22 cache_save: ${{ github.ref_name == 'main' }} @@ -72,7 +72,7 @@ jobs: persist-credentials: false - name: Install mise - uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 + uses: jdx/mise-action@5083fe46898c414b2475087cc79da59e7da859e8 # v2.1.11 with: version: 2024.12.22 cache_save: ${{ github.ref_name == 'main' }} diff --git a/.github/workflows/wsl-docker.yml b/.github/workflows/wsl-docker.yml index 7c4a0b4f..550ccdeb 100644 --- a/.github/workflows/wsl-docker.yml +++ b/.github/workflows/wsl-docker.yml @@ -35,7 +35,7 @@ jobs: steps: - name: Install mise - uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 + uses: jdx/mise-action@5083fe46898c414b2475087cc79da59e7da859e8 # v2.1.11 with: version: 2024.12.22 # cspell:ignore kellyjonbrazil From 6b2a371bf994860d410c4f4a6a0ddc91d093deb6 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 31 Dec 2024 00:58:00 +0000 Subject: [PATCH 65/75] chore(deps): update dependency mise to v2024.12.23 (#1202) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/autofix.yml | 2 +- .github/workflows/lint.yml | 6 +++--- .github/workflows/worker.yml | 4 ++-- .github/workflows/wsl-docker.yml | 2 +- mise.toml | 2 +- wsl/home/.config/mise/config.toml | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/autofix.yml b/.github/workflows/autofix.yml index 791d6cff..cb0de2fb 100644 --- a/.github/workflows/autofix.yml +++ b/.github/workflows/autofix.yml @@ -30,7 +30,7 @@ jobs: - name: Install mise uses: jdx/mise-action@5083fe46898c414b2475087cc79da59e7da859e8 # v2.1.11 with: - version: 2024.12.22 + version: 2024.12.23 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 0de77785..721b508d 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -36,7 +36,7 @@ jobs: - name: Install mise uses: jdx/mise-action@5083fe46898c414b2475087cc79da59e7da859e8 # v2.1.11 with: - version: 2024.12.22 + version: 2024.12.23 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} @@ -74,7 +74,7 @@ jobs: - name: Install mise uses: jdx/mise-action@5083fe46898c414b2475087cc79da59e7da859e8 # v2.1.11 with: - version: 2024.12.22 + version: 2024.12.23 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} @@ -100,7 +100,7 @@ jobs: - name: Install mise uses: jdx/mise-action@5083fe46898c414b2475087cc79da59e7da859e8 # v2.1.11 with: - version: 2024.12.22 + version: 2024.12.23 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} diff --git a/.github/workflows/worker.yml b/.github/workflows/worker.yml index 9b0c058d..ea4b5f48 100644 --- a/.github/workflows/worker.yml +++ b/.github/workflows/worker.yml @@ -39,7 +39,7 @@ jobs: - name: Install mise uses: jdx/mise-action@5083fe46898c414b2475087cc79da59e7da859e8 # v2.1.11 with: - version: 2024.12.22 + version: 2024.12.23 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} @@ -74,7 +74,7 @@ jobs: - name: Install mise uses: jdx/mise-action@5083fe46898c414b2475087cc79da59e7da859e8 # v2.1.11 with: - version: 2024.12.22 + version: 2024.12.23 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} diff --git a/.github/workflows/wsl-docker.yml b/.github/workflows/wsl-docker.yml index 550ccdeb..8be581cc 100644 --- a/.github/workflows/wsl-docker.yml +++ b/.github/workflows/wsl-docker.yml @@ -37,7 +37,7 @@ jobs: - name: Install mise uses: jdx/mise-action@5083fe46898c414b2475087cc79da59e7da859e8 # v2.1.11 with: - version: 2024.12.22 + version: 2024.12.23 # cspell:ignore kellyjonbrazil mise_toml: | [tools] diff --git a/mise.toml b/mise.toml index 24923208..a4c84162 100644 --- a/mise.toml +++ b/mise.toml @@ -1,7 +1,7 @@ # ref: https://mise.jdx.dev/configuration.html #:schema https://mise.jdx.dev/schema/mise.json -min_version = "2024.12.22" +min_version = "2024.12.23" [tools] bun = "1.1.42" diff --git a/wsl/home/.config/mise/config.toml b/wsl/home/.config/mise/config.toml index 8bc2575d..80dece5e 100644 --- a/wsl/home/.config/mise/config.toml +++ b/wsl/home/.config/mise/config.toml @@ -1,7 +1,7 @@ # ref: https://mise.jdx.dev/configuration.html#global-config-config-mise-config-toml #:schema https://mise.jdx.dev/schema/mise.json -min_version = "2024.12.22" +min_version = "2024.12.23" [env] # disable bat paging From aae9b7a61c505e1b2b9591276bb162b5d0e94e69 Mon Sep 17 00:00:00 2001 From: Risu <79110363+risu729@users.noreply.github.com> Date: Tue, 31 Dec 2024 13:49:43 +0900 Subject: [PATCH 66/75] feat(github/rulesets.json): save the default rulesets (#1203) * feat(github/rulesets.json): save the default rulesets * style: apply automated fixes --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> --- github/rulesets.json | 65 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 github/rulesets.json diff --git a/github/rulesets.json b/github/rulesets.json new file mode 100644 index 00000000..fbc76542 --- /dev/null +++ b/github/rulesets.json @@ -0,0 +1,65 @@ +{ + "name": "main", + "target": "branch", + "enforcement": "active", + "conditions": { + "ref_name": { + "exclude": [], + "include": ["~DEFAULT_BRANCH"] + } + }, + "rules": [ + { + "type": "deletion" + }, + { + "type": "non_fast_forward" + }, + { + "type": "creation" + }, + { + "type": "required_linear_history" + }, + { + "type": "pull_request", + "parameters": { + "required_approving_review_count": 0, + "dismiss_stale_reviews_on_push": true, + "require_code_owner_review": false, + "require_last_push_approval": false, + "required_review_thread_resolution": false, + "automatic_copilot_code_review_enabled": false, + "allowed_merge_methods": ["squash"] + } + }, + { + "type": "required_status_checks", + "parameters": { + "strict_required_status_checks_policy": false, + "do_not_enforce_on_create": false, + "required_status_checks": [ + { + "context": "merge-gatekeeper" + } + ] + } + }, + { + "type": "required_signatures" + }, + { + "type": "code_scanning", + "parameters": { + "code_scanning_tools": [ + { + "tool": "CodeQL", + "security_alerts_threshold": "all", + "alerts_threshold": "all" + } + ] + } + } + ], + "bypass_actors": [] +} From 410a68cab2831af294b5845ac4c1d0262c6225b2 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 31 Dec 2024 04:52:18 +0000 Subject: [PATCH 67/75] chore(deps): update dependency mise to v2024.12.24 (#1204) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/autofix.yml | 2 +- .github/workflows/lint.yml | 6 +++--- .github/workflows/worker.yml | 4 ++-- .github/workflows/wsl-docker.yml | 2 +- mise.toml | 2 +- wsl/home/.config/mise/config.toml | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/autofix.yml b/.github/workflows/autofix.yml index cb0de2fb..2f8f7ec9 100644 --- a/.github/workflows/autofix.yml +++ b/.github/workflows/autofix.yml @@ -30,7 +30,7 @@ jobs: - name: Install mise uses: jdx/mise-action@5083fe46898c414b2475087cc79da59e7da859e8 # v2.1.11 with: - version: 2024.12.23 + version: 2024.12.24 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 721b508d..d6736e2a 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -36,7 +36,7 @@ jobs: - name: Install mise uses: jdx/mise-action@5083fe46898c414b2475087cc79da59e7da859e8 # v2.1.11 with: - version: 2024.12.23 + version: 2024.12.24 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} @@ -74,7 +74,7 @@ jobs: - name: Install mise uses: jdx/mise-action@5083fe46898c414b2475087cc79da59e7da859e8 # v2.1.11 with: - version: 2024.12.23 + version: 2024.12.24 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} @@ -100,7 +100,7 @@ jobs: - name: Install mise uses: jdx/mise-action@5083fe46898c414b2475087cc79da59e7da859e8 # v2.1.11 with: - version: 2024.12.23 + version: 2024.12.24 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} diff --git a/.github/workflows/worker.yml b/.github/workflows/worker.yml index ea4b5f48..cb27efb4 100644 --- a/.github/workflows/worker.yml +++ b/.github/workflows/worker.yml @@ -39,7 +39,7 @@ jobs: - name: Install mise uses: jdx/mise-action@5083fe46898c414b2475087cc79da59e7da859e8 # v2.1.11 with: - version: 2024.12.23 + version: 2024.12.24 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} @@ -74,7 +74,7 @@ jobs: - name: Install mise uses: jdx/mise-action@5083fe46898c414b2475087cc79da59e7da859e8 # v2.1.11 with: - version: 2024.12.23 + version: 2024.12.24 cache_save: ${{ github.ref_name == 'main' }} env: GITHUB_TOKEN: ${{ github.token }} diff --git a/.github/workflows/wsl-docker.yml b/.github/workflows/wsl-docker.yml index 8be581cc..82653f01 100644 --- a/.github/workflows/wsl-docker.yml +++ b/.github/workflows/wsl-docker.yml @@ -37,7 +37,7 @@ jobs: - name: Install mise uses: jdx/mise-action@5083fe46898c414b2475087cc79da59e7da859e8 # v2.1.11 with: - version: 2024.12.23 + version: 2024.12.24 # cspell:ignore kellyjonbrazil mise_toml: | [tools] diff --git a/mise.toml b/mise.toml index a4c84162..9e711684 100644 --- a/mise.toml +++ b/mise.toml @@ -1,7 +1,7 @@ # ref: https://mise.jdx.dev/configuration.html #:schema https://mise.jdx.dev/schema/mise.json -min_version = "2024.12.23" +min_version = "2024.12.24" [tools] bun = "1.1.42" diff --git a/wsl/home/.config/mise/config.toml b/wsl/home/.config/mise/config.toml index 80dece5e..1fa00684 100644 --- a/wsl/home/.config/mise/config.toml +++ b/wsl/home/.config/mise/config.toml @@ -1,7 +1,7 @@ # ref: https://mise.jdx.dev/configuration.html#global-config-config-mise-config-toml #:schema https://mise.jdx.dev/schema/mise.json -min_version = "2024.12.23" +min_version = "2024.12.24" [env] # disable bat paging From db26706ff037ceb8c43b8e9cde29d61befd4ba4f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 31 Dec 2024 07:30:00 +0000 Subject: [PATCH 68/75] chore(deps): update dependency markdownlint-cli2 to v0.17.1 (#1205) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index 9e711684..259b0d20 100644 --- a/mise.toml +++ b/mise.toml @@ -20,7 +20,7 @@ actionlint = "1.7.5" # renovate: packageName=tamasfe/taplo taplo = "0.9.3" "npm:prettier" = "3.4.2" -markdownlint-cli2 = "0.17.0" +markdownlint-cli2 = "0.17.1" shfmt = "3.10.0" shellcheck = "0.10.0" yamlfmt = "0.14.0" From 143c0287edffeb4e00eabcb6f209b9cedd48b7bb Mon Sep 17 00:00:00 2001 From: Risu <79110363+risu729@users.noreply.github.com> Date: Tue, 31 Dec 2024 17:04:14 +0900 Subject: [PATCH 69/75] chore(commitlint.config.ts): list questions to exclude (#1206) * chore(commitlint.config.ts): list questions to exclude * style: apply automated fixes --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> --- commitlint.config.ts | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/commitlint.config.ts b/commitlint.config.ts index d63ea8ac..a2589f3d 100644 --- a/commitlint.config.ts +++ b/commitlint.config.ts @@ -3,13 +3,15 @@ import conventionalConfig from "@commitlint/config-conventional"; import type { UserConfig } from "@commitlint/types"; -// exclude isBreaking, breaking, and breakingBody because this package does not have versioning -// exclude isIssueAffected, issuesBody, and issues because I link branches to issues using GitHub -const questions: string[] = [ - "type", - "scope", - "subject", - "body", +const excludeQuestions: string[] = [ + // exclude isBreaking, breaking, and breakingBody because this package does not have versioning + "isBreaking", + "breaking", + "breakingBody", + // exclude isIssueAffected, issuesBody, and issues because I link branches to issues using GitHub + "isIssueAffected", + "issuesBody", + "issues", ] satisfies (keyof typeof conventionalConfig.prompt.questions)[]; const commitlintConfig: UserConfig = { @@ -18,8 +20,8 @@ const commitlintConfig: UserConfig = { prompt: { ...conventionalConfig.prompt, questions: Object.fromEntries( - Object.entries(conventionalConfig.prompt.questions).filter(([key]) => - questions.includes(key), + Object.entries(conventionalConfig.prompt.questions).filter( + ([key]) => !excludeQuestions.includes(key), ), ), }, From 9ad7e11ea3568eda0b7af4dbd912e54d8a795db6 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 31 Dec 2024 10:31:11 +0000 Subject: [PATCH 70/75] chore(deps): update dependency @cloudflare/workers-types to v4.20241230.0 (#1207) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- worker/bun.lock | 4 ++-- worker/package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/worker/bun.lock b/worker/bun.lock index 0627577c..7c4e8446 100755 --- a/worker/bun.lock +++ b/worker/bun.lock @@ -8,7 +8,7 @@ }, "devDependencies": { "@cloudflare/vitest-pool-workers": "0.5.40", - "@cloudflare/workers-types": "4.20241224.0", + "@cloudflare/workers-types": "4.20241230.0", "@total-typescript/tsconfig": "1.0.4", "@tsconfig/bun": "1.0.7", "@tsconfig/strictest": "2.0.5", @@ -37,7 +37,7 @@ "@cloudflare/workerd-windows-64": ["@cloudflare/workerd-windows-64@1.20241218.0", "", { "os": "win32", "cpu": "x64" }, "sha512-tO1VjlvK3F6Yb2d1jgEy/QBYl//9Pyv3K0j+lq8Eu7qdfm0IgKwSRgDWLept84/qmNsQfausZ4JdNGxTf9xsxQ=="], - "@cloudflare/workers-types": ["@cloudflare/workers-types@4.20241224.0", "", {}, "sha512-1ZmFc8qqM7S/HUGmLplc4P8n8DoMqiJmc47r9Lr7VbuaotoqCXVljz09w1V1mc4K3pbFPgvqSy4XYStZ08HrlQ=="], + "@cloudflare/workers-types": ["@cloudflare/workers-types@4.20241230.0", "", {}, "sha512-dtLD4jY35Lb750cCVyO1i/eIfdZJg2Z0i+B1RYX6BVeRPlgaHx/H18ImKAkYmy0g09Ow8R2jZy3hIxMgXun0WQ=="], "@cspotcode/source-map-support": ["@cspotcode/source-map-support@0.8.1", "", { "dependencies": { "@jridgewell/trace-mapping": "0.3.9" } }, "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw=="], diff --git a/worker/package.json b/worker/package.json index 11826e8a..89109596 100644 --- a/worker/package.json +++ b/worker/package.json @@ -11,7 +11,7 @@ }, "devDependencies": { "@cloudflare/vitest-pool-workers": "0.5.40", - "@cloudflare/workers-types": "4.20241224.0", + "@cloudflare/workers-types": "4.20241230.0", "@total-typescript/tsconfig": "1.0.4", "@tsconfig/bun": "1.0.7", "@tsconfig/strictest": "2.0.5", From becf8d8bc11c6f249625334cf9733b5005146537 Mon Sep 17 00:00:00 2001 From: Risu <79110363+risu729@users.noreply.github.com> Date: Tue, 31 Dec 2024 23:23:23 +0900 Subject: [PATCH 71/75] chore(tasks.toml): remove unnecessary aliases (#1208) --- tasks.toml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tasks.toml b/tasks.toml index 40608fbc..37d24ad9 100644 --- a/tasks.toml +++ b/tasks.toml @@ -31,7 +31,6 @@ run = "bun run scripts/validate-json-schema.ts" ["check:actionlint"] run = "actionlint -color" -alias = "check:actionlint" # SC2312: check-extra-masked-returns # pipefail is set by shell: bash in GitHub Actions but cannot be detected by shellcheck # ref: https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#defaultsrunshell @@ -80,9 +79,8 @@ run = "yamlfmt {% if env.LINT is defined %}-lint{% endif %} ." ["check:yamllint"] run = "yamllint --strict ." -["lint:renovate"] +["check:renovate"] run = "renovate-config-validator --strict" -alias = "check:renovate" ["check:cspell"] run = "cspell {% if env.CI is undefined %}--cache{% endif %} \"**/*\"" From 514e21ed863168e220ac83e21000d655f2f7854d Mon Sep 17 00:00:00 2001 From: Risu <79110363+risu729@users.noreply.github.com> Date: Tue, 31 Dec 2024 23:52:46 +0900 Subject: [PATCH 72/75] chore(.gitattributes): remove bun.lockb (#1209) --- .gitattributes | 2 -- 1 file changed, 2 deletions(-) diff --git a/.gitattributes b/.gitattributes index 2b11ffdd..e4836ba8 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,4 +1,2 @@ * text=auto eol=lf -# cspell:ignore lockb -*.lockb binary diff=lockb .gitignore linguist-generated=true From 57b7b4961b97944583e117a78057cb56dab1afa0 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 31 Dec 2024 20:11:20 +0000 Subject: [PATCH 73/75] chore(deps): update dependency typos to v1.29.0 (#1211) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index 259b0d20..9e0e6655 100644 --- a/mise.toml +++ b/mise.toml @@ -28,7 +28,7 @@ yamllint = "1.35.1" "npm:renovate" = "39.86.1" "npm:cspell" = "8.17.1" "cargo:lychee" = "0.18.0" -typos = "1.28.4" +typos = "1.29.0" "npm:ignore-sync" = "8.0.0" [settings] From 4f7df84f1da8a172ea2e71a2b7a425df7ce92c11 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 31 Dec 2024 20:11:49 +0000 Subject: [PATCH 74/75] chore(deps): update dependency renovate to v39.86.2 (#1210) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index 9e0e6655..50920a4e 100644 --- a/mise.toml +++ b/mise.toml @@ -25,7 +25,7 @@ shfmt = "3.10.0" shellcheck = "0.10.0" yamlfmt = "0.14.0" yamllint = "1.35.1" -"npm:renovate" = "39.86.1" +"npm:renovate" = "39.86.2" "npm:cspell" = "8.17.1" "cargo:lychee" = "0.18.0" typos = "1.29.0" From 8792885f712952746f36542185d25db670c6af7e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 1 Jan 2025 03:15:49 +0000 Subject: [PATCH 75/75] chore(deps): update dependency renovate to v39.86.4 (#1212) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index 50920a4e..2642b164 100644 --- a/mise.toml +++ b/mise.toml @@ -25,7 +25,7 @@ shfmt = "3.10.0" shellcheck = "0.10.0" yamlfmt = "0.14.0" yamllint = "1.35.1" -"npm:renovate" = "39.86.2" +"npm:renovate" = "39.86.4" "npm:cspell" = "8.17.1" "cargo:lychee" = "0.18.0" typos = "1.29.0"