From f497f636084c84462763f6d115569304fb75d65a Mon Sep 17 00:00:00 2001 From: Adam Matthiesen Date: Sat, 23 Nov 2024 17:31:45 -0800 Subject: [PATCH] Update various actions and package info (#380) --- .changeset/config.json | 2 +- .devcontainer/Dockerfile | 2 +- .github/ISSUE_TEMPLATE/new-chore.md | 18 ++++++ .github/PULL_REQUEST_TEMPLATE.md | 12 ++++ .github/renovate.json | 2 +- .github/workflows/changeset-release.yml | 4 +- .github/workflows/changeset-snapshot.yml | 4 +- .github/workflows/ci.yml | 4 +- .github/workflows/coauthor.yml | 2 +- .github/workflows/deployments.yml | 9 ++- .github/workflows/firsttimepr.yml | 9 +-- .github/workflows/format.yml | 15 +++-- .github/workflows/renovate-changesets.yml | 4 +- .github/workflows/sync.yml | 23 ------- .github/workflows/todo-auto-issue.yml | 4 +- biome.json | 2 +- package.json | 2 +- pnpm-lock.yaml | 74 +++++++++++------------ 18 files changed, 101 insertions(+), 91 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/new-chore.md create mode 100644 .github/PULL_REQUEST_TEMPLATE.md delete mode 100644 .github/workflows/sync.yml diff --git a/.changeset/config.json b/.changeset/config.json index 8f4cdc3ad..5d7714602 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -1,6 +1,6 @@ { "$schema": "https://unpkg.com/@changesets/config@3.0.0/schema.json", - "changelog": ["@changesets/changelog-github", { "repo": "astrolicious/studiocms" }], + "changelog": ["@changesets/changelog-github", { "repo": "withstudiocms/studiocms" }], "commit": false, "fixed": [ [ diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 0dda07ed8..9395830c7 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,4 +1,4 @@ -FROM mcr.microsoft.com/devcontainers/javascript-node:1-20@sha256:f28172ab4f8cf57dacadc4d2aecf6d108bd9881617bd133b16ddcff6e6eef340 +FROM mcr.microsoft.com/devcontainers/javascript-node:1-20@sha256:8f4a68a4ebc64c814b962f4a41bbb1116b17f41b2e717d6d81d0ae24f73e1670 # Enable Proto RUN curl -fsSL https://moonrepo.dev/install/proto.sh | bash -s -- --yes diff --git a/.github/ISSUE_TEMPLATE/new-chore.md b/.github/ISSUE_TEMPLATE/new-chore.md new file mode 100644 index 000000000..e59891f28 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/new-chore.md @@ -0,0 +1,18 @@ +--- +name: New Chore +about: Used to create a new Chore for a needed task +title: "Chore: [NAME]" +labels: chore +--- + +**Is your chore related to a problem? Please describe.** +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +**Describe the solution you'd like** +A clear and concise description of what you want to happen. + +**Describe alternatives you've considered** +A clear and concise description of any alternative solutions or features you've considered. + +**Additional context** +Add any other context or screenshots about the feature request here. \ No newline at end of file diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 000000000..4514041c9 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,12 @@ + + +#### Description + +- Closes # +- What does this PR change? Give us a brief description. + + \ No newline at end of file diff --git a/.github/renovate.json b/.github/renovate.json index 4cc6a5681..71fee89a4 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -11,7 +11,7 @@ "ignorePaths": ["**/node_modules/**", "**/bower_components/**"], "labels": ["dependencies"], "additionalBranchPrefix": "{{parentDir}}-", - "gitIgnoredAuthors": ["no-reply@studiocms.xyz"], + "gitIgnoredAuthors": ["no-reply@studiocms.dev"], "prHourlyLimit": 3, "rangeStrategy": "bump", "reviewers": ["team:exalted"], diff --git a/.github/workflows/changeset-release.yml b/.github/workflows/changeset-release.yml index 089296498..1ff219fed 100644 --- a/.github/workflows/changeset-release.yml +++ b/.github/workflows/changeset-release.yml @@ -20,13 +20,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repo - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - name: Setup pnpm (corepack enabled) uses: pnpm/action-setup@v3 - name: Setup Node.js 20.x - uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4 + uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4 with: node-version-file: '.node-version' cache: 'pnpm' diff --git a/.github/workflows/changeset-snapshot.yml b/.github/workflows/changeset-snapshot.yml index 4cc14b958..d8c66528c 100644 --- a/.github/workflows/changeset-snapshot.yml +++ b/.github/workflows/changeset-snapshot.yml @@ -73,7 +73,7 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 with: ref: ${{ steps.refs.outputs.head_ref }} fetch-depth: 0 @@ -84,7 +84,7 @@ jobs: uses: pnpm/action-setup@v2 - name: Setup Node.js 20.x - uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4 + uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4 with: node-version-file: '.node-version' cache: 'pnpm' diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1df1ace7f..c859253da 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code using Git - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 with: ref: ${{ github.head_ref }} token: ${{ secrets.GITHUB_TOKEN }} @@ -29,7 +29,7 @@ jobs: uses: pnpm/action-setup@v3 - name: Setup Node - uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4 + uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4 with: node-version-file: '.node-version' cache: pnpm diff --git a/.github/workflows/coauthor.yml b/.github/workflows/coauthor.yml index 333d81c70..2be0ec9d5 100644 --- a/.github/workflows/coauthor.yml +++ b/.github/workflows/coauthor.yml @@ -13,5 +13,5 @@ jobs: if: ${{ github.event.issue.pull_request }} runs-on: ubuntu-latest steps: - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - uses: kevinzunigacuellar/coauthor-action@292b32bdbffc663431a2a37b3bfa597d83a74905 # v0.1.3 \ No newline at end of file diff --git a/.github/workflows/deployments.yml b/.github/workflows/deployments.yml index 6305d0f0b..3f2b554ec 100644 --- a/.github/workflows/deployments.yml +++ b/.github/workflows/deployments.yml @@ -21,9 +21,8 @@ jobs: issue_number: context.issue.number, owner: context.repo.owner, repo: context.repo.repo, - body: `Thank you for submitting your Pull Request, the following links will become available for preview shortly:\n\n - - [StudioCMS Landing Page](https://pr${context.payload.pull_request.number}.www.studiocms.xyz/)\n - - [StudioCMS Documentation](https://pr${context.payload.pull_request.number}.docs.studiocms.xyz/)\n - - [StudioCMS Demo (node-playground)](https://pr${context.payload.pull_request.number}.demo.studiocms.xyz/) (Also deployed with package changes)\n - - [StudioCMS Ui Demo (ui-playground)](https://pr${context.payload.pull_request.number}.ui-testing.studiocms.xyz/)` + body: `Thank you for submitting your Pull Request, the following links will become available for preview shortly:\n + - [StudioCMS Documentation](https://pr${context.payload.pull_request.number}.docs.studiocms.dev/)\n + - [StudioCMS Demo (node-playground)](https://pr${context.payload.pull_request.number}.demo.studiocms.dev/) (Also deployed with package changes)\n + - [StudioCMS Ui Demo (ui-playground)](https://pr${context.payload.pull_request.number}.ui-testing.studiocms.dev/)` }) diff --git a/.github/workflows/firsttimepr.yml b/.github/workflows/firsttimepr.yml index f600cb60b..4339914d3 100644 --- a/.github/workflows/firsttimepr.yml +++ b/.github/workflows/firsttimepr.yml @@ -15,6 +15,7 @@ jobs: steps: - uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7 with: + github-token: ${{ secrets.STUDIOCMS_SERVICE_TOKEN }} script: | if (context.payload.pull_request.merged) { const creator = context.payload.pull_request.user.login @@ -31,7 +32,7 @@ jobs: issue_number: context.issue.number, owner: context.repo.owner, repo: context.repo.repo, - body: `**Welcome** @${creator}, to the Contributor Squad! πŸŽ‰\n\nIf you haven't already, please join our [Discord community](https://chat.studiocms.xyz), to stay in the loop for any future help we may need!` + body: `**Welcome** @${creator}, to the Contributor Squad! πŸŽ‰\n\nIf you haven't already, please join our [Discord community](https://chat.studiocms.dev), to stay in the loop for any future help we may need!` }) await fetch(`${{ secrets.DISCORD_FTPR }}`, { @@ -41,16 +42,16 @@ jobs: 'Content-Type': 'application/json' }, body: JSON.stringify({ - content: "<@&1223013363492192377>", + content: `<@&${{ secrets.DISCORD_ROLE_HONOURED }}>, <@&${{ secrets.DISCORD_ROLE_REVERED }}>, <@&${{ secrets.DISCORD_ROLE_EXALTED }}>`, tts: false, embeds: [ { "id": 661098315, - "description": `New Contributor - ${creator} has had their first PR merged! πŸŽ‰\nMerged PR: [PR# ${context.issue.number}](https://github.com/astrolicious/studiocms/pull/${context.issue.number})`, + "description": `New StudioCMS Contributor - ${creator} has had their first PR merged! πŸŽ‰\nMerged PR: [PR# ${context.issue.number}](https://github.com/withstudiocms/studiocms/pull/${context.issue.number})`, "fields": [], "author": { "name": "StudioCMS Contributor Alert", - "icon_url": "https://github.com/astrolicious/studiocms/blob/main/www/assets/logo-discord.png?raw=true" + "icon_url": "https://github.com/withstudiocms/studiocms.dev/blob/main/assets/logo-discord.png?raw=true" }, "title": "🚨 FIRST TIME CONTRIBUTOR 🚨" } diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml index 85afdc5b3..38664c5d1 100644 --- a/.github/workflows/format.yml +++ b/.github/workflows/format.yml @@ -16,29 +16,32 @@ jobs: NODE_OPTIONS: "--max_old_space_size=4096" steps: - name: Check out code using Git - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 with: ref: ${{ github.head_ref }} - token: ${{ secrets.GITHUB_TOKEN }} + token: ${{ secrets.STUDIOCMS_SERVICE_TOKEN }} - name: Setup PNPM uses: pnpm/action-setup@v3 + - name: Setup Node - uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4 + uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4 with: node-version-file: '.node-version' cache: pnpm + - name: Install dependencies run: pnpm ci:install shell: bash - name: Format code run: pnpm run lint:fix + - name: Commit changes uses: stefanzweifel/git-auto-commit-action@8621497c8c39c72f3e2a999a26b4ca1b5058a842 # v5 with: commit_message: '[ci] lint' branch: ${{ github.head_ref }} - commit_user_name: astrolicious - commit_user_email: no-reply@studiocms.xyz - commit_author: StudioCMS + commit_user_name: studiocms-no-reply + commit_user_email: no-reply@studiocms.dev + commit_author: StudioCMS diff --git a/.github/workflows/renovate-changesets.yml b/.github/workflows/renovate-changesets.yml index f6daa90ec..1838dc43b 100644 --- a/.github/workflows/renovate-changesets.yml +++ b/.github/workflows/renovate-changesets.yml @@ -12,9 +12,9 @@ jobs: steps: - name: Update PR - uses: mscharley/dependency-changesets-action@2ca9c8db686d12d7dad1e60bc4230fb293b21e6c # v1.1.0 + uses: mscharley/dependency-changesets-action@b73462eb4c2cf1fe16a8d9d681932fd05eea5c9f # v1.1.1 with: token: ${{ secrets.STUDIOCMS_SERVICE_TOKEN }} use-conventional-commits: true author-name: StudioCMS - author-email: no-reply@studiocms.xyz \ No newline at end of file + author-email: no-reply@studiocms.dev \ No newline at end of file diff --git a/.github/workflows/sync.yml b/.github/workflows/sync.yml deleted file mode 100644 index 7a64c4b15..000000000 --- a/.github/workflows/sync.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: "Sync: Git Mirror" - -on: - - push - - delete - - workflow_dispatch - -jobs: - sync: - runs-on: ubuntu-latest - name: Git Repo Sync - steps: - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 - with: - fetch-depth: 0 - - uses: MatthiesenXYZ/git-sync-action@5fedfb0ab1ab995f40a7e96b87fe029c08e63f22 # v1.1 - with: - # Such as https://github.com/matthiesenxyz/git-sync-action.git - target-url: ${{ secrets.GITLAB_URL }} - # Such as adammatthiesen - target-username: ${{ secrets.GITLAB_USERNAME }} - # You can store token in your project's 'Setting > Secrets' and reference the name here. Such as ${{ secrets.ACCESS\_TOKEN }} - target-token: ${{ secrets.GITLAB_ACCESS }} diff --git a/.github/workflows/todo-auto-issue.yml b/.github/workflows/todo-auto-issue.yml index 14bce6409..e2021f3d4 100644 --- a/.github/workflows/todo-auto-issue.yml +++ b/.github/workflows/todo-auto-issue.yml @@ -22,7 +22,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - name: Run Todo Issue Bot uses: juulsn/todo-issue@main @@ -30,4 +30,4 @@ jobs: excludePattern: '^(node_modules/)' autoAssign: false env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.STUDIOCMS_SERVICE_TOKEN }} diff --git a/biome.json b/biome.json index d5e8a371e..66c3ba5cd 100644 --- a/biome.json +++ b/biome.json @@ -1,5 +1,5 @@ { - "$schema": "https://biomejs.dev/schemas/1.9.3/schema.json", + "$schema": "https://biomejs.dev/schemas/1.9.4/schema.json", "vcs": { "enabled": true, "clientKind": "git", diff --git a/package.json b/package.json index 12cf9b2fc..97940241f 100644 --- a/package.json +++ b/package.json @@ -30,7 +30,7 @@ "docs:dev": "pnpm --filter docs dev" }, "devDependencies": { - "@biomejs/biome": "1.9.3", + "@biomejs/biome": "1.9.4", "@moonrepo/cli": "1.28.3", "@changesets/cli": "2.27.9", "@changesets/config": "3.0.3", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d709023c2..73ece8502 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -251,8 +251,8 @@ importers: .: devDependencies: '@biomejs/biome': - specifier: 1.9.3 - version: 1.9.3 + specifier: 1.9.4 + version: 1.9.4 '@changesets/changelog-github': specifier: ^0.5.0 version: 0.5.0 @@ -1334,55 +1334,55 @@ packages: resolution: {integrity: sha512-vwIVdXG+j+FOpkwqHRcBgHLYNL7XMkufrlaFvL9o6Ai9sJn9+PdyIL5qa0XzTZw084c+u9LOls53eoZWP/W5WQ==} engines: {node: '>=6.9.0'} - '@biomejs/biome@1.9.3': - resolution: {integrity: sha512-POjAPz0APAmX33WOQFGQrwLvlu7WLV4CFJMlB12b6ZSg+2q6fYu9kZwLCOA+x83zXfcPd1RpuWOKJW0GbBwLIQ==} + '@biomejs/biome@1.9.4': + resolution: {integrity: sha512-1rkd7G70+o9KkTn5KLmDYXihGoTaIGO9PIIN2ZB7UJxFrWw04CZHPYiMRjYsaDvVV7hP1dYNRLxSANLaBFGpog==} engines: {node: '>=14.21.3'} hasBin: true - '@biomejs/cli-darwin-arm64@1.9.3': - resolution: {integrity: sha512-QZzD2XrjJDUyIZK+aR2i5DDxCJfdwiYbUKu9GzkCUJpL78uSelAHAPy7m0GuPMVtF/Uo+OKv97W3P9nuWZangQ==} + '@biomejs/cli-darwin-arm64@1.9.4': + resolution: {integrity: sha512-bFBsPWrNvkdKrNCYeAp+xo2HecOGPAy9WyNyB/jKnnedgzl4W4Hb9ZMzYNbf8dMCGmUdSavlYHiR01QaYR58cw==} engines: {node: '>=14.21.3'} cpu: [arm64] os: [darwin] - '@biomejs/cli-darwin-x64@1.9.3': - resolution: {integrity: sha512-vSCoIBJE0BN3SWDFuAY/tRavpUtNoqiceJ5PrU3xDfsLcm/U6N93JSM0M9OAiC/X7mPPfejtr6Yc9vSgWlEgVw==} + '@biomejs/cli-darwin-x64@1.9.4': + resolution: {integrity: sha512-ngYBh/+bEedqkSevPVhLP4QfVPCpb+4BBe2p7Xs32dBgs7rh9nY2AIYUL6BgLw1JVXV8GlpKmb/hNiuIxfPfZg==} engines: {node: '>=14.21.3'} cpu: [x64] os: [darwin] - '@biomejs/cli-linux-arm64-musl@1.9.3': - resolution: {integrity: sha512-VBzyhaqqqwP3bAkkBrhVq50i3Uj9+RWuj+pYmXrMDgjS5+SKYGE56BwNw4l8hR3SmYbLSbEo15GcV043CDSk+Q==} + '@biomejs/cli-linux-arm64-musl@1.9.4': + resolution: {integrity: sha512-v665Ct9WCRjGa8+kTr0CzApU0+XXtRgwmzIf1SeKSGAv+2scAlW6JR5PMFo6FzqqZ64Po79cKODKf3/AAmECqA==} engines: {node: '>=14.21.3'} cpu: [arm64] os: [linux] - '@biomejs/cli-linux-arm64@1.9.3': - resolution: {integrity: sha512-vJkAimD2+sVviNTbaWOGqEBy31cW0ZB52KtpVIbkuma7PlfII3tsLhFa+cwbRAcRBkobBBhqZ06hXoZAN8NODQ==} + '@biomejs/cli-linux-arm64@1.9.4': + resolution: {integrity: sha512-fJIW0+LYujdjUgJJuwesP4EjIBl/N/TcOX3IvIHJQNsAqvV2CHIogsmA94BPG6jZATS4Hi+xv4SkBBQSt1N4/g==} engines: {node: '>=14.21.3'} cpu: [arm64] os: [linux] - '@biomejs/cli-linux-x64-musl@1.9.3': - resolution: {integrity: sha512-TJmnOG2+NOGM72mlczEsNki9UT+XAsMFAOo8J0me/N47EJ/vkLXxf481evfHLlxMejTY6IN8SdRSiPVLv6AHlA==} + '@biomejs/cli-linux-x64-musl@1.9.4': + resolution: {integrity: sha512-gEhi/jSBhZ2m6wjV530Yy8+fNqG8PAinM3oV7CyO+6c3CEh16Eizm21uHVsyVBEB6RIM8JHIl6AGYCv6Q6Q9Tg==} engines: {node: '>=14.21.3'} cpu: [x64] os: [linux] - '@biomejs/cli-linux-x64@1.9.3': - resolution: {integrity: sha512-x220V4c+romd26Mu1ptU+EudMXVS4xmzKxPVb9mgnfYlN4Yx9vD5NZraSx/onJnd3Gh/y8iPUdU5CDZJKg9COA==} + '@biomejs/cli-linux-x64@1.9.4': + resolution: {integrity: sha512-lRCJv/Vi3Vlwmbd6K+oQ0KhLHMAysN8lXoCI7XeHlxaajk06u7G+UsFSO01NAs5iYuWKmVZjmiOzJ0OJmGsMwg==} engines: {node: '>=14.21.3'} cpu: [x64] os: [linux] - '@biomejs/cli-win32-arm64@1.9.3': - resolution: {integrity: sha512-lg/yZis2HdQGsycUvHWSzo9kOvnGgvtrYRgoCEwPBwwAL8/6crOp3+f47tPwI/LI1dZrhSji7PNsGKGHbwyAhw==} + '@biomejs/cli-win32-arm64@1.9.4': + resolution: {integrity: sha512-tlbhLk+WXZmgwoIKwHIHEBZUwxml7bRJgk0X2sPyNR3S93cdRq6XulAZRQJ17FYGGzWne0fgrXBKpl7l4M87Hg==} engines: {node: '>=14.21.3'} cpu: [arm64] os: [win32] - '@biomejs/cli-win32-x64@1.9.3': - resolution: {integrity: sha512-cQMy2zanBkVLpmmxXdK6YePzmZx0s5Z7KEnwmrW54rcXK3myCNbQa09SwGZ8i/8sLw0H9F3X7K4rxVNGU8/D4Q==} + '@biomejs/cli-win32-x64@1.9.4': + resolution: {integrity: sha512-8Y5wMhVIPaWe6jw2H+KlEm4wP/f7EW3810ZLmDlrEEy5KvBsb9ECEfu/kMWD484ijfQ8+nIi0giMgu9g1UAuuA==} engines: {node: '>=14.21.3'} cpu: [x64] os: [win32] @@ -6687,39 +6687,39 @@ snapshots: '@babel/helper-validator-identifier': 7.25.7 to-fast-properties: 2.0.0 - '@biomejs/biome@1.9.3': + '@biomejs/biome@1.9.4': optionalDependencies: - '@biomejs/cli-darwin-arm64': 1.9.3 - '@biomejs/cli-darwin-x64': 1.9.3 - '@biomejs/cli-linux-arm64': 1.9.3 - '@biomejs/cli-linux-arm64-musl': 1.9.3 - '@biomejs/cli-linux-x64': 1.9.3 - '@biomejs/cli-linux-x64-musl': 1.9.3 - '@biomejs/cli-win32-arm64': 1.9.3 - '@biomejs/cli-win32-x64': 1.9.3 + '@biomejs/cli-darwin-arm64': 1.9.4 + '@biomejs/cli-darwin-x64': 1.9.4 + '@biomejs/cli-linux-arm64': 1.9.4 + '@biomejs/cli-linux-arm64-musl': 1.9.4 + '@biomejs/cli-linux-x64': 1.9.4 + '@biomejs/cli-linux-x64-musl': 1.9.4 + '@biomejs/cli-win32-arm64': 1.9.4 + '@biomejs/cli-win32-x64': 1.9.4 - '@biomejs/cli-darwin-arm64@1.9.3': + '@biomejs/cli-darwin-arm64@1.9.4': optional: true - '@biomejs/cli-darwin-x64@1.9.3': + '@biomejs/cli-darwin-x64@1.9.4': optional: true - '@biomejs/cli-linux-arm64-musl@1.9.3': + '@biomejs/cli-linux-arm64-musl@1.9.4': optional: true - '@biomejs/cli-linux-arm64@1.9.3': + '@biomejs/cli-linux-arm64@1.9.4': optional: true - '@biomejs/cli-linux-x64-musl@1.9.3': + '@biomejs/cli-linux-x64-musl@1.9.4': optional: true - '@biomejs/cli-linux-x64@1.9.3': + '@biomejs/cli-linux-x64@1.9.4': optional: true - '@biomejs/cli-win32-arm64@1.9.3': + '@biomejs/cli-win32-arm64@1.9.4': optional: true - '@biomejs/cli-win32-x64@1.9.3': + '@biomejs/cli-win32-x64@1.9.4': optional: true '@changesets/apply-release-plan@7.0.5':